diff --git a/mzLib/Proteomics/Protein/CircularProtein.cs b/mzLib/Proteomics/Protein/CircularProtein.cs
new file mode 100644
index 000000000..af3fb2211
--- /dev/null
+++ b/mzLib/Proteomics/Protein/CircularProtein.cs
@@ -0,0 +1,598 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Omics;
+using Omics.BioPolymer;
+using Omics.Digestion;
+using Omics.Modifications;
+using Proteomics.AminoAcidPolymer;
+using Proteomics.ProteolyticDigestion;
+
+namespace Proteomics
+{
+ ///
+ /// Represents a head-to-tail cyclic protein or peptide.
+ ///
+ /// CANONICAL FORM AND NUMBERING
+ /// ----------------------------
+ /// The sequence is always stored as the lexicographically smallest rotation
+ /// (canonical form), regardless of the input rotation. This is the shared
+ /// numbering system for both the protein and all peptides derived from it:
+ ///
+ /// - Residue 1 is the first character of .
+ /// - Residues are numbered 1..N continuously around the ring.
+ /// - For fragments that wrap past residue N, numbering continues into a
+ /// conceptual second copy of the ring: residue N+1 = residue 1, N+2 = 2,
+ /// etc. A wrap-around fragment starting at residue s of length L is
+ /// annotated [s, s+L-1] where s+L-1 may exceed N.
+ ///
+ /// Example: ring G-K-A-E-C, canonical form A-E-C-G-K.
+ /// Residue 1=A, 2=E, 3=C, 4=G, 5=K.
+ /// A fragment covering K,A,E (wrapping) starts at residue 5 with length 3:
+ /// annotation [5, 7].
+ ///
+ /// Because both and
+ /// are always canonicalized,
+ /// two circular molecules represent the same ring if and only if their
+ /// strings are equal.
+ ///
+ /// DIGESTION
+ /// ---------
+ /// Digestion is performed on a doubled (2N−1) proxy sequence
+ /// ( + [..^1]), then filtered
+ /// to peptides of length ≤ N and deduplicated by full sequence. Wrapping peptides
+ /// have OneBasedEndResidueInProtein > N, consistent with the annotation
+ /// convention above.
+ ///
+ /// DISPATCH NOTE
+ /// -------------
+ /// is a virtual override of .
+ /// Callers may hold any reference type (,
+ /// , etc.) and the circular digestion logic will be
+ /// dispatched correctly at runtime via standard polymorphic dispatch.
+ ///
+ public class CircularProtein : Protein
+ {
+ ///
+ /// The canonical circular sequence (lexicographically smallest rotation of the input).
+ /// Identical to ; exposed under this name for clarity.
+ ///
+ public string CircularSequence => BaseSequence;
+
+ ///
+ /// Monoisotopic mass of the cyclic molecule: sum of residue masses with no H₂O addition,
+ /// since there are no free N- or C-termini in a head-to-tail cyclized molecule.
+ ///
+ public double CyclicMonoisotopicMass { get; }
+
+ // ── Constructors ──────────────────────────────────────────────────────
+
+ ///
+ /// Constructs a . The sequence is canonicalized
+ /// to the lexicographically smallest rotation before being stored.
+ ///
+ public CircularProtein(
+ string sequence,
+ string accession,
+ string organism = null,
+ List> geneNames = null,
+ IDictionary> oneBasedModifications = null,
+ string name = null,
+ string fullName = null,
+ bool isDecoy = false,
+ bool isContaminant = false,
+ List databaseReferences = null,
+ string databaseFilePath = null)
+ : this(
+ GetCanonicalRotationWithOffset(sequence),
+ sequence?.Length ?? 0,
+ accession,
+ organism,
+ geneNames,
+ oneBasedModifications,
+ name,
+ fullName,
+ isDecoy,
+ isContaminant,
+ databaseReferences,
+ databaseFilePath)
+ {
+ }
+
+ ///
+ /// Private constructor that receives the pre-computed canonical rotation and offset,
+ /// avoiding a redundant second call to .
+ ///
+ private CircularProtein(
+ (string Canonical, int Offset) rotation,
+ int originalLength,
+ string accession,
+ string organism,
+ List> geneNames,
+ IDictionary> oneBasedModifications,
+ string name,
+ string fullName,
+ bool isDecoy,
+ bool isContaminant,
+ List databaseReferences,
+ string databaseFilePath)
+ : base(
+ sequence: rotation.Canonical,
+ accession: accession,
+ organism: organism,
+ geneNames: geneNames,
+ oneBasedModifications: RemapModifications(oneBasedModifications, originalLength, rotation.Offset),
+ name: name,
+ fullName: fullName,
+ isDecoy: isDecoy,
+ isContaminant: isContaminant,
+ databaseReferences: databaseReferences,
+ databaseFilePath: databaseFilePath)
+ {
+ CyclicMonoisotopicMass = BaseSequence.Sum(aa => Residue.ResidueMonoisotopicMass[aa]);
+ }
+
+ ///
+ /// Creates a from an existing ,
+ /// canonicalizing its sequence and remapping any one-based modifications to their
+ /// correct positions in the canonical rotation.
+ /// Use after loading entries from a FASTA or XML database.
+ ///
+ public static CircularProtein FromProtein(Protein source) =>
+ new(source.BaseSequence,
+ source.Accession,
+ source.Organism,
+ source.GeneNames,
+ source.OneBasedPossibleLocalizedModifications
+ .ToDictionary(kv => kv.Key, kv => kv.Value),
+ source.Name,
+ source.FullName,
+ source.IsDecoy,
+ source.IsContaminant,
+ source.DatabaseReferences,
+ source.DatabaseFilePath);
+
+ // ── Digestion ─────────────────────────────────────────────────────────
+
+ ///
+ /// Digests the circular sequence by running linear digestion on a doubled
+ /// proxy sequence of length 2N-1, then filtering and deduplicating results.
+ /// Wrapping peptides have OneBasedEndResidueInProtein > N.
+ /// This is a virtual override of and will be
+ /// dispatched correctly regardless of the compile-time reference type.
+ ///
+ public override IEnumerable Digest(
+ IDigestionParams digestionParams,
+ List allKnownFixedModifications,
+ List variableModifications,
+ List silacLabels = null,
+ (SilacLabel startLabel, SilacLabel endLabel)? turnoverLabels = null,
+ bool topDownTruncationSearch = false)
+ {
+ int n = Length;
+
+ // ── Step 1: Identify cleavage sites in the ring ───────────────────
+ //
+ // Find all 1-based positions in the canonical ring at which the
+ // protease cuts after that residue.
+ var cleavagePositions = GetCleavagePositionsInRing(digestionParams);
+ int numCleavageSites = cleavagePositions.Count;
+ int maxMissedCleavages = ((DigestionParams)digestionParams).MaxMissedCleavages;
+
+ // ── Step 2: Emit the CircularPeptideWithSetModifications (1:1) ────
+ //
+ // The CircularPeptideWithSetModifications is ALWAYS a direct 1:1
+ // conversion of the CircularProtein — the whole ring, intact.
+ // It is NEVER produced by cutting: not even a single cut.
+ // It is emitted here, independently of the proxy digestion below.
+ //
+ // It is only possible when the missed-cleavage budget is large enough
+ // to absorb every cleavage site in the ring, meaning the entire ring
+ // is one un-cut cyclic segment with no free N- or C-termini.
+ //
+ // A CircularPeptideWithSetModifications is ALWAYS length N.
+ // It is NEVER shorter than N and NEVER starts at any position other
+ // than position 1 (the canonical origin).
+ if (maxMissedCleavages >= numCleavageSites)
+ {
+ // ── Apply fixed modifications to the ring ─────────────────────
+ // Circular peptides have no termini, so only "Anywhere."
+ // fixed modifications are applicable. Key convention:
+ // residue at 1-based position pos → key = pos + 1.
+ var fixedModsDict = new Dictionary();
+ if (allKnownFixedModifications != null)
+ {
+ foreach (var mod in allKnownFixedModifications)
+ {
+ if (mod.LocationRestriction != "Anywhere.") continue;
+
+ for (int pos = 1; pos <= n; pos++)
+ {
+ int key = pos + 1;
+ if (fixedModsDict.ContainsKey(key)) continue;
+
+ if (ModificationLocalization.ModFits(
+ mod,
+ BaseSequence,
+ digestionProductOneBasedIndex: pos,
+ digestionProductLength: n,
+ bioPolymerOneBasedIndex: pos))
+ {
+ fixedModsDict[key] = mod;
+ }
+ }
+ }
+ }
+
+ int numFixed = fixedModsDict.Count;
+
+ // Full-ring product with fixed mods only — always emitted when the budget allows.
+ yield return new CircularPeptideWithSetModifications(
+ protein: this,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: n,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: numCleavageSites,
+ allModsOneIsNterminus: new Dictionary(fixedModsDict),
+ numFixedMods: numFixed,
+ baseSequence: BaseSequence);
+
+ // Variable-modified full-ring products.
+ // Circular peptides have no N- or C-termini, so only
+ // "Anywhere." modifications are applicable.
+ //
+ // We enumerate all combinations of up to MaxMods modifications
+ // across all matching (key, mod) pairs, mirroring the combinatorial
+ // enumeration that linear peptide digestion performs.
+ // MaxMods == 0 means no modified forms are produced.
+ {
+ // Build the list of all (key, mod) pairs that fit this ring, from BOTH
+ // the caller-supplied variable modifications AND the protein's
+ // database/XML-annotated localized modifications. The linear digestion
+ // path applies OneBasedPossibleLocalizedModifications as variable mods,
+ // so the intact-ring forms must include them too — otherwise the ring
+ // loses annotated PTM isoforms that the ring-opening linear products carry.
+ //
+ // Key convention: side-chain at 1-based position pos → key = pos + 1.
+ // Circular peptides have no termini, so only "Anywhere." mods apply.
+ var applicableSites = new List<(int Key, Modification Mod)>();
+ var seenSites = new HashSet<(int Pos, string Id)>();
+
+ void AddSiteIfApplicable(int pos, Modification mod)
+ {
+ if (mod.LocationRestriction != "Anywhere.") return;
+ if (pos < 1 || pos > n) return;
+ if (!ModificationLocalization.ModFits(
+ mod,
+ BaseSequence,
+ digestionProductOneBasedIndex: pos,
+ digestionProductLength: n,
+ bioPolymerOneBasedIndex: pos))
+ return;
+ if (seenSites.Add((pos, mod.IdWithMotif)))
+ applicableSites.Add((pos + 1, mod));
+ }
+
+ if (variableModifications != null)
+ foreach (var mod in variableModifications)
+ for (int pos = 1; pos <= n; pos++)
+ AddSiteIfApplicable(pos, mod);
+
+ foreach (var kv in OneBasedPossibleLocalizedModifications)
+ foreach (var mod in kv.Value)
+ AddSiteIfApplicable(kv.Key, mod);
+
+ // Enumerate subsets of applicableSites of size 1..MaxMods (one mod per
+ // residue), bounded by MaxModificationIsoforms to match the linear
+ // pathway's cap and avoid a combinatorial explosion of ring forms.
+ int maxMods = ((DigestionParams)digestionParams).MaxMods;
+ int maxIsoforms = ((DigestionParams)digestionParams).MaxModificationIsoforms;
+ int isoformCount = 0;
+ foreach (var subset in GetModSubsets(applicableSites, maxMods))
+ {
+ if (isoformCount >= maxIsoforms)
+ break;
+
+ // Merge fixed mods into the variable-mod subset so that every
+ // variable-modified form also carries fixed modifications.
+ // Variable mods at the same key override the fixed mod there.
+ var merged = new Dictionary(fixedModsDict);
+ foreach (var kvp in subset)
+ merged[kvp.Key] = kvp.Value;
+
+ // Recompute the fixed-mod count from what survives the merge: a
+ // variable mod overriding a fixed mod at the same key removes one
+ // fixed mod, so the precomputed count would overstate it.
+ int actualFixedMods = 0;
+ foreach (var fk in fixedModsDict.Keys)
+ if (!subset.ContainsKey(fk))
+ actualFixedMods++;
+
+ isoformCount++;
+ yield return new CircularPeptideWithSetModifications(
+ protein: this,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: n,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: numCleavageSites,
+ allModsOneIsNterminus: merged,
+ numFixedMods: actualFixedMods,
+ baseSequence: BaseSequence);
+ }
+ }
+ }
+
+ // ── Step 3: Emit linear PeptideWithSetModifications products ──────
+ //
+ // All linear products come from the proxy digestion of a doubled
+ // sequence (BaseSequence + BaseSequence[..^1], length 2N-1), which
+ // allows the linear digestion engine to discover wrap-around fragments.
+ //
+ // CRITICAL: Every product from the proxy digestion is ALWAYS a
+ // PeptideWithSetModifications — linear, with free termini.
+ // The CircularPeptideWithSetModifications was emitted above and must
+ // NEVER be produced from the proxy.
+ //
+ // There are two sub-cases, both yielding PeptideWithSetModifications:
+ //
+ // Single cut (Length == N):
+ // The ring was opened at exactly one cleavage site. The product
+ // spans the full canonical sequence and has the same length N as
+ // the circular product, but it is a completely different object:
+ // it has free N- and C-termini and carries the standard +H2O mass.
+ // Do NOT conflate length equality with type equality.
+ //
+ // Two or more cuts (Length < N):
+ // The ring was opened and sub-divided. Always linear, always < N.
+ if (numCleavageSites == 0)
+ yield break; // No cuts possible; only the circular product exists.
+
+ // Valid start positions: one position after each cleavage site in
+ // 1-based canonical ring coordinates.
+ var validStartPositions = new HashSet(
+ cleavagePositions.Select(p => p == n ? 1 : p + 1));
+
+ // Replicate database/XML-localized modifications onto the second copy of the
+ // doubled proxy. The Protein(Protein, string) clone keeps localized-mod keys
+ // only in 1..N, but wrap-around fragments span proxy positions N+1..2N-1
+ // (ring positions 1..N-1); without the replicated keys those wrapped residues
+ // would silently lose their annotated modifications, producing wrong masses
+ // and fragment ions for exactly the peptides that distinguish circular topology.
+ var proxyMods = new Dictionary>();
+ foreach (var kv in OneBasedPossibleLocalizedModifications)
+ {
+ proxyMods[kv.Key] = kv.Value; // first copy: positions 1..N
+ if (kv.Key <= n - 1)
+ proxyMods[kv.Key + n] = kv.Value; // second copy: positions N+1..2N-1
+ }
+
+ var proxyProtein = new Protein(
+ sequence: BaseSequence + BaseSequence[..^1],
+ accession: Accession,
+ oneBasedModifications: proxyMods,
+ name: Name,
+ fullName: FullName,
+ organism: Organism,
+ isDecoy: IsDecoy,
+ isContaminant: IsContaminant,
+ databaseFilePath: DatabaseFilePath);
+ var proxyPeptides = proxyProtein.Digest(digestionParams,
+ allKnownFixedModifications, variableModifications,
+ silacLabels, turnoverLabels, topDownTruncationSearch);
+
+ var seen = new HashSet();
+
+ foreach (var peptide in proxyPeptides)
+ {
+ if (peptide is not PeptideWithSetModifications pwsm)
+ continue; // Non-linear proxy products are not expected; skip.
+
+ // Discard fragments longer than N, or starting in the second copy
+ // of the proxy (those duplicate first-copy fragments).
+ if (pwsm.Length > n || pwsm.OneBasedStartResidueInProtein > n)
+ continue;
+
+ // Discard proxy artifacts not starting at a genuine cut boundary.
+ if (!validStartPositions.Contains(pwsm.OneBasedStartResidueInProtein))
+ continue;
+
+ // Deduplicate by full sequence AND start position.
+ // Two peptides with the same sequence at different ring positions
+ // are distinct cleavage products and must both be retained.
+ if (!seen.Add($"{pwsm.OneBasedStartResidueInProtein}:{pwsm.FullSequence}"))
+ continue;
+
+ // Every proxy product is linear — length N (single-cut) or < N (multi-cut).
+ // Neither case is ever a CircularPeptideWithSetModifications.
+ yield return new PeptideWithSetModifications(
+ protein: this,
+ digestionParams: pwsm.DigestionParams,
+ oneBasedStartResidueInProtein: pwsm.OneBasedStartResidueInProtein,
+ oneBasedEndResidueInProtein: pwsm.OneBasedEndResidueInProtein,
+ cleavageSpecificity: pwsm.CleavageSpecificityForFdrCategory,
+ peptideDescription: pwsm.PeptideDescription,
+ missedCleavages: pwsm.MissedCleavages,
+ allModsOneIsNterminus: pwsm.AllModsOneIsNterminus,
+ numFixedMods: pwsm.NumFixedMods,
+ baseSequence: pwsm.BaseSequence);
+ }
+ }
+
+ ///
+ /// Yields all non-empty subsets of of size at most
+ /// , where every key in the subset is distinct
+ /// (one modification per residue). Each subset is returned as a
+ /// ready for use as
+ /// AllModsOneIsNterminus.
+ ///
+ private static IEnumerable> GetModSubsets(
+ List<(int Key, Modification Mod)> sites,
+ int maxMods)
+ {
+ if (maxMods <= 0 || sites.Count == 0)
+ yield break;
+
+ // Enumerate subsets via recursive backtracking.
+ var current = new Dictionary();
+
+ foreach (var subset in Backtrack(sites, 0, current, maxMods))
+ yield return subset;
+ }
+
+ private static IEnumerable> Backtrack(
+ List<(int Key, Modification Mod)> sites,
+ int startIndex,
+ Dictionary current,
+ int maxMods)
+ {
+ // Yield a copy of the current non-empty subset.
+ if (current.Count > 0)
+ yield return new Dictionary(current);
+
+ if (current.Count == maxMods)
+ yield break;
+
+ for (int i = startIndex; i < sites.Count; i++)
+ {
+ var (key, mod) = sites[i];
+
+ // Skip if this residue already has a mod in the current subset.
+ if (current.ContainsKey(key))
+ continue;
+
+ current[key] = mod;
+
+ foreach (var subset in Backtrack(sites, i + 1, current, maxMods))
+ yield return subset;
+
+ current.Remove(key);
+ }
+ }
+
+ internal HashSet GetCleavagePositionsInRing(IDigestionParams digestionParams)
+ {
+ // Use the protease's cleavage-site detection directly on the doubled
+ // proxy sequence (length 2N-1) to discover all cut positions in the ring.
+ // The doubled sequence ensures that cleavage motifs spanning the
+ // wrap-around boundary (position N -> position 1) are evaluated correctly.
+ //
+ // GetDigestionSiteIndices returns 0-based cut-after indices and always
+ // includes the virtual boundaries 0 and proxySequence.Length. We keep
+ // only indices in [1, N], which correspond to 1-based positions in the
+ // canonical ring where the protease cuts after that residue.
+ var protease = ((DigestionParams)digestionParams).Protease;
+ var positions = new HashSet();
+ // Top-down search mode does not perform any cuts, so skip the protease call
+ if (protease.Name != "top-down")
+ {
+ string proxySequence = BaseSequence + BaseSequence[..^1];
+ var allIndices = protease.GetDigestionSiteIndices(proxySequence);
+ int n = Length;
+
+ foreach (var index in allIndices)
+ {
+ if (index >= 1 && index <= n)
+ positions.Add(index);
+ }
+ }
+
+ return positions;
+ }
+
+ // ── Shared numbering system ───────────────────────────────────────────
+
+
+ ///
+ /// Returns the lexicographically smallest rotation of .
+ /// This is the single shared implementation used by both
+ /// and .
+ ///
+ /// The algorithm reads all N rotations, comparing character by character, and
+ /// selects the one that sorts earliest under ordinal (byte-value) comparison —
+ /// i.e., 'A' < 'C' < ... < 'Y', with subsequent characters as tiebreakers.
+ ///
+ public static string GetCanonicalRotation(string sequence)
+ {
+ return GetCanonicalRotationWithOffset(sequence).Canonical;
+ }
+
+ ///
+ /// Returns the lexicographically smallest rotation of
+ /// along with the 0-based offset into the original string at which the canonical
+ /// rotation begins. An offset of 0 means the input was already in canonical form.
+ ///
+ /// The circular amino acid sequence.
+ ///
+ /// A tuple of (Canonical, Offset) where Canonical is the
+ /// smallest rotation and Offset is the starting index in the original string.
+ ///
+ public static (string Canonical, int Offset) GetCanonicalRotationWithOffset(string sequence)
+ {
+ if (string.IsNullOrEmpty(sequence))
+ return (sequence, 0);
+
+ int n = sequence.Length;
+ string best = sequence;
+ int bestOffset = 0;
+
+ for (int i = 1; i < n; i++)
+ {
+ for (int k = 0; k < n; k++)
+ {
+ char ci = sequence[(i + k) % n];
+ char cb = best[k];
+
+ if (ci < cb)
+ {
+ best = (sequence + sequence).Substring(i, n);
+ bestOffset = i;
+ break;
+ }
+ if (ci > cb) break;
+ }
+ }
+
+ return (best, bestOffset);
+ }
+
+ ///
+ /// Remaps 1-based modification positions to account for the rotational offset
+ /// introduced by canonicalization. Returns null when no modifications
+ /// are present, and returns the dictionary unchanged when the offset is zero.
+ ///
+ private static IDictionary> RemapModifications(
+ IDictionary> oneBasedModifications,
+ int sequenceLength,
+ int offset)
+ {
+ if (oneBasedModifications == null || oneBasedModifications.Count == 0)
+ return oneBasedModifications;
+
+ if (offset == 0)
+ return oneBasedModifications;
+
+ int n = sequenceLength;
+ var remapped = new Dictionary>();
+ foreach (var kvp in oneBasedModifications)
+ {
+ int oldPos = kvp.Key;
+ // Only remap valid 1-based ring positions; pass through any
+ // out-of-range keys (e.g. 0 for N-term) unchanged.
+ if (oldPos >= 1 && oldPos <= n)
+ {
+ int newPos = (oldPos - 1 - offset + n) % n + 1;
+ remapped[newPos] = kvp.Value;
+ }
+ else
+ {
+ remapped[oldPos] = kvp.Value;
+ }
+ }
+ return remapped;
+ }
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Proteomics/Protein/Protein.cs b/mzLib/Proteomics/Protein/Protein.cs
index 691add534..d88717762 100644
--- a/mzLib/Proteomics/Protein/Protein.cs
+++ b/mzLib/Proteomics/Protein/Protein.cs
@@ -328,10 +328,12 @@ public IEnumerable Digest(DigestionParams digestion
.Cast();
///
- /// Gets peptides for digestion of a protein
- /// Implemented with interfaces to allow for use of both Proteomics and Omics classes
+ /// Gets peptides for digestion of a protein.
+ /// Implemented with interfaces to allow for use of both Proteomics and Omics classes.
+ /// Virtual to allow derived classes (e.g., ) to override
+ /// with specialized digestion behavior while preserving polymorphic dispatch.
///
- public IEnumerable Digest(IDigestionParams digestionParams, List allKnownFixedModifications,
+ public virtual IEnumerable Digest(IDigestionParams digestionParams, List allKnownFixedModifications,
List variableModifications, List silacLabels = null, (SilacLabel startLabel, SilacLabel endLabel)? turnoverLabels = null, bool topDownTruncationSearch = false)
{
diff --git a/mzLib/Proteomics/ProteolyticDigestion/CircularPeptideWithSetModifications.cs b/mzLib/Proteomics/ProteolyticDigestion/CircularPeptideWithSetModifications.cs
new file mode 100644
index 000000000..e7b997f52
--- /dev/null
+++ b/mzLib/Proteomics/ProteolyticDigestion/CircularPeptideWithSetModifications.cs
@@ -0,0 +1,368 @@
+using Chemistry;
+using MassSpectrometry;
+using Omics.Digestion;
+using Omics.Fragmentation;
+using Omics.Fragmentation.Peptide;
+using Omics.Modifications;
+using Proteomics.AminoAcidPolymer;
+using System;
+using System.Collections.Generic;
+
+namespace Proteomics.ProteolyticDigestion
+{
+ ///
+ /// Represents a circular (head-to-tail cyclized) peptide with set modifications,
+ /// always bound to a parent.
+ ///
+ /// NUMBERING
+ /// ---------
+ /// All residue numbering is inherited from the parent .
+ /// Residue 1 is the first character of
+ /// (the canonical origin — the lexicographically smallest rotation of the ring).
+ /// Fragment annotations [s, e] use this numbering, with e > N for wrap-around fragments.
+ ///
+ /// MASS
+ /// ----
+ /// A circular peptide has no free termini. Its monoisotopic mass equals the sum of
+ /// residue masses plus modification masses, with no added H₂O:
+ /// MonoisotopicMass = base.MonoisotopicMass − H₂O
+ ///
+ /// FRAGMENTATION
+ /// -------------
+ /// Only is supported. A single backbone cleavage
+ /// opens the ring and produces a linear ion mass-equivalent to the precursor — no
+ /// additional sequence information is gained and these ions are not scored.
+ ///
+ /// enumerates all contiguous sub-sequences of length
+ /// [minLength, peptideLength−1] within this peptide's span in the parent ring,
+ /// including wrap-around fragments for full-ring peptides. Residue masses are looked
+ /// up from the parent ring via a doubled prefix-sum for O(1) sub-sequence mass
+ /// calculation.
+ ///
+ [Serializable]
+ public class CircularPeptideWithSetModifications : PeptideWithSetModifications
+ {
+ // ── Mass constant ─────────────────────────────────────────────────────
+ private static readonly double WaterMonoisotopicMass =
+ PeriodicTable.GetElement("H").PrincipalIsotope.AtomicMass * 2
+ + PeriodicTable.GetElement("O").PrincipalIsotope.AtomicMass;
+
+ // ── Cached mass arrays (lazy-initialized, immutable after first use) ──
+ private double[] _cachedRingMasses;
+ private double[] _cachedDoubledPrefix;
+
+ // ── Parent protein (typed) ────────────────────────────────────────────
+
+ ///
+ /// The parent . Always non-null; the constructor
+ /// enforces this. Use this reference to access the canonical numbering system
+ /// and ring-level properties (e.g., ).
+ ///
+ public CircularProtein CircularParent { get; }
+
+ // ── Constructor ───────────────────────────────────────────────────────
+
+ ///
+ /// Constructs a from a
+ /// parent.
+ ///
+ /// No canonicalization is performed here: the parent
+ /// guarantees its and all sub-sequences derived
+ /// from are already in canonical form.
+ ///
+ /// The intended way to obtain instances is via .
+ ///
+ ///
+ /// Thrown if is null.
+ ///
+ ///
+ /// Thrown if is not a .
+ ///
+ public CircularPeptideWithSetModifications(
+ Protein protein,
+ IDigestionParams digestionParams,
+ int oneBasedStartResidueInProtein,
+ int oneBasedEndResidueInProtein,
+ CleavageSpecificity cleavageSpecificity,
+ string peptideDescription,
+ int missedCleavages,
+ Dictionary allModsOneIsNterminus,
+ int numFixedMods,
+ string baseSequence = null)
+ : base(ValidateProtein(protein), digestionParams,
+ oneBasedStartResidueInProtein, oneBasedEndResidueInProtein,
+ cleavageSpecificity, peptideDescription, missedCleavages,
+ allModsOneIsNterminus, numFixedMods, baseSequence)
+ {
+ // ValidateProtein already guarantees protein is a non-null CircularProtein.
+ CircularParent = (CircularProtein)protein;
+
+ // Terminal modifications are chemically invalid on a circular peptide
+ // (no free N- or C-terminus). Reject them early so that mass accounting
+ // in MonoisotopicMass and FragmentInternally stays consistent.
+ if (allModsOneIsNterminus != null)
+ {
+ int peptideLen = oneBasedEndResidueInProtein - oneBasedStartResidueInProtein + 1;
+ if (allModsOneIsNterminus.ContainsKey(1))
+ throw new ArgumentException(
+ "N-terminal modifications are not valid for circular peptides (no free N-terminus).",
+ nameof(allModsOneIsNterminus));
+ if (allModsOneIsNterminus.ContainsKey(peptideLen + 2))
+ throw new ArgumentException(
+ "C-terminal modifications are not valid for circular peptides (no free C-terminus).",
+ nameof(allModsOneIsNterminus));
+ }
+ }
+
+ ///
+ /// Validates that is a non-null
+ /// before the base constructor executes. Called inline in the constructor initializer
+ /// so that callers receive descriptive exceptions instead of opaque crashes from the
+ /// base class.
+ ///
+ private static Protein ValidateProtein(Protein protein)
+ {
+ if (protein is null)
+ throw new ArgumentNullException(nameof(protein),
+ $"{nameof(CircularPeptideWithSetModifications)} requires a non-null protein.");
+
+ if (protein is not CircularProtein)
+ throw new ArgumentException(
+ $"{nameof(CircularPeptideWithSetModifications)} requires a " +
+ $"{nameof(CircularProtein)} parent, but received {protein.GetType().Name}.",
+ nameof(protein));
+
+ return protein;
+ }
+
+ // ── Mass override ─────────────────────────────────────────────────────
+
+ ///
+ /// Monoisotopic mass of the circular peptide: sum of residue and modification
+ /// masses with no added water (no free termini).
+ /// Equals the parent protein's
+ /// when unmodified.
+ ///
+ ///
+ /// Monoisotopic mass of the circular peptide: sum of residue and modification
+ /// masses with no added water (no free termini).
+ /// Overrides the base implementation to subtract H2O, reflecting the absence of
+ /// free termini in a head-to-tail cyclized peptide.
+ ///
+ public override double MonoisotopicMass =>
+ (double)ClassExtensions.RoundedDouble(
+ base.MonoisotopicMass - WaterMonoisotopicMass);
+
+ // ── Fragmentation ─────────────────────────────────────────────────────
+
+ ///
+ /// Generates internal fragment ions for this circular peptide.
+ ///
+ /// NUMBERING
+ /// ---------
+ /// Fragment positions are expressed in the parent 's
+ /// canonical 1-based numbering. For a fragment of length L starting at canonical
+ /// residue s:
+ /// FragmentNumber = s (1-based canonical start)
+ /// SecondaryFragmentNumber = s + L − 1 (end; exceeds N for wrap-around)
+ /// ResiduePosition = L (fragment length)
+ ///
+ /// MASS
+ /// ----
+ /// neutralMass = sum(residueMasses in parent ring over [s, s+L-1])
+ /// + nTermCap + cTermCap − H₂O
+ ///
+ /// SPAN RESTRICTION
+ /// ----------------
+ /// Only fragments within this peptide's span in the ring are generated — both
+ /// cleavage sites must fall within the peptide. For a full-ring peptide
+ /// (Length == N) this covers all ring positions including wrap-around. For a
+ /// sub-peptide (Length < N) wrap-around internal fragments are excluded because
+ /// they would require a cleavage outside the peptide's span.
+ ///
+ public override void FragmentInternally(
+ DissociationType dissociationType,
+ int minLengthOfFragments,
+ List products,
+ IFragmentationParams? fragmentationParams = null)
+ {
+ if (minLengthOfFragments < 1)
+ throw new ArgumentOutOfRangeException(nameof(minLengthOfFragments),
+ minLengthOfFragments,
+ $"{nameof(minLengthOfFragments)} must be at least 1.");
+
+ products.Clear();
+
+ int peptideLength = BaseSequence.Length;
+ int ringLength = CircularParent.Length;
+
+ // Internal fragments require at least 2 residues: one cleavage on each side
+ // of the fragment within the peptide span.
+ if (minLengthOfFragments < 2 || minLengthOfFragments >= peptideLength)
+ return;
+
+ // ── Build doubled prefix sum over the parent ring ─────────────────
+ // Masses come from the parent ring (not just the peptide subsequence)
+ // so that mod positions and residue masses are correct for the full ring.
+ // Arrays are cached because this peptide's state is immutable after
+ // construction, so the values never change between calls.
+ double[] ringMasses = GetOrBuildRingMasses();
+ int peptideStartInRing = OneBasedStartResidueInProtein - 1; // 0-based
+
+ double[] doubledPrefix = GetOrBuildDoubledPrefix(ringMasses, peptideStartInRing, peptideLength, ringLength);
+
+ // ── Ion type caps ─────────────────────────────────────────────────
+ var massCaps = DissociationTypeCollection
+ .GetNAndCTerminalMassShiftsForDissociationType(dissociationType);
+
+ List nTermProductTypes =
+ DissociationTypeCollection.GetTerminusSpecificProductTypesFromDissociation(
+ dissociationType, FragmentationTerminus.N);
+
+ List cTermProductTypes =
+ DissociationTypeCollection.GetTerminusSpecificProductTypesFromDissociation(
+ dissociationType, FragmentationTerminus.C);
+
+ // ── Enumerate internal fragments ──────────────────────────────────
+ // localStart: 0-based offset from this peptide's first residue.
+ //
+ // Sub-peptide (peptideLength < ringLength):
+ // Both cleavage sites must fall within [0, peptideLength), so
+ // maxLength = peptideLength - localStart - 1, preventing wrap-around.
+ //
+ // Full-ring peptide (peptideLength == ringLength):
+ // Every pair of backbone cleavage sites on the ring is valid. A fragment
+ // may wrap around the origin, so maxLength = peptideLength - 1 for all
+ // starting positions (the doubled prefix-sum handles the wrap).
+
+ bool isFullRing = peptideLength == ringLength;
+
+ for (int localStart = 0; localStart < peptideLength; localStart++)
+ {
+ int oneBasedStart = OneBasedStartResidueInProtein + localStart;
+ int maxLength = isFullRing
+ ? peptideLength - 1
+ : peptideLength - localStart - 1;
+
+ for (int length = minLengthOfFragments; length <= maxLength; length++)
+ {
+ double fragmentResidueMass =
+ doubledPrefix[localStart + length] - doubledPrefix[localStart];
+
+ int oneBasedEnd = oneBasedStart + length - 1;
+
+ for (int i = 0; i < nTermProductTypes.Count; i++)
+ {
+ double nTermCap = massCaps.Item1[i];
+ for (int j = 0; j < cTermProductTypes.Count; j++)
+ {
+ double cTermCap = massCaps.Item2[j];
+
+ products.Add(new Product(
+ productType: cTermProductTypes[j],
+ terminus: FragmentationTerminus.None,
+ neutralMass: fragmentResidueMass + nTermCap + cTermCap - WaterMonoisotopicMass,
+ fragmentNumber: oneBasedStart,
+ residuePosition: length,
+ neutralLoss: 0,
+ secondaryProductType: nTermProductTypes[i],
+ secondaryFragmentNumber: oneBasedEnd));
+ }
+ }
+ }
+ }
+ }
+
+ // ── Private helper ────────────────────────────────────────────────────
+
+ ///
+ /// Builds a residue mass array of length N (the parent ring length) from
+ /// the parent ring's canonical sequence, with this peptide's modifications
+ /// mapped back to their correct ring positions.
+ ///
+ /// This is the single mass array used by .
+ /// Using the full ring (not just the peptide subsequence) ensures that:
+ /// (a) residue masses are always read from the correct ring position, and
+ /// (b) the doubled prefix-sum correctly handles wrap-around for full-ring
+ /// peptides without re-entering the peptide's own residues out of order.
+ ///
+ /// Modifications in
+ /// use keys relative to the peptide's local sequence. We convert each to a
+ /// 0-based ring index:
+ /// ringIndex = (OneBasedStartResidueInProtein − 1 + localIndex) % ringLength
+ ///
+ ///
+ /// Returns the cached ring mass array, building it on first access.
+ ///
+ private double[] GetOrBuildRingMasses()
+ {
+ return _cachedRingMasses ??= BuildParentRingMassArray();
+ }
+
+ ///
+ /// Returns the cached doubled prefix-sum array, building it on first access.
+ ///
+ private double[] GetOrBuildDoubledPrefix(double[] ringMasses, int peptideStartInRing, int peptideLength, int ringLength)
+ {
+ if (_cachedDoubledPrefix != null)
+ return _cachedDoubledPrefix;
+
+ var doubledPrefix = new double[2 * peptideLength + 1];
+ for (int i = 0; i < 2 * peptideLength; i++)
+ {
+ int ringIndex = (peptideStartInRing + i) % ringLength;
+ doubledPrefix[i + 1] = doubledPrefix[i] + ringMasses[ringIndex];
+ }
+
+ _cachedDoubledPrefix = doubledPrefix;
+ return _cachedDoubledPrefix;
+ }
+
+ private double[] BuildParentRingMassArray()
+ {
+ int ringLength = CircularParent.Length;
+ string ringSeq = CircularParent.BaseSequence;
+ double[] masses = new double[ringLength];
+
+ for (int i = 0; i < ringLength; i++)
+ {
+ if (!Residue.TryGetResidue(ringSeq[i], out Residue res))
+ throw new InvalidOperationException(
+ $"Unrecognized amino acid '{ringSeq[i]}' at position {i + 1} " +
+ $"in the ring sequence of protein '{CircularParent.Accession}'. " +
+ $"Cannot compute fragment masses.");
+
+ masses[i] = res.MonoisotopicMass;
+ }
+
+ // Map each mod from its peptide-local key to its ring position.
+ // Keys: 1 → local index 0 (N-term mod)
+ // i+2 → local index i (side-chain, 0-based)
+ // n+2 → local index n-1 (C-term mod, n = peptide length)
+ int n = BaseSequence.Length;
+ int startInRing = OneBasedStartResidueInProtein - 1;
+
+ foreach (var kvp in AllModsOneIsNterminus)
+ {
+ // Only side-chain mods (keys 2..n+1) are valid; terminal mods
+ // are rejected by the constructor.
+ int localIndex = kvp.Key - 2;
+
+ if (localIndex < 0 || localIndex >= n)
+ throw new InvalidOperationException(
+ $"Unexpected modification key {kvp.Key} for circular peptide of length {n}. " +
+ "Only side-chain modifications (keys 2 to n+1) are supported.");
+
+ int ringIndex = (startInRing + localIndex) % ringLength;
+ masses[ringIndex] += kvp.Value.MonoisotopicMass.Value;
+ }
+
+ return masses;
+ }
+
+ // ── ToString ──────────────────────────────────────────────────────────
+
+ public override string ToString() =>
+ $"[Circular] {FullSequence} [{OneBasedStartResidueInProtein}-{OneBasedEndResidueInProtein}]";
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Proteomics/ProteolyticDigestion/PeptideWithSetModifications.cs b/mzLib/Proteomics/ProteolyticDigestion/PeptideWithSetModifications.cs
index 570356470..b9927025c 100644
--- a/mzLib/Proteomics/ProteolyticDigestion/PeptideWithSetModifications.cs
+++ b/mzLib/Proteomics/ProteolyticDigestion/PeptideWithSetModifications.cs
@@ -96,7 +96,12 @@ public PeptideWithSetModifications(string sequence, Dictionary NumMods - NumFixedMods;
- public double MonoisotopicMass
+ ///
+ /// The monoisotopic mass of this peptide, including residue masses, modification masses,
+ /// and water (for free termini). Virtual to allow derived types (e.g., circular peptides)
+ /// to adjust the mass calculation.
+ ///
+ public virtual double MonoisotopicMass
{
get
{
@@ -557,13 +562,15 @@ public void Fragment(DissociationType dissociationType, FragmentationTerminus fr
}
///
- /// Generates theoretical internal fragments for given dissociation type for this peptide.
+ /// Generates theoretical internal fragments for given dissociation type for this peptide.
/// The "products" parameter is filled with these fragments.
- /// The "minLengthOfFragments" parameter is the minimum number of amino acids for an internal fragment to be included
+ /// The "minLengthOfFragments" parameter is the minimum number of amino acids for an internal fragment to be included.
+ /// Virtual to allow derived types (e.g., circular peptides) to provide
+ /// topology-specific fragmentation.
/// TODO: Implement neutral losses (e.g. phospho)
/// TODO: Implement Star/Degree ions from CID
///
- public void FragmentInternally(DissociationType dissociationType, int minLengthOfFragments, List products, IFragmentationParams? fragmentationParams = null)
+ public virtual void FragmentInternally(DissociationType dissociationType, int minLengthOfFragments, List products, IFragmentationParams? fragmentationParams = null)
{
products.Clear();
diff --git a/mzLib/Test/CircularProteinsAndPeptide/CircularProteinDigestionTests.cs b/mzLib/Test/CircularProteinsAndPeptide/CircularProteinDigestionTests.cs
new file mode 100644
index 000000000..687f806f6
--- /dev/null
+++ b/mzLib/Test/CircularProteinsAndPeptide/CircularProteinDigestionTests.cs
@@ -0,0 +1,225 @@
+using NUnit.Framework;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System.Collections.Generic;
+using System.Linq;
+
+namespace Test.CircularSearch
+{
+ [TestFixture]
+ public static class CircularSearchEngineTests
+ {
+ ///
+ /// Verifies the exact digestion products of CircularProtein "PEPTIDEKAAK"
+ /// using trypsin, 2 missed cleavages, min peptide length 1.
+ ///
+ /// The circular protein canonicalises to "AAKPEPTIDEK" (alphabetically
+ /// earliest rotation). Trypsin then produces:
+ /// Linear: AAK (pos 1-3)
+ /// Linear: PEPTIDEK (pos 4-11)
+ /// Linear: AAKPEPTIDEK (pos 1-11, 1 missed cleavage)
+ /// Linear: PEPTIDEKAAK (pos 4-14, 1 missed cleavage, wraps)
+ /// Circular: AAKPEPTIDEK (two-cut cyclic product)
+ ///
+ [Test]
+ public static void Digest_PEPTIDEKAAK_ProducesExactExpectedProducts()
+ {
+ var circularProtein = CircularProtein.FromProtein(
+ new Protein("PEPTIDEKAAK", accession: "TEST01"));
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var allProducts = circularProtein
+ .Digest(digestionParams,
+ new List(),
+ new List())
+ .ToList();
+
+ // ── Linear products ───────────────────────────────────────────────
+
+ var linearProducts = allProducts
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ Assert.That(linearProducts.Count, Is.EqualTo(4),
+ "Expected exactly 4 linear (PeptideWithSetModifications) products.");
+
+ var aak = linearProducts.SingleOrDefault(p => p.BaseSequence == "AAK");
+ Assert.That(aak, Is.Not.Null, "Expected linear product AAK.");
+ Assert.That(aak.OneBasedStartResidue, Is.EqualTo(1));
+ Assert.That(aak.OneBasedEndResidue, Is.EqualTo(3));
+
+ var peptidek = linearProducts.SingleOrDefault(p => p.BaseSequence == "PEPTIDEK");
+ Assert.That(peptidek, Is.Not.Null, "Expected linear product PEPTIDEK.");
+ Assert.That(peptidek.OneBasedStartResidue, Is.EqualTo(4));
+ Assert.That(peptidek.OneBasedEndResidue, Is.EqualTo(11));
+
+ var aakpeptidek = linearProducts.SingleOrDefault(p => p.BaseSequence == "AAKPEPTIDEK");
+ Assert.That(aakpeptidek, Is.Not.Null, "Expected linear product AAKPEPTIDEK.");
+ Assert.That(aakpeptidek.OneBasedStartResidue, Is.EqualTo(1));
+ Assert.That(aakpeptidek.OneBasedEndResidue, Is.EqualTo(11));
+
+ var peptidekaak = linearProducts.SingleOrDefault(p => p.BaseSequence == "PEPTIDEKAAK");
+ Assert.That(peptidekaak, Is.Not.Null, "Expected linear product PEPTIDEKAAK.");
+ Assert.That(peptidekaak.OneBasedStartResidue, Is.EqualTo(4));
+ Assert.That(peptidekaak.OneBasedEndResidue, Is.EqualTo(14));
+
+ // ── Circular product ──────────────────────────────────────────────
+
+ var circularProducts = allProducts
+ .OfType()
+ .ToList();
+
+ Assert.That(circularProducts.Count, Is.EqualTo(1),
+ "Expected exactly 1 CircularPeptideWithSetModifications.");
+
+ var circPeptide = circularProducts.Single();
+ Assert.That(circPeptide.BaseSequence, Is.EqualTo("AAKPEPTIDEK"));
+
+ Assert.That(allProducts.Count, Is.EqualTo(5),
+ "Expected exactly 5 digestion products in total.");
+ }
+
+ ///
+ /// Same CircularProtein and DigestionParams as above, but with variable
+ /// phosphorylation on T.
+ ///
+ /// Canonical sequence: A-A-K-P-E-P-T-I-D-E-K (N=11)
+ /// 1-2-3-4-5-6-7-8-9-10-11
+ /// T is at canonical position 7.
+ ///
+ /// Key convention: AllModsOneIsNterminus key = localIndex + 2,
+ /// where localIndex = (canonical position of T) - (OneBasedStartResidue), 0-based.
+ ///
+ /// Products and phosphorylation keys:
+ ///
+ /// AAK [1-3] no T → 1 form, no phospho
+ /// PEPTIDEK [4-11] T at canonical 7: localIndex=7-4=3, key=5 → 2 forms
+ /// AAKPEPTIDEK [1-11] T at canonical 7: localIndex=7-1=6, key=8 → 2 forms
+ /// PEPTIDEKAAK [4-14] T at canonical 7: localIndex=7-4=3, key=5 → 2 forms
+ /// Circular AAKPEPTIDEK [1-11] T at canonical 7: localIndex=7-1=6, key=8 → 2 forms
+ ///
+ /// Total: 1 + 2 + 2 + 2 + 2 = 9 products.
+ ///
+ [Test]
+ public static void Digest_PEPTIDEKAAK_WithPhosphoT_ProducesCorrectProducts()
+ {
+ ModificationMotif.TryGetMotif("T", out ModificationMotif tMotif);
+ var phospho = new Modification(
+ _originalId: "Phosphorylation on T",
+ _modificationType: "Common Variable",
+ _target: tMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 79.966331);
+
+ var circularProtein = CircularProtein.FromProtein(
+ new Protein("PEPTIDEKAAK", accession: "TEST01"));
+
+ Assert.That(circularProtein.BaseSequence, Is.EqualTo("AAKPEPTIDEK"));
+ Assert.That(circularProtein.BaseSequence[6], Is.EqualTo('T'),
+ "T is at 1-based canonical position 7 (0-based index 6).");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var allProducts = circularProtein
+ .Digest(digestionParams,
+ new List(),
+ new List { phospho })
+ .ToList();
+
+ Assert.That(allProducts.Count, Is.EqualTo(9),
+ "Expected 9 total products: 5 unmodified + 4 phosphorylated (one per T-containing product).");
+
+ // ── Linear products ───────────────────────────────────────────────
+
+ var linearProducts = allProducts
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ Assert.That(linearProducts.Count, Is.EqualTo(7),
+ "Expected 7 linear products: AAK(1) + PEPTIDEK(2) + AAKPEPTIDEK(2) + PEPTIDEKAAK(2).");
+
+ // AAK [1-3] — no T → exactly 1 form, no phosphorylation
+ var aakForms = linearProducts.Where(p => p.BaseSequence == "AAK").ToList();
+ Assert.That(aakForms.Count, Is.EqualTo(1), "AAK has no T: 1 form only.");
+ Assert.That(aakForms[0].AllModsOneIsNterminus, Is.Empty,
+ "AAK: no modification expected.");
+
+ // PEPTIDEK [4-11] — T at canonical pos 7, localIndex=3, key=5
+ var peptidekForms = linearProducts.Where(p => p.BaseSequence == "PEPTIDEK").ToList();
+ Assert.That(peptidekForms.Count, Is.EqualTo(2), "PEPTIDEK: 2 forms (±phospho).");
+ var peptidekUnmod = peptidekForms.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var peptidekPhospho = peptidekForms.Single(p => p.AllModsOneIsNterminus.Count == 1);
+ Assert.That(peptidekPhospho.AllModsOneIsNterminus.ContainsKey(5), Is.True,
+ "PEPTIDEK phospho key: T at canonical 7, start 4 → localIndex=3, key=5.");
+ Assert.That(peptidekPhospho.AllModsOneIsNterminus[5].OriginalId,
+ Does.Contain("Phosphorylation"));
+ Assert.That(
+ peptidekPhospho.MonoisotopicMass - peptidekUnmod.MonoisotopicMass,
+ Is.EqualTo(79.966331).Within(1e-5),
+ "PEPTIDEK: phospho mass shift = +79.966331 Da.");
+
+ // AAKPEPTIDEK [1-11] — T at canonical pos 7, localIndex=6, key=8
+ var aakpeptidekForms = linearProducts.Where(p => p.BaseSequence == "AAKPEPTIDEK").ToList();
+ Assert.That(aakpeptidekForms.Count, Is.EqualTo(2), "AAKPEPTIDEK: 2 forms (±phospho).");
+ var aakpeptidekUnmod = aakpeptidekForms.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var aakpeptidekPhospho = aakpeptidekForms.Single(p => p.AllModsOneIsNterminus.Count == 1);
+ Assert.That(aakpeptidekPhospho.AllModsOneIsNterminus.ContainsKey(8), Is.True,
+ "AAKPEPTIDEK phospho key: T at canonical 7, start 1 → localIndex=6, key=8.");
+ Assert.That(aakpeptidekPhospho.AllModsOneIsNterminus[8].OriginalId,
+ Does.Contain("Phosphorylation"));
+ Assert.That(
+ aakpeptidekPhospho.MonoisotopicMass - aakpeptidekUnmod.MonoisotopicMass,
+ Is.EqualTo(79.966331).Within(1e-5),
+ "AAKPEPTIDEK: phospho mass shift = +79.966331 Da.");
+
+ // PEPTIDEKAAK [4-14] — T at canonical pos 7, localIndex=3, key=5
+ var peptidekaakForms = linearProducts.Where(p => p.BaseSequence == "PEPTIDEKAAK").ToList();
+ Assert.That(peptidekaakForms.Count, Is.EqualTo(2), "PEPTIDEKAAK: 2 forms (±phospho).");
+ var peptidekaakUnmod = peptidekaakForms.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var peptidekaakPhospho = peptidekaakForms.Single(p => p.AllModsOneIsNterminus.Count == 1);
+ Assert.That(peptidekaakPhospho.AllModsOneIsNterminus.ContainsKey(5), Is.True,
+ "PEPTIDEKAAK phospho key: T at canonical 7, start 4 → localIndex=3, key=5.");
+ Assert.That(peptidekaakPhospho.AllModsOneIsNterminus[5].OriginalId,
+ Does.Contain("Phosphorylation"));
+ Assert.That(
+ peptidekaakPhospho.MonoisotopicMass - peptidekaakUnmod.MonoisotopicMass,
+ Is.EqualTo(79.966331).Within(1e-5),
+ "PEPTIDEKAAK: phospho mass shift = +79.966331 Da.");
+
+ // ── Circular products ─────────────────────────────────────────────
+ // AAKPEPTIDEK [1-11] — T at canonical pos 7, localIndex=6, key=8
+
+ var circularProducts = allProducts
+ .OfType()
+ .ToList();
+
+ Assert.That(circularProducts.Count, Is.EqualTo(2),
+ "Expected 2 circular products: unmodified and phosphorylated AAKPEPTIDEK.");
+
+ var circUnmod = circularProducts.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var circPhospho = circularProducts.Single(p => p.AllModsOneIsNterminus.Count == 1);
+
+ Assert.That(circUnmod.BaseSequence, Is.EqualTo("AAKPEPTIDEK"));
+ Assert.That(circPhospho.BaseSequence, Is.EqualTo("AAKPEPTIDEK"));
+
+ Assert.That(circPhospho.AllModsOneIsNterminus.ContainsKey(8), Is.True,
+ "Circular AAKPEPTIDEK phospho key: T at canonical 7, start 1 → localIndex=6, key=8.");
+ Assert.That(circPhospho.AllModsOneIsNterminus[8].OriginalId,
+ Does.Contain("Phosphorylation"));
+ Assert.That(
+ circPhospho.MonoisotopicMass - circUnmod.MonoisotopicMass,
+ Is.EqualTo(79.966331).Within(1e-5),
+ "Circular AAKPEPTIDEK: phospho mass shift = +79.966331 Da.");
+ }
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinLocalizedModRegression.cs b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinLocalizedModRegression.cs
new file mode 100644
index 000000000..b0f077bb1
--- /dev/null
+++ b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinLocalizedModRegression.cs
@@ -0,0 +1,202 @@
+using NUnit.Framework;
+using Omics;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using UsefulProteomicsDatabases;
+
+namespace Test.CircularSearch
+{
+ ///
+ /// Regression tests for localized-modification handling in
+ /// . Each test is constructed to FAIL on the
+ /// pre-fix code and pass after the corresponding fix:
+ ///
+ /// • Wrap-around fragments must carry XML/database-localized mods on the wrapped
+ /// (second-copy) residues — the proxy now replicates localized-mod keys onto
+ /// positions N+1..2N-1.
+ /// • Intact-ring forms must include annotated localized mods even when they are
+ /// not supplied via variableModifications, matching the linear path.
+ /// • The full-ring variable-mod enumeration must be bounded by
+ /// .
+ /// • NumFixedMods must not count a fixed mod that a variable mod overrides
+ /// at the same residue.
+ ///
+ [TestFixture]
+ public static class TestCircularProteinLocalizedModRegression
+ {
+ private const double PhosphoMass = 79.966331;
+ private const double FixedSerineMass = 100.0;
+ private const double Tol = 1e-3;
+
+ [OneTimeSetUp]
+ public static void OneTimeSetup()
+ {
+ Loaders.LoadElements();
+ }
+
+ // ── Helpers ─────────────────────────────────────────────────────────────
+
+ private static Modification BuildPhospho()
+ {
+ ModificationMotif.TryGetMotif("S", out ModificationMotif motifS);
+ return new Modification(
+ _originalId: "Phospho",
+ _modificationType: "Test",
+ _target: motifS,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: PhosphoMass);
+ }
+
+ private static Modification BuildFixedSerineMod()
+ {
+ ModificationMotif.TryGetMotif("S", out ModificationMotif motifS);
+ return new Modification(
+ _originalId: "FixedSerineMod",
+ _modificationType: "Test",
+ _target: motifS,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: FixedSerineMass);
+ }
+
+ ///
+ /// Builds a from an already-canonical sequence
+ /// (so positions are preserved through )
+ /// carrying a single localized modification at .
+ ///
+ private static CircularProtein BuildCircularWithLocalizedMod(
+ string canonicalSequence, int oneBasedPos, Modification mod)
+ {
+ var mods = new Dictionary>
+ {
+ { oneBasedPos, new List { mod } }
+ };
+ var source = new Protein(canonicalSequence, "TESTACC", oneBasedModifications: mods);
+ return CircularProtein.FromProtein(source);
+ }
+
+ private static bool CarriesPhospho(IBioPolymerWithSetMods peptide) =>
+ peptide.AllModsOneIsNterminus.Values.Any(m =>
+ m.MonoisotopicMass.HasValue &&
+ Math.Abs(m.MonoisotopicMass.Value - PhosphoMass) < Tol);
+
+ // ── Fix A (Critical / Codex #1): wrap-around localized mods ───────────────
+
+ ///
+ /// Ring "ASDKEFGHR" (N=9): trypsin cuts after K(4) and R(9). With one missed
+ /// cleavage the proxy yields the wrap-around product "EFGHRASDK" (ring 5..9 + 1..4),
+ /// whose only serine is the wrapped residue at ring position 2 (proxy position 11).
+ /// The phospho is annotated as a LOCALIZED mod (not passed as a variable mod), so it
+ /// is applied by position; the wrapped S can only receive it if the proxy carries the
+ /// localized-mod key at N+2 = 11. Pre-fix, that key was absent and the mod was dropped.
+ ///
+ [Test]
+ public static void WrapAroundFragment_CarriesLocalizedModOnWrappedResidue()
+ {
+ var phospho = BuildPhospho();
+ var circular = BuildCircularWithLocalizedMod("ASDKEFGHR", oneBasedPos: 2, phospho);
+
+ var dp = new DigestionParams(protease: "trypsin", maxMissedCleavages: 2, minPeptideLength: 1);
+
+ var wrapPeptides = circular
+ .Digest(dp, new List(), new List())
+ .OfType()
+ .Where(p => p.BaseSequence == "EFGHRASDK")
+ .ToList();
+
+ Assert.That(wrapPeptides, Is.Not.Empty,
+ "Expected the wrap-around product \"EFGHRASDK\" to be produced.");
+ Assert.That(wrapPeptides.Any(CarriesPhospho), Is.True,
+ "The wrap-around peptide must carry the annotated phosphoserine on its wrapped S residue " +
+ "(proxy position 11). Pre-fix the localized mod was silently dropped on the wrapped portion.");
+ }
+
+ // ── Fix B (Codex #2): full-ring includes annotated localized mods ─────────
+
+ ///
+ /// Ring "ALLLLALPGS" (N=10) has no K/R, so trypsin yields only the intact-ring
+ /// product. The phospho is annotated on the S (position 10) but NOT passed as a
+ /// variable mod. The linear path applies OneBasedPossibleLocalizedModifications as
+ /// variable mods; the full-ring branch must too, or it drops the modified isoform.
+ ///
+ [Test]
+ public static void FullRing_IncludesAnnotatedLocalizedMod_WithoutVariableModsArg()
+ {
+ var phospho = BuildPhospho();
+ var circular = BuildCircularWithLocalizedMod("ALLLLALPGS", oneBasedPos: 10, phospho);
+
+ var dp = new DigestionParams(protease: "trypsin", maxMissedCleavages: 2, minPeptideLength: 1);
+
+ var rings = circular
+ .Digest(dp, new List(), new List())
+ .OfType()
+ .ToList();
+
+ Assert.That(rings, Is.Not.Empty, "Expected the intact-ring product.");
+ Assert.That(rings.Any(CarriesPhospho), Is.True,
+ "The intact-ring form must include the annotated localized phospho isoform " +
+ "even though it was not supplied via variableModifications.");
+ }
+
+ // ── Fix C (Major): full-ring variable-mod isoform cap ─────────────────────
+
+ ///
+ /// Ring "ASASASLLPG" (N=10) has three serines (positions 2,4,6) and no K/R. With
+ /// phospho as a variable mod and MaxMods=2 there are six distinct modified ring
+ /// forms; MaxModificationIsoforms=2 must bound how many are emitted.
+ ///
+ [Test]
+ public static void FullRing_VariableModForms_BoundedByMaxModificationIsoforms()
+ {
+ var phospho = BuildPhospho();
+ var circular = CircularProtein.FromProtein(new Protein("ASASASLLPG", "TESTACC"));
+
+ var dp = new DigestionParams(protease: "trypsin", maxMissedCleavages: 2,
+ minPeptideLength: 1, maxModificationIsoforms: 2, maxModsForPeptides: 2);
+
+ var phosphoRingForms = circular
+ .Digest(dp, new List(), new List { phospho })
+ .OfType()
+ .Count(CarriesPhospho);
+
+ Assert.That(phosphoRingForms, Is.GreaterThan(0),
+ "At least one modified ring form should be produced.");
+ Assert.That(phosphoRingForms, Is.LessThanOrEqualTo(2),
+ "Modified ring forms must be capped at MaxModificationIsoforms (2); " +
+ "pre-fix the enumeration was uncapped and produced six.");
+ }
+
+ // ── Fix D (Major): NumFixedMods not overcounted on override ───────────────
+
+ ///
+ /// Ring "ASLLLLLLPG" (N=10) has a single serine (position 2) and no K/R. A fixed
+ /// mod and a variable phospho both target that S. In the ring form where the variable
+ /// phospho occupies the S, the fixed mod is overridden, so NumFixedMods must be 0.
+ ///
+ [Test]
+ public static void FullRing_NumFixedMods_NotOvercounted_WhenVariableOverridesFixed()
+ {
+ var phospho = BuildPhospho();
+ var fixedSerine = BuildFixedSerineMod();
+ var circular = CircularProtein.FromProtein(new Protein("ASLLLLLLPG", "TESTACC"));
+
+ var dp = new DigestionParams(protease: "trypsin", maxMissedCleavages: 2, minPeptideLength: 1);
+
+ var rings = circular
+ .Digest(dp, new List { fixedSerine }, new List { phospho })
+ .OfType()
+ .ToList();
+
+ var phosphoForm = rings.FirstOrDefault(CarriesPhospho);
+
+ Assert.That(phosphoForm, Is.Not.Null,
+ "Expected a ring form where the serine carries the variable phospho.");
+ Assert.That(phosphoForm.NumFixedMods, Is.EqualTo(0),
+ "When the variable phospho overrides the fixed mod at the same serine, " +
+ "NumFixedMods must not count the overridden fixed mod (pre-fix it reported 1).");
+ }
+ }
+}
diff --git a/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoading.cs b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoading.cs
new file mode 100644
index 000000000..c3247ffdb
--- /dev/null
+++ b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoading.cs
@@ -0,0 +1,153 @@
+using NUnit.Framework;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using UsefulProteomicsDatabases;
+
+namespace Test.CircularSearch
+{
+ [TestFixture]
+ public static class TestCircularProteinXmlLoading
+ {
+ [OneTimeSetUp]
+ public static void OneTimeSetup()
+ {
+ Loaders.LoadElements();
+ }
+
+ ///
+ /// Verifies that a UniProt-format protein XML database can be read via
+ /// and that each resulting
+ /// entry can be successfully converted into a
+ /// via .
+ ///
+ /// The test database (simpleCircularProtein.xml) contains one entry:
+ /// Accession : P05067
+ /// Sequence : LPGLALLLLA (length 10)
+ /// Full name : Amyloid-beta precursor protein
+ /// Organism : Homo sapiens
+ /// Gene : APP
+ ///
+ /// The expected canonical rotation of "LPGLALLLLA" is "ALLLLALPGL"
+ /// (lexicographically smallest rotation, offset 4).
+ ///
+ [Test]
+ public static void LoadProteinXml_SingleEntry_ConvertsToCircularProtein()
+ {
+ string xmlPath = Path.Combine(TestContext.CurrentContext.TestDirectory, "DataFiles", "simpleCircularProtein.xml");
+
+ // ── Load proteins from XML ────────────────────────────────────────
+ List proteins = ProteinDbLoader.LoadProteinXML(
+ xmlPath,
+ generateTargets: true,
+ decoyType: DecoyType.None,
+ allKnownModifications: new List(),
+ isContaminant: false,
+ modTypesToExclude: new List(),
+ unknownModifications: out _);
+
+ Assert.That(proteins, Is.Not.Null);
+ Assert.That(proteins, Is.Not.Empty,
+ "Expected at least one protein to be loaded from the XML database.");
+
+ // ── Convert each Protein to CircularProtein ───────────────────────
+ List circularProteins = proteins
+ .Select(p => CircularProtein.FromProtein(p))
+ .ToList();
+
+ Assert.That(circularProteins, Has.Count.EqualTo(proteins.Count),
+ "Every loaded Protein should convert to a CircularProtein without loss.");
+
+ Assert.That(circularProteins.All(cp => cp is CircularProtein), Is.True,
+ "FromProtein must return CircularProtein instances.");
+
+ // ── Validate the single entry ─────────────────────────────────────
+ CircularProtein entry = circularProteins.Single(cp => cp.Accession == "P05067");
+
+ Assert.Multiple(() =>
+ {
+ // Sequence must be the canonical (lexicographically smallest) rotation
+ // of the original "LPGLALLLLA".
+ // Rotations and their canonical: offset 4 → "ALLLLALPGL"
+ Assert.That(entry.BaseSequence, Is.EqualTo("ALLLLALPGL"),
+ "BaseSequence must be the canonical rotation of the original XML sequence.");
+
+ Assert.That(entry.CircularSequence, Is.EqualTo(entry.BaseSequence),
+ "CircularSequence must equal BaseSequence for a CircularProtein.");
+
+ Assert.That(entry.Length, Is.EqualTo(10),
+ "Circular protein length must equal the original sequence length.");
+
+ Assert.That(entry.FullName, Is.EqualTo("Amyloid-beta precursor protein"),
+ "FullName must be read from the XML element.");
+
+ Assert.That(entry.Organism, Is.EqualTo("Homo sapiens"),
+ "Organism must be read from the XML element.");
+
+ Assert.That(entry.GeneNames.Any(g => g.Item2 == "APP"), Is.True,
+ "Gene name 'APP' must be read from the XML element.");
+
+ Assert.That(entry.DatabaseFilePath, Does.EndWith("simpleCircularProtein.xml"),
+ "DatabaseFilePath must reflect the source XML file.");
+
+ Assert.That(entry.IsDecoy, Is.False,
+ "A standard target entry must not be flagged as a decoy.");
+
+ Assert.That(entry.IsContaminant, Is.False,
+ "The protein was loaded as a non-contaminant.");
+
+ // CyclicMonoisotopicMass must be positive and finite
+ Assert.That(entry.CyclicMonoisotopicMass, Is.GreaterThan(0),
+ "CyclicMonoisotopicMass must be a positive value.");
+
+ Assert.That(double.IsNaN(entry.CyclicMonoisotopicMass), Is.False,
+ "CyclicMonoisotopicMass must not be NaN.");
+
+ Assert.That(double.IsInfinity(entry.CyclicMonoisotopicMass), Is.False,
+ "CyclicMonoisotopicMass must not be infinite.");
+ });
+ }
+
+ ///
+ /// Verifies that the circular protein loaded from XML can be digested
+ /// without throwing, and that all resulting peptides reference the
+ /// correct parent.
+ ///
+ [Test]
+ public static void LoadProteinXml_CircularProtein_CanBeDigested()
+ {
+ string xmlPath = Path.Combine(TestContext.CurrentContext.TestDirectory, "DataFiles", "simpleCircularProtein.xml");
+
+ List proteins = ProteinDbLoader.LoadProteinXML(
+ xmlPath,
+ generateTargets: true,
+ decoyType: DecoyType.None,
+ allKnownModifications: new List(),
+ isContaminant: false,
+ modTypesToExclude: new List(),
+ unknownModifications: out _);
+
+ CircularProtein circular = CircularProtein.FromProtein(
+ proteins.Single(p => p.Accession == "P05067"));
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var peptides = circular
+ .Digest(digestionParams, new List(), new List())
+ .Cast()
+ .ToList();
+
+ Assert.That(peptides, Is.Not.Empty,
+ "Digestion of the XML-loaded CircularProtein must yield at least one peptide.");
+
+ Assert.That(peptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True,
+ "Every digestion product must reference the CircularProtein as its parent.");
+ }
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoadingWithMod.cs b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoadingWithMod.cs
new file mode 100644
index 000000000..19b79df86
--- /dev/null
+++ b/mzLib/Test/CircularProteinsAndPeptide/TestCircularProteinXmlLoadingWithMod.cs
@@ -0,0 +1,292 @@
+using NUnit.Framework;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using UsefulProteomicsDatabases;
+
+namespace Test.CircularSearch
+{
+ ///
+ /// Tests that a UniProt-format protein XML database containing a
+ /// <feature type="modified residue" description="Phosphoserine">
+ /// annotation at position 4 can be read via
+ /// and correctly converted to a
+ /// via ,
+ /// with the modification position remapped to the canonical rotation.
+ ///
+ /// DATABASE: simpleCircularProteinWithMod.xml
+ /// ------------------------------------------
+ /// Accession : P05067
+ /// Sequence : LPGSALLLLA (length 10, S at one-based position 4)
+ /// Feature : Phosphoserine at position 4
+ ///
+ /// CANONICALIZATION
+ /// ----------------
+ /// The lexicographically smallest rotation of "LPGSALLLLA" is "ALLLLALPGS"
+ /// (offset 4).
+ ///
+ /// Original: L P G S A L L L L A (positions 1-10)
+ /// Canonical: A L L L L A L P G S (positions 1-10)
+ ///
+ /// RemapModifications formula:
+ /// newPos = (oldPos - 1 - offset + N) % N + 1
+ /// newPos = (4 - 1 - 4 + 10) % 10 + 1 = 9 % 10 + 1 = 10
+ ///
+ /// The phosphoserine must appear at canonical position 10, which is the S
+ /// residue at the end of "ALLLLALPGS".
+ ///
+ /// MOD MATCHING
+ /// ------------
+ /// matches the XML feature
+ /// description ("Phosphoserine") against the keys of IdToPossibleMods,
+ /// which are built by stripping " on X" from each known mod's OriginalId.
+ /// Therefore the mod passed as allKnownModifications must use
+ /// _originalId: "Phosphoserine" (not "Phosphorylation on S") so that
+ /// the stripped key "Phosphoserine" matches the XML description exactly.
+ ///
+ [TestFixture]
+ public static class TestCircularProteinXmlLoadingWithMod
+ {
+ // ── Constants ─────────────────────────────────────────────────────────
+
+ private const string OriginalSequence = "LPGSALLLLA";
+ private const string CanonicalSequence = "ALLLLALPGS";
+ private const int CanonicalOffset = 4;
+
+ // One-based position of S in the original sequence.
+ private const int PhosphoPositionOriginal = 4;
+
+ // One-based position of S in the canonical sequence after remapping:
+ // (4 - 1 - 4 + 10) % 10 + 1 = 10
+ private const int PhosphoPositionCanonical = 10;
+
+ private const string Accession = "P05067";
+ private const double PhosphoMass = 79.966331;
+ private const double MassTolerance = 1e-5;
+
+ [OneTimeSetUp]
+ public static void OneTimeSetup()
+ {
+ Loaders.LoadElements();
+ }
+
+ // ── Helper ────────────────────────────────────────────────────────────
+
+ ///
+ /// Builds the phosphoserine whose OriginalId
+ /// ("Phosphoserine") matches the XML feature description exactly, enabling
+ /// to resolve it via
+ /// IdToPossibleMods.
+ ///
+ private static Modification BuildPhosphoSerineMod()
+ {
+ ModificationMotif.TryGetMotif("S", out ModificationMotif motifS);
+ return new Modification(
+ _originalId: "Phosphoserine",
+ _modificationType: "UniProt",
+ _target: motifS,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: PhosphoMass);
+ }
+
+ private static string XmlPath => Path.Combine(
+ TestContext.CurrentContext.TestDirectory,
+ "DataFiles",
+ "simpleCircularProteinWithMod.xml");
+
+ // ── Tests ─────────────────────────────────────────────────────────────
+
+ ///
+ /// Verifies that the XML database loads without error, that the single
+ /// entry converts to a , and that the
+ /// phosphoserine modification is remapped from original position 4 to
+ /// canonical position 10.
+ ///
+ /// Canonical sequence "ALLLLALPGS":
+ /// Position: 1234567890
+ ///
+ /// Position 10 = 'S' — the only serine in the ring.
+ /// Position 4 = 'L' — must carry no modification after remapping.
+ ///
+ [Test]
+ public static void LoadProteinXmlWithMod_PhosphoSerineRemappedToCanonicalPosition()
+ {
+ List proteins = ProteinDbLoader.LoadProteinXML(
+ XmlPath,
+ generateTargets: true,
+ decoyType: DecoyType.None,
+ allKnownModifications: new List { BuildPhosphoSerineMod() },
+ isContaminant: false,
+ modTypesToExclude: new List(),
+ unknownModifications: out _);
+
+ Assert.That(proteins, Is.Not.Null.And.Not.Empty,
+ "Expected at least one protein to be loaded from the XML database.");
+
+ Protein source = proteins.Single(p => p.Accession == Accession);
+
+ // ── Convert to CircularProtein ────────────────────────────────────
+ CircularProtein circular = CircularProtein.FromProtein(source);
+
+ Assert.Multiple(() =>
+ {
+ // ── Sequence ──────────────────────────────────────────────────
+ Assert.That(circular.BaseSequence, Is.EqualTo(CanonicalSequence),
+ "BaseSequence must be the canonical rotation of the original XML sequence.");
+
+ Assert.That(circular.Length, Is.EqualTo(OriginalSequence.Length),
+ "Circular protein length must equal the original sequence length.");
+
+ // ── Modification is present after canonicalization ────────────
+ Assert.That(circular.OneBasedPossibleLocalizedModifications, Is.Not.Empty,
+ "The phosphoserine modification must survive the XML read and canonicalization.");
+
+ // ── Remapped to canonical position 10 ─────────────────────────
+ Assert.That(
+ circular.OneBasedPossibleLocalizedModifications.ContainsKey(PhosphoPositionCanonical),
+ Is.True,
+ $"Phosphoserine must be at canonical position {PhosphoPositionCanonical} " +
+ $"(the S in \"{CanonicalSequence}\"), not at the original position {PhosphoPositionOriginal}.");
+
+ // ── The residue at the remapped position is indeed S ──────────
+ Assert.That(circular.BaseSequence[PhosphoPositionCanonical - 1], Is.EqualTo('S'),
+ $"Canonical position {PhosphoPositionCanonical} must be residue 'S'.");
+
+ // ── Modification mass ─────────────────────────────────────────
+ var modsAtCanonical = circular.OneBasedPossibleLocalizedModifications[PhosphoPositionCanonical];
+ Assert.That(modsAtCanonical, Is.Not.Empty,
+ $"Modification list at canonical position {PhosphoPositionCanonical} must not be empty.");
+
+ double? mass = modsAtCanonical.First().MonoisotopicMass;
+ Assert.That(mass, Is.Not.Null,
+ "Phosphoserine must have a non-null monoisotopic mass.");
+ Assert.That(mass.Value, Is.EqualTo(PhosphoMass).Within(MassTolerance),
+ $"Phosphoserine mass must be ~{PhosphoMass} Da.");
+
+ // ── Original position 4 carries no modification ───────────────
+ // After remapping, canonical position 4 = 'L', which is not a
+ // serine and must not bear the phospho mod.
+ Assert.That(
+ circular.OneBasedPossibleLocalizedModifications.ContainsKey(PhosphoPositionOriginal),
+ Is.False,
+ $"No modification should remain at canonical position {PhosphoPositionOriginal} " +
+ $"(residue '{circular.BaseSequence[PhosphoPositionOriginal - 1]}') after remapping.");
+
+ // ── Metadata ──────────────────────────────────────────────────
+ Assert.That(circular.Accession, Is.EqualTo(Accession));
+ Assert.That(circular.FullName, Is.EqualTo("Amyloid-beta precursor protein"));
+ Assert.That(circular.Organism, Is.EqualTo("Homo sapiens"));
+ Assert.That(circular.GeneNames.Any(g => g.Item2 == "APP"), Is.True);
+ Assert.That(circular.IsDecoy, Is.False);
+ Assert.That(circular.IsContaminant, Is.False);
+ });
+ }
+
+ ///
+ /// Guards against silent mod-resolution failure. If the OriginalId of the
+ /// known mod does not match the XML feature description, the parser silently
+ /// places the feature in unknownModifications and the protein carries
+ /// no modification at all — a failure mode that is invisible without this test.
+ ///
+ [Test]
+ public static void LoadProteinXmlWithMod_PhosphoSerineNotInUnknownModifications()
+ {
+ ProteinDbLoader.LoadProteinXML(
+ XmlPath,
+ generateTargets: true,
+ decoyType: DecoyType.None,
+ allKnownModifications: new List { BuildPhosphoSerineMod() },
+ isContaminant: false,
+ modTypesToExclude: new List(),
+ unknownModifications: out var unknownMods);
+
+ Assert.That(
+ unknownMods.ContainsKey("Phosphoserine"),
+ Is.False,
+ "Phosphoserine must be resolved against allKnownModifications and must NOT " +
+ "appear in unknownModifications. If it does, the OriginalId does not match " +
+ "the XML feature description.");
+ }
+
+ ///
+ /// Verifies that when the circular protein is digested with phosphoserine
+ /// as a variable modification, at least one peptide form carries a mass
+ /// shift of ~79.97 Da, and that the modification always lands on an S residue.
+ ///
+ /// "ALLLLALPGS" has no K or R, so trypsin makes zero cuts and the ring is
+ /// returned as one CircularPeptideWithSetModifications. With phosphoserine
+ /// as a variable mod we expect exactly two forms: unmodified and phosphorylated.
+ ///
+ [Test]
+ public static void LoadProteinXmlWithMod_VariableDigestionProducesPhosphorylatedForm()
+ {
+ var phosphoMod = BuildPhosphoSerineMod();
+
+ List proteins = ProteinDbLoader.LoadProteinXML(
+ XmlPath,
+ generateTargets: true,
+ decoyType: DecoyType.None,
+ allKnownModifications: new List { phosphoMod },
+ isContaminant: false,
+ modTypesToExclude: new List(),
+ unknownModifications: out _);
+
+ CircularProtein circular = CircularProtein.FromProtein(
+ proteins.Single(p => p.Accession == Accession));
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var allPeptides = circular
+ .Digest(digestionParams,
+ allKnownFixedModifications: new List(),
+ variableModifications: new List { phosphoMod })
+ .Cast()
+ .ToList();
+
+ Assert.That(allPeptides, Is.Not.Empty,
+ "Digestion must yield at least one peptide.");
+
+ // All products must be parented to this CircularProtein.
+ Assert.That(allPeptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True,
+ "Every digestion product must reference the CircularProtein as its parent.");
+
+ // At least one form must carry the phospho mass shift.
+ var phosphoPeptides = allPeptides
+ .Where(p => p.AllModsOneIsNterminus.Values.Any(m =>
+ m.MonoisotopicMass.HasValue &&
+ Math.Abs(m.MonoisotopicMass.Value - PhosphoMass) < MassTolerance))
+ .ToList();
+
+ Assert.That(phosphoPeptides, Is.Not.Empty,
+ "At least one peptide must carry the phosphoserine modification.");
+
+ // In every phosphorylated form the mod must sit on 'S'.
+ foreach (var pep in phosphoPeptides)
+ {
+ foreach (var kvp in pep.AllModsOneIsNterminus)
+ {
+ if (!kvp.Value.MonoisotopicMass.HasValue) continue;
+ if (Math.Abs(kvp.Value.MonoisotopicMass.Value - PhosphoMass) >= MassTolerance) continue;
+
+ // AllModsOneIsNterminus key convention:
+ // key 1 → N-terminus
+ // key 2..N+1 → residues (key - 2 = 0-based index into BaseSequence)
+ // key N+2 → C-terminus
+ int zeroBasedIndex = kvp.Key - 2;
+ char residue = pep.BaseSequence[zeroBasedIndex];
+
+ Assert.That(residue, Is.EqualTo('S'),
+ $"Phosphoserine in peptide \"{pep.BaseSequence}\" at AllMods key {kvp.Key} " +
+ $"must be on residue 'S', not '{residue}'.");
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Test/CircularProteinsAndPeptide/TopDownDigestionRegressionTests.cs b/mzLib/Test/CircularProteinsAndPeptide/TopDownDigestionRegressionTests.cs
new file mode 100644
index 000000000..77067e29e
--- /dev/null
+++ b/mzLib/Test/CircularProteinsAndPeptide/TopDownDigestionRegressionTests.cs
@@ -0,0 +1,324 @@
+using NUnit.Framework;
+using Omics.Digestion;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Test.CircularProteinsAndPeptide
+{
+ ///
+ /// Regression tests that lock in the fix for the top-down protease bug in
+ /// .
+ ///
+ /// ROOT CAUSE
+ /// ----------
+ /// swaps out the
+ /// Protease property at construction time for non-specific search modes:
+ ///
+ /// SpecificProtease = Protease; // saves "top-down" here
+ /// if (SearchModeType == None)
+ /// Protease = dictionary["singleN"]; // ← overwrites Protease!
+ ///
+ /// Before the fix, GetCleavagePositionsInRing called
+ /// digestionParams.Protease.GetDigestionSiteIndices(). For a top-down
+ /// , Protease is singleN, which finds
+ /// many cut sites on any sequence. This made numCleavageSites large and
+ /// violated the guard condition maxMissedCleavages >= numCleavageSites,
+ /// so no was ever emitted.
+ ///
+ /// THE FIX
+ /// -------
+ /// Use digestionParams.SpecificProtease (the actual user-selected protease,
+ /// which has no cleavage motif for top-down) instead of digestionParams.Protease
+ /// (the singleN/singleC stand-in injected for fast nonspecific digestion).
+ ///
+ /// TESTS
+ /// -----
+ /// 1.
+ /// Core regression: a ring with trypsin K/R sites must still yield exactly
+ /// one under top-down,
+ /// regardless of how many trypsin sites the sequence contains.
+ ///
+ /// 2.
+ /// top-down finds zero cleavage sites → no linear ring-opening products
+ /// are generated (Step 3 of Digest() is short-circuited by numCleavageSites == 0).
+ ///
+ /// 3.
+ /// The emitted carries the
+ /// full canonical ring sequence and the correct cyclic monoisotopic mass
+ /// (no H₂O addition).
+ ///
+ /// 4.
+ /// references
+ /// the originating .
+ ///
+ /// 5.
+ /// Sanity check: a ring with no K/R (which always worked) is unaffected.
+ ///
+ /// 6.
+ /// Directly probes the state to confirm
+ /// that SpecificProtease.Name == "top-down" while
+ /// Protease.Name != "top-down", documenting the exact swap that
+ /// caused the regression.
+ ///
+ [TestFixture]
+ public static class TopDownDigestionRegressionTests
+ {
+ // ── Helpers ───────────────────────────────────────────────────────────
+
+ private static DigestionParams MakeTopDownParams(int maxMissedCleavages = 0) =>
+ new DigestionParams(
+ protease: "top-down",
+ maxMissedCleavages: maxMissedCleavages,
+ minPeptideLength: 1);
+
+
+ // ── Top-down protease ─────────────────────────────────────────────────
+
+ ///
+ /// Verifies that the "top-down" protease produces exactly one
+ /// CircularPeptideWithSetModifications and no linear products,
+ /// regardless of maxMissedCleavages.
+ ///
+ /// The top-down protease has no cleavage motif and specificity "none",
+ /// meaning it identifies zero cleavage sites in any ring. Since
+ /// numCleavageSites = 0, the condition maxMissedCleavages >= 0 is always
+ /// satisfied and the circular product is always emitted. No linear
+ /// PeptideWithSetModifications is ever produced because there are no
+ /// cuts to make.
+ ///
+ /// This has a direct consequence for the CircularSearchEngine: because
+ /// there are no linear ring-opening products, the search scores only
+ /// internal fragment ions (via FragmentInternally). No b/y terminal
+ /// ions are generated or matched.
+ ///
+ /// The ring used is "AAKPEPTIDEK" (canonical, 2 trypsin sites) to confirm
+ /// that the choice of protease — not the ring sequence — determines
+ /// whether cleavage sites are found.
+ ///
+ [Test]
+ public static void Digestion_TopDownProtease_OnlyCircularProduct_NoLinearProducts()
+ {
+ // Use a ring that has 2 trypsin sites, confirming that it is the
+ // protease choice — not the absence of K/R — that suppresses digestion.
+ var protein = new CircularProtein("PEPTIDEKAAK", "acc_topdown");
+ Assert.That(protein.BaseSequence, Is.EqualTo("AAKPEPTIDEK"),
+ "Pre-condition: canonical sequence must be AAKPEPTIDEK.");
+
+ var topDownParams = new DigestionParams(
+ protease: "top-down",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var products = protein.Digest(
+ topDownParams,
+ new List(),
+ new List())
+ .ToList();
+
+ var circular = products.OfType().ToList();
+ var linear = products
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ // Exactly one circular product — the intact ring
+ Assert.That(circular.Count, Is.EqualTo(1),
+ "top-down: exactly one CircularPeptideWithSetModifications expected.");
+ Assert.That(circular[0].BaseSequence, Is.EqualTo("AAKPEPTIDEK"),
+ "top-down: circular product must span the full canonical ring.");
+ Assert.That(circular[0].BaseSequence.Length, Is.EqualTo(11),
+ "top-down: circular product must be length N=11.");
+
+ // No linear products — no cuts were made
+ Assert.That(linear.Count, Is.EqualTo(0),
+ "top-down: no linear PeptideWithSetModifications expected.");
+
+ // Verify that the circular product's parent is the originating protein
+ Assert.That(circular[0].Parent, Is.SameAs(protein),
+ "top-down: circular product must reference the originating CircularProtein.");
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ // ── Test 1: Core regression ───────────────────────────────────────────
+
+ ///
+ /// A ring with multiple trypsin K/R cleavage sites must still yield exactly
+ /// one when digested with
+ /// the top-down protease, because top-down recognises zero cleavage sites.
+ ///
+ /// Before the fix: GetCleavagePositionsInRing called
+ /// digestionParams.Protease, which was singleN (injected by
+ /// RecordSpecificProtease). singleN found many cut sites on
+ /// "AAKPEPTIDEK", so numCleavageSites > 0 > maxMissedCleavages (0)
+ /// and no circular product was emitted.
+ ///
+ /// After the fix: digestionParams.SpecificProtease is used; it is the
+ /// real top-down protease with no motif, so numCleavageSites == 0 and
+ /// the condition maxMissedCleavages (0) >= numCleavageSites (0) holds.
+ ///
+ [Test]
+ public static void TopDown_RingWithTrypsinSites_ProducesOneCircularProduct()
+ {
+ // "AAKPEPTIDEK" has 2 trypsin sites (K at positions 3 and 11).
+ // Under top-down those sites are invisible → numCleavageSites = 0
+ // → maxMissedCleavages (0) >= 0 → CircularPeptideWithSetModifications emitted.
+ var circular = new CircularProtein("AAKPEPTIDEK", "acc_regression_td1");
+ var digestionParams = MakeTopDownParams(maxMissedCleavages: 0);
+
+ var allProducts = circular
+ .Digest(digestionParams, new List(), new List())
+ .ToList();
+
+ var circularProducts = allProducts
+ .OfType()
+ .ToList();
+
+ Assert.That(circularProducts.Count, Is.EqualTo(1),
+ "top-down must emit exactly one CircularPeptideWithSetModifications " +
+ "regardless of how many trypsin K/R sites the ring contains. " +
+ "Count == 0 indicates GetCleavagePositionsInRing is using Protease " +
+ "(singleN) instead of SpecificProtease (top-down).");
+ }
+
+ // ── Test 2: No linear products ────────────────────────────────────────
+
+ ///
+ /// top-down finds zero cleavage sites, so Digest() exits at the
+ /// if (numCleavageSites == 0) yield break; guard before the proxy
+ /// digestion step. No linear
+ /// products should appear.
+ ///
+ [Test]
+ public static void TopDown_ProducesNoLinearProducts()
+ {
+ var circular = new CircularProtein("AAKPEPTIDEK", "acc_regression_td2");
+ var digestionParams = MakeTopDownParams();
+
+ var allProducts = circular
+ .Digest(digestionParams, new List(), new List())
+ .ToList();
+
+ var linearProducts = allProducts
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ Assert.That(linearProducts, Is.Empty,
+ "top-down must produce no linear PeptideWithSetModifications. " +
+ "Any linear products here mean GetCleavagePositionsInRing found " +
+ "spurious cut sites via the wrong protease.");
+ }
+
+ // ── Test 3: Correct sequence and mass ─────────────────────────────────
+
+ ///
+ /// The emitted must carry
+ /// the full canonical ring sequence and the cyclic monoisotopic mass
+ /// (no +H₂O, because the ring has no free termini).
+ ///
+ [Test]
+ public static void TopDown_CircularProduct_HasCorrectSequenceAndMass()
+ {
+ var circular = new CircularProtein("AAKPEPTIDEK", "acc_regression_td3");
+ var digestionParams = MakeTopDownParams();
+
+ var product = circular
+ .Digest(digestionParams, new List(), new List())
+ .OfType()
+ .SingleOrDefault();
+
+ Assert.That(product, Is.Not.Null,
+ "Pre-condition: top-down must yield a CircularPeptideWithSetModifications.");
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(product.BaseSequence, Is.EqualTo(circular.BaseSequence),
+ "The circular product must carry the full canonical ring sequence.");
+
+ // Cyclic mass = sum of residue masses — no H₂O addition.
+ Assert.That(product.MonoisotopicMass,
+ Is.EqualTo(circular.CyclicMonoisotopicMass).Within(1e-9),
+ "Cyclic monoisotopic mass must equal the sum of residue masses " +
+ "with no H₂O addition.");
+ });
+ }
+
+ // ── Test 4: CircularParent reference ─────────────────────────────────
+
+ ///
+ /// must
+ /// reference the same object that produced it.
+ ///
+ [Test]
+ public static void TopDown_CircularProduct_BoundToCircularProtein()
+ {
+ var circular = new CircularProtein("AAKPEPTIDEK", "acc_regression_td4");
+ var digestionParams = MakeTopDownParams();
+
+ var product = circular
+ .Digest(digestionParams, new List(), new List())
+ .OfType()
+ .SingleOrDefault();
+
+ Assert.That(product, Is.Not.Null,
+ "Pre-condition: top-down must yield a CircularPeptideWithSetModifications.");
+
+ Assert.That(ReferenceEquals(product.CircularParent, circular), Is.True,
+ "CircularParent must be the exact CircularProtein that performed the digest.");
+ }
+
+ // ── Test 5: Sanity check — ring with no trypsin sites ────────────────
+
+ ///
+ /// A ring with no K/R residues always worked (singleN also returns zero
+ /// "real" cut sites on a sequence with no K/R). Verify it still works
+ /// after the fix so we have not regressed the regression fix.
+ ///
+ [Test]
+ public static void TopDown_RingWithNoTrypsinSites_AlsoProducesOneCircularProduct()
+ {
+ // "ACGMT" has no K or R → zero trypsin sites.
+ var circular = new CircularProtein("ACGMT", "acc_regression_td5");
+ var digestionParams = MakeTopDownParams();
+
+ var allProducts = circular
+ .Digest(digestionParams, new List(), new List())
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(allProducts, Has.Count.EqualTo(1),
+ "Exactly one product expected for a ring with no cleavage sites.");
+ Assert.That(allProducts[0], Is.InstanceOf(),
+ "The single product must be a CircularPeptideWithSetModifications.");
+ });
+ }
+ }
+}
diff --git a/mzLib/Test/DataFiles/d Tryp-SFYR MS2 CID35 plus2.mgf b/mzLib/Test/DataFiles/d Tryp-SFYR MS2 CID35 plus2.mgf
new file mode 100644
index 000000000..d94da21e7
--- /dev/null
+++ b/mzLib/Test/DataFiles/d Tryp-SFYR MS2 CID35 plus2.mgf
@@ -0,0 +1,84611 @@
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.1.1.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=1"
+RTINSECONDS=0.030665937
+PEPMASS=598.27001953125
+CHARGE=2+
+51.99914169 16729.96484375
+58.13434982 19127.462890625
+63.02698898 15493.736328125
+64.52619934 71807.4453125
+64.53042603 50348.484375
+64.58197021 57013.8828125
+64.58621979 37318.68359375
+64.63802338 23850.3515625
+64.64144135 21659.1484375
+106.9866943 14829.1845703125
+118.6313477 16306.658203125
+129.2520294 15671.75
+149.5632172 36013.3359375
+149.5770416 27058.650390625
+167.0913849 43232.578125
+169.0601807 43372.26171875
+175.1177063 356540.375
+176.1206055 32998.640625
+177.0755463 61086.88671875
+178.0435638 29541.923828125
+178.0598602 345267.40625
+178.3405609 85616.15625
+179.0636139 26169.33203125
+182.0910797 21640.66015625
+186.0861053 107372.96875
+194.1027069 48015.3203125
+195.086319 4774249.0
+195.1282196 26532.30859375
+196.0890656 431619.3125
+197.0920563 33101.6328125
+206.0908966 166125.984375
+207.0927582 26392.75
+207.1136627 18233.796875
+209.101181 19926.4296875
+212.1142883 26527.275390625
+218.1021881 59614.1875
+222.0850372 29481.65234375
+234.0972748 16681.203125
+246.0968475 747449.0625
+247.0997162 104339.640625
+248.1052704 19381.673828125
+257.122406 128186.3828125
+260.1120605 116641.1484375
+270.0974121 140508.625
+277.1395874 19723.828125
+278.1490173 28894.861328125
+283.1424561 60090.78515625
+287.1233826 157095.90625
+288.1072083 1812787.375
+289.1099243 275984.4375
+290.1143799 28111.53125
+295.1486511 27445.20703125
+303.14151 26123.1640625
+305.133728 3570742.25
+305.2155457 22804.11328125
+306.1189575 1284179.75
+307.1213684 194080.09375
+311.1339111 50465.8984375
+312.1180725 50239.41015625
+318.1434326 20191.373046875
+321.153717 358746.40625
+322.1579895 49747.62890625
+323.0983582 22650.208984375
+323.1442566 1196277.125
+324.1469116 176697.671875
+325.1494141 24016.021484375
+329.1431885 51260.71875
+331.1502686 21964.486328125
+338.142395 49372.09765625
+338.1804199 441720.40625
+338.6444092 21547.435546875
+339.1823425 85870.4375
+347.1489868 43780.89453125
+349.1608887 29699.4453125
+358.1651917 18504.3359375
+359.144043 105650.7734375
+366.1858826 135605.25
+367.1843262 20662.2734375
+369.1387634 45707.65625
+376.1703491 120968.8046875
+377.156189 105831.59375
+386.1659241 23408.232421875
+394.1807251 859736.375
+394.2402954 29412.50390625
+395.1824341 167719.46875
+396.1825867 24817.03515625
+398.1776733 19038.755859375
+412.1894531 37388.8203125
+413.1648254 19113.7734375
+420.6843567 21908.21484375
+460.1934204 35374.3671875
+468.2208557 82713.6484375
+469.2175903 17405.466796875
+477.2160339 24994.314453125
+478.203186 21139.90234375
+483.7139587 29056.13671875
+485.2466736 214383.578125
+486.2512512 67368.75
+488.1860962 68505.328125
+492.2286987 176633.28125
+492.7301025 95039.8671875
+493.2301941 27928.517578125
+495.2265015 65091.09765625
+503.7181396 32269.1875
+505.2114563 63607.34765625
+506.2055969 53549.08203125
+512.7271729 34573.75390625
+513.2305298 19188.3984375
+521.2402344 24587.50390625
+523.2214355 521888.25
+524.223938 154496.921875
+554.2720947 22106.236328125
+558.7460938 40168.6953125
+571.7480469 84201.6875
+572.2753906 349310.96875
+572.7507324 29396.859375
+573.281311 99063.203125
+576.2589111 45899.62890625
+576.7572021 31094.08203125
+577.258667 24764.6171875
+580.2606812 109705.953125
+580.7545776 2677670.25
+581.2558594 1847895.125
+581.7575073 678234.25
+582.2590942 122892.546875
+589.2678223 68859.59375
+589.7642822 43085.73828125
+598.2714844 56288.46875
+598.7763062 42282.1171875
+599.2693481 28511.123046875
+599.7785034 86736.3671875
+606.2562866 38440.87890625
+607.2631836 35833.81640625
+624.2683716 62579.27734375
+625.2734375 19498.62890625
+655.3078003 23890.96484375
+673.3237915 437970.15625
+674.3269653 137974.6875
+675.3219604 44066.49609375
+802.3644409 97424.0390625
+803.3648682 35332.625
+873.4016724 123704.3671875
+874.3984375 64066.39453125
+900.3015747 20925.51171875
+1001.4552 26937.15234375
+1002.451477 25345.486328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.2.2.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=2"
+RTINSECONDS=0.137218209
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13438797 16430.640625
+63.58501053 15290.9423828125
+64.5262146 54526.12109375
+64.5306778 39891.625
+64.58200836 34409.81640625
+64.5861969 22006.166015625
+64.63811493 18046.591796875
+70.93112946 11280.9580078125
+74.81159973 17639.767578125
+76.09622192 9877.330078125
+82.17427063 12286.2529296875
+101.3259354 10430.6005859375
+111.4073105 13480.5830078125
+149.5727081 43455.12109375
+167.0918884 58200.67578125
+168.0936279 10926.6865234375
+169.0593872 26581.517578125
+171.6389008 11673.666015625
+175.1177979 323630.53125
+175.1327057 7916.951171875
+176.1204987 17580.19921875
+177.075882 59333.890625
+178.0600586 326927.3125
+178.0780029 16418.640625
+178.3429108 72705.78125
+179.0641022 28507.12109375
+179.09198 14174.984375
+181.9941864 10738.5908203125
+182.0924835 16769.82421875
+183.0747833 15513.2255859375
+186.0859528 100703.5625
+190.0594177 14220.8076171875
+194.102417 45809.59375
+195.08638 3888939.5
+195.1277771 26250.8671875
+196.0891571 372535.9375
+197.0927582 27125.240234375
+200.1018524 30668.115234375
+201.0856018 15591.0947265625
+206.0911102 166516.109375
+207.0926208 17735.1171875
+209.1018524 11866.96875
+214.6770782 11481.2392578125
+215.0918274 14066.7783203125
+218.1020813 56103.0859375
+222.0847626 16213.1962890625
+224.4453888 11514.6513671875
+231.0874329 12418.9619140625
+239.1126251 12726.5703125
+240.0961456 28142.216796875
+243.0860596 30722.68359375
+244.1175995 19808.30078125
+246.0968781 632066.0625
+247.0998993 83277.7734375
+248.1142273 14574.1533203125
+249.0968933 14637.5341796875
+257.122467 104870.0546875
+260.1123047 111506.9453125
+261.1184082 16914.16015625
+267.110321 14662.689453125
+270.0967407 133097.375
+277.1393738 12582.54296875
+278.1504211 17079.2109375
+283.1428528 42715.1640625
+287.1234131 150905.484375
+288.1073303 1607527.625
+289.1103821 262713.15625
+290.1113892 19461.953125
+295.1490784 29787.884765625
+303.1438293 25014.642578125
+304.1266174 17064.265625
+305.1339111 3130905.0
+306.1191406 1087509.5
+307.1214294 190430.0
+311.1342468 42086.96875
+312.1161194 33495.08203125
+321.1539612 362288.15625
+322.1564941 59258.6484375
+323.1443481 1100932.25
+324.1461487 174975.15625
+325.1495972 17382.388671875
+329.1428528 48528.2890625
+338.1421814 60106.80078125
+338.1806946 365569.03125
+338.6406555 15745.017578125
+339.1827393 68873.7109375
+341.1413269 19708.611328125
+344.4949036 14149.25390625
+347.1499329 26719.115234375
+358.164093 21309.271484375
+359.1443176 65842.6640625
+360.1421509 17004.837890625
+366.1867371 116725.9140625
+367.1862793 31712.70703125
+369.1407166 29257.146484375
+376.1701355 120328.7890625
+377.1555786 70480.0
+378.1586304 18607.505859375
+386.1672363 22630.765625
+394.1809082 736868.8125
+394.2399902 20153.24609375
+395.1827393 154762.6875
+412.1833801 21519.578125
+413.1704407 15368.1865234375
+420.6824341 25732.544921875
+421.1835938 12630.314453125
+434.1742249 13993.7041015625
+468.2209473 43974.03515625
+469.2257996 16645.1640625
+474.7095642 15967.08203125
+477.2178955 17269.490234375
+483.2226562 15299.8837890625
+483.7190552 24334.095703125
+485.2475891 194399.71875
+486.2500305 61776.578125
+488.1867371 57197.19140625
+492.2292175 181484.71875
+492.7296448 125178.03125
+493.2312927 27554.509765625
+495.2269592 55568.9609375
+503.7127991 24092.279296875
+505.2107849 44779.01171875
+506.201416 45200.74609375
+512.2269287 30059.611328125
+512.7229004 15084.6767578125
+521.2373047 35396.984375
+521.7373047 18062.576171875
+523.2224121 423496.34375
+524.2246704 128391.6015625
+525.2317505 15357.5078125
+558.743103 25987.115234375
+571.2265625 16058.677734375
+571.7503662 71798.7734375
+572.2749023 315602.25
+573.2800293 81412.890625
+574.2819824 24510.787109375
+576.2626343 46340.4296875
+576.7626953 38593.56640625
+577.2617188 16459.853515625
+580.2608643 56006.61328125
+580.7547607 1982460.25
+581.2559204 1350147.25
+581.3666992 24946.86328125
+581.7579956 486011.53125
+582.2583008 121039.25
+589.2570801 14552.3935546875
+591.3872681 14337.9970703125
+598.2712402 49614.48828125
+598.7724609 22708.19921875
+599.2772217 49020.82421875
+599.7767944 76751.2734375
+606.2619629 29425.625
+607.2568359 16016.19140625
+624.269043 52816.72265625
+673.3240356 381178.625
+674.3267212 141475.28125
+675.3218384 17111.77734375
+693.2902832 22701.6484375
+711.300293 13090.537109375
+802.3648682 72577.75
+803.3726196 30999.44140625
+858.3397827 14802.1787109375
+866.8260498 12657.2890625
+873.3988647 83176.8515625
+874.4000854 38023.7578125
+875.406311 18327.5625
+1001.459167 22694.2109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.3.3.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=3"
+RTINSECONDS=0.248551745
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13453674 24811.814453125
+64.52619934 85591.7890625
+64.5306015 56762.234375
+64.58198547 58020.02734375
+64.58605194 42983.32421875
+64.63811493 19356.458984375
+64.64143372 17958.171875
+65.27535248 15508.4833984375
+130.0469818 16972.3515625
+134.0455933 18557.0703125
+149.5687714 69534.3671875
+167.0915375 47203.08984375
+169.0589447 25946.65625
+175.1176453 320852.03125
+177.0756531 83918.7734375
+178.0597687 322447.03125
+178.3388672 86886.5703125
+179.063324 31307.701171875
+183.0749817 28821.611328125
+186.0859528 131170.78125
+194.1028595 36154.0390625
+195.0862579 4747954.0
+196.0890656 473246.125
+200.1018982 42232.30078125
+201.0852051 22273.2109375
+206.0908051 180466.078125
+218.1020813 73181.359375
+221.5466919 19362.603515625
+222.3133545 18936.16015625
+240.0955811 30451.267578125
+243.087326 22661.353515625
+246.0966187 707004.75
+247.0993347 104121.2109375
+257.1225891 109844.90625
+260.1123962 95369.7109375
+267.1080627 21674.50390625
+270.096344 132139.875
+276.1062012 22851.630859375
+278.1192627 27538.150390625
+278.1502075 30207.015625
+283.1419678 45809.578125
+287.12323 145362.734375
+288.1070557 1736538.75
+289.1100769 278502.0
+290.1123047 29701.31640625
+303.14151 29021.283203125
+304.1270752 22351.205078125
+305.133606 3531589.0
+306.1187134 1247983.5
+307.1211853 204361.828125
+308.1195984 23593.27734375
+311.1343994 70839.25
+312.1143494 40694.24609375
+321.153656 390475.28125
+322.1555786 55819.9921875
+323.144043 1289558.25
+323.1886902 39553.38671875
+324.1460571 198499.734375
+329.144165 47618.3359375
+338.1423645 71551.8828125
+338.1801453 461308.6875
+338.6468201 21494.5390625
+339.183136 64955.93359375
+341.1450806 23792.283203125
+347.1491699 25955.220703125
+349.162323 21186.326171875
+359.1416626 78858.9140625
+366.1861267 169235.921875
+367.1856995 27075.5625
+369.1411743 44245.546875
+376.1698914 120103.3046875
+377.1541443 94297.734375
+378.152832 23082.373046875
+386.1639709 27437.623046875
+394.1804199 809240.25
+394.2396851 30848.146484375
+395.1826477 182974.5625
+396.1858826 27943.740234375
+412.1882019 34581.97265625
+420.6808777 41811.71875
+460.1951904 22133.998046875
+464.1829224 20000.83984375
+468.2191162 55329.484375
+483.7160645 30798.81640625
+485.24646 236230.703125
+486.2503662 66548.9375
+487.1959229 19541.501953125
+488.1853027 50988.8125
+492.2283325 230883.921875
+492.7310486 136020.8125
+493.2306213 39058.2109375
+495.2263489 58923.4921875
+503.7149658 38737.69140625
+505.210968 90936.46875
+506.2013855 73268.3046875
+507.1976624 24156.92578125
+512.2235107 60233.85546875
+512.7288208 30823.9375
+520.7327271 22492.515625
+521.2305298 29955.962890625
+521.7315063 34129.8359375
+523.2209473 558454.5625
+524.2244873 158585.921875
+544.4552612 18585.978515625
+555.2469482 22878.53125
+571.7486572 88365.78125
+572.2733765 355011.5625
+572.7542725 21582.892578125
+573.2798462 96226.5390625
+574.2771606 25287.455078125
+576.2581177 72383.125
+577.2688599 21373.947265625
+580.2600708 115995.875
+580.7542114 3070479.75
+581.2555542 2015980.875
+581.3352661 32632.458984375
+581.756958 749829.125
+582.258606 155860.171875
+589.2648315 115012.140625
+589.7659912 52754.953125
+598.274353 60264.15625
+598.7730713 38809.35546875
+599.7732544 63693.37109375
+606.256897 38485.18359375
+624.2689819 60223.34375
+673.3224487 487423.625
+674.3255005 179275.328125
+675.3167725 24670.2578125
+693.2804565 29865.8046875
+711.3023682 21056.517578125
+802.3629761 114738.6875
+803.3693237 31325.19921875
+873.399292 135766.078125
+874.401123 63580.57421875
+1001.465759 24595.00390625
+1002.455322 24048.330078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.4.4.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=4"
+RTINSECONDS=0.354473057
+PEPMASS=598.27001953125
+CHARGE=2+
+53.9302063 15832.5986328125
+62.47867966 15627.2294921875
+63.62765503 14331.27734375
+64.52619171 72133.578125
+64.53059387 52620.03125
+64.58200073 54679.828125
+64.58616638 32444.310546875
+64.63813782 26676.15625
+64.64142609 21397.32421875
+67.95343781 16168.791015625
+80.78318024 15474.4140625
+82.05431366 18029.349609375
+99.66942596 17448.2421875
+104.5850677 17532.1171875
+142.3634338 14884.2294921875
+149.5680084 57640.5234375
+167.0918732 41322.19921875
+169.0598145 32371.697265625
+175.1178589 312211.0625
+176.1213837 17936.421875
+177.0758514 67357.09375
+178.059967 349429.40625
+178.0753937 10093.9072265625
+178.3466339 91131.359375
+179.0632782 29701.25390625
+183.0753784 33219.3671875
+186.0860138 134308.765625
+194.1027679 40710.05859375
+195.08638 4548982.0
+196.0892487 441164.875
+197.0912018 45754.953125
+200.1018066 23848.294921875
+201.0852661 21688.0625
+206.0912323 168373.28125
+207.0937347 26285.498046875
+212.1142426 16237.6787109375
+215.0918579 15774.587890625
+218.1036682 44564.25
+234.0965576 24508.62890625
+239.1120605 21935.390625
+240.0943909 31352.828125
+244.1171112 16932.87890625
+246.0745239 13425.8818359375
+246.0969238 716060.75
+246.1212769 15087.0888671875
+247.0996857 84308.6171875
+249.0962219 14877.2724609375
+257.1224365 104581.234375
+260.112793 125816.1328125
+261.1187134 23608.87109375
+270.0966492 129223.0546875
+278.1151428 19472.134765625
+278.1498718 32286.48828125
+283.1419067 46153.6875
+287.1237488 148291.296875
+288.1073303 1734343.875
+289.1099854 254906.359375
+294.1177063 31903.376953125
+295.149292 21095.287109375
+303.142334 24600.4921875
+304.1290894 20350.974609375
+305.1338806 3458147.0
+306.1190796 1233577.375
+307.12146 205175.5
+308.1293945 15229.1572265625
+311.1344604 55906.95703125
+312.1161499 25540.49609375
+321.1538696 328191.59375
+322.1576538 75566.40625
+323.0992737 30311.3359375
+323.1443481 1275635.875
+323.2084656 22379.39453125
+324.1466064 194242.21875
+329.1452637 66597.4765625
+331.1503296 20063.3984375
+338.1425171 48438.89453125
+338.180481 427294.4375
+339.1825562 62376.11328125
+347.1488647 29931.6953125
+351.126709 18331.052734375
+359.1446838 62255.48828125
+366.1856689 145442.859375
+367.1907654 28068.408203125
+368.1571655 19214.96484375
+376.1704712 122140.9140625
+377.1559753 78195.6875
+378.1559448 20724.34765625
+386.1639404 26129.857421875
+394.1194153 21789.69921875
+394.1809387 780440.5
+394.2393799 25623.705078125
+395.1829224 176586.796875
+396.1858521 18054.291015625
+398.1688538 19271.060546875
+412.1889038 42066.53515625
+420.6831665 23135.55859375
+450.2116394 22582.798828125
+460.1850891 30935.06640625
+461.2034912 17418.634765625
+468.2206726 51958.92578125
+478.2012024 27788.947265625
+485.2468872 233767.703125
+486.2510376 55581.27734375
+488.1835632 44613.328125
+492.2289124 219375.390625
+492.7315369 70928.65625
+493.2327881 31202.974609375
+495.2249756 53073.22265625
+505.2109375 55538.1328125
+506.2037964 61381.23046875
+512.2275391 54427.87109375
+521.2345581 51853.41015625
+521.7366333 25434.484375
+523.222168 548967.375
+524.2244263 142877.21875
+525.2247925 21426.833984375
+529.7437134 26260.505859375
+558.7479858 19943.22265625
+567.7559204 24567.908203125
+571.7511597 107278.328125
+572.2737427 354197.84375
+573.279541 112967.1640625
+576.2619019 58034.1015625
+580.2615356 114784.515625
+580.7549438 2731273.75
+581.2560425 1930174.875
+581.3652344 25052.74609375
+581.7576904 701243.375
+582.258606 148155.140625
+589.2655029 68475.0859375
+589.7662964 48712.84765625
+598.2752075 77350.2578125
+598.7756348 53897.7578125
+599.2728271 22728.45703125
+599.7764282 96886.75
+606.2585449 54962.02734375
+624.2680664 73836.3828125
+625.2661743 24012.826171875
+673.3240356 438935.03125
+674.3272095 178185.078125
+675.3300171 48574.5
+802.3629761 133908.125
+803.3630371 49881.6640625
+873.401123 97474.6875
+874.4001465 65058.37109375
+983.4593506 20650.43359375
+1001.455627 29744.7265625
+1004.830872 16984.294921875
+1058.453125 21470.15625
+1224.284302 16452.935546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.5.5.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=5"
+RTINSECONDS=0.461776513
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13419724 12600.0537109375
+64.52613831 58976.7265625
+64.53057098 45067.65234375
+64.58193207 43552.87109375
+64.58616638 27268.146484375
+64.63790894 15362.3125
+74.81196594 15193.41015625
+143.8120117 15368.3251953125
+149.5603027 26843.6484375
+149.5740662 38396.77734375
+156.9250793 12575.1982421875
+167.0917358 39358.4609375
+169.0602112 32798.9921875
+172.0461731 12526.42578125
+175.1177826 302185.34375
+177.0761414 67243.65625
+178.0600433 349506.53125
+178.0781097 17282.65625
+178.3377838 59173.6484375
+178.3571625 29825.75390625
+179.0635986 28787.3203125
+179.0917053 19730.30078125
+183.0756226 28838.185546875
+186.0862274 101567.125
+194.1026154 45453.6796875
+195.0864563 4019187.25
+195.1280823 27828.130859375
+196.0892487 406841.71875
+197.0913696 41329.75
+200.1023712 19018.16015625
+201.0856781 16018.466796875
+206.0912323 163428.046875
+209.0772095 20761.00390625
+209.1028137 13582.69140625
+218.1025391 57935.73046875
+222.0865479 19268.64453125
+233.1277924 14909.28515625
+234.0972595 19510.392578125
+239.1122589 14978.0771484375
+240.0965118 31953.087890625
+243.0856628 22387.96484375
+244.1172638 15731.525390625
+246.0971375 642195.125
+247.0993805 96687.1796875
+248.1106262 16054.7236328125
+249.0984802 16194.115234375
+257.1230469 96458.1640625
+260.112793 89808.1796875
+261.1184998 14758.69140625
+267.1090698 15427.66015625
+270.0969543 118474.71875
+271.0993652 18483.94921875
+278.1481323 34148.05078125
+283.1442261 51351.0546875
+287.1237488 149605.953125
+288.0778503 23260.8046875
+288.107605 1657123.5
+289.1104431 246026.015625
+290.1130981 15013.5908203125
+303.1440125 33989.66015625
+304.1249695 25725.22265625
+305.1342468 3143060.5
+306.1192932 1205379.875
+307.1209412 191408.515625
+308.1221619 22448.369140625
+311.1348877 43603.58203125
+312.1161499 28758.53515625
+320.1682434 15269.599609375
+321.1543274 385644.625
+322.1574402 51147.890625
+323.0979004 20938.619140625
+323.1446228 1128303.0
+324.1469421 199209.8125
+325.1517639 17528.619140625
+329.1437988 41660.5625
+331.1540527 13140.2236328125
+338.1422424 43453.12890625
+338.1809387 400677.5
+338.6453552 27054.87890625
+339.1844177 55812.25
+347.150238 19709.6328125
+358.1644592 14029.330078125
+359.1436462 65273.046875
+366.1860962 133542.890625
+367.1898499 20685.91015625
+369.1391907 24701.916015625
+376.1707153 114946.6640625
+377.1567993 62337.7578125
+378.1554871 23212.802734375
+386.1656494 27083.23828125
+394.1196289 17156.9921875
+394.1347046 10310.16015625
+394.1813965 667118.9375
+394.2399292 32085.912109375
+395.1835022 138812.4375
+396.1871948 27802.25390625
+398.1695251 16736.5234375
+412.1877136 25851.474609375
+420.6822205 16835.65234375
+460.1914368 29550.9609375
+468.2230225 70673.109375
+478.2010498 14110.0673828125
+483.7185364 15023.494140625
+485.2477417 206006.25
+486.2506104 63402.66015625
+488.1873474 56278.69921875
+492.2304688 155668.140625
+492.7310486 103905.9453125
+493.2303162 31749.53125
+495.2261963 60720.2265625
+496.230957 16571.8203125
+504.2149048 17389.904296875
+505.2119751 74491.140625
+506.2088928 51233.5859375
+512.2250977 28048.435546875
+512.7315063 16569.4609375
+520.7380371 18784.564453125
+521.2318115 24449.212890625
+521.7357178 24659.689453125
+523.2229004 493691.4375
+524.2249146 121596.9375
+525.227356 29853.458984375
+555.2623291 28590.517578125
+558.7412109 23922.951171875
+571.7509155 67978.390625
+572.2749634 324414.90625
+572.7478638 16484.90625
+573.2818604 102952.9609375
+574.2733154 13486.0537109375
+576.2635498 47645.42578125
+578.2650146 16556.90234375
+580.2626953 78634.125
+580.7562256 2252166.75
+581.2572632 1459073.375
+581.7588501 525304.6875
+582.2606812 105124.9921875
+589.2677612 34633.55859375
+598.2741089 49408.0078125
+598.7763672 33873.13671875
+599.2770996 50274.40234375
+599.779541 78308.2421875
+606.2601318 33229.4921875
+624.2705078 52738.47265625
+625.2740479 21695.544921875
+655.309021 16805.796875
+673.3253784 407113.59375
+674.328186 143844.421875
+675.3299561 34620.01953125
+693.2913208 19406.91015625
+802.3651123 82343.1484375
+803.3634033 36860.078125
+873.40448 95896.296875
+874.4066162 51383.93359375
+1001.471863 17918.63671875
+1058.479248 21894.64453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.6.6.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=6"
+RTINSECONDS=0.57217549
+PEPMASS=598.27001953125
+CHARGE=2+
+54.8907814 15153.7900390625
+58.13405991 27173.271484375
+58.13713837 16718.45703125
+64.52628326 81815.0625
+64.53047943 51507.63671875
+64.58223724 31362.89453125
+64.58618164 38307.43359375
+65.32968903 16504.017578125
+66.40887451 20074.326171875
+149.5712738 64775.5390625
+167.0920715 39304.15625
+169.0593414 25773.658203125
+175.1177826 325153.46875
+175.1339569 32871.6953125
+176.1217041 22529.1640625
+177.0760498 59847.0859375
+178.0599823 380656.0
+178.3440399 116932.84375
+179.0636444 37220.0625
+179.0924377 18396.162109375
+183.0750732 26718.197265625
+186.0863495 119193.546875
+194.1016235 50605.265625
+195.0864258 4727367.0
+196.0892944 462680.96875
+200.1022034 31697.99609375
+203.4578705 21549.458984375
+206.0913544 151781.078125
+209.07724 20371.923828125
+218.1018982 66511.9453125
+234.0966797 25165.6953125
+240.0965881 21240.787109375
+244.1152191 19287.671875
+246.0970459 720386.6875
+247.1000671 90128.7109375
+249.1010284 24460.4296875
+255.7467651 16092.9130859375
+257.1225281 104725.2734375
+260.1129761 133436.515625
+270.0969849 142684.25
+283.1419067 41730.2890625
+287.1236572 173092.953125
+288.0777588 20930.818359375
+288.1074219 1752574.75
+289.1100769 265105.75
+295.1512756 18589.23046875
+303.1420593 23725.09765625
+304.1292114 19801.515625
+305.1339417 3401769.0
+306.1191101 1255174.625
+307.1217651 227633.046875
+310.4630737 19661.470703125
+311.1344299 60757.61328125
+312.1148682 20257.85546875
+319.1491394 19577.3125
+321.1537476 350572.375
+322.1564636 52006.94140625
+323.1444702 1207916.125
+324.1462708 195173.703125
+325.1481934 25103.4140625
+329.143158 63783.2421875
+338.1421814 69182.6953125
+338.1805725 388176.375
+338.649292 21284.416015625
+339.1836243 77284.6015625
+347.1521301 25340.541015625
+359.1433105 65597.46875
+366.1861572 155199.71875
+367.1867371 26206.892578125
+369.1385803 29751.29296875
+376.1706848 115540.2109375
+377.1567993 81397.640625
+378.1563416 19900.9765625
+386.1610718 25444.357421875
+394.1807861 839002.4375
+395.1828613 155183.890625
+412.1885071 39494.91015625
+420.6776123 22823.7109375
+450.214325 24518.98828125
+460.1913147 25590.908203125
+468.2211609 59396.9296875
+485.2473755 220517.765625
+486.25 68682.7265625
+488.1878052 52431.19921875
+489.1819153 24583.44921875
+492.229187 193016.90625
+492.7303162 84202.28125
+495.2257385 45484.58203125
+503.7125854 21903.447265625
+505.2119446 56554.76953125
+506.2015991 52634.72265625
+512.2286377 54518.2265625
+512.7260132 26111.7890625
+520.742981 22690.966796875
+521.2319946 32578.994140625
+523.222168 503240.28125
+524.2234497 129954.8515625
+525.2369385 41736.35546875
+554.2711792 25055.884765625
+571.751709 91780.7421875
+572.2746582 330801.34375
+573.2786865 101008.7578125
+576.260498 65074.8359375
+577.2687988 25064.216796875
+580.2637939 95765.828125
+580.7550049 2706776.0
+581.2562256 1782481.125
+581.7577515 679796.125
+582.2581787 123725.9921875
+589.2672729 130345.3984375
+589.7653198 101939.359375
+598.2727661 63595.2109375
+598.7698364 44983.80859375
+599.7782593 80269.9765625
+606.2547607 35763.01953125
+624.2672119 65149.84375
+673.324646 485227.96875
+674.3265991 169424.25
+675.3257446 45591.625
+711.2996216 31189.02734375
+802.3641968 116877.4765625
+803.3705444 47271.63671875
+873.4030151 85249.9453125
+874.4031982 55956.49609375
+1001.45459 40249.61328125
+1058.465454 22461.43359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.7.7.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=7"
+RTINSECONDS=0.678169488
+PEPMASS=598.27001953125
+CHARGE=2+
+51.77952576 12548.7861328125
+58.13399124 14049.578125
+64.52626801 59189.8125
+64.53048706 40010.765625
+64.58198547 39919.77734375
+64.58614349 29689.76171875
+75.58704376 12549.755859375
+82.05407715 18876.515625
+135.7999878 11479.9013671875
+149.5657349 44474.47265625
+167.0920868 40510.140625
+169.0591125 29422.466796875
+175.1018982 24919.3359375
+175.1179352 287279.125
+176.1205292 19316.6640625
+177.0758972 87185.578125
+178.0601044 325615.0625
+178.0780945 14933.8017578125
+178.3349915 40025.78515625
+178.3546906 50189.40234375
+179.0638275 26916.1328125
+179.0915527 26938.462890625
+182.0914612 19972.01171875
+183.0753937 27587.123046875
+186.0859528 104794.6640625
+190.0596161 20089.939453125
+194.102356 36024.49609375
+195.0864868 4034374.0
+195.1280365 28389.189453125
+196.0893402 399192.84375
+197.0910339 36157.8515625
+200.1020203 33421.45703125
+206.0913086 135686.078125
+207.0936279 18486.61328125
+215.0912933 17911.689453125
+218.1025696 80059.15625
+220.2522125 13853.02734375
+221.101593 13643.09375
+222.0861053 15646.4931640625
+234.0963135 15368.64453125
+240.0968323 31003.04296875
+246.0971069 615175.0
+246.1203308 11462.3330078125
+247.100174 83327.7265625
+257.1230469 108348.9453125
+260.1129761 123646.1015625
+267.108429 18590.109375
+270.0973511 129340.8203125
+273.8466187 13244.126953125
+278.1194458 17417.068359375
+278.1503906 16623.0625
+283.1430664 52082.1328125
+287.1235657 152210.3125
+288.1075745 1586722.125
+289.1100159 224018.265625
+290.1130066 33962.4765625
+294.1174316 15268.109375
+295.150177 26145.6875
+302.1323242 17461.953125
+303.1453857 31760.533203125
+305.1341248 2970101.0
+306.1192932 1118786.125
+307.1213684 195667.15625
+308.1209106 16297.5576171875
+311.1341858 46950.6640625
+312.1169128 38786.2890625
+321.1541443 354839.9375
+322.1562805 46579.31640625
+323.1444702 1056524.125
+324.1470642 175607.828125
+325.1438904 13407.859375
+329.1437988 57204.08203125
+338.1419983 46229.96484375
+338.1808777 427241.5
+338.6459656 35025.640625
+339.1823425 67495.8046875
+347.6490479 16007.1044921875
+349.1599731 21111.640625
+351.1315002 23020.716796875
+358.1611328 19995.638671875
+359.1445007 58656.78515625
+360.1479187 19156.50390625
+366.1868591 98044.0234375
+367.1837463 24670.90234375
+369.1378479 30553.2265625
+376.1701965 105311.484375
+377.1556091 82333.6953125
+386.1641846 23871.626953125
+389.1624451 18547.587890625
+394.1811829 687990.125
+394.2411194 28045.068359375
+395.1832275 141824.125
+412.1894836 30487.18359375
+420.6825867 25038.193359375
+428.196228 20314.5390625
+434.1706848 14704.28515625
+450.212677 16954.98046875
+452.1748962 15543.6357421875
+460.1929321 26429.796875
+468.2214966 51694.81640625
+469.2175598 16966.486328125
+478.2019043 12976.6328125
+483.7175598 14451.8095703125
+485.2479248 200024.8125
+486.2487488 49496.453125
+488.1874695 36434.6875
+489.1865234 23325.3671875
+492.2298279 156396.65625
+492.7321472 55192.25390625
+493.2329712 33561.10546875
+495.2255859 62092.921875
+503.2182922 20008.779296875
+503.7123108 20017.330078125
+505.2123413 52978.21484375
+506.2004089 52090.98046875
+512.2301636 40356.265625
+512.7280884 33192.93359375
+521.736084 22774.30078125
+523.2224121 399232.625
+524.2246704 114401.609375
+525.2341309 25773.462890625
+555.2494507 14762.51953125
+558.7459717 15417.919921875
+559.2487793 26010.28515625
+571.7504883 95502.8359375
+572.2752686 345107.1875
+572.7540894 18287.568359375
+573.2815552 90593.3359375
+576.2607422 45018.765625
+576.7614136 36393.58984375
+577.2630615 21677.900390625
+580.2612305 72154.328125
+580.7554321 2245823.75
+581.2567749 1541505.875
+581.3685303 19839.39453125
+581.7581177 576673.5
+582.2592773 130930.3046875
+589.2655029 36119.9765625
+598.2723999 51100.41796875
+598.7761841 34178.3828125
+599.2718506 33301.625
+599.777771 90836.28125
+606.2537842 45553.44921875
+624.2675781 50240.82421875
+655.3148804 20548.12109375
+673.3252563 404617.90625
+674.3273315 157204.265625
+675.3336182 33754.60546875
+802.3659668 93751.9296875
+803.3670654 51420.6875
+873.4033203 84447.21875
+874.4035645 47348.05078125
+1001.461487 20275.96875
+1058.471558 24564.8984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.8.8.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=8"
+RTINSECONDS=0.787916289
+PEPMASS=598.27001953125
+CHARGE=2+
+60.42572021 17881.369140625
+60.85041046 18689.939453125
+64.52629089 76638.7109375
+64.53069305 54174.171875
+64.58198547 60085.46875
+64.58613586 41083.3125
+64.63825226 19980.654296875
+64.64142609 21193.251953125
+74.81643677 22870.37109375
+82.05428314 19272.3828125
+149.5743408 50761.23828125
+167.0918274 53349.26953125
+169.0600433 32200.5859375
+175.1179047 346583.21875
+175.1339111 33229.609375
+176.1207428 29324.384765625
+177.0760956 49444.8125
+178.059967 380730.6875
+178.077301 15334.28515625
+178.3421936 107895.6953125
+179.0637512 26513.72265625
+179.0912781 25825.15625
+182.0907898 31404.46875
+183.0748291 35874.69140625
+186.0862122 123052.578125
+190.0611725 20775.431640625
+194.1023712 55624.9140625
+195.0864258 4677695.0
+196.0893402 465338.625
+197.0918427 30777.14453125
+200.1022491 32364.982421875
+201.0856018 27016.6328125
+206.091156 160122.109375
+207.0921021 21559.212890625
+218.102356 51227.625
+222.0856934 22727.7421875
+243.0860901 44493.0546875
+246.0969391 687935.875
+247.099411 86014.671875
+257.1229553 102560.1015625
+260.1121826 115476.5078125
+261.1179504 32960.33984375
+270.0969238 137211.890625
+278.1487732 28445.96875
+283.1416016 46426.27734375
+287.1239624 159995.5625
+288.0542603 25762.533203125
+288.1074219 1789973.125
+289.1103516 263176.5625
+295.1514282 20673.294921875
+305.1339417 3614901.75
+306.1191101 1247431.125
+307.1216736 225719.296875
+311.1351929 50967.9453125
+312.1172485 55327.41796875
+321.1539612 406128.59375
+322.1574402 65229.37109375
+323.1443481 1248705.0
+323.1881714 42728.95703125
+324.146698 189004.078125
+325.1514282 20572.658203125
+329.1442566 50548.6484375
+338.1418152 59741.2578125
+338.1807861 485884.71875
+338.6448059 24189.765625
+339.1824341 74134.0625
+349.1575012 22786.255859375
+359.1436768 67809.1953125
+360.1417542 22033.73828125
+366.1860046 159967.578125
+367.1867981 31347.076171875
+369.1393127 38881.2734375
+376.1700745 146200.671875
+377.1563721 96035.109375
+386.1657104 23067.1953125
+394.1809692 768579.375
+395.1821289 162767.0625
+412.1886902 43134.75
+420.6846313 21224.61328125
+468.2202148 47730.765625
+477.2167053 30597.6875
+478.2027893 28328.88671875
+485.247345 241455.90625
+486.2509766 62540.5078125
+488.1867676 34596.828125
+492.2296143 166429.28125
+492.7317505 105126.5625
+493.2319031 49534.921875
+495.2262268 71139.484375
+505.2122192 41166.30859375
+512.2296143 33140.35546875
+512.729187 36209.62109375
+520.7351685 23750.958984375
+521.234375 29905.25
+523.2217407 536059.125
+524.2250366 123895.8515625
+525.2294312 31590.79296875
+555.2594604 21636.205078125
+558.7443848 23711.130859375
+571.7498169 74526.4296875
+572.2750854 384996.6875
+573.2791138 111389.2109375
+576.2628174 51091.96484375
+576.7637329 23267.494140625
+577.2611084 22696.6171875
+580.2615356 95152.6953125
+580.7548828 2848798.75
+581.2562256 1864112.125
+581.7581177 713072.75
+582.2590942 162948.390625
+589.2663574 122338.53125
+589.7659912 36050.47265625
+598.274292 64057.8671875
+598.7745361 32783.6015625
+599.7762451 83414.6171875
+606.2592773 37722.83984375
+624.2688599 72026.6328125
+625.2767944 23583.9375
+673.3236694 511695.25
+674.326355 173329.84375
+711.307251 27961.4921875
+802.3635864 114109.40625
+803.3692017 60672.03515625
+873.4016724 127368.4140625
+874.4103394 61240.1796875
+875.4144897 27108.9765625
+1001.445679 30901.3671875
+1002.457397 24001.1953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.9.9.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=9"
+RTINSECONDS=0.893743521
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13433075 17892.7734375
+61.68746948 12565.4736328125
+63.33114243 11362.970703125
+64.52622986 58188.234375
+64.53047943 39551.6640625
+64.58197021 45258.51953125
+64.58618164 26488.2890625
+64.63824463 20963.078125
+64.64149475 15808.1796875
+82.05474091 27056.576171875
+89.4367981 11694.287109375
+105.3324509 14749.5810546875
+149.5734253 43899.3125
+167.0915375 40359.83203125
+169.0596619 31513.798828125
+169.7340546 14538.3642578125
+175.1177216 334809.5
+176.1212158 21218.44140625
+177.075882 67380.296875
+178.0599518 368003.3125
+178.3404846 77669.21875
+179.0632019 31565.392578125
+179.091156 22599.439453125
+182.091507 15641.9619140625
+185.8986511 12196.689453125
+186.0860443 97286.3359375
+190.0618439 14507.3134765625
+194.1026306 47275.7265625
+195.0863495 4266473.0
+195.1277618 32773.6484375
+196.0893097 447870.9375
+197.0914612 27537.556640625
+200.1006165 23811.236328125
+201.0853882 26398.359375
+206.0911713 169386.125
+209.1018829 17100.6640625
+218.1023407 65845.7421875
+221.1006622 15791.6328125
+234.0981293 19084.412109375
+240.0962219 15207.423828125
+243.0864258 17181.67578125
+246.096817 676910.1875
+246.1257782 28823.984375
+247.0992737 83105.7890625
+249.0965424 15933.15625
+257.1227722 92641.40625
+260.1123962 120372.640625
+270.0972595 127887.1484375
+278.1507263 26789.53125
+279.1281433 15906.30078125
+283.142395 34805.05078125
+285.7846985 13578.0322265625
+287.1229553 142031.578125
+288.1072083 1717558.125
+289.1101074 254678.84375
+290.1130371 13989.45703125
+294.1167603 24295.951171875
+295.1490784 17611.697265625
+303.1427002 29035.373046875
+304.1262512 24506.421875
+305.1337585 3235721.5
+306.118927 1127847.5
+307.1212463 184130.296875
+311.1347656 54457.1875
+321.1536255 368379.65625
+322.1564026 60018.671875
+323.0983276 17729.7421875
+323.1442261 1128577.0
+324.1463928 191516.015625
+325.1502991 20094.595703125
+328.1566162 15547.1748046875
+329.1427917 38628.15625
+338.1421814 46403.21484375
+338.1805725 392348.5625
+338.6431274 19572.25
+339.182251 87185.1796875
+341.1486206 15230.6328125
+347.1488342 35801.2421875
+359.1445007 69797.9609375
+360.1478882 24190.875
+366.1864929 132463.265625
+367.18927 18558.103515625
+369.1404419 29221.45703125
+376.1700745 146536.421875
+377.1551819 100323.8046875
+386.1620178 31344.45703125
+394.180603 706353.375
+395.1828918 153348.171875
+396.1832275 18512.01953125
+412.1874084 38855.671875
+420.6826782 30696.189453125
+468.2211304 40873.203125
+477.2141418 19497.802734375
+478.2012024 21565.03515625
+485.2471619 222851.203125
+486.2511292 56739.9140625
+488.1871643 50176.1328125
+492.2287598 132728.515625
+492.730896 91008.0
+493.2313232 28876.7421875
+495.2275085 43816.89453125
+496.2269287 17215.171875
+503.7156677 15824.7412109375
+504.2168579 16708.759765625
+505.2118835 56796.0546875
+506.2062683 53122.83203125
+512.7294922 19886.46484375
+521.2324219 38450.5703125
+521.7388916 31958.90625
+523.2219849 435333.34375
+524.223999 106924.046875
+529.7397461 19074.130859375
+571.7509766 74034.9140625
+572.2748413 280008.71875
+572.7532959 22230.8359375
+573.2785645 107436.75
+576.262207 23738.830078125
+576.762207 43615.35546875
+577.265686 20004.140625
+580.2619019 57303.78515625
+580.7544556 2219583.0
+581.2556763 1433169.875
+581.3358765 22775.61328125
+581.7572632 522363.6875
+582.2584839 80278.0703125
+589.2669067 22383.1640625
+589.7648926 17142.970703125
+598.2738037 43279.609375
+598.7749634 32389.849609375
+599.272644 28465.53515625
+599.7767334 96763.890625
+606.2584839 31988.18359375
+607.255249 15759.828125
+624.2661133 50984.5625
+625.2798462 21570.40625
+673.3227539 404922.15625
+674.3250732 165186.59375
+675.3295288 28641.255859375
+693.2858887 29533.794921875
+711.291687 21550.150390625
+802.3657227 101287.6328125
+803.3700562 47029.3671875
+873.3999023 114205.8046875
+874.4047241 43099.2109375
+1058.47876 18831.21875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.10.10.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=10"
+RTINSECONDS=1.00305736
+PEPMASS=598.27001953125
+CHARGE=2+
+57.89319229 13446.1796875
+58.13413239 12464.7783203125
+60.23639297 12228.0322265625
+60.87527847 13038.8408203125
+64.52619934 71548.875
+64.53071594 50268.921875
+64.58200836 42160.625
+64.58615112 31140.326171875
+64.63809967 14059.9501953125
+82.05410767 18324.10546875
+101.5744934 16882.189453125
+149.5697021 60464.84765625
+159.8105469 14744.2900390625
+167.0918121 40505.25
+168.093399 17055.162109375
+169.0596619 40193.48828125
+175.1178436 293801.4375
+177.0759277 57000.2890625
+177.8390961 13718.3896484375
+178.0455933 11511.7216796875
+178.0600433 359274.28125
+178.0775604 14289.4443359375
+178.3453979 95398.15625
+179.063736 24629.201171875
+179.0927124 17770.658203125
+186.0862274 107903.4765625
+187.0887756 15594.619140625
+190.059845 22322.70703125
+194.1026154 42210.5546875
+195.0863953 4387602.5
+195.1281433 21054.59375
+196.0892334 429881.3125
+197.0918121 20270.455078125
+200.101532 25414.890625
+206.0910034 178351.0625
+207.0940552 20108.744140625
+212.1020508 17128.005859375
+215.092041 19482.80078125
+218.1024628 49086.80078125
+234.0974884 18183.35546875
+239.0375214 14103.1298828125
+240.098114 21639.28125
+243.0850372 21522.6015625
+246.0969391 661008.5
+247.0998383 76760.4375
+249.0962982 16233.7275390625
+257.1224976 96134.28125
+258.1256409 17752.646484375
+260.1124573 121292.3203125
+270.0970459 142021.6875
+283.1423645 47337.0390625
+287.1231384 150418.15625
+288.1073608 1696951.375
+289.1099548 227057.609375
+290.1120605 21871.228515625
+294.1177368 19366.185546875
+295.1504822 16641.93359375
+303.1425476 30432.681640625
+304.1266785 16504.90234375
+305.1339111 3228337.25
+305.2151184 21090.048828125
+306.1191101 1138100.25
+307.1215515 177717.65625
+308.1225891 19988.623046875
+311.1346436 50613.9140625
+312.1168518 36422.0703125
+321.1539001 301039.1875
+322.1574097 55020.27734375
+323.1443787 1151400.125
+324.1470337 169665.0
+325.1486511 16349.91015625
+328.1560364 15013.59765625
+329.142395 57898.5390625
+338.1427002 66040.15625
+338.180603 376203.84375
+338.6459045 25705.19140625
+339.1828918 57965.6171875
+341.1430054 13657.1171875
+346.165863 18079.603515625
+347.1506042 24220.826171875
+347.6509705 20569.904296875
+349.1594238 24637.12109375
+351.1321106 24257.509765625
+358.1672058 28272.037109375
+359.1442261 68652.3671875
+366.1858521 124951.4140625
+369.1388245 31024.361328125
+376.1707764 128902.90625
+377.157074 84068.6640625
+386.1652222 29022.19140625
+394.1808472 701173.8125
+394.2395325 23188.6015625
+395.1822815 138486.40625
+396.1865234 18870.48046875
+412.1893616 40840.0546875
+420.6826477 26210.609375
+468.2213135 55413.9296875
+477.2154846 18979.5546875
+478.2057495 23224.001953125
+483.7149353 17112.8984375
+485.2471619 211965.03125
+486.2514648 60976.66015625
+488.1860962 54651.99609375
+492.2294922 158347.296875
+492.7315063 69098.4609375
+493.2309265 48475.94921875
+495.2270203 73035.5625
+496.2279968 26112.513671875
+503.2201233 14805.8876953125
+505.2108154 54203.33984375
+506.2013855 51678.94921875
+512.2260742 33524.34375
+512.7280884 38259.03515625
+513.2327271 15643.009765625
+521.2376709 24586.919921875
+521.7313843 20266.16796875
+523.2220459 449509.375
+524.2241821 115851.9375
+525.2271118 38733.078125
+529.7467041 21925.236328125
+558.7401733 24319.099609375
+559.2420654 21457.87890625
+571.7501221 85814.8046875
+572.2749023 343157.3125
+573.2803345 102138.4140625
+576.257019 33360.140625
+576.7584839 23317.330078125
+577.2637939 22681.69921875
+580.2600098 70827.53125
+580.7550049 2456132.25
+581.2561035 1655102.25
+581.3681641 26811.181640625
+581.7576294 544185.6875
+581.8636475 19202.857421875
+582.258728 110228.828125
+589.2662354 52746.43359375
+589.7645874 19946.951171875
+598.2731934 81787.9453125
+598.7758789 30470.640625
+599.2749634 41970.890625
+599.7769165 108267.4609375
+606.2587891 23719.7109375
+607.2580566 32741.208984375
+624.2677002 58417.70703125
+625.2811279 28182.853515625
+655.3189087 25002.73828125
+656.2998047 18028.01171875
+673.3239746 432935.28125
+674.3284912 171485.671875
+675.3278198 24508.1015625
+693.2954102 24263.45703125
+711.2943726 23052.326171875
+802.3615723 94808.265625
+803.3703003 37472.59765625
+804.3624268 19774.505859375
+873.4035645 90810.9140625
+874.4009399 39355.7421875
+1001.46051 28086.505859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.11.11.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=11"
+RTINSECONDS=1.111939441
+PEPMASS=598.27001953125
+CHARGE=2+
+60.62731934 14357.716796875
+63.5850029 14448.611328125
+63.81643295 14440.2744140625
+64.52619171 73025.3359375
+64.53066254 57330.59765625
+64.58193207 52855.98046875
+64.58611298 35167.73828125
+64.63813782 25875.318359375
+64.64122009 18868.814453125
+68.31689453 15877.103515625
+74.81112671 14631.578125
+76.28113556 15386.6513671875
+79.52942657 15497.490234375
+82.05391693 19363.294921875
+97.29899597 15036.005859375
+110.5263596 16820.076171875
+149.5761261 32813.04296875
+167.0917969 63682.78515625
+169.0594635 36480.21875
+175.1177979 315515.25
+175.1335907 24857.66796875
+176.1198273 26489.4296875
+177.0761414 74444.2734375
+178.0435944 28926.591796875
+178.0599365 358763.1875
+178.3465424 99651.40625
+179.0640717 28431.552734375
+179.0914001 37794.515625
+182.0908661 29126.76171875
+183.0756226 22480.5546875
+186.0861053 109651.2578125
+194.102951 41727.625
+195.08638 4645462.5
+196.0892792 465154.28125
+197.0920868 22754.162109375
+200.1014557 38644.0546875
+206.091156 203591.0
+212.1133118 21717.490234375
+215.8427734 14533.2666015625
+218.1021423 61931.4140625
+222.0860443 23305.216796875
+234.097229 33029.03515625
+240.0967102 21120.509765625
+243.0867615 25559.662109375
+244.1163177 20018.982421875
+246.0969391 692327.0
+247.0994568 66310.1796875
+257.1224976 107225.1953125
+260.1123657 142009.15625
+270.0968933 161567.546875
+278.1488037 23159.35546875
+283.1434326 50852.08984375
+287.1230164 164169.953125
+288.1073303 1838941.125
+289.1100464 267615.65625
+294.1176147 22799.099609375
+295.1487732 25510.306640625
+303.14151 29704.853515625
+305.1339111 3480938.25
+306.0587463 24705.298828125
+306.1190796 1250326.875
+307.1213684 195855.421875
+308.1227417 17858.830078125
+311.1347351 42997.19140625
+312.1167908 26722.083984375
+320.1316528 17277.7578125
+321.1538086 374123.65625
+322.1560059 69205.109375
+323.1444397 1229964.875
+324.1461182 203282.828125
+325.1497192 23290.64453125
+328.1593933 26537.8359375
+329.144104 61006.53515625
+331.1483765 22971.15625
+338.1417542 47811.4609375
+338.180481 438536.65625
+338.6437683 30862.216796875
+339.1835327 89602.359375
+341.14505 23163.6015625
+347.1486816 39373.76171875
+349.5957947 17065.236328125
+358.167511 21796.37109375
+359.1448059 61851.32421875
+366.185791 143213.390625
+367.1850891 46773.59375
+369.137085 43278.27734375
+376.1704712 161960.21875
+377.1575928 91879.3984375
+386.1647644 36854.265625
+389.1576233 17193.2109375
+394.1808777 803087.1875
+395.1827698 165819.515625
+396.1755371 17085.16796875
+412.1863403 41620.92578125
+460.1899414 20846.626953125
+464.1776123 24854.841796875
+468.2220764 50341.9375
+469.2173462 22531.50390625
+477.2194214 26354.29296875
+478.2040405 25878.6953125
+483.7201843 18733.009765625
+485.2470398 255974.09375
+486.2505798 59940.015625
+488.184906 45249.109375
+492.2294617 219640.328125
+492.7318115 118809.0078125
+493.2295227 26772.158203125
+495.2276306 71130.0
+501.2363281 18652.265625
+505.210144 40584.8203125
+506.207489 47152.8671875
+512.229187 49838.53125
+512.7258301 22567.931640625
+521.2346802 43553.96484375
+521.7372437 23498.822265625
+523.2225342 476441.90625
+524.2242432 148264.421875
+525.2327271 34440.95703125
+558.7507324 19211.90234375
+567.2631226 30865.064453125
+571.7515869 78100.3984375
+572.2755127 347392.71875
+572.7556152 30706.4921875
+573.2781982 99453.015625
+574.2775269 28301.453125
+576.2619629 50044.17578125
+576.7664185 24780.716796875
+580.2612305 118523.8828125
+580.7546997 2685614.75
+581.2561646 1860614.5
+581.7578735 669272.9375
+582.2590332 119362.7578125
+589.2683716 73734.421875
+589.765564 47206.265625
+598.2728271 70046.15625
+598.7747192 47007.78125
+599.2732544 37615.00390625
+599.7784424 70690.7578125
+606.2583618 47586.03515625
+624.2695312 67961.0
+655.3116455 24917.421875
+673.3240967 433572.84375
+674.3269043 162311.03125
+675.3234863 25270.615234375
+711.2841187 29591.2109375
+802.3647461 91416.4921875
+803.362854 46529.4140625
+873.4005127 97603.1171875
+874.401123 54062.578125
+1001.468201 27387.966796875
+1276.61853 16865.107421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.12.12.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=12"
+RTINSECONDS=1.219221265
+PEPMASS=598.27001953125
+CHARGE=2+
+50.17753601 15440.6533203125
+58.13744354 19978.21875
+59.42220688 17419.39453125
+64.52635956 79058.7109375
+64.53050232 40769.671875
+64.58203888 54301.3984375
+64.58625793 31362.5
+64.63816071 21335.0703125
+64.64147949 17666.888671875
+74.81170654 20852.466796875
+75.30565643 19978.783203125
+82.05413055 28194.01171875
+84.18806458 15311.7080078125
+84.82945251 15530.5419921875
+88.34506989 17734.615234375
+99.78824615 15606.251953125
+149.5761108 45143.48828125
+167.0926056 47448.31640625
+169.0596771 32879.59765625
+175.1178284 358417.4375
+177.0759583 62209.59375
+178.0600433 403846.3125
+178.0756989 11610.228515625
+178.3414764 101459.9921875
+179.063385 21816.271484375
+183.0749664 38729.05078125
+185.0932312 15082.5693359375
+186.0862122 85870.8046875
+194.1025848 48009.359375
+195.0865173 4646778.0
+196.0892181 431412.5625
+197.0910797 33030.046875
+200.1019745 29277.064453125
+201.0858459 19403.154296875
+206.091156 179104.34375
+207.0922546 18087.333984375
+218.1024475 44963.01171875
+219.1065216 18116.517578125
+234.0987396 24483.3359375
+239.1120605 20822.763671875
+240.0967712 20943.861328125
+243.0864563 27655.126953125
+244.8638611 17986.630859375
+246.0971832 699922.3125
+247.1001282 96936.1328125
+249.0961761 26575.5390625
+257.1225586 96376.0390625
+260.1127319 146149.546875
+267.1108704 18421.431640625
+270.0970764 135239.46875
+277.1381226 20459.89453125
+278.1496277 26218.068359375
+283.1435547 44289.75390625
+287.1236572 179420.890625
+288.0778503 24107.369140625
+288.107605 1793944.625
+289.1105042 262425.03125
+290.1124573 21063.76171875
+294.1188354 27632.716796875
+295.1500244 28262.1328125
+303.1436768 33799.515625
+305.1341858 3547363.75
+306.1195068 1214220.0
+307.1211548 195096.875
+311.1351624 70121.734375
+312.1145935 34746.31640625
+319.1541443 19515.904296875
+321.1544189 373003.40625
+322.1555176 55493.03515625
+323.0985107 28183.87109375
+323.1446533 1336488.75
+324.1470032 193341.0
+329.1435852 56226.21484375
+338.1417236 53615.109375
+338.1807251 454885.71875
+339.1410522 28080.162109375
+339.1841125 102051.515625
+347.1492615 29284.671875
+349.15802 37583.62109375
+359.1447144 60668.58203125
+366.1864319 154352.453125
+367.187439 20874.587890625
+369.1379089 33942.296875
+376.1707458 120369.5546875
+377.1585693 101831.1953125
+386.1638489 28070.513671875
+394.1811218 799435.5625
+394.2406616 27037.81640625
+395.1825867 153513.296875
+396.1887817 21255.048828125
+412.1900635 34954.26171875
+450.2062073 17367.2421875
+468.2213135 62370.41015625
+469.2192688 19243.845703125
+477.2192688 24257.400390625
+483.7186584 34935.125
+485.2479248 251220.9375
+486.2511292 78339.4296875
+488.1882935 66301.28125
+492.2302246 192260.390625
+492.7297974 92317.9375
+495.2275085 64652.8203125
+496.2257996 29069.619140625
+501.7362366 22278.462890625
+503.7181091 41389.92578125
+505.2113953 78195.7734375
+506.2049866 54671.08203125
+512.2276001 50331.82421875
+512.7262573 42368.234375
+521.2330933 29073.814453125
+521.7352905 21004.443359375
+523.2228394 510298.0625
+524.2238159 175208.3125
+525.2329102 27739.875
+559.2337036 20753.4296875
+571.7529297 62472.234375
+572.2750244 416690.34375
+572.7556763 25787.259765625
+573.2788086 89929.5390625
+576.2627563 76905.15625
+576.7696533 31100.787109375
+577.2651978 34763.9453125
+580.2637329 101459.609375
+580.7556152 2724844.5
+581.256897 1833064.125
+581.758606 632989.0625
+581.8640747 27804.6171875
+582.2591553 133506.0625
+589.2667236 104114.4375
+589.7661743 64248.171875
+598.2738037 77130.140625
+598.7782593 27085.671875
+599.7758789 65738.9921875
+606.2597656 57701.37890625
+624.2694702 70957.3984375
+625.2702026 20726.923828125
+655.3231812 26474.28125
+673.3250732 462343.34375
+674.3284912 187490.734375
+675.3308105 28624.134765625
+711.2929688 24257.6953125
+802.3629761 112004.6171875
+803.3726196 46655.07421875
+873.4024658 121878.015625
+874.4024658 44321.30859375
+1001.469849 24551.302734375
+1115.776978 20193.103515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.13.13.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=13"
+RTINSECONDS=1.325663457
+PEPMASS=598.27001953125
+CHARGE=2+
+61.88482666 12472.640625
+63.07877731 14724.705078125
+64.52626038 67847.0703125
+64.53066254 47331.25390625
+64.58198547 48194.015625
+64.58614349 30868.60546875
+64.63814545 20795.125
+64.64129639 16414.57421875
+65.12898254 13512.6669921875
+73.60390472 13386.4736328125
+149.5738831 45366.1015625
+167.0917664 31401.76171875
+169.0596008 32653.404296875
+175.1177216 340393.5625
+176.1195526 15820.345703125
+177.0761566 79518.0703125
+178.0598907 385609.90625
+178.078125 16588.171875
+178.3482513 92514.6015625
+179.0632629 42217.0625
+179.091507 17634.564453125
+183.0750885 16314.013671875
+186.0860291 132644.78125
+190.1067963 13827.0029296875
+194.1018982 51434.17578125
+195.0863037 4413840.5
+196.0891266 427086.8125
+197.0919952 20706.611328125
+200.1019592 24356.55859375
+201.0854645 22210.732421875
+206.0909882 175763.765625
+218.1019135 59588.48828125
+218.8660583 13152.271484375
+222.0856476 21733.7890625
+240.0948181 23979.095703125
+243.0835724 27634.712890625
+246.0968018 683002.1875
+247.099823 85858.1640625
+257.1225891 104771.3671875
+260.1127319 111848.8984375
+267.1134033 13246.7587890625
+270.0969238 136011.203125
+277.1409302 19524.33203125
+278.1484375 20343.462890625
+283.1425781 43784.6484375
+287.1234131 180736.21875
+288.1071472 1723337.75
+289.1097412 240136.46875
+290.1124573 17598.92578125
+293.1291199 18918.98828125
+294.1169128 23606.01953125
+295.1488647 30731.98046875
+303.1431885 47376.33203125
+304.1261902 19184.619140625
+305.1336975 3306810.25
+306.1188354 1230571.0
+307.1212769 213771.0625
+308.1211548 26072.869140625
+311.1347046 51900.30859375
+312.1138916 33834.82421875
+321.1538086 354802.90625
+322.1564026 70384.25
+323.0995789 20371.169921875
+323.1442261 1155370.0
+324.1462097 185695.953125
+325.150238 20433.970703125
+327.1746521 14365.7724609375
+329.1442261 41399.15625
+330.1481018 20207.44921875
+331.1490173 24393.26953125
+338.1427612 41193.03125
+338.1802979 394548.09375
+339.1412964 26487.015625
+339.1835327 94086.7890625
+341.1373291 17973.068359375
+346.1734314 14790.51953125
+347.1478882 31748.57421875
+354.7084351 15689.2138671875
+358.0703735 17060.193359375
+359.1448975 61806.2578125
+366.1860962 129934.21875
+367.1912231 28926.123046875
+369.1379395 25875.107421875
+376.1697388 111579.6796875
+377.1565247 87367.8671875
+386.1661377 19114.59765625
+394.1805115 773501.375
+394.240387 21769.162109375
+395.1823425 144725.359375
+396.1841431 26837.142578125
+412.1884155 45005.6796875
+413.1673279 28180.904296875
+420.6846313 22326.84765625
+450.2043762 23010.29296875
+460.1952515 21679.96875
+468.2195435 52002.80078125
+478.2087708 28275.45703125
+483.7180481 21408.73046875
+485.2471619 214614.390625
+486.2518311 55213.578125
+488.1874695 61393.015625
+492.2290955 160931.609375
+492.7288513 74816.390625
+493.2346802 26557.13671875
+495.225769 56028.37109375
+503.7129517 25036.3359375
+505.2104492 69177.1875
+506.2054138 57133.16796875
+512.2262573 44862.1171875
+512.725708 28413.46484375
+513.2322388 18199.169921875
+521.2325439 22808.615234375
+523.133728 31585.1015625
+523.2212524 473496.125
+524.2231445 141312.125
+525.2287598 43448.98828125
+554.2677002 22657.7265625
+555.2584229 19916.818359375
+558.7434692 30234.0859375
+559.2476807 22539.783203125
+567.2495117 16655.078125
+571.7484131 123192.6015625
+572.2744751 337969.75
+572.7432861 17173.201171875
+573.2785645 91696.65625
+576.2634888 32494.30078125
+576.7607422 39961.45703125
+580.2595215 88632.5390625
+580.7543335 2637733.0
+581.2554321 1688852.375
+581.7572021 652516.75
+581.8639526 28368.87890625
+582.2576904 106230.5703125
+589.265686 53538.08203125
+589.7619019 32647.6328125
+598.2703857 52465.984375
+598.7735596 49202.90234375
+599.2745361 47572.1328125
+599.7770996 100948.65625
+606.2547607 30305.552734375
+624.2685547 48953.4921875
+673.3232422 453891.75
+674.3248291 172393.984375
+693.2870483 22150.91796875
+802.3618164 111848.7265625
+803.3607178 39183.8125
+873.3977051 73135.2109375
+874.3994141 68219.6875
+875.4047852 29003.0625
+1001.445435 23068.189453125
+1058.479736 23971.58203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.14.14.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=14"
+RTINSECONDS=1.433899857
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13439178 19171.890625
+58.13732147 17710.697265625
+64.52614594 54351.08203125
+64.53043365 44012.19140625
+64.5819397 44822.796875
+64.58604431 30234.8203125
+69.22848511 15404.8935546875
+91.23220825 13371.4921875
+149.5722656 48114.66796875
+151.3455963 14589.154296875
+167.0914764 46314.92578125
+169.0597076 33598.46484375
+175.1177216 339188.875
+177.0761719 57656.83984375
+178.0597229 341724.28125
+178.3457489 92649.703125
+179.0630951 24137.390625
+179.0906219 30501.3828125
+182.0910492 23104.55078125
+183.0749969 32173.771484375
+186.0861206 111668.65625
+194.1026459 48690.90234375
+195.0862885 4349624.0
+195.128006 30116.3671875
+196.0890656 410438.28125
+197.0919495 17443.328125
+200.1017761 22197.544921875
+201.085144 17016.28515625
+206.0910339 137480.03125
+218.1026154 69011.5546875
+234.0965576 24865.5078125
+239.1115112 17993.876953125
+240.0971832 19982.044921875
+243.0870514 15599.0810546875
+246.0967865 664386.1875
+246.1255341 34382.40625
+247.098999 72657.1171875
+257.1223145 110408.7421875
+258.1259766 20503.73046875
+260.1126099 111722.296875
+270.0968018 148421.734375
+271.1012268 24189.5625
+278.1186829 27024.751953125
+278.1495972 33690.2734375
+283.1425476 37871.40625
+284.1199341 28371.857421875
+287.1230469 171240.328125
+288.1072693 1628734.625
+289.110199 249703.734375
+290.1107483 25953.11328125
+294.1178589 22474.513671875
+295.1526184 20757.841796875
+303.1436462 33040.3984375
+304.1250916 17075.138671875
+305.1337585 3170500.25
+306.1190491 1177464.375
+307.1210327 182085.0
+311.1348572 71225.984375
+312.1181641 30411.7890625
+321.1537781 320652.71875
+322.1550598 64917.3671875
+323.0990601 14861.3564453125
+323.1442261 1218858.25
+324.1463318 185746.875
+329.1439819 46662.90234375
+338.1425476 45988.90234375
+338.1802979 409081.15625
+338.6463013 30232.54296875
+339.1818542 83499.484375
+341.1428833 15504.0869140625
+347.1480408 32972.12890625
+349.1596985 39963.4140625
+351.1241455 15189.111328125
+358.1674194 20758.9921875
+359.1436462 70037.6015625
+366.1858215 167797.34375
+367.1894836 25583.580078125
+369.1401978 29711.23046875
+376.1699524 95353.890625
+377.1558533 87581.703125
+386.1653442 43962.5703125
+394.1806641 745571.0625
+395.1828918 155428.328125
+412.1870422 42061.42578125
+420.6838989 17488.6484375
+434.1723022 21792.955078125
+460.1948547 18584.595703125
+468.2203064 46284.9609375
+474.7119751 20265.59765625
+477.2221069 23573.27734375
+478.2028809 17557.02734375
+483.7199707 25862.619140625
+485.2469177 188773.46875
+486.2493286 63001.54296875
+488.1848755 38927.1484375
+492.230011 159971.265625
+492.7302246 86162.6640625
+493.2313538 33631.3125
+495.2276917 54862.484375
+496.2420654 19747.630859375
+503.7233276 22794.208984375
+504.2164001 20233.73046875
+505.2089844 50844.9609375
+506.1993408 42000.23828125
+512.2243652 48634.4609375
+512.7270508 19443.541015625
+521.2316284 51948.28515625
+523.2221069 480952.0625
+524.2247925 121725.8515625
+525.2253418 20852.529296875
+558.7460327 21763.72265625
+571.7504272 88596.9140625
+572.2741089 291879.5
+572.7444458 22588.216796875
+573.2796021 100032.7578125
+576.2627563 48256.90625
+576.7625732 29843.75390625
+577.2636719 28361.470703125
+580.2625122 71525.75
+580.7546997 2153929.25
+581.2560425 1684828.0
+581.7575073 627106.875
+582.2597046 113045.1953125
+589.2653809 48601.38671875
+589.7666626 49734.87890625
+598.2734985 52006.8046875
+598.7744141 39697.09375
+599.2762451 21345.662109375
+599.7767944 90975.4609375
+606.2594604 31508.984375
+624.2693481 44352.56640625
+625.2724609 17881.90234375
+673.3242188 394522.625
+674.326416 180533.703125
+711.2924805 23427.603515625
+784.3540039 20757.88671875
+802.3637695 77544.3515625
+803.364563 54829.73046875
+873.4012451 89206.6015625
+874.4042969 58979.43359375
+1001.461365 23621.623046875
+1270.230713 17355.482421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.15.15.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=15"
+RTINSECONDS=1.5420908
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430786 13713.4228515625
+64.52632904 63439.828125
+64.53068542 45675.4453125
+64.58198547 42680.80078125
+64.58615112 31417.423828125
+64.6381073 20109.212890625
+64.6414032 18303.611328125
+71.03037262 12885.9541015625
+76.28117371 17504.626953125
+94.61801147 14133.3349609375
+99.29441833 14259.984375
+149.5743103 44337.859375
+152.0341949 15372.6708984375
+167.092453 34954.37890625
+169.0599518 43589.828125
+175.1179199 348934.59375
+176.1208496 20520.9140625
+177.0758667 63335.33203125
+178.0600128 331347.1875
+178.077652 22129.23828125
+178.3358765 55105.69921875
+178.355011 35682.44921875
+179.0631866 32670.689453125
+179.0917358 26427.947265625
+183.0747223 27290.154296875
+186.0861053 107441.5859375
+194.1027069 64339.109375
+195.0864716 4398102.0
+195.1280975 23360.779296875
+196.0894318 478056.5625
+197.091507 46245.3203125
+200.101593 26518.16796875
+205.0587921 15582.822265625
+206.0912323 181308.046875
+218.1026764 59746.3515625
+222.0859528 27328.806640625
+234.0963898 19770.0078125
+239.1121368 21872.970703125
+240.0953522 40017.8828125
+243.0837708 14987.958984375
+244.1189117 26974.169921875
+246.0970612 702370.4375
+247.0996857 91346.765625
+249.09552 19270.962890625
+252.09729 14849.24609375
+257.1228638 107022.3203125
+260.1125793 111446.296875
+267.1126404 17072.890625
+270.0973816 157444.1875
+271.1007385 20290.0234375
+278.1173096 18505.943359375
+278.1488342 29778.83984375
+283.109314 18191.435546875
+283.1433411 63795.203125
+287.1232605 153198.265625
+288.0775452 24658.259765625
+288.1075134 1686193.625
+289.110321 251764.78125
+289.1432495 24997.23828125
+290.1105347 16021.1728515625
+294.1175842 22676.26171875
+295.1497803 34145.80859375
+303.1436462 34295.9609375
+304.1309509 19443.5234375
+305.1341248 3448667.0
+306.1193237 1167317.75
+307.1214294 203874.625
+308.1240234 19365.318359375
+311.1348877 57949.11328125
+312.1177673 35425.49609375
+312.3347778 17526.458984375
+321.1542664 345549.5625
+322.1569519 59311.546875
+323.1445923 1204491.875
+324.1468201 208097.875
+325.1546021 21237.40625
+329.1439209 48229.8125
+338.1418152 70161.9140625
+338.1808472 424942.15625
+338.6454773 19998.75
+339.1829529 93480.9765625
+341.1424255 19664.833984375
+347.1489563 19102.09765625
+358.1655273 19636.53515625
+359.1446533 76223.375
+366.1861877 135751.5625
+367.1890869 23690.43359375
+369.1389771 46386.4765625
+376.1705933 133564.421875
+377.1582031 83055.3828125
+380.1568604 16773.18359375
+386.1661377 34221.890625
+394.1810608 776277.1875
+394.2394104 23670.36328125
+395.1828003 134681.84375
+396.1855164 23708.7109375
+412.18927 40175.984375
+420.6826782 20780.466796875
+421.186554 15338.5888671875
+424.2092896 14899.9296875
+464.1735535 22487.671875
+468.220459 69514.921875
+469.2237549 19089.408203125
+477.221405 25567.51953125
+483.2252502 24754.6640625
+485.2478027 213787.703125
+486.2512512 71518.765625
+488.1870117 59381.58203125
+492.2292175 177556.84375
+492.7307129 112659.6015625
+493.2302551 38722.16796875
+495.2259216 56643.85546875
+496.229187 30848.822265625
+503.2242432 19518.40625
+503.7203064 18859.142578125
+505.2120972 73481.4921875
+506.2061157 48884.76171875
+506.7271423 16503.4453125
+512.2293701 32654.5234375
+512.7288208 49189.8046875
+513.2262573 24178.07421875
+521.2355957 25423.5546875
+523.1338501 32254.81640625
+523.2227783 516914.28125
+524.2254639 158121.046875
+525.2342529 28983.80859375
+555.2581787 22325.95703125
+558.7527466 28886.041015625
+567.7608032 18710.361328125
+571.7492065 100841.953125
+572.2754517 346963.65625
+573.2799072 110241.1953125
+576.2666016 35663.234375
+576.7625122 40481.2421875
+577.2694092 26020.751953125
+580.2643433 117534.421875
+580.7554932 2433489.25
+581.256897 1654936.375
+581.7588501 644146.6875
+582.2596436 148251.390625
+589.2674561 63358.3828125
+589.765625 32820.5
+598.2736816 73279.7421875
+598.7749634 34568.34375
+599.2731323 37069.5390625
+599.779541 81547.5234375
+606.2570801 28964.796875
+624.2697754 81737.6171875
+625.2715454 19545.466796875
+655.3007812 17187.08203125
+673.324646 421838.46875
+674.3277588 152369.484375
+675.3365479 33398.75
+711.2919922 21796.763671875
+802.3654175 93573.3515625
+803.3676147 55444.40625
+873.3959351 98273.90625
+874.4035645 33951.7890625
+1001.464294 22314.119140625
+1039.69519 15013.5322265625
+1058.488159 22740.306640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.16.16.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=16"
+RTINSECONDS=1.650260322
+PEPMASS=598.27001953125
+CHARGE=2+
+57.00882721 17634.6171875
+64.52628326 91200.3671875
+64.53047943 51578.51953125
+64.58203125 60510.53125
+64.58616638 34287.55078125
+64.63789368 26058.810546875
+64.64143372 14948.59765625
+74.81196594 31158.4609375
+82.05400848 18402.484375
+85.73542786 14867.85546875
+130.9194641 15401.830078125
+146.5042419 16490.919921875
+149.5626831 30516.703125
+149.5767517 34835.984375
+167.092392 47362.8046875
+169.0598755 31538.158203125
+175.1177673 320312.09375
+177.0756378 76164.1171875
+178.0601044 386131.4375
+178.3509827 88453.7890625
+179.0630951 21399.916015625
+179.0919495 36641.3984375
+182.0916443 18737.474609375
+183.0751495 31059.0390625
+185.0896149 16786.318359375
+186.0858917 117801.7578125
+190.4640045 15719.7998046875
+194.1028748 52177.99609375
+195.0864258 4697230.0
+196.0891571 433660.21875
+197.0908203 27881.607421875
+200.1017151 34441.83203125
+206.091217 178618.765625
+207.0935059 23854.783203125
+209.1015778 18880.12109375
+212.1121368 32397.341796875
+215.090271 19933.041015625
+218.102005 66020.921875
+240.0975647 34995.5
+246.0969238 694804.625
+246.1256104 37248.83984375
+247.099472 77979.21875
+257.1220703 102756.1484375
+257.8883667 15344.927734375
+260.1122131 120043.7578125
+269.0170898 16304.984375
+270.0972595 144242.34375
+278.1163025 19733.244140625
+278.1490173 39077.0234375
+283.1420898 46170.99609375
+287.1235352 166336.234375
+288.1073914 1795099.375
+289.1104126 234466.859375
+295.1494751 30764.1796875
+303.1438599 35907.8828125
+304.129425 28179.3828125
+305.1340027 3514333.25
+306.1192017 1294403.625
+307.1213989 208730.328125
+308.1237488 30413.390625
+311.1352234 50336.77734375
+312.1173706 48280.9453125
+316.801178 17156.8515625
+321.1542053 413161.9375
+322.1569214 62881.51953125
+323.1444702 1283519.875
+324.1462708 188328.21875
+329.1442566 72473.2109375
+338.1419067 53343.1875
+338.1806641 425179.0625
+338.6469116 25485.275390625
+339.1834412 76562.671875
+341.1463928 29112.802734375
+346.1702881 19078.048828125
+347.1517639 27508.982421875
+349.1614685 28570.11328125
+359.1452026 72043.5546875
+366.1864014 142130.984375
+367.1877747 21194.919921875
+369.142334 30670.837890625
+376.1707764 133467.21875
+377.1557007 63542.109375
+386.1661682 28283.013671875
+394.1808167 831696.0625
+394.2399292 22762.56640625
+395.1834106 161208.625
+412.1858215 35500.99609375
+420.6849976 20916.798828125
+438.7518311 16782.611328125
+460.1920166 21124.322265625
+468.2204895 72521.3828125
+469.2147217 22793.828125
+483.7236328 31544.310546875
+485.2480774 207185.953125
+486.2507324 61010.38671875
+488.1858215 46184.0
+492.2291565 194373.015625
+492.7302246 91857.25
+493.2293701 31164.107421875
+495.2286987 63001.3359375
+496.2266541 24498.498046875
+505.2121582 80310.0
+506.2030334 61374.3984375
+512.2283936 47097.1875
+512.7240601 40144.12890625
+518.6893311 17570.306640625
+521.2344971 28835.212890625
+521.7350464 35249.06640625
+523.22229 585227.5625
+524.2246094 184717.0625
+525.2315674 37154.01171875
+555.2564087 24678.697265625
+558.7426758 27818.759765625
+567.7540894 24800.662109375
+568.2612915 20946.048828125
+571.749939 95017.9765625
+572.2759399 387024.90625
+573.28125 104889.546875
+574.27771 25946.84765625
+576.2644043 38864.95703125
+576.7614746 36140.9296875
+577.2682495 34241.6640625
+580.2616577 128284.953125
+580.755127 3011834.75
+581.2564087 1891776.75
+581.7583618 712829.875
+582.2585449 193400.765625
+589.2681274 83021.328125
+589.7697754 65993.8671875
+598.2745361 43929.98046875
+598.7733154 47277.23046875
+599.2657471 29826.71875
+599.7786865 58309.65625
+606.2578735 51183.90625
+624.2714844 78091.0234375
+625.2755127 26461.8828125
+655.3195801 21223.029296875
+673.3242798 503521.25
+674.3257446 203521.046875
+693.2802734 23009.62890625
+711.302124 28243.5859375
+802.366272 100665.5234375
+803.362793 39228.6796875
+873.4040527 101709.59375
+874.4017334 63194.28515625
+1001.452148 39604.22265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.17.17.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=17"
+RTINSECONDS=1.756691361
+PEPMASS=598.27001953125
+CHARGE=2+
+51.76722336 12356.275390625
+52.77573395 11859.2080078125
+57.65359879 13937.52734375
+64.52619171 58857.84765625
+64.53048706 44158.53515625
+64.58197021 45886.55859375
+64.58615112 27923.076171875
+64.63806152 16447.6484375
+80.67054749 12636.01171875
+82.05387878 16938.98828125
+110.5738068 14273.3828125
+123.1430664 12922.5810546875
+149.5611877 15294.888671875
+149.5733032 44780.4140625
+167.0912781 47161.06640625
+169.0589752 31160.861328125
+175.1021423 25960.68359375
+175.1176147 327122.1875
+176.1205597 31259.064453125
+177.0757446 78007.03125
+178.0597687 353249.5
+178.0779114 17974.560546875
+178.3392334 66193.6953125
+179.0630035 17042.068359375
+182.0921631 17484.794921875
+183.07547 24357.65625
+186.0859833 102616.5234375
+187.0702667 14733.3642578125
+194.1019135 57626.41796875
+195.0862427 4229793.0
+195.1276855 38611.8046875
+196.0890961 423139.25
+197.0908203 21827.541015625
+200.1006012 21810.76953125
+201.0865021 20075.1875
+206.0910339 144732.78125
+207.0926361 27815.357421875
+212.111145 13385.509765625
+218.1024323 59911.01953125
+233.1274872 15122.7412109375
+234.09758 15079.857421875
+240.0955505 21469.09765625
+242.1014709 15198.7802734375
+243.0848846 37217.09375
+244.1172485 21711.35546875
+246.0966797 665634.6875
+246.1206055 10935.8603515625
+247.1001282 77251.046875
+248.1059723 16557.466796875
+257.1225586 111488.7890625
+260.1121521 119755.1484375
+267.1096802 13152.9541015625
+270.096283 115762.0703125
+271.1021423 17092.044921875
+277.1381531 14721.326171875
+278.1484985 20291.544921875
+283.1427307 48411.48046875
+287.123291 148378.25
+288.1069946 1655643.0
+289.1100769 241925.453125
+290.1138916 23418.87109375
+294.1202698 14139.349609375
+295.1491394 39546.69140625
+302.1326904 15245.271484375
+303.1439819 34861.87109375
+304.1234131 19742.115234375
+305.1335449 3193686.25
+306.1187744 1147590.0
+307.1205139 225895.234375
+311.1347351 61250.71875
+312.1174316 39342.78515625
+321.1535034 326117.4375
+322.1564331 64642.5390625
+323.0993652 25932.41796875
+323.1439514 1117272.25
+324.1467285 181133.828125
+325.1506653 18530.8046875
+328.1608887 14977.755859375
+329.1437988 57913.328125
+338.1420288 53768.359375
+338.1800537 374640.90625
+338.6452637 23770.59375
+339.1828003 82708.640625
+341.1430359 15569.978515625
+349.1575928 35480.0703125
+358.1625671 14955.197265625
+359.0966797 15254.8662109375
+359.1434631 53665.21484375
+366.184845 138196.234375
+367.1899109 20655.013671875
+369.1370544 41320.40625
+376.1694641 125435.5390625
+377.1559143 71432.09375
+386.1633911 26484.130859375
+394.1802979 717121.8125
+395.1825562 122734.4765625
+412.1906433 23670.880859375
+420.6860657 18699.48828125
+428.2007751 16363.4453125
+460.1936951 21655.5390625
+468.2211304 49787.109375
+468.4139099 15287.40234375
+485.2461853 199585.609375
+486.249939 53872.94140625
+488.1847229 51871.73046875
+492.2286377 174392.421875
+492.7287292 94046.6015625
+493.2347412 21503.1953125
+495.2267151 56018.5390625
+503.7172241 18730.541015625
+505.2109375 43293.53515625
+506.2068787 48861.80078125
+512.225769 31488.8203125
+523.2211914 430058.8125
+524.2245483 135456.78125
+525.2261963 28531.455078125
+530.2492065 18448.484375
+555.2547607 27420.51171875
+571.7495728 83991.5234375
+572.2729492 307544.34375
+572.7556763 17776.109375
+573.2789307 105781.5078125
+576.2590332 40437.4765625
+577.2615356 16719.326171875
+580.2616577 64589.28515625
+580.7539673 2254811.5
+580.8406372 30924.359375
+581.255188 1598533.875
+581.3356323 25536.205078125
+581.7564697 551527.0625
+581.8636475 17704.80078125
+582.2583008 94464.3984375
+589.2630615 26935.77734375
+589.7628174 21019.623046875
+598.272583 58851.34765625
+598.7737427 69751.6875
+599.2683105 26005.47265625
+599.7769775 94297.59375
+606.2592163 48809.73828125
+624.2667847 60758.89453125
+625.2636719 18656.24609375
+655.3178711 17835.177734375
+673.3225098 426131.75
+674.3248901 159877.28125
+675.3267212 47235.9140625
+693.2875366 18197.916015625
+784.3460693 17051.677734375
+802.3632202 103461.453125
+803.3712158 31484.736328125
+873.3974609 71387.46875
+874.4020386 52305.80078125
+1001.469849 24656.2265625
+1002.463562 24531.638671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.18.18.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=18"
+RTINSECONDS=1.865724672
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13427353 27703.384765625
+64.52620697 68886.0234375
+64.53045654 49586.3984375
+64.58190155 44264.76171875
+64.58601379 43093.85546875
+64.638237 23768.798828125
+64.64134979 16696.099609375
+65.99749756 15875.970703125
+72.71803284 15125.6318359375
+72.97878265 15696.0986328125
+82.05392456 19698.126953125
+85.62167358 15259.9208984375
+87.07949066 15864.2373046875
+95.05495453 15263.5771484375
+98.62552643 14376.28125
+113.0249405 13675.8935546875
+149.5648651 50414.24609375
+151.084198 17382.650390625
+162.5057983 15791.1328125
+167.0916748 25885.2421875
+169.0600128 27034.083984375
+175.1176758 324231.0
+176.1205597 25664.3671875
+177.0757294 81046.5703125
+178.0437012 27914.65625
+178.0598145 341054.84375
+178.0772247 10382.564453125
+178.3496399 100322.8125
+179.0637817 31372.630859375
+179.0916748 19813.06640625
+182.0909424 24201.4609375
+186.0860748 115861.53125
+194.1025696 38611.95703125
+195.0862427 4674777.0
+196.0888519 472682.75
+197.0905914 21522.1796875
+200.102005 31067.140625
+201.0852051 23130.48046875
+206.0910034 188729.09375
+215.0932922 16659.806640625
+218.1023102 66675.0859375
+239.11203 29420.59765625
+240.0957031 28286.28515625
+243.0851288 21477.7109375
+246.096756 759531.875
+247.0992126 85814.078125
+249.098175 20306.251953125
+253.1017914 18540.896484375
+257.122406 110447.9765625
+260.1121216 133887.1875
+270.096405 154338.0
+277.1375427 18731.9140625
+278.1505127 30382.888671875
+283.1417542 42300.484375
+287.1230469 168967.859375
+288.1071167 1723295.875
+289.110199 251217.953125
+290.1134949 19444.701171875
+303.1447754 38337.62890625
+303.4198608 17414.6015625
+304.1268921 25646.033203125
+305.1336365 3525012.0
+306.118927 1278932.625
+307.1210327 227485.4375
+308.1225891 26533.375
+311.1340027 46606.72265625
+312.1175232 44472.98828125
+321.1535339 357263.4375
+322.1565247 64004.60546875
+323.1440735 1269669.875
+324.1465454 209982.6875
+329.1436768 53181.84375
+338.1431274 44504.4375
+338.1802063 442863.15625
+339.1826782 102257.7734375
+347.147522 35627.64453125
+349.1602478 20465.388671875
+351.1328125 21669.13671875
+358.1638794 25909.69921875
+359.1453857 60781.54296875
+366.1860657 136490.65625
+367.1895447 33256.875
+369.1365662 45945.54296875
+376.1700134 124900.0234375
+377.1573792 74482.578125
+386.1636047 34570.09375
+394.1804199 888068.9375
+394.2396545 29457.099609375
+395.1829834 146427.734375
+412.1856995 27439.919921875
+420.6829834 25517.388671875
+468.2203064 42848.8984375
+469.2232361 27681.201171875
+477.2141418 28022.744140625
+485.2468262 243253.609375
+486.2487183 64237.046875
+488.1867676 47887.1640625
+492.2290649 228605.40625
+492.7286987 90759.1171875
+493.2305603 31703.06640625
+495.2260132 69070.015625
+505.2113037 60549.8359375
+506.2049255 76619.3828125
+512.2238159 30069.951171875
+512.7305298 21826.34765625
+520.7359619 22491.22265625
+521.2287598 43660.09375
+523.2211304 571809.5
+524.2231445 160846.203125
+525.2259521 43929.83984375
+529.744812 27955.296875
+559.2513428 24182.97265625
+571.7520752 86518.28125
+572.2736206 361496.96875
+572.7476196 34850.2578125
+573.2814941 110986.828125
+576.2580566 68584.140625
+576.758606 23584.93359375
+577.2645874 35870.6875
+577.7668457 31718.572265625
+580.2612305 116837.8046875
+580.7543335 2773224.0
+581.2555542 1935388.125
+581.3376465 31850.396484375
+581.7573853 748996.5
+582.2581177 156719.078125
+589.2675781 117438.7265625
+589.7651367 66804.7421875
+598.2702026 63349.2578125
+598.7717896 41108.8046875
+599.2817383 26170.37890625
+599.774292 71134.2734375
+606.2570801 45753.734375
+624.2653809 78332.328125
+625.2697144 33904.95703125
+673.3234253 469367.03125
+674.3255615 139953.9375
+675.3340454 37336.92578125
+693.2957153 25922.7890625
+711.296875 19172.169921875
+802.3636475 116434.390625
+803.3651123 63790.875
+812.1988525 21398.6796875
+873.3989868 96312.2109375
+874.4032593 67228.4921875
+1001.443909 18391.083984375
+1002.44696 28397.263671875
+1059.47937 24865.669921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.19.19.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=19"
+RTINSECONDS=1.972339777
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13409805 16993.822265625
+64.52622986 62510.3203125
+64.53050995 40882.4765625
+64.58201599 48233.0703125
+64.58618164 32305.6796875
+68.82757568 13931.9833984375
+73.79934692 12990.689453125
+74.81188202 16387.306640625
+76.28118134 13847.58203125
+77.78149414 13720.4462890625
+94.45635986 12845.68359375
+115.178215 14254.1259765625
+149.5709991 54824.71875
+152.1143646 12724.763671875
+167.0918579 59395.140625
+168.095932 17694.619140625
+169.059494 37491.93359375
+175.1179352 297383.125
+176.1201172 22519.3125
+177.0761108 62864.3046875
+178.0600891 336884.8125
+178.3387909 81043.96875
+179.0633545 26653.833984375
+179.0913696 21377.66015625
+182.0904846 16972.265625
+183.0754852 23977.212890625
+186.0860596 118112.484375
+187.2439728 14807.71484375
+194.1026764 56088.8515625
+195.0864868 4190872.5
+196.0893097 445417.59375
+197.0914459 20954.49609375
+200.1013184 22963.251953125
+205.0592346 18342.125
+206.0913086 165479.71875
+209.0783234 17257.15234375
+215.0917969 17199.2109375
+218.1022034 70761.4140625
+234.0978088 22643.388671875
+240.095871 18317.572265625
+243.0868835 16802.93359375
+246.0970154 628590.8125
+246.1256714 29545.5625
+247.099884 80306.9375
+249.0972443 16523.826171875
+253.9411621 15340.224609375
+257.122467 105981.578125
+258.1268005 26272.4375
+260.1126099 110426.7109375
+270.0968628 111877.6796875
+278.1181641 16372.740234375
+278.1490479 25099.6171875
+283.143158 25327.8515625
+287.1237183 160907.25
+288.1074829 1692344.375
+289.1100159 237854.890625
+290.1111755 26296.482421875
+294.1176147 17282.931640625
+295.1509399 34518.234375
+303.1433716 33450.26171875
+305.1340637 3239959.75
+306.1192322 1171682.25
+307.1210327 200163.859375
+311.1353149 42457.03515625
+311.287323 14408.474609375
+312.1166992 31771.923828125
+321.1540527 326604.65625
+322.1564636 59374.53515625
+323.0983582 29236.73828125
+323.1445007 1166186.75
+324.1459351 166812.140625
+329.1436157 46386.12890625
+338.1416931 60232.73046875
+338.1808167 395690.75
+338.6470337 16074.5087890625
+339.1829224 70467.6484375
+347.1498413 23821.53125
+349.1593018 24658.435546875
+359.1447449 44878.84765625
+366.1861572 113673.8125
+369.1399231 28692.6171875
+376.1704712 128883.7265625
+377.1557617 98585.9609375
+386.1643982 21027.8203125
+394.1810303 742556.4375
+394.2403564 23465.82421875
+395.1825867 161705.234375
+396.185791 19990.791015625
+412.1859436 31110.69921875
+434.1713867 19045.001953125
+452.1791077 18833.107421875
+460.1890259 28636.8515625
+468.2218018 52118.703125
+469.2085571 17043.34375
+477.217926 25200.64453125
+478.2080994 19213.54296875
+483.7197266 16752.580078125
+485.2477722 231810.40625
+486.2502747 60906.546875
+488.1854858 59355.09765625
+492.229126 204866.953125
+492.7322083 92603.84375
+495.2267151 55815.03515625
+504.2138672 14900.10546875
+505.2110901 52299.84375
+506.2017517 49068.515625
+507.204071 25139.974609375
+512.2260132 49224.12109375
+512.7259521 29505.734375
+521.2334595 28430.0859375
+521.7379761 26687.634765625
+523.2220459 441603.4375
+524.2247314 127735.9765625
+541.2313232 18203.453125
+559.2405396 18108.509765625
+571.7478638 59216.72265625
+572.2747803 299580.9375
+572.7508545 25378.826171875
+573.2802124 92121.84375
+574.27948 23866.001953125
+576.2568359 38791.0703125
+576.7590332 27271.25390625
+577.2616577 28788.880859375
+580.2622681 77729.7109375
+580.755249 2189790.5
+581.2565308 1525972.5
+581.3693848 17590.8359375
+581.7580566 592012.625
+582.2598877 120705.9296875
+589.2657471 43199.8125
+598.2735596 44674.84765625
+598.7736206 38050.04296875
+599.2765503 30762.728515625
+599.7747803 83211.109375
+606.2608643 38871.4609375
+624.2698975 57757.51953125
+673.324585 390590.96875
+674.3276367 174507.59375
+675.3294678 27919.01953125
+693.2890625 20359.458984375
+802.3639526 99312.1484375
+803.3687134 51005.8046875
+804.3664551 17506.61328125
+873.401123 115227.2109375
+874.4012451 50804.40234375
+1001.464233 18417.77734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.20.20.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=20"
+RTINSECONDS=2.080889889
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 54482.21875
+64.53045654 36430.5546875
+64.58204651 45841.10546875
+64.58614349 28135.640625
+64.63803864 21194.923828125
+64.64157867 15187.005859375
+67.35640717 14998.4462890625
+71.43437195 13067.970703125
+73.01555634 13528.751953125
+76.25583649 14165.060546875
+100.8949127 14518.19921875
+112.5233917 14683.607421875
+116.4192352 14401.2119140625
+142.6088562 15968.953125
+149.5614624 15411.1884765625
+149.5740509 51239.50390625
+167.0918884 44875.91015625
+169.0593109 31688.15234375
+175.1178436 287105.5625
+176.1215057 13917.6240234375
+177.075943 64606.88671875
+178.0435944 28011.79296875
+178.0600281 324595.375
+178.3453979 96183.9296875
+179.0637207 31247.587890625
+179.0916901 21934.3125
+183.0751953 21838.8125
+186.0859833 129011.3984375
+190.1074219 17978.580078125
+194.1028595 37094.39453125
+195.08638 4411624.0
+195.1281281 19317.91015625
+196.0892792 447184.4375
+197.0922394 30806.85546875
+200.1012115 36576.5859375
+201.0842896 19616.0859375
+205.0598907 15728.9013671875
+206.0910797 160311.203125
+215.0910492 19245.658203125
+217.5175629 14323.9384765625
+218.1029663 67206.9296875
+240.0972137 16088.7783203125
+243.0856323 23954.275390625
+246.0970001 644920.4375
+247.1000214 97001.75
+249.0965118 22503.669921875
+257.1229248 104740.375
+258.1226807 17720.349609375
+260.111908 104180.59375
+261.1183167 22740.52734375
+267.1089478 13986.0341796875
+270.0967712 157050.78125
+276.1055908 25866.939453125
+276.1349487 17638.783203125
+278.1499939 20127.123046875
+283.1420898 51051.578125
+287.1234741 127301.8984375
+288.1073914 1644585.625
+289.1099854 221228.171875
+290.1131897 27827.453125
+293.1337585 17595.603515625
+295.1485901 20852.341796875
+303.1440125 26671.078125
+304.1270142 24770.951171875
+305.1339111 3328704.25
+306.118988 1231569.875
+307.1213379 212220.5625
+308.1218872 18721.419921875
+311.1357422 46252.40234375
+312.1182861 47074.69140625
+318.1412964 19333.580078125
+321.1537781 399922.84375
+322.1574402 60938.3125
+323.1443787 1154118.125
+323.1892395 30558.576171875
+324.1467285 189643.484375
+328.1632385 22417.798828125
+329.1436462 52398.9765625
+338.1418457 49566.36328125
+338.180603 443760.1875
+338.2254944 27466.044921875
+339.1830139 78582.15625
+347.1491699 25929.138671875
+349.1589966 26847.580078125
+358.1635437 19002.9140625
+359.1438599 62091.43359375
+366.1862183 169827.328125
+367.1876526 28703.09375
+369.1390686 42100.05859375
+376.1703186 125664.3515625
+377.1560364 93918.171875
+386.1644592 33591.66015625
+394.1808472 744614.1875
+394.240448 23109.158203125
+395.1828308 166411.796875
+401.8881226 16550.060546875
+412.1833191 33697.98828125
+420.6828308 21450.802734375
+421.1844788 17046.421875
+460.1910706 20266.54296875
+468.2207031 55102.39453125
+469.2148743 21479.646484375
+477.2167969 19657.20703125
+478.2050171 21880.1875
+483.7193909 23712.50390625
+485.2476501 223240.90625
+486.2518921 53860.171875
+488.1848755 54627.55078125
+492.2294922 169374.015625
+492.7309875 75315.6015625
+493.2288208 15942.5771484375
+495.2261047 75679.453125
+503.2164612 19171.8046875
+503.718811 28525.470703125
+505.2122803 57502.9453125
+506.2005005 54964.04296875
+512.2265015 64216.00390625
+513.2270508 19005.845703125
+521.2332764 33524.16015625
+523.2218018 505669.34375
+524.2244263 113255.359375
+525.229126 27475.494140625
+558.7376709 22674.064453125
+571.7502441 62264.5
+572.2750854 296517.125
+572.75 25957.462890625
+573.27948 100878.6640625
+574.2736816 20770.095703125
+576.2601318 60091.50390625
+576.7617798 33093.08203125
+577.2606201 28935.44140625
+577.7600098 24048.935546875
+580.2623291 72821.1875
+580.7549438 2148782.0
+581.2562256 1462481.125
+581.368103 21767.45703125
+581.7578125 564972.4375
+582.2616577 99993.9921875
+589.2683716 43802.51171875
+589.7729492 21746.16796875
+598.2733154 68361.109375
+598.7758179 24478.8125
+599.2717896 39533.64453125
+599.7772217 77673.796875
+606.2585449 24942.63671875
+624.2699585 60326.96484375
+625.2686157 23535.529296875
+673.3244629 376594.9375
+674.3259277 127372.0234375
+675.3292236 31911.529296875
+802.3621216 89247.1328125
+803.3621216 40018.6484375
+804.3640747 22972.509765625
+873.4014893 98981.9296875
+874.407959 40908.63671875
+1058.459595 19335.83984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.21.21.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=21"
+RTINSECONDS=2.189387937
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58840179 22391.083984375
+64.52630615 69240.1328125
+64.53047943 44162.26953125
+64.58195496 52793.421875
+64.5861969 35091.44140625
+64.63825226 20772.939453125
+74.81196594 18420.2421875
+82.05420685 20964.43359375
+99.26983643 16346.91015625
+107.9453812 14841.619140625
+149.5652466 43025.14453125
+167.0923767 32567.85546875
+169.0600433 17153.873046875
+175.1179199 353216.875
+176.1216125 22383.22265625
+177.0758514 72617.6875
+178.0601044 352900.96875
+178.3417816 100171.046875
+179.0634766 35604.48828125
+179.0915222 20874.083984375
+183.0747833 34549.81640625
+186.0864105 112976.2109375
+190.0600739 19955.453125
+190.1072845 17084.3984375
+194.1026306 28112.763671875
+195.0864716 4561596.0
+195.1281738 31497.173828125
+196.0894012 459702.0625
+197.0912018 30747.310546875
+200.1035767 20523.30859375
+206.0911407 168401.453125
+207.0940552 20251.0625
+218.1022644 64578.6875
+222.0848389 17027.5234375
+234.0979462 23055.44921875
+239.1109161 18880.8984375
+240.0975647 25563.75390625
+244.1160278 22734.787109375
+246.0970612 707523.3125
+247.0996246 70139.03125
+249.0968781 21806.5078125
+257.1225891 100224.7578125
+258.1281738 18272.37890625
+259.1246033 18104.52734375
+260.1125183 113316.6328125
+261.1182861 25355.5859375
+270.0969543 121277.8203125
+271.1021729 19817.662109375
+278.1137085 16190.2568359375
+278.1480408 18890.720703125
+283.1425171 59580.88671875
+287.1238403 155655.875
+288.1075439 1680447.125
+289.1100464 267914.75
+290.114502 38355.62109375
+295.1497803 19106.384765625
+303.1441345 28370.916015625
+304.127594 20600.5859375
+305.1340942 3382002.0
+306.1192627 1263381.5
+307.1212769 204655.359375
+308.1239929 47013.64453125
+311.1350098 68147.7109375
+312.1169128 37893.46875
+318.1418457 17552.431640625
+321.1539001 373786.15625
+322.1579895 60253.84765625
+323.1445312 1182806.5
+324.1467896 186006.890625
+325.1538391 21662.47265625
+328.1617432 20292.453125
+329.1446533 60493.33984375
+338.1416016 60319.01171875
+338.1809387 435987.59375
+338.6448975 20446.376953125
+339.1831055 79113.5390625
+341.1468201 19089.419921875
+349.15979 19683.859375
+359.144165 70426.5703125
+366.1864014 162935.59375
+367.1926575 31925.14453125
+369.142334 24410.361328125
+376.1705933 141737.5625
+377.1564331 98064.1328125
+378.1564331 16583.453125
+386.1643066 41059.70703125
+394.1810303 848193.25
+394.2394714 22876.97265625
+395.1829224 166937.75
+396.1828918 23710.900390625
+412.1902161 28578.173828125
+420.6820068 18399.326171875
+460.1934509 37791.99609375
+468.2216187 82483.53125
+483.7216187 27401.458984375
+485.2478027 225057.5625
+486.2492981 63229.08203125
+487.2510376 19847.4765625
+488.1851501 54633.13671875
+489.1997986 16470.20703125
+492.2290344 182710.5
+492.7305908 92300.6953125
+493.230835 35025.3046875
+495.2250061 71232.90625
+503.2220459 19550.853515625
+503.7151184 29010.291015625
+505.2140808 43652.34765625
+506.2046509 57034.921875
+512.2244873 60082.40625
+512.7236328 34064.87109375
+521.2358398 45775.27734375
+523.22229 496233.8125
+523.3093262 27621.408203125
+524.2247314 155051.671875
+525.2279663 18751.580078125
+541.2290649 20482.5
+555.2554932 20975.765625
+558.7487793 21489.41796875
+567.255249 24289.333984375
+571.7492676 88212.21875
+572.2753296 370056.78125
+573.2800293 87257.0078125
+576.2620239 70069.515625
+576.7575684 41045.5859375
+580.2642212 78407.28125
+580.7553101 2492352.0
+581.2565308 1708459.625
+581.7581787 653034.0
+582.2599487 108691.2421875
+589.2677002 57405.8203125
+589.7679443 59751.59375
+598.2753906 79736.5234375
+598.7748413 39935.09765625
+599.776001 93539.359375
+606.2578735 38616.32421875
+624.2683716 47585.08984375
+655.3167725 30201.05859375
+673.3242798 465450.34375
+674.3262329 146094.078125
+711.2924194 24242.99609375
+802.3652344 95971.5625
+803.3681641 55028.44140625
+873.4026489 113717.0078125
+874.40448 46121.92578125
+1001.457092 22814.306640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.22.22.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=22"
+RTINSECONDS=2.296713793
+PEPMASS=598.27001953125
+CHARGE=2+
+62.85930634 15084.1650390625
+64.52620697 62801.78515625
+64.53045654 49547.75
+64.58200836 46416.39453125
+64.58618927 30851.607421875
+64.63787842 21134.736328125
+64.64131165 16460.70703125
+66.95152283 13540.2001953125
+74.8119278 17723.533203125
+74.81608582 19902.322265625
+82.05427551 15752.181640625
+96.88378906 13750.26953125
+131.8169556 18480.498046875
+137.8063812 15985.8076171875
+149.562149 29939.423828125
+149.5746918 35549.89453125
+167.091629 46410.91015625
+169.0600281 30592.708984375
+175.1177063 287694.46875
+176.1206055 20147.8828125
+177.0761871 59856.015625
+178.0437622 25494.501953125
+178.0598145 348658.625
+178.3353424 46394.94140625
+178.3543854 46386.10546875
+179.0644531 26674.349609375
+182.0908661 33397.8203125
+183.0747986 29164.2109375
+186.0859528 139566.21875
+190.0602264 20644.912109375
+194.1022034 45586.9921875
+195.0862885 4485446.5
+195.1282043 25197.36328125
+196.0890045 419886.6875
+197.0910645 35479.2421875
+200.101181 34286.46875
+206.0910492 181243.734375
+207.0927582 21653.02734375
+209.1024933 15097.171875
+218.1016846 60742.7421875
+240.096405 16640.146484375
+243.0873108 24793.091796875
+246.0967712 660145.0625
+247.0988922 66754.7421875
+249.0990295 26961.36328125
+257.1227722 103707.4921875
+258.1238403 22225.15234375
+260.1125793 110563.5859375
+270.0968018 136341.484375
+271.1018372 18943.263671875
+278.1496887 21208.28125
+281.4581604 14516.8955078125
+283.1426392 41573.546875
+287.1231384 179792.90625
+288.1071472 1636391.5
+289.1096802 260403.6875
+290.1126709 19451.703125
+295.1494751 30530.759765625
+303.141571 28320.6171875
+305.1336365 3474334.75
+306.1186218 1199011.0
+307.1208496 241001.953125
+308.1209412 23266.990234375
+311.1351624 70646.921875
+321.1535034 340888.96875
+322.1548462 55623.81640625
+323.0991821 24576.669921875
+323.144104 1224961.625
+323.2084656 22755.228515625
+324.1462402 194743.46875
+329.1427612 68858.8203125
+338.141571 55919.92578125
+338.1804199 406687.5
+338.6452637 25823.359375
+339.1824646 71372.7109375
+341.1443481 20522.046875
+346.1688538 21174.388671875
+347.1480713 25209.34765625
+349.1620483 21711.8203125
+351.1293945 16143.345703125
+359.1436768 57114.9765625
+366.18573 123509.390625
+369.1371155 30837.279296875
+376.1698608 113080.4375
+377.1558228 61731.88671875
+386.1622925 25365.37890625
+394.1804504 725956.5
+395.1819763 145269.34375
+396.1860046 25045.671875
+412.1846619 39492.140625
+460.1881409 23949.150390625
+468.2204895 48851.7734375
+477.2175598 23576.91796875
+485.2469788 201141.9375
+486.2475586 63417.39453125
+488.1866455 51621.84375
+492.2282715 177628.015625
+492.730835 61850.21875
+493.2297974 28118.52734375
+495.2261963 63739.3046875
+503.2207336 15899.3271484375
+503.7145691 18587.509765625
+505.2105408 35901.4765625
+506.2070312 48517.83203125
+506.7225647 19150.640625
+512.2243042 58180.171875
+512.7266235 19127.388671875
+513.2294312 16175.7490234375
+523.2213745 437448.3125
+524.2248535 134908.46875
+525.2251587 21811.720703125
+554.267395 20248.283203125
+555.2516479 26853.4609375
+559.7402344 17988.953125
+571.7474365 63586.3828125
+572.2735596 307721.71875
+572.7526245 29194.568359375
+573.2814941 97837.140625
+574.270874 22708.462890625
+576.2570801 40676.21484375
+576.7602539 28733.279296875
+577.2623291 30529.13671875
+580.2619019 102395.453125
+580.7542114 2508099.5
+581.2555542 1661088.625
+581.3692627 18024.490234375
+581.7570801 593449.75
+582.2575684 145353.796875
+583.2633667 21076.859375
+589.2681885 80549.546875
+589.7695923 30925.677734375
+598.2720947 57392.9765625
+598.7758789 20447.90234375
+599.2738037 37807.0859375
+599.7757568 104787.859375
+606.2596436 30240.59375
+624.2664795 46894.58203125
+625.2615967 26177.740234375
+655.3129272 23524.310546875
+673.322937 435113.4375
+674.3251343 169509.21875
+675.3279419 19705.322265625
+711.300415 28502.431640625
+802.3648682 114707.375
+803.364624 45401.2421875
+873.397522 87633.3203125
+874.4036865 64116.29296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.23.23.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=23"
+RTINSECONDS=2.404517649
+PEPMASS=598.27001953125
+CHARGE=2+
+50.24632263 13771.83984375
+58.13425827 21008.646484375
+58.13724899 19492.4609375
+64.52625275 67049.3828125
+64.53049469 32631.57421875
+64.58200836 47244.125
+64.58615875 36393.2578125
+81.04641724 17604.1171875
+112.3170853 16368.3408203125
+149.5643005 43035.4765625
+149.5782013 27102.310546875
+167.0915985 48526.40234375
+169.0600739 33548.95703125
+170.903183 16032.0263671875
+175.1178131 300532.5625
+176.1207123 13695.61328125
+177.0760498 63519.08203125
+178.0599213 355587.90625
+178.0781097 22097.83984375
+178.3414307 96856.4140625
+179.0634918 31876.021484375
+179.0915527 26689.755859375
+183.075531 25868.021484375
+186.0859833 112248.5390625
+194.1027222 35901.5234375
+195.086319 4314215.5
+195.1282959 22426.21875
+196.0891876 453462.78125
+197.0908051 31976.974609375
+200.1036835 31635.08984375
+206.0910645 147533.53125
+218.1018677 58472.8125
+231.0945587 16326.9267578125
+239.1131287 19240.205078125
+240.0966644 31182.6640625
+243.0869446 17022.724609375
+246.0968628 677150.375
+247.0995178 84852.7421875
+257.122467 126442.390625
+258.12323 18074.82421875
+260.1118469 97752.1328125
+260.1382141 16141.99609375
+261.1190186 20622.640625
+270.0966187 141066.734375
+278.1486816 25521.09765625
+283.1425171 55009.484375
+287.12323 139804.03125
+288.1071472 1698270.875
+289.1098328 212535.40625
+290.1114502 33143.6328125
+294.1169128 17061.041015625
+295.1489868 35006.0234375
+303.1437073 35575.2109375
+304.1271973 21541.58203125
+305.1336975 3344597.25
+306.118866 1202155.75
+307.1208801 192554.203125
+311.1343994 57659.11328125
+312.1177368 49094.41015625
+321.1536865 364759.03125
+322.156189 69944.546875
+323.1441956 1178029.375
+324.1459961 189917.4375
+329.143219 68759.0859375
+331.1491089 19653.017578125
+338.1418457 50675.6796875
+338.1803589 403600.34375
+339.1821289 70710.1328125
+344.2034302 18653.0390625
+347.1476746 34907.71875
+349.1567993 26850.607421875
+351.1301575 19850.5
+358.1637573 17080.74609375
+359.144043 62777.9375
+366.1850891 133541.921875
+369.1366577 29989.5546875
+376.1695251 109127.625
+377.1567078 68419.140625
+378.1566467 24383.521484375
+386.164978 36739.23828125
+394.180603 726828.375
+395.1821289 168408.0
+398.1740723 22230.142578125
+412.1871643 41987.39453125
+420.6835022 39284.6640625
+432.4861145 18554.416015625
+460.1949768 16777.62109375
+464.1717834 20674.54296875
+468.2180176 54275.0390625
+477.2203979 19104.8515625
+478.2042847 21762.37109375
+485.2465515 208122.328125
+486.2477417 59812.0859375
+488.1852417 40280.78515625
+492.2286987 168307.5625
+492.7293701 98495.4375
+493.2282715 29864.216796875
+495.2249451 43860.0625
+503.717926 30046.63671875
+505.2130737 50952.8046875
+506.2005005 47223.078125
+512.2261963 45590.53125
+512.7279053 24980.708984375
+520.741333 19654.45703125
+521.2322998 44249.90625
+521.7299194 20417.138671875
+523.2209473 484877.4375
+524.223938 122163.453125
+525.225769 26888.525390625
+555.2575073 26275.4140625
+556.2340698 19529.359375
+558.7312012 27992.92578125
+571.7481079 97924.296875
+572.2734375 342668.40625
+572.7547607 27359.830078125
+573.2776489 80061.7578125
+574.2822266 24198.21875
+576.2611084 47114.7734375
+576.7616577 26480.037109375
+577.2635498 38800.34765625
+580.2615356 73803.8984375
+580.7542725 2489053.25
+581.2554932 1619232.25
+581.3369751 25874.35546875
+581.3652954 25839.07421875
+581.7572632 592536.3125
+582.258606 132730.484375
+589.2665405 83125.796875
+589.7615967 38460.46875
+598.2735596 50282.578125
+598.7744141 30220.55859375
+599.2745361 29918.224609375
+599.7755737 70799.0
+606.256958 28527.791015625
+624.2680054 48612.50390625
+673.3230591 446054.375
+674.3253174 186812.078125
+675.3221436 43165.50390625
+693.2858276 21332.34765625
+802.3625488 111558.9765625
+803.3627319 43089.55859375
+873.3978882 115083.1796875
+874.4005737 50360.0390625
+1001.454224 31113.328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.24.24.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=24"
+RTINSECONDS=2.512930704
+PEPMASS=598.27001953125
+CHARGE=2+
+55.24658203 13750.970703125
+58.13422394 19917.03515625
+63.58507538 13726.146484375
+64.52628326 72851.2578125
+64.53063965 55226.53515625
+64.58197784 44338.5
+64.58621979 31848.185546875
+64.63818359 23841.83203125
+107.237442 13290.04296875
+115.9974594 13670.3203125
+133.4889221 13241.8759765625
+136.5610962 15233.25
+149.567627 55202.81640625
+150.9110718 16529.126953125
+167.0917053 48692.8828125
+169.0597229 36526.7109375
+170.9056702 14140.65625
+175.1024933 11741.7294921875
+175.1177979 335069.71875
+176.1218719 24069.767578125
+177.0759735 58002.26171875
+178.0600433 374361.09375
+178.3417358 94109.234375
+179.0636902 23420.642578125
+183.0740204 23349.400390625
+183.6924896 18588.11328125
+186.0861206 121343.4609375
+187.0691376 15748.9296875
+194.102005 51218.02734375
+195.0864258 4484774.5
+195.1286469 26277.537109375
+196.0893097 436088.59375
+197.0908203 44967.8515625
+200.1022949 19513.291015625
+201.0856476 20630.154296875
+206.0910645 170489.578125
+212.1101532 12866.0458984375
+214.4214172 15003.515625
+215.0932159 15545.076171875
+215.601181 16891.517578125
+218.1020203 62159.5
+222.0849609 18264.109375
+232.1180573 16383.2470703125
+233.1265259 28213.041015625
+234.0974426 21197.73828125
+240.0954437 23780.185546875
+243.0855408 30388.8203125
+244.1174622 16750.63671875
+246.0969696 689952.75
+247.0994873 90194.0625
+257.1230164 106556.8046875
+260.1125488 121627.3046875
+261.1122437 16556.74609375
+270.0970459 128966.5078125
+278.1497498 34628.6484375
+282.4789734 17371.9765625
+283.1425781 44741.3984375
+284.1485901 16616.4609375
+287.1231689 164416.046875
+288.1073303 1688983.0
+289.1102295 270354.3125
+290.1117554 17718.1171875
+294.116394 27946.861328125
+295.1508484 25114.8125
+303.1405334 26592.66796875
+304.1282043 20026.017578125
+305.1338806 3328586.0
+306.1190491 1166281.375
+307.1219788 196864.046875
+308.1246033 21112.8203125
+311.1339111 61219.28125
+312.1196594 36713.1953125
+321.1538086 342827.90625
+322.1564636 51726.625
+323.0990295 26387.646484375
+323.1443481 1168040.375
+324.1465149 197683.03125
+328.1610718 19911.361328125
+329.1440125 65010.71484375
+338.1418762 60258.5
+338.180603 444703.8125
+338.6449585 29637.638671875
+339.1821289 67738.5859375
+347.1498108 36539.8203125
+349.1633301 18951.125
+351.1321716 27859.76171875
+358.164093 15850.529296875
+359.1443787 81484.6640625
+366.1856995 114537.6015625
+369.1379395 31170.89453125
+376.1701355 121140.8359375
+377.1574402 91383.8359375
+386.1651306 44004.00390625
+394.1201477 18953.775390625
+394.1806946 823707.9375
+395.1827393 167597.40625
+412.1879883 27253.31640625
+420.6826782 28669.025390625
+421.1836243 17455.994140625
+460.1927795 32908.03515625
+468.2202454 40309.7109375
+469.2164001 17673.3984375
+474.7164612 18709.04296875
+477.2250366 32799.81640625
+485.2466736 235673.84375
+486.2501221 73689.921875
+487.1958008 17806.326171875
+488.1867065 49289.19921875
+492.2290039 196377.875
+492.7302856 105531.2890625
+493.2264099 26344.486328125
+495.226593 61506.25390625
+496.2366943 17883.326171875
+503.7150879 23981.77734375
+505.2110596 58275.234375
+506.1996155 51143.8828125
+512.2265625 66541.0234375
+513.2271118 18549.68359375
+521.2358398 21734.251953125
+521.7296753 24727.513671875
+523.2216187 528983.375
+524.2241211 133044.21875
+525.2283325 31177.296875
+529.7449341 19693.63671875
+558.7428589 26465.24609375
+559.7549438 17664.306640625
+567.2530518 28164.439453125
+567.7540894 23035.01953125
+571.7498779 76223.7734375
+572.2745972 361541.34375
+572.7545776 23238.11328125
+573.277832 85737.8828125
+574.277832 27030.423828125
+576.2581787 59861.7578125
+580.263855 85869.4765625
+580.7546387 2711928.25
+581.2559814 1701475.875
+581.7576904 634488.1875
+582.2581177 138996.0625
+589.2666016 66465.875
+589.7630615 40638.33203125
+598.2703857 52069.01953125
+598.7713013 31223.671875
+599.2717285 40087.84765625
+599.7753906 71584.0859375
+606.2581177 29866.458984375
+624.2670288 43291.21875
+655.3146973 21578.826171875
+673.3233643 417903.53125
+674.3260498 159318.390625
+802.3638306 91365.5859375
+803.3643799 40162.28515625
+873.3983154 112923.328125
+874.4048462 64861.30078125
+1001.457703 27861.888671875
+1249.359497 18312.13671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.25.25.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=25"
+RTINSECONDS=2.620609936
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13442612 19513.685546875
+58.13722992 17447.755859375
+59.91394043 14897.580078125
+62.03672791 14544.544921875
+64.52625275 64074.22265625
+64.53066254 50551.41015625
+64.58206177 52315.5546875
+64.58615112 31817.26171875
+64.63813782 20291.2421875
+64.64148712 16538.70703125
+67.98413849 15289.76171875
+82.27539062 14101.7197265625
+149.5646973 33677.71875
+149.5788269 26191.5859375
+156.9190979 14264.2724609375
+167.0916443 46673.2734375
+169.060379 32347.62890625
+175.11763 316084.09375
+177.0757904 62228.65234375
+178.0598755 362076.65625
+178.0779724 24613.16796875
+178.3412933 97601.4609375
+179.0635223 24407.744140625
+179.0908203 21410.4296875
+182.0908051 31749.611328125
+183.0749664 34523.51953125
+186.0858765 108939.984375
+194.1026459 35556.10546875
+195.0862427 4618430.5
+196.089035 470529.21875
+197.0910034 41545.375
+200.1021576 26487.056640625
+201.085968 19048.576171875
+206.0908813 179041.96875
+207.0957031 20524.205078125
+217.1287537 15331.2275390625
+218.1017609 57023.5546875
+237.1071472 16006.7744140625
+240.0972443 25087.419921875
+243.0856476 24478.2265625
+246.096756 693700.3125
+247.0991516 83866.859375
+248.1101227 14860.6796875
+249.0958862 21808.4375
+257.122345 120653.0078125
+260.1120911 93823.84375
+270.0967102 141854.265625
+278.1175842 18608.37109375
+278.1477051 37262.66015625
+283.1433105 47582.19921875
+287.1236267 123284.625
+288.1070862 1698972.5
+289.1098022 249755.109375
+290.112915 18001.9296875
+295.1495667 37472.44140625
+303.1447754 24844.15234375
+305.133606 3371318.0
+306.1186829 1299876.375
+307.1210938 182276.921875
+308.1205139 20283.517578125
+311.134491 46179.5
+312.1140442 36812.8125
+321.1534729 353078.125
+322.1557007 67467.1015625
+323.144043 1187796.25
+323.1889038 33319.7421875
+324.145752 179838.046875
+325.1490479 23078.8828125
+329.1435852 58442.1875
+338.1427917 43682.88671875
+338.1799622 432385.9375
+339.1828003 61909.79296875
+341.1432495 15375.8271484375
+349.1589966 21442.64453125
+351.1292725 23424.083984375
+358.1693115 23786.66796875
+359.1428223 62679.37890625
+366.1848755 131013.6328125
+367.1907043 17565.43359375
+369.1401978 29649.57421875
+376.1696167 138880.046875
+377.1555786 79224.3125
+378.1595154 17958.927734375
+386.1622925 23062.759765625
+394.1802673 761772.6875
+395.183075 164181.6875
+396.1880798 23513.94140625
+412.1880188 29436.134765625
+420.683197 23112.8515625
+434.1733704 17587.765625
+460.1922607 25017.1328125
+468.2205505 69101.8046875
+469.219635 23418.2265625
+477.2155762 23218.650390625
+483.7197266 19488.123046875
+485.2466736 244602.828125
+486.25 60204.71484375
+488.1848145 42205.32421875
+492.2284851 226195.90625
+492.7297974 119361.8359375
+493.2266541 52446.12109375
+495.2258911 68116.96875
+503.7149048 29319.41796875
+505.2099609 75893.640625
+506.2042542 58067.5859375
+512.2302246 31436.30078125
+512.7269287 35568.34375
+521.2338257 30795.001953125
+523.1345825 29397.94140625
+523.2214355 533753.125
+524.2238159 126567.4453125
+525.230957 32314.86328125
+555.2518921 22423.173828125
+558.7415771 25157.6875
+559.241394 21016.251953125
+565.7498779 21872.134765625
+571.7480469 93100.8828125
+572.2737427 339529.3125
+572.7521973 28254.001953125
+573.2786865 138527.984375
+576.2610474 68494.1796875
+576.767395 30487.001953125
+577.262085 22834.599609375
+580.2626343 87946.1015625
+580.7541504 2594907.75
+580.8388672 34930.68359375
+581.2553711 1707613.0
+581.7567749 629746.4375
+582.2566528 98723.6640625
+589.2662354 86292.515625
+589.7696533 37477.5703125
+598.272644 62195.69140625
+598.7756348 38588.92578125
+599.2762451 48350.23046875
+599.7759399 93124.1640625
+606.2598267 37125.5859375
+624.2685547 56244.06640625
+625.2755737 24328.833984375
+673.322998 442160.28125
+674.324585 156181.421875
+675.3240967 30532.443359375
+693.2832642 21564.58203125
+711.2914429 23684.912109375
+802.3626099 104367.8515625
+803.3656006 58500.79296875
+873.401123 93108.6875
+874.4015503 38750.5078125
+875.4095459 24946.67578125
+1001.45813 22338.380859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.26.26.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=26"
+RTINSECONDS=2.728202546
+PEPMASS=598.27001953125
+CHARGE=2+
+57.05405426 14411.490234375
+58.1374054 14452.181640625
+64.52623749 65598.015625
+64.53045654 38208.21484375
+64.58201599 40778.5078125
+64.58621216 26702.685546875
+64.6381073 20479.501953125
+67.51124573 13425.76953125
+81.04636383 22354.56640625
+110.5091934 15980.87890625
+120.5102234 14772.32421875
+149.5727692 50099.24609375
+165.3214264 12958.2568359375
+167.0918884 37444.98046875
+169.0597076 40787.81640625
+175.1180115 266854.375
+176.1214447 23669.974609375
+177.0765381 67032.7890625
+178.0601654 330495.3125
+178.3458557 95457.515625
+179.0645447 16265.55859375
+179.0912933 21262.12890625
+182.0907593 18232.029296875
+183.0755463 29859.50390625
+186.0861359 116138.5703125
+190.1076355 16509.29296875
+194.1032257 30444.65234375
+195.0646057 34427.25390625
+195.0865021 4293990.0
+195.1281738 30079.056640625
+196.0893402 423575.8125
+197.0925598 26308.013671875
+200.1014557 22665.068359375
+201.0860138 20734.62890625
+206.0912018 143520.375
+209.1030121 15862.294921875
+212.1123199 20127.861328125
+217.1286621 18011.388671875
+218.1019897 57383.7890625
+222.0862122 20036.142578125
+240.0968018 21981.55859375
+243.0876007 19529.080078125
+246.0971527 674401.0
+247.0999146 85123.640625
+249.0966644 16111.859375
+257.1226196 115086.7890625
+260.1128235 112546.984375
+261.115387 15773.6728515625
+270.0968323 132716.53125
+271.1037903 16209.388671875
+276.1339722 29126.98046875
+277.1392517 18932.30859375
+278.1499023 31665.470703125
+283.1435547 51138.46484375
+287.1234741 153303.421875
+288.1075134 1657813.0
+289.1101379 242405.890625
+290.1105042 18537.197265625
+302.1324463 23355.087890625
+303.1442871 22417.3671875
+304.1258545 18856.24609375
+305.1341248 3283294.0
+306.1193237 1168446.125
+307.1213074 184978.953125
+308.1228638 19612.025390625
+311.1352234 50489.59765625
+312.1176758 42227.875
+321.1542053 392910.65625
+322.1569519 56114.39453125
+323.1446228 1153746.875
+324.1469116 172910.078125
+325.1548767 16477.662109375
+329.1447449 49534.08984375
+338.1412048 62640.88671875
+338.1809692 392921.78125
+338.6444092 19007.5625
+339.1833191 62251.24609375
+341.1429749 18062.025390625
+358.1637878 17057.052734375
+359.1444702 83695.796875
+366.1862183 115552.59375
+367.1893311 22802.20703125
+369.1385498 30078.58203125
+376.1709595 116954.859375
+377.1576538 75465.1015625
+378.1596069 17272.994140625
+386.167511 17050.19921875
+394.1812134 725822.25
+395.1833496 147965.25
+412.1825867 19308.9453125
+413.164978 20441.88671875
+420.6816101 19849.931640625
+434.1751099 22363.76171875
+468.2206726 57773.93359375
+478.1984863 24099.212890625
+484.2204895 17290.423828125
+485.2479248 201761.390625
+486.2497253 51101.33203125
+488.1852417 41894.00390625
+492.2291565 148654.125
+492.7306519 102601.671875
+493.2315063 31465.66796875
+495.2283936 58409.6484375
+503.7235718 22808.189453125
+505.2119141 51452.7265625
+506.2124329 42598.078125
+512.2310181 21166.41796875
+512.7318115 27243.833984375
+521.2382812 42707.6015625
+523.2223511 443324.59375
+524.2240601 127761.5859375
+525.2319946 31230.548828125
+541.2267456 15708.9873046875
+554.2670898 17376.638671875
+555.2559204 21147.380859375
+558.2540283 18932.7734375
+571.7510376 103630.4921875
+572.2758789 306498.40625
+572.7444458 32610.478515625
+573.2807007 100004.5546875
+574.2799683 17555.529296875
+576.2634888 45870.984375
+576.7590332 23867.80859375
+577.2623901 20679.37109375
+580.263916 104096.6484375
+580.7553101 2307245.5
+581.2567749 1544675.125
+581.7583008 647383.1875
+582.2595215 124530.171875
+589.2666626 65111.71484375
+589.7698975 25269.166015625
+598.2728882 41065.6171875
+598.776062 37902.84765625
+599.2744751 34378.78125
+599.7782593 86953.765625
+606.262146 23585.763671875
+624.2677612 50893.1796875
+655.3164062 28880.234375
+656.3121948 21797.43359375
+673.3243408 452745.28125
+673.4514771 31999.939453125
+674.3275757 144687.28125
+675.324585 41650.17578125
+693.2871704 20776.18359375
+711.3000488 18154.408203125
+802.3649292 101919.625
+803.3652344 41518.8828125
+852.1259766 18850.916015625
+858.3614502 18624.2109375
+873.3983154 83877.4296875
+874.3966675 62961.8671875
+875.3922119 17306.37109375
+1001.4646 22112.0078125
+1058.469482 30365.998046875
+1162.574951 15905.1357421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.27.27.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=27"
+RTINSECONDS=2.836769424
+PEPMASS=598.27001953125
+CHARGE=2+
+61.56751251 16197.64453125
+64.52633667 69628.2109375
+64.53049469 48580.62109375
+64.58200073 43788.47265625
+64.58614349 38093.75390625
+76.28146362 20229.3046875
+139.6314392 14538.306640625
+149.5672607 58175.64453125
+149.5787964 15886.0263671875
+167.0919952 43278.66796875
+169.0596466 16411.0390625
+175.1177063 333634.25
+176.1211395 29059.15625
+177.0757904 65027.90234375
+178.0437775 30327.400390625
+178.0598602 381948.21875
+178.3508301 80174.265625
+179.0631409 31550.173828125
+179.0930786 36966.234375
+179.5629425 15219.3193359375
+182.0907288 19114.431640625
+186.0862274 120358.3828125
+190.3943634 14306.158203125
+194.1027527 43138.93359375
+195.0863037 4665795.0
+195.1277924 23960.8359375
+196.0891266 462007.25
+197.090683 36659.8828125
+200.1012421 19684.115234375
+206.0909882 188167.3125
+207.0932007 19251.193359375
+212.1128693 18060.61328125
+218.1014557 49536.01953125
+234.0988159 21935.974609375
+240.0952148 17398.646484375
+246.0967712 700593.625
+247.0994415 65408.59375
+257.1221313 123085.2421875
+260.1126099 128467.078125
+261.1174316 27989.17578125
+270.0962219 128683.5078125
+271.1018066 23459.177734375
+276.3726196 14731.8916015625
+277.1387329 19842.1015625
+278.1488647 29208.26171875
+283.1435547 39525.42578125
+287.1229858 170281.921875
+288.1070862 1657202.5
+289.1095276 265090.15625
+290.1109619 24570.1171875
+294.117981 24314.85546875
+295.1514587 16807.8046875
+303.144104 35600.91796875
+304.1252441 26707.080078125
+305.1335754 3458706.5
+305.2160034 21706.611328125
+306.118866 1231957.625
+307.1209717 196171.359375
+311.1335754 53604.98046875
+312.1152954 32476.203125
+321.153717 334937.21875
+322.1565552 78708.0234375
+323.1440735 1229421.875
+323.1891479 35995.8359375
+324.1459656 199526.1875
+325.1522827 24557.666015625
+329.1422119 52457.91015625
+338.1413269 44186.20703125
+338.1802979 397776.21875
+339.1820679 94878.53125
+349.1597595 32250.703125
+351.1286316 20955.470703125
+359.1455383 58067.74609375
+366.1854553 133807.875
+369.1368713 42568.12890625
+376.1696167 148705.046875
+377.155365 76726.5703125
+386.1643066 33657.7109375
+394.120697 22956.203125
+394.180603 755205.75
+395.1817932 148564.25
+407.1670837 22678.046875
+412.1877136 36534.9296875
+428.1990967 22519.89453125
+468.2230225 56819.25390625
+469.2203064 21403.4609375
+477.2149048 34318.93359375
+482.1930847 25673.787109375
+485.2458801 238837.3125
+486.24823 46456.45703125
+488.1825562 45211.671875
+492.2292786 173912.390625
+492.7297668 106542.8828125
+493.230896 22495.93359375
+495.2248535 53007.890625
+503.7142944 21515.708984375
+505.2110901 53736.47265625
+506.1994934 58470.4140625
+512.2259521 45634.73046875
+512.7252197 35889.734375
+521.2384033 28770.5625
+521.7388916 24936.20703125
+523.2209473 445643.625
+524.2235718 132675.140625
+525.2279663 43566.796875
+535.2149658 18494.06640625
+567.2527466 26351.09375
+571.7486572 88815.703125
+572.2734985 314572.375
+572.7504883 44245.0078125
+573.2793579 103317.484375
+574.2770996 30253.3828125
+576.2599487 65080.96484375
+580.2639771 112241.40625
+580.7540283 2644107.0
+580.8389893 33151.37109375
+581.2553101 1701244.75
+581.3380737 23495.412109375
+581.3685913 33602.6640625
+581.7568359 652564.625
+581.8648682 35254.2578125
+582.2590332 168657.1875
+589.263916 118186.546875
+589.763855 65623.421875
+598.2714233 81951.3203125
+598.7764282 36802.03515625
+599.2688599 43569.12890625
+599.7758179 83653.8359375
+606.2587891 37313.3046875
+624.2637939 65842.0625
+625.2735596 19156.521484375
+655.3143921 24100.09765625
+673.3228149 494636.84375
+674.3248901 171540.9375
+675.3251953 32521.708984375
+693.2876587 36091.90625
+711.3001099 20871.08984375
+802.3612671 98726.1484375
+803.3657837 37668.30078125
+873.3988647 96947.7109375
+874.4047852 74161.2109375
+1001.460571 28895.037109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.28.28.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=28"
+RTINSECONDS=2.943541553
+PEPMASS=598.27001953125
+CHARGE=2+
+56.19090652 14484.6220703125
+60.67492294 11156.08984375
+64.52625275 58866.15625
+64.53049469 39265.60546875
+64.58203125 40567.75
+64.58627319 23713.927734375
+64.63805389 15669.162109375
+64.64123535 18130.05078125
+90.4392395 14917.2783203125
+100.4947815 10854.251953125
+128.8267822 12003.8193359375
+145.7099609 13724.6162109375
+149.5749817 27359.583984375
+167.091568 44354.67578125
+167.1068268 11053.6669921875
+169.0597076 30219.771484375
+175.1179962 312191.15625
+176.1218109 18178.701171875
+177.0758362 54435.7734375
+178.0601044 331326.4375
+178.3352814 44669.1328125
+178.3551483 39115.85546875
+179.0627747 15799.2421875
+179.0913696 15513.208984375
+182.0910797 19424.6796875
+183.0752258 29167.63671875
+186.0861816 116507.1875
+194.1027832 49655.37109375
+195.0865021 4104216.5
+195.1284332 21613.337890625
+196.089386 396719.1875
+197.0915833 24562.4453125
+200.1021118 21662.1640625
+201.0852509 20414.21875
+206.0912018 150577.984375
+209.1026306 13030.1142578125
+212.1144562 17478.240234375
+215.0883942 18300.75
+218.1029205 75769.0703125
+222.0859375 12872.2958984375
+231.0899811 12649.16796875
+233.1254578 14142.5791015625
+234.0952148 16094.1611328125
+235.1051178 12524.3740234375
+240.0971832 21244.31640625
+243.0850067 14839.205078125
+244.1184692 16221.095703125
+246.0970917 651660.9375
+247.0999451 65184.1484375
+249.0966492 22249.73828125
+257.1228027 102851.7578125
+258.1254883 21037.158203125
+260.112854 104087.59375
+270.0970459 151731.359375
+278.1175232 20723.947265625
+278.1503601 20767.6328125
+283.1424255 50352.58984375
+284.1479492 13295.9443359375
+287.1236267 143184.6875
+288.1075745 1703411.5
+289.0754395 20959.0625
+289.1104736 249622.71875
+290.1132812 22541.44140625
+294.1168823 13090.6806640625
+295.150116 22873.361328125
+303.1467285 23594.056640625
+304.1263428 16033.6533203125
+305.1341858 3138141.0
+306.1194458 1145265.125
+307.121582 209347.328125
+308.1240845 18166.0
+311.1343689 59952.0390625
+312.1174927 28546.763671875
+320.132019 13608.2724609375
+321.1541138 374991.5
+322.15802 70723.203125
+323.1446533 1119526.75
+324.1467896 171579.296875
+325.1509705 19824.140625
+329.1436157 49169.76953125
+338.1036682 22562.1171875
+338.1425171 53916.2265625
+338.1808472 398914.34375
+339.1424866 14516.357421875
+339.1842346 55033.55078125
+341.1483154 15914.43359375
+346.170166 12595.1201171875
+347.147583 13101.6142578125
+347.6548462 15192.744140625
+349.1611938 25355.615234375
+351.1370239 15026.7822265625
+353.1447754 13769.1943359375
+359.1447754 68088.640625
+366.1864929 130203.2265625
+367.1940613 19193.67578125
+369.1398315 42827.2890625
+376.1707458 118527.34375
+377.1586609 70330.125
+378.1541138 17035.005859375
+385.1795044 15947.31640625
+386.1648865 23583.93359375
+394.1813354 734206.25
+394.2399292 24843.04296875
+395.1828308 154196.640625
+396.1850281 16597.818359375
+412.1880493 24942.84765625
+413.1617737 15355.7587890625
+419.1882935 13655.0283203125
+434.1748047 22129.814453125
+450.2094727 14058.3203125
+460.1904602 22418.466796875
+468.2213135 63580.62890625
+477.2137756 17992.962890625
+478.2036743 25254.76171875
+483.7200623 19915.642578125
+485.2477112 207361.453125
+486.2492065 64371.48046875
+488.1864929 61938.65625
+492.2295227 167060.125
+492.7329407 87987.171875
+493.2315369 44455.34375
+495.2277527 60199.52734375
+503.2313538 14097.966796875
+503.7192383 20442.919921875
+505.2114868 68999.125
+506.2016296 54111.26953125
+507.1982117 16457.44140625
+512.2285156 49993.98828125
+512.7255859 25172.4140625
+521.2315674 27862.484375
+521.7346802 26783.57421875
+523.2224731 442781.09375
+524.2261353 133801.46875
+525.230957 31855.16796875
+531.1588135 14389.7568359375
+541.2330933 15978.791015625
+567.7555542 17288.95703125
+571.7507935 85058.484375
+572.2752686 322175.59375
+572.7496338 22941.111328125
+573.2799072 75867.171875
+574.284668 17914.904296875
+576.2639771 49762.3046875
+576.7626343 40177.84765625
+577.7615356 15124.439453125
+580.2622681 107634.8828125
+580.7556763 2156924.25
+581.2567139 1471724.375
+581.758667 552018.5
+582.2603149 113816.75
+589.2700195 35144.19140625
+598.2719116 53631.4921875
+598.7730103 20368.5390625
+599.2739868 37041.34375
+599.7771606 76399.78125
+606.2611084 39212.72265625
+624.269165 58317.76953125
+625.2658081 18458.337890625
+655.3182373 16542.306640625
+673.3252563 375569.3125
+674.3276367 146341.921875
+675.3295288 22978.451171875
+693.2924194 21503.125
+802.362793 95570.96875
+803.3690186 30764.81640625
+873.399353 87015.5625
+874.4063721 46495.03515625
+1001.453552 24128.392578125
+1058.487061 20465.40234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.29.29.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=29"
+RTINSECONDS=3.05382592
+PEPMASS=598.27001953125
+CHARGE=2+
+51.53556442 14018.1669921875
+52.4560318 13261.462890625
+56.56562424 15299.9873046875
+61.09924316 13758.390625
+63.09876251 15872.490234375
+63.5848999 16514.921875
+64.5262146 66843.171875
+64.53070068 54293.74609375
+64.5819397 48047.08984375
+64.58615875 34490.66796875
+64.63819885 16983.10546875
+64.64134216 20999.09375
+76.84382629 16353.505859375
+102.5933456 14926.9384765625
+113.3932953 15007.728515625
+113.7353058 14547.1806640625
+149.5679474 50493.73828125
+151.8769226 15554.82421875
+167.0912781 42436.5859375
+169.0594482 34282.25
+173.0929108 15484.30859375
+175.1177979 277518.5
+176.1216278 17981.59375
+177.0760345 79900.140625
+178.059967 364148.875
+178.0779724 17713.076171875
+178.3505859 79975.578125
+178.815567 13725.8603515625
+179.0910797 23750.55078125
+182.0897522 21131.599609375
+183.0750885 35738.3515625
+186.0862732 109658.515625
+190.0582275 16233.2177734375
+194.1017303 42102.90234375
+195.0863953 4334508.5
+195.1280823 21855.173828125
+196.0892944 450241.03125
+197.0922852 32770.9375
+200.1015015 23804.99609375
+201.0853577 22211.609375
+206.0910645 175698.828125
+212.1003571 18189.279296875
+215.0904236 18030.98828125
+218.1021271 59300.24609375
+239.1125793 16368.759765625
+240.0983124 17626.50390625
+243.084137 21656.904296875
+246.0970306 666572.125
+246.1257324 34095.88671875
+247.0996094 82174.265625
+249.0947418 22807.51171875
+257.1228943 121298.2265625
+260.1124573 114349.296875
+266.1200867 18721.6875
+270.0970154 140146.4375
+283.1443176 50504.4921875
+287.1238403 136643.5625
+288.1074524 1584925.75
+289.110199 243679.140625
+293.1697388 15088.890625
+295.1488953 27344.251953125
+303.1426086 36064.27734375
+304.1243286 18588.96875
+305.1340637 3258252.5
+306.1195068 1138331.0
+307.1212463 182875.078125
+311.1350403 41922.9140625
+312.1141968 34380.43359375
+321.1542358 332131.65625
+322.1567383 55156.109375
+323.0986328 20241.33203125
+323.1445618 1219460.25
+324.1472778 197150.65625
+325.1514893 19789.583984375
+329.1438904 53015.703125
+338.1428833 42891.83984375
+338.1807556 419208.21875
+338.6473083 33239.0234375
+339.13974 22309.623046875
+339.1835327 80328.6953125
+349.1611938 36049.609375
+359.1447754 66189.953125
+366.1863403 133031.828125
+367.1887512 23817.841796875
+369.1373901 26359.4921875
+376.1703491 135942.796875
+377.1574097 70405.8515625
+378.1559753 14867.2822265625
+386.1646729 35289.28125
+394.1812439 712940.4375
+394.2402649 23138.7578125
+395.1830139 139463.515625
+412.1889648 25309.81640625
+420.6854858 27459.689453125
+468.2191162 42322.3125
+483.2261963 21429.96484375
+483.7165833 20426.349609375
+485.2474365 214798.125
+486.250824 65816.3046875
+488.1871643 45989.67578125
+492.2299194 166885.546875
+492.7298584 86879.0625
+493.2261353 21257.07421875
+495.226532 65419.81640625
+505.2122192 51324.77734375
+506.2013855 52372.4921875
+512.2293091 53211.6640625
+512.7313843 32346.6796875
+520.74823 16497.609375
+521.2391968 20518.7265625
+521.732666 24920.34765625
+523.2225342 479437.15625
+524.2252197 140718.15625
+525.2340698 41408.9140625
+529.7480469 21259.720703125
+558.7355957 24369.23046875
+559.2431641 19192.365234375
+567.2608032 20691.212890625
+571.7507324 97520.953125
+572.2738647 380650.9375
+572.7520142 27755.25
+573.2804565 112597.578125
+576.2647095 44334.81640625
+576.7633057 29022.990234375
+580.262146 78386.203125
+580.7557983 2669226.75
+581.256958 1820509.625
+581.7585449 668998.875
+581.862793 26310.646484375
+582.2596436 128894.984375
+589.2664795 82100.0078125
+589.7652588 43633.74609375
+598.272522 56167.91015625
+598.7709351 34539.046875
+599.2722778 19024.09765625
+599.7791138 91999.1796875
+606.2631836 35205.3046875
+607.2590332 22322.666015625
+624.267395 68433.2890625
+655.3197021 19923.001953125
+673.3250122 479559.65625
+674.3264771 153063.140625
+675.3261719 28649.9140625
+693.2915039 23880.19921875
+802.3640747 115447.953125
+803.3724976 39343.69921875
+873.4002075 114312.65625
+874.4028931 40887.88671875
+1001.461487 28790.646484375
+1041.392212 15254.640625
+1167.660034 18550.03125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.30.30.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=30"
+RTINSECONDS=3.161739712
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436127 21663.12890625
+64.52635956 71560.1640625
+64.53049469 50385.3828125
+64.58198547 56616.57421875
+64.5861969 30638.853515625
+74.81228638 19008.763671875
+86.76894379 16406.95703125
+91.50701141 15261.1875
+108.165123 15760.91796875
+149.5644531 48635.4609375
+167.0921173 37651.0703125
+169.0602722 32332.048828125
+175.1019745 31699.3125
+175.1179352 343745.65625
+177.0760498 58459.2421875
+178.0601959 338375.9375
+178.0780334 24262.484375
+178.3454437 118680.1484375
+179.0636597 36578.8984375
+179.0937958 18591.123046875
+182.0915222 30195.021484375
+183.0752563 37633.3203125
+186.0864563 105037.75
+190.0592957 19375.4375
+194.102951 41689.14453125
+195.0647125 35581.8515625
+195.0865326 4729548.5
+196.0894318 493814.65625
+197.0912933 26317.68359375
+200.1016693 26205.314453125
+201.085022 36627.8984375
+206.0909882 153833.515625
+211.0896149 20788.294921875
+218.102951 71153.734375
+233.6440277 19817.4375
+234.0974274 27808.369140625
+239.113739 19732.416015625
+240.0963745 25913.763671875
+243.085495 22350.75390625
+246.0970917 740802.5
+246.120575 14955.8017578125
+247.0995178 88510.6171875
+257.1228333 118484.453125
+258.1246338 18039.537109375
+260.1126709 127922.6875
+270.0971069 157668.234375
+276.1063538 26800.99609375
+278.1491699 27486.111328125
+283.1424255 53540.109375
+287.1235046 161940.90625
+288.0536499 27330.46484375
+288.1075134 1770883.5
+289.1102905 259669.984375
+290.1126404 22047.41015625
+295.1485596 28970.193359375
+303.1437378 29909.857421875
+305.1341858 3638370.0
+306.1192932 1296863.25
+307.1219482 228350.640625
+308.1209717 26111.962890625
+311.1344299 57190.703125
+312.1166382 38503.52734375
+321.1542969 402298.625
+322.1567993 74191.171875
+323.1445923 1297013.25
+323.1889038 36142.62109375
+324.1471558 219447.0
+325.1520081 30487.93359375
+329.1436462 48175.8125
+338.1420898 66650.3984375
+338.1806946 487947.5625
+338.6485596 29301.5390625
+339.1831055 65990.234375
+347.1488037 35609.65234375
+349.1610718 20369.302734375
+359.1441956 49221.6640625
+366.1859741 181865.09375
+367.1856079 24313.6328125
+369.140625 41271.80078125
+376.1705933 135205.59375
+377.1538086 86106.9453125
+386.1642761 28507.841796875
+394.1367188 17194.484375
+394.1812439 810867.4375
+394.240387 36154.94140625
+395.1821899 135098.25
+412.1923523 45037.1640625
+420.6824036 32019.28515625
+443.1001282 19411.3359375
+450.2075806 17720.046875
+460.1843567 17838.326171875
+468.2185974 63892.765625
+485.247406 211161.59375
+486.2485962 53021.90625
+488.1838379 41820.12109375
+492.2300415 158003.328125
+492.7315369 125508.3984375
+495.2283936 69619.2734375
+503.2225952 21161.9765625
+505.2134399 77536.859375
+506.2026672 56386.13671875
+512.2282715 40235.43359375
+512.7302856 26636.00390625
+513.2336426 32319.3046875
+521.2332764 46162.7890625
+523.2223511 547811.9375
+524.2252197 145333.46875
+529.7469482 26763.482421875
+558.7427368 26117.685546875
+571.75177 62708.40234375
+572.2756958 314813.21875
+572.7528687 28096.294921875
+573.2782593 123778.3515625
+574.2800293 27453.251953125
+576.2595215 52269.71484375
+576.7654419 25388.443359375
+580.2629395 78921.1328125
+580.7555542 2645987.5
+581.2565918 1925603.875
+581.7583618 733534.625
+582.2591553 132097.40625
+589.2680664 117655.0546875
+589.7694092 65735.515625
+598.2723389 46212.6640625
+598.7702026 34275.62109375
+599.2784424 28807.9453125
+599.7786865 66446.0859375
+606.2617188 31097.685546875
+624.2698364 62216.8125
+625.2734375 24268.40625
+673.3250122 430826.96875
+674.3262329 153051.15625
+675.328125 30658.556640625
+802.3641968 98492.078125
+803.3673096 51582.69140625
+873.3988647 130241.1171875
+874.4069824 41752.58203125
+919.6072998 19054.27734375
+1001.447632 32927.82421875
+1058.475586 25310.255859375
+1224.054565 21535.166015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.31.31.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=31"
+RTINSECONDS=3.267604512
+PEPMASS=598.27001953125
+CHARGE=2+
+51.00201797 15087.55859375
+58.13722992 14933.15625
+59.19911957 12755.958984375
+60.25637054 13185.97265625
+62.51247406 13272.8271484375
+64.52629852 68957.2421875
+64.53065491 50760.52734375
+64.58200836 46232.4375
+64.58618164 34053.47265625
+64.63822937 17964.2890625
+64.64151764 14859.3330078125
+110.0658417 13842.8125
+117.2019501 19502.849609375
+149.5670776 46847.4140625
+167.0918121 41338.0546875
+169.0591583 28788.515625
+175.1178589 294776.3125
+177.0761566 77893.7578125
+178.0599976 343035.75
+178.3328094 29010.3984375
+178.3521881 62534.7265625
+179.0634918 34489.17578125
+179.0918274 26319.560546875
+182.0914764 20791.76953125
+183.0756836 24299.453125
+186.0859528 111290.578125
+190.0617218 12319.404296875
+194.1018982 49531.55859375
+195.0864258 4149062.5
+196.0593262 17286.478515625
+196.0662384 16723.115234375
+196.0892792 432886.9375
+197.0923767 20774.888671875
+200.1023102 16379.4140625
+206.0910339 133199.375
+212.1149902 17337.29296875
+217.1288147 23087.6640625
+218.1025848 62005.44140625
+234.0980072 13742.091796875
+240.0962524 33201.453125
+244.1176758 16350.009765625
+246.0969543 632990.0
+247.1000671 105716.0078125
+257.1225281 78729.5546875
+260.1127014 114611.859375
+261.1155701 18078.4453125
+267.109314 22291.345703125
+270.0968628 131109.734375
+271.1026917 13458.810546875
+277.1381226 17045.998046875
+278.1491089 20287.0
+283.1439514 47830.6953125
+287.1234131 169003.125
+288.1074219 1592800.875
+289.1101379 239240.9375
+290.113739 35378.26953125
+294.1179504 19751.8984375
+295.1506653 32629.31640625
+303.1421814 40450.90234375
+305.1339722 3133873.5
+306.1192322 1126966.375
+307.1217041 194997.328125
+308.1214294 19361.68359375
+311.1352234 50902.55859375
+312.116272 32359.681640625
+321.1539917 372859.5
+322.1574402 67782.4765625
+323.0975647 20255.822265625
+323.1444397 1146896.75
+324.1467285 169976.515625
+329.144043 45913.609375
+338.1439819 44141.7265625
+338.1806946 407078.03125
+338.6454468 30188.138671875
+339.1414185 18024.103515625
+339.183197 63336.5
+346.1704102 14041.0146484375
+347.144165 16645.728515625
+349.1613159 34890.9375
+358.3804626 14699.3720703125
+359.1443176 52785.90625
+366.1868286 123025.015625
+367.1906128 21271.99609375
+369.1421204 31372.677734375
+376.1706238 123919.625
+377.1576233 81205.953125
+385.8417053 13547.4267578125
+386.1634827 25188.640625
+394.1810608 725452.3125
+394.2400513 23546.072265625
+395.1827393 151658.640625
+412.1892395 24603.126953125
+422.1831055 15659.2529296875
+460.1919861 35573.84765625
+468.2209778 48058.703125
+469.215332 18931.357421875
+477.2109375 23206.779296875
+485.2470093 209826.671875
+486.2509766 56054.94140625
+488.1842651 50820.55078125
+492.2294922 193103.296875
+492.7304382 108262.2578125
+493.2319031 31706.328125
+495.226593 57713.64453125
+503.2225952 25237.08984375
+503.7199402 18275.552734375
+505.2127075 59780.74609375
+506.2062378 50864.37890625
+512.2252197 43193.59765625
+512.7269287 33022.12890625
+520.736145 21401.810546875
+521.234314 32326.31640625
+521.737793 32283.005859375
+523.2221069 445881.96875
+524.2258911 104225.90625
+525.2306519 31086.1953125
+530.24646 18422.81640625
+558.7449951 18801.287109375
+567.2508545 16356.3818359375
+571.7503052 83413.8671875
+572.274292 342491.21875
+572.75354 25468.375
+573.2799072 102899.125
+574.2722168 16006.1533203125
+576.2599487 52923.234375
+576.7615356 46910.2734375
+577.2639771 22265.48828125
+580.262207 90149.0859375
+580.755188 2394209.25
+581.2565918 1648149.875
+581.3657837 20546.263671875
+581.7579956 588206.625
+581.8642578 26363.685546875
+582.2589722 129115.3828125
+589.2692871 45635.390625
+589.7669678 34150.71484375
+598.272583 47970.50390625
+598.7745361 35915.52734375
+599.2781372 51385.8515625
+599.7782593 72519.84375
+606.2599487 30436.501953125
+624.2644653 62291.515625
+656.3058472 17867.65234375
+673.3248291 406525.59375
+674.3269043 153721.125
+675.3306885 42088.96875
+693.2966919 16859.33984375
+802.3626099 86393.6953125
+803.3626709 34452.1171875
+858.3655396 21286.21875
+873.4022217 106705.9375
+874.4013062 50036.5859375
+875.4196167 17940.708984375
+1002.441467 17786.326171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.32.32.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=32"
+RTINSECONDS=3.376827617
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52613831 60931.24609375
+64.53044891 45937.6875
+64.58195496 39039.80078125
+64.58600616 38772.50390625
+107.3678665 13721.6826171875
+108.0806961 15035.810546875
+131.7804871 13465.4150390625
+147.2420807 15127.3603515625
+149.5648804 35696.93359375
+165.7841339 15197.8076171875
+167.0914612 38670.81640625
+169.0594025 25300.693359375
+175.1020813 26511.466796875
+175.1176147 323109.34375
+176.122345 21768.724609375
+177.0757446 75180.6875
+178.0597534 378912.375
+178.34375 101065.71875
+179.0632324 27667.11328125
+179.0920563 25463.244140625
+182.0922241 18023.109375
+183.0751648 17249.453125
+186.0862885 98007.5703125
+194.1018829 48847.53515625
+195.0862122 4546530.0
+195.1277771 27167.015625
+196.0890656 427580.78125
+197.0907745 34233.5234375
+200.1018829 49187.5546875
+201.0851898 24529.775390625
+206.0907745 165988.8125
+218.1023865 73878.7109375
+222.0847778 18734.478515625
+234.0974121 14997.0673828125
+239.1119843 27389.71484375
+240.0969238 20225.244140625
+243.0848083 15207.16796875
+244.1170654 32133.392578125
+246.0966949 637819.375
+246.141098 17423.8125
+247.09935 75081.421875
+248.1055298 16641.0546875
+249.095047 17973.21875
+257.1222534 104719.0859375
+260.1119995 116902.7578125
+261.1204529 15381.44921875
+262.1262817 27903.22265625
+270.0964966 124419.3125
+278.1488037 38292.859375
+283.1426392 44019.46875
+287.1230774 143228.890625
+288.1070251 1702292.25
+289.1100159 238485.34375
+294.1175232 19737.625
+295.1495972 20767.80859375
+303.1443481 18619.609375
+304.1265869 15634.7568359375
+305.1335144 3352687.5
+305.2152405 21591.103515625
+306.1185608 1205618.125
+307.1213684 163063.15625
+311.1341248 58212.6640625
+312.1156006 31143.125
+320.1328125 18118.83203125
+321.1535034 329731.1875
+322.1574097 58097.77734375
+323.0976257 22627.57421875
+323.1439819 1209448.625
+324.1465759 199744.640625
+325.1485291 28147.671875
+329.1435242 59602.640625
+331.149231 23970.861328125
+338.1421814 44754.10546875
+338.1798706 448837.1875
+338.6456604 26411.62890625
+339.1827698 74818.75
+351.12677 17170.234375
+359.1433105 62546.74609375
+366.1852722 154417.1875
+369.1373291 32454.533203125
+376.1699829 133350.5
+377.1542358 100683.6015625
+378.1591187 18272.412109375
+386.1661987 31401.697265625
+394.1803589 736077.1875
+394.2406616 27662.025390625
+395.1818237 162090.453125
+396.1869202 27409.001953125
+412.1887512 49201.01953125
+460.1871338 20688.58984375
+463.197876 16914.828125
+468.2195435 62399.96875
+477.218689 25025.23828125
+485.2461548 215410.984375
+486.2490845 48189.27734375
+488.1872864 53093.59765625
+489.1958313 16988.474609375
+492.2286377 171261.8125
+492.7294006 110994.5546875
+493.2333374 34536.06640625
+495.2257385 62932.23046875
+505.2096863 41984.97265625
+506.2030945 50350.46875
+512.2250977 33630.59765625
+513.2310791 19810.33984375
+521.2333374 26722.669921875
+523.2211304 461693.4375
+524.2242432 112830.828125
+525.232666 21748.966796875
+535.1362915 15682.541015625
+559.2473755 18865.2890625
+571.7472534 72364.3203125
+572.2736816 310548.59375
+572.7485352 35367.66796875
+573.2790527 78922.296875
+576.2642822 47616.109375
+576.7630615 29961.119140625
+577.265564 34278.71875
+580.2592163 94179.8359375
+580.7540894 2342305.75
+580.8394165 30615.095703125
+581.2553711 1589822.25
+581.3363037 24224.083984375
+581.3675537 24662.79296875
+581.7571411 511296.59375
+582.2589722 105730.3046875
+589.2661133 69679.8828125
+598.2716675 45526.17578125
+598.774292 27955.98046875
+599.2763062 29752.521484375
+599.7768555 108022.1015625
+606.2614746 28866.6484375
+624.2702637 61657.99609375
+625.2750854 21447.48828125
+655.3127441 21086.826171875
+673.3224487 416661.0
+674.3255615 173733.03125
+675.3323975 33750.0078125
+693.2922363 31957.73828125
+802.3624878 83480.796875
+803.3670654 36578.765625
+804.369812 17249.12890625
+873.399292 123171.2421875
+874.4035645 63348.67578125
+1058.461182 26586.640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.33.33.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=33"
+RTINSECONDS=3.484802289
+PEPMASS=598.27001953125
+CHARGE=2+
+54.42721176 16106.1484375
+54.83112717 15944.73828125
+64.40663147 16767.736328125
+64.52626038 73278.6953125
+64.53053284 48943.8671875
+64.58201599 56288.53515625
+64.58620453 30407.521484375
+64.63816833 17837.546875
+73.48818207 16673.626953125
+74.81173706 18113.244140625
+79.87012482 18263.91796875
+95.64020538 18231.205078125
+107.8517227 16671.234375
+112.920311 16216.908203125
+149.5688477 71649.140625
+167.0918579 46588.56640625
+169.0597076 47267.8671875
+175.1177063 339898.46875
+177.0758667 76402.625
+178.0599518 336681.8125
+178.3419647 111471.65625
+179.0645752 18047.068359375
+179.091217 28680.322265625
+183.0757904 23979.240234375
+186.0858917 111941.234375
+194.1017914 48952.75390625
+195.0862579 4600833.5
+195.1286163 26740.955078125
+196.0889587 474096.21875
+197.0920258 39933.7578125
+200.1028748 20860.220703125
+201.0860291 33855.34375
+206.0910187 182309.515625
+207.0939026 19905.99609375
+215.0909882 26818.88671875
+218.1017761 60916.69140625
+222.0865479 22127.6171875
+240.0955811 43721.1796875
+243.0858002 22851.658203125
+244.1135254 16642.10546875
+246.0966492 651244.5625
+247.0986481 82907.140625
+249.0957794 21721.509765625
+257.122345 116112.890625
+259.1250916 16979.1171875
+260.1121216 124036.859375
+267.1157532 19444.51953125
+270.096283 136478.984375
+278.1500854 34915.31640625
+283.1426697 35736.078125
+287.1229858 185170.3125
+288.1069946 1737038.5
+289.1100159 276812.3125
+294.1183167 37514.45703125
+295.1488953 24962.431640625
+303.1430054 37327.12890625
+305.1334839 3456427.0
+305.2154541 29488.4765625
+306.1187744 1247556.75
+307.1211853 215536.890625
+311.1345825 68668.84375
+312.115387 35428.875
+321.1533813 345249.375
+322.156189 67921.171875
+323.0978088 23474.810546875
+323.1439514 1284687.375
+324.1463928 192582.359375
+325.1473694 19359.927734375
+329.1427307 69899.2421875
+330.1410828 19708.14453125
+337.1560059 19398.7734375
+338.1419983 65521.46875
+338.1799927 445111.84375
+338.6397705 19109.517578125
+339.1835327 69118.8515625
+347.1502686 28252.455078125
+349.1606445 31323.1484375
+359.1430359 59846.109375
+366.1854553 151629.453125
+376.1695557 148565.921875
+377.1557617 74260.0078125
+378.158905 21306.130859375
+386.1661377 37539.7265625
+394.1801147 834958.625
+395.1819458 148781.21875
+412.190033 38355.66015625
+420.6792297 30624.5625
+468.2209473 67321.9140625
+485.2463074 259813.515625
+486.2469177 64695.40234375
+488.1862793 59119.53515625
+489.1853943 24373.58203125
+492.2284241 190550.109375
+492.7303162 105038.421875
+495.2253418 80678.5859375
+503.7147217 28728.958984375
+505.2132568 68929.1953125
+506.2076111 71409.484375
+512.2264404 59760.16015625
+512.7294312 24023.3671875
+521.2359619 28218.279296875
+521.7393188 30071.009765625
+523.2208862 503553.0625
+524.2236938 175467.484375
+525.2248535 23236.685546875
+529.7426758 22588.90234375
+530.246582 22720.294921875
+571.7470703 72125.953125
+572.2734985 345118.71875
+573.2805786 109503.421875
+576.2610474 44561.3203125
+576.7659912 36922.53125
+577.2595825 32296.462890625
+580.2631226 114153.390625
+580.7537842 2754604.25
+580.8386841 36367.9375
+581.2550049 1802228.5
+581.3365479 20034.552734375
+581.7565308 741696.3125
+582.2572021 144570.484375
+589.2659912 125166.5859375
+589.7634888 72144.625
+598.2710571 72281.296875
+598.774353 23667.955078125
+599.27948 28898.150390625
+599.7757568 73706.140625
+606.2545166 28724.033203125
+624.2665405 54889.8984375
+673.3220215 439615.21875
+674.3245239 160624.375
+675.3296509 29366.88671875
+693.2877808 22364.6015625
+802.3618774 139271.359375
+803.3650513 53833.234375
+804.3657837 20374.36328125
+873.3959351 98879.7734375
+874.4013672 58480.52734375
+1001.460266 28863.06640625
+1002.461731 23347.572265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.34.34.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=34"
+RTINSECONDS=3.591007441
+PEPMASS=598.27001953125
+CHARGE=2+
+51.92802811 11206.2822265625
+52.86540985 11294.521484375
+58.137146 13538.6689453125
+58.31828308 10866.9482421875
+64.52617645 62606.46875
+64.53057098 44692.125
+64.58193207 38677.63671875
+64.58612061 29680.37109375
+64.63799286 20728.806640625
+64.64125061 17521.111328125
+74.81209564 15342.6533203125
+81.57369995 12882.3916015625
+149.5714722 45729.25
+167.0916138 52876.96484375
+169.0600128 40024.85546875
+170.3200836 13025.84375
+175.1021423 21905.240234375
+175.1178284 304140.21875
+176.1217957 18369.984375
+177.0759888 74704.984375
+178.059967 347648.78125
+178.0777588 14588.033203125
+178.3434601 82889.3984375
+179.0627594 23100.703125
+179.0912323 14671.8076171875
+182.0905151 18018.18359375
+183.0750427 18989.884765625
+186.0861664 95670.71875
+190.0591583 13244.169921875
+194.1026764 36830.0390625
+195.0863953 3808734.5
+195.1278076 18355.759765625
+196.089325 411353.3125
+196.2291107 12498.59765625
+197.0906677 26508.083984375
+200.100769 37736.6640625
+201.5715332 11829.064453125
+206.0910492 174033.53125
+207.0944519 22521.3828125
+212.1124725 13109.552734375
+215.0909424 17005.0859375
+218.1022491 59973.48828125
+219.1031647 12297.5751953125
+222.0877686 17693.59765625
+234.0983734 21586.8359375
+239.085968 12545.841796875
+239.1127625 13468.2255859375
+240.0953979 27492.7578125
+240.958252 12461.83203125
+243.0850677 21481.0546875
+246.0969849 632644.6875
+247.0998077 82092.7109375
+249.0969238 14842.966796875
+257.1227417 106289.0859375
+258.1259766 16236.064453125
+260.1128845 123869.453125
+261.1160278 18385.607421875
+267.1083679 12688.4541015625
+270.0966797 136675.6875
+276.1315613 15732.873046875
+277.1401367 17158.0234375
+278.118988 19245.4609375
+278.1500854 20691.078125
+283.1423035 44739.78125
+284.1192017 17707.40625
+287.1235352 154985.0
+288.1074829 1685116.75
+289.1106567 249334.0
+290.1123657 30433.162109375
+294.119873 18643.185546875
+295.1477661 19697.23828125
+303.1432495 19785.45703125
+304.1289368 19346.2109375
+305.1340942 3177012.0
+306.1193542 1057753.375
+307.1213074 166253.703125
+308.1228333 17935.255859375
+311.1348572 60601.95703125
+312.1159058 33471.05078125
+321.1540527 343162.78125
+322.1576843 51676.05859375
+323.1445923 1111334.5
+324.1464844 177936.15625
+325.1484375 24656.4453125
+328.1587219 15212.9384765625
+329.1444702 54003.88671875
+331.1510315 17617.41796875
+338.1417847 54779.2734375
+338.1808167 382177.09375
+338.6461487 20483.388671875
+339.1827698 69914.6953125
+341.1474304 15969.9228515625
+347.1507263 34565.53125
+349.160553 20139.275390625
+351.1268005 22094.24609375
+353.2608337 15384.8505859375
+359.1445007 74321.1015625
+366.1865234 116953.8203125
+369.1382751 37522.35546875
+376.1706848 111899.34375
+377.1560669 68533.59375
+378.1591492 17246.029296875
+386.1647644 20468.3671875
+394.1813965 719038.5625
+394.2406311 25854.5625
+395.1829529 141889.484375
+412.187439 39987.32421875
+420.6815796 16781.076171875
+423.1512451 13657.3857421875
+429.4736023 13648.2529296875
+434.173645 14829.103515625
+460.1920471 19393.044921875
+468.2214355 52299.8671875
+477.2159119 24728.939453125
+478.2047424 19421.236328125
+483.7225342 24698.900390625
+485.2476807 205714.171875
+486.2492371 47547.3125
+488.1864929 63140.2578125
+489.1879883 17847.767578125
+492.2294617 160864.734375
+492.7297974 111279.203125
+493.2341614 37161.30859375
+495.227356 45858.4296875
+496.2241516 17790.716796875
+503.2242737 22040.70703125
+503.7203979 21109.751953125
+505.2122192 61178.24609375
+506.2051697 50694.79296875
+512.2293701 27876.126953125
+512.7324219 13614.2099609375
+519.2502441 14076.763671875
+521.229248 32356.96484375
+521.7314453 17305.931640625
+523.2229614 437992.78125
+524.2246704 132484.78125
+525.2293701 22828.091796875
+529.7426147 18885.982421875
+554.2660522 12688.3525390625
+558.7468262 21355.515625
+571.7522583 100938.796875
+572.2744141 317229.21875
+572.7525635 27155.73046875
+573.2794189 109657.3125
+576.260376 31138.08984375
+576.7623291 24636.392578125
+580.2610474 84523.625
+580.7557983 2354551.0
+581.257019 1575154.75
+581.7590332 587860.125
+582.2600098 98168.5078125
+589.270813 18615.974609375
+598.2756348 39513.63671875
+598.7767334 44472.03515625
+599.2741699 40300.69921875
+599.7781982 105533.6328125
+606.2598877 49903.6328125
+607.2592163 15735.5615234375
+624.2694092 54714.89453125
+655.3074341 21165.66796875
+673.3248901 447302.75
+674.3282471 173050.96875
+693.2835693 18552.2890625
+711.2961426 22807.767578125
+784.3571777 13777.65625
+802.3658447 88271.8984375
+803.3653564 42022.796875
+873.4007568 79487.859375
+874.4081421 49227.17578125
+875.4085083 20289.125
+1001.457642 16838.03125
+1058.480835 19734.666015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.35.35.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=35"
+RTINSECONDS=3.701649009
+PEPMASS=598.27001953125
+CHARGE=2+
+55.06220627 14287.7392578125
+58.13428879 19613.73046875
+58.13712311 17501.04296875
+58.40841675 15021.6484375
+64.52618408 68737.5546875
+64.53070068 55229.96484375
+64.58195496 49538.21484375
+64.5861969 40895.28125
+64.63800049 16044.671875
+64.64154053 16977.18359375
+74.81201172 17180.978515625
+76.77967834 19947.130859375
+130.2979584 15592.6162109375
+131.9814758 15956.41015625
+149.5690155 61549.26953125
+167.091629 39375.26171875
+169.0594177 47870.46875
+175.1178589 327088.15625
+176.1206665 26871.5859375
+177.0758209 73765.7734375
+178.0598907 387986.90625
+178.3496552 93548.2109375
+179.0641937 37418.28125
+179.0910187 22718.1328125
+182.0910645 20167.08984375
+183.0748291 27826.322265625
+186.0861359 113785.5
+193.0810394 17733.888671875
+194.1020966 37160.1796875
+195.0863647 4670759.0
+195.1282196 21897.365234375
+195.7184601 15494.2431640625
+196.0889893 451734.28125
+197.0913086 29621.650390625
+200.101593 52131.140625
+201.0860596 29867.11328125
+206.0910492 184323.484375
+207.0920258 25969.01171875
+209.0764008 21887.337890625
+218.102478 56707.94921875
+234.0957489 35042.03125
+240.0967407 19350.076171875
+246.0969391 755143.125
+247.0999451 93445.765625
+249.0968781 22206.501953125
+257.1228943 93270.2734375
+260.1125793 120588.421875
+261.1167603 19629.326171875
+270.0966797 132011.59375
+271.1000977 20802.244140625
+278.121521 20824.341796875
+278.151123 18776.80859375
+283.1425476 64050.609375
+284.1222534 16598.529296875
+287.1235657 158077.390625
+288.1073608 1874869.5
+289.1099854 269930.5625
+295.1456909 23046.095703125
+303.1440125 29818.958984375
+304.1281128 29549.283203125
+305.0516663 25668.578125
+305.1338806 3655145.0
+306.1191101 1273428.625
+307.1209106 194625.015625
+308.1218567 20504.005859375
+311.1346436 49743.91015625
+312.1171265 40956.9921875
+318.1414185 21347.166015625
+321.1539001 383267.09375
+322.1575623 49238.1875
+323.1443176 1223502.0
+324.1464233 198465.0
+325.1487427 25759.6328125
+329.1442261 46595.484375
+338.1415405 60985.3046875
+338.180481 473763.5625
+338.64151 16995.33203125
+339.1831055 101131.984375
+347.1497498 31097.078125
+349.1609192 20070.265625
+359.1436768 76363.5546875
+366.1855164 125257.8125
+367.1908569 23983.146484375
+369.1400757 23428.61328125
+376.1702271 130981.59375
+377.1577148 67847.7578125
+386.1629944 28019.78125
+394.1807556 855894.5
+395.1825867 159011.46875
+412.1856384 36326.3515625
+420.6832581 30172.2734375
+434.1722412 15806.23828125
+460.1907349 42634.5
+468.2201538 50197.61328125
+469.2201843 17284.119140625
+475.2080078 17895.486328125
+477.2222595 21987.564453125
+483.2315979 21356.00390625
+483.7212524 21579.046875
+485.2473755 254583.625
+486.2512512 76353.640625
+488.1849976 63518.8359375
+492.2293396 196679.828125
+492.7312012 141784.1875
+493.2304077 42617.2265625
+495.2269897 78258.859375
+503.7153625 20269.361328125
+504.2235107 20820.890625
+505.2099915 48633.9140625
+506.2015991 72129.0234375
+512.225769 68786.6953125
+512.7264404 41629.53125
+521.2301636 31352.51171875
+521.737854 23311.103515625
+523.2218628 552829.3125
+524.2251587 150869.984375
+525.2279053 36960.7421875
+530.2515869 26845.986328125
+571.75 93589.0859375
+572.2749023 408234.96875
+572.7532959 30849.5625
+573.27948 91456.0703125
+574.2979126 20215.78125
+576.2652588 42522.99609375
+576.7593384 29828.357421875
+577.2658081 34683.9453125
+577.7688599 23028.0625
+580.2628174 78480.4609375
+580.7550659 2635143.5
+581.2562866 1736338.5
+581.7582397 671032.3125
+582.2589722 99040.359375
+589.265686 73281.125
+589.765564 45616.7421875
+598.2740479 77787.8828125
+598.7711182 40268.51171875
+599.2752075 44417.49609375
+599.7771606 93272.890625
+606.2587891 47167.54296875
+624.2689819 67418.84375
+625.2692261 18875.62890625
+629.2939453 22590.06640625
+673.3239746 500570.3125
+674.3269043 178916.765625
+675.3222656 26324.123046875
+693.2890625 23626.2265625
+802.3619385 101659.09375
+803.3656616 48823.85546875
+873.4038696 88247.9921875
+874.4039917 48308.28515625
+987.5806274 17915.2109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.36.36.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=36"
+RTINSECONDS=3.808651793
+PEPMASS=598.27001953125
+CHARGE=2+
+55.18423843 18236.77734375
+58.13726807 16359.2998046875
+64.52627563 69233.7890625
+64.5307312 48282.09375
+64.5819931 53642.953125
+64.58614349 37432.5625
+64.63824463 22943.55859375
+64.641716 19798.482421875
+69.6556778 12094.9873046875
+74.66932678 13377.7431640625
+76.16653442 14040.0234375
+105.3925629 13760.90234375
+149.5648193 38104.15625
+149.5787659 27674.978515625
+167.0922852 43298.078125
+169.0593567 25960.21875
+175.1178589 303750.15625
+176.1210785 36074.19140625
+177.0759735 68200.1484375
+178.0600281 331063.71875
+178.3390198 80155.6875
+179.0640564 30727.58984375
+179.0911407 17141.310546875
+182.0905914 25163.486328125
+186.0860901 119076.375
+194.1025391 43084.0859375
+195.0864868 4647566.5
+195.1282043 23099.19140625
+196.089386 483453.34375
+197.0924377 34294.26953125
+200.1013336 41568.0859375
+206.0913086 144390.296875
+207.0939484 25649.638671875
+209.1025696 19769.017578125
+213.0858917 23430.859375
+218.1024628 67350.5703125
+222.085022 19730.306640625
+234.0965118 16451.271484375
+243.0864716 27933.140625
+246.0970612 693105.8125
+246.1257324 33779.0078125
+247.0998383 84967.046875
+257.1227112 101515.2265625
+260.1123657 93600.0078125
+270.0971069 147858.953125
+277.1395569 16393.294921875
+278.1484375 26443.998046875
+283.1433716 53160.68359375
+287.1233521 180173.4375
+288.1074524 1720822.625
+289.1099548 228495.796875
+294.1141357 16884.95703125
+295.1505127 22409.533203125
+303.1442261 40250.86328125
+305.1340637 3521341.0
+306.1191406 1248270.875
+307.1219482 180498.6875
+308.1220703 18346.8828125
+311.1354065 65188.84375
+312.1168518 34259.01953125
+321.1540833 342308.78125
+322.1585693 51557.2734375
+323.1445618 1238347.75
+324.1468201 197801.15625
+325.1513977 28243.724609375
+329.1433411 48727.828125
+331.147644 22465.53125
+338.1420288 50495.34375
+338.1807556 424165.3125
+338.6428528 28421.232421875
+339.1828003 93854.78125
+349.1595154 32472.30859375
+359.1454163 73444.7890625
+366.1859131 134589.3125
+367.1896362 23638.203125
+369.1351929 31360.427734375
+376.1702881 144662.1875
+377.1557007 89708.2734375
+386.1647339 39060.328125
+394.1810608 715526.0625
+394.2405701 24847.564453125
+395.1829834 136598.71875
+396.1886902 23209.7890625
+412.189209 34036.09765625
+420.6844788 18092.826171875
+468.2221375 63333.25390625
+477.21521 16163.2431640625
+478.2037659 18168.240234375
+485.2476196 217681.90625
+486.2520447 62753.03515625
+488.1884155 49590.69140625
+492.2292175 183904.84375
+492.7326355 90273.984375
+493.2289429 27875.47265625
+495.2280579 53653.578125
+505.2113342 62215.4765625
+506.2017517 73949.09375
+512.2301025 39973.53125
+512.7272339 29145.169921875
+521.2373047 24816.787109375
+521.7348022 36320.84765625
+523.2220459 511809.9375
+524.2247925 124502.234375
+525.2322388 27534.10546875
+530.2398682 16428.837890625
+541.2328491 17964.3515625
+558.7495728 34452.2109375
+571.7523193 63402.6484375
+572.2750854 327477.0
+573.2807007 117903.296875
+574.2860107 22754.328125
+576.2584839 58992.84375
+576.7612915 55061.66015625
+577.2648315 24325.435546875
+580.2626953 106765.1953125
+580.755188 2687876.75
+581.2566528 1864697.125
+581.3695679 26731.67578125
+581.7580566 660418.5625
+582.2579956 151069.3125
+589.2667236 64454.39453125
+589.7666016 52401.44140625
+598.2714844 54709.921875
+598.7778931 45660.796875
+599.2808228 36832.09765625
+599.776123 68447.328125
+606.2601318 38677.546875
+624.2704468 61151.1015625
+625.2629395 25890.21484375
+655.3181763 19143.029296875
+656.3030396 22298.029296875
+673.3248291 486253.5
+674.3274536 188557.859375
+675.3275146 57019.74609375
+693.2952881 22411.845703125
+802.3649902 94381.1328125
+803.3672485 58142.8671875
+873.3981934 107632.78125
+874.4044189 44615.03125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.37.37.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=37"
+RTINSECONDS=3.916330912
+PEPMASS=598.27001953125
+CHARGE=2+
+56.65745163 12865.0146484375
+58.13441849 17800.982421875
+64.52623749 63912.16796875
+64.53046417 44883.125
+64.58195496 42629.99609375
+64.58615112 27911.35546875
+64.63811493 21917.126953125
+117.2467422 15607.2783203125
+149.5623779 30474.84765625
+149.5754395 27879.25
+167.0918579 49842.9375
+169.0599213 23419.818359375
+175.1020355 26323.458984375
+175.1178894 310972.1875
+176.1213684 14029.34765625
+177.0757599 76427.7265625
+178.0435791 27647.4921875
+178.0598602 347876.84375
+178.0778503 17916.919921875
+178.3417511 92196.1015625
+179.0634003 27932.736328125
+179.0915527 28207.5390625
+180.0758667 16376.0576171875
+182.0917358 21722.38671875
+183.0758514 24971.486328125
+186.085968 122244.4453125
+190.1084747 20100.173828125
+194.1025543 45858.3046875
+195.0863495 4365592.5
+196.0891724 471735.96875
+197.0908203 15241.4169921875
+200.1011505 32209.2265625
+201.0858765 20730.8046875
+205.0613403 16740.203125
+206.0911255 157341.0
+207.0935974 15853.728515625
+213.0862579 18601.982421875
+218.1023407 55140.984375
+222.0840912 15924.3310546875
+234.0960693 19053.26171875
+237.1104889 14507.60546875
+240.0960083 24606.615234375
+243.085968 30408.232421875
+246.0968933 679130.3125
+247.099823 88004.8046875
+248.1114807 13695.2919921875
+257.1224976 101670.4765625
+258.1248474 14835.1494140625
+260.1123657 124428.3671875
+261.1163635 18381.419921875
+270.0966187 146559.703125
+271.1011353 16611.76171875
+278.1486511 32954.3046875
+283.1435852 53113.30859375
+287.12323 171791.734375
+288.1073303 1714800.25
+289.1105042 236434.078125
+290.111084 27791.87109375
+294.1183167 16796.234375
+295.1482544 29796.484375
+303.1444092 38359.5859375
+304.1278381 21677.017578125
+305.1338806 3305884.0
+306.1190186 1136386.875
+307.1211853 210184.3125
+308.1221313 14165.921875
+311.1345825 57575.50390625
+312.116272 37971.6328125
+320.1345215 18992.859375
+321.1539612 383857.59375
+322.1559448 67691.8203125
+323.0984497 21558.455078125
+323.1443481 1260662.25
+324.1462402 178933.796875
+325.1497498 21103.736328125
+328.1645508 16276.2021484375
+329.1443787 46492.30078125
+338.1414795 70406.1015625
+338.1806946 406170.875
+338.6462708 18266.712890625
+339.1834412 71145.03125
+340.883606 16923.609375
+341.1447144 22653.74609375
+347.1472168 28349.21484375
+349.1582336 21936.134765625
+351.1316223 18673.466796875
+359.1440125 78528.734375
+366.186615 141475.703125
+367.1889954 25322.453125
+369.1400452 30557.666015625
+376.1707153 136615.140625
+377.1546631 102045.703125
+386.1658325 32074.529296875
+389.1560669 19807.890625
+394.1806946 768379.5
+395.1828003 143341.671875
+396.1853943 25239.109375
+412.1880798 33400.34765625
+420.6842041 32240.626953125
+460.1937561 20968.423828125
+468.2192383 71199.7109375
+478.1986084 20637.951171875
+483.7164917 25112.15625
+485.2472839 227306.96875
+486.2505493 57148.7109375
+488.1861572 59775.1796875
+492.2286377 151532.5
+492.7306824 156076.4375
+493.2299805 39539.78125
+495.2277832 54866.25
+496.2326355 19243.748046875
+503.71875 18585.6875
+505.2113953 57436.3359375
+506.2029114 44270.62109375
+512.2285767 66021.4609375
+512.7294922 24307.78125
+521.2315674 34238.953125
+523.2213135 529341.0
+524.2249146 121093.390625
+525.2266846 24544.55078125
+529.741394 17167.9375
+555.255127 17272.0078125
+558.7422485 22579.44921875
+559.2420044 23887.599609375
+567.2553711 25195.986328125
+571.7504272 92681.5703125
+572.2758179 346714.53125
+572.7507935 20599.923828125
+573.2797852 136701.65625
+574.27771 17915.203125
+576.260498 42881.91015625
+576.7642212 20447.830078125
+577.2602539 33506.73828125
+580.2612915 67539.953125
+580.7548828 2468576.25
+581.2561035 1738319.5
+581.3664551 28714.12109375
+581.7577515 569070.0
+582.2602539 106112.0390625
+589.2675781 39633.09375
+589.7722778 20494.638671875
+598.274292 61463.70703125
+598.7748413 41322.24609375
+599.2764893 52611.7890625
+599.776062 111572.8671875
+606.2550659 29956.1171875
+607.2457275 20600.009765625
+624.2667236 52382.7109375
+625.265625 22192.14453125
+656.3096313 22084.1875
+673.3239746 381379.1875
+674.3254395 178855.046875
+675.3285522 25297.1171875
+711.2987671 16466.529296875
+802.3629761 100389.828125
+803.3704224 49432.89453125
+873.3973999 106124.6484375
+874.3987427 41977.1328125
+1002.460571 20097.15234375
+1030.180298 14386.2509765625
+1058.473877 21753.119140625
+1176.009155 14847.2529296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.38.38.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=38"
+RTINSECONDS=4.024938945
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13432693 22547.5546875
+64.52626801 78240.171875
+64.53064728 60193.9296875
+64.58200073 54956.375
+64.58615112 42131.83203125
+64.638237 20340.08203125
+64.64133453 22450.267578125
+81.04625702 22211.9140625
+82.05378723 21535.6015625
+82.74357605 20786.087890625
+97.1197052 19181.029296875
+103.0740738 20800.15625
+149.5645599 58101.9921875
+167.0917969 48937.7734375
+169.0588226 19756.03125
+175.1177673 302230.65625
+176.1197205 22286.619140625
+177.0757599 58172.9296875
+177.9569702 17687.59765625
+178.0597839 328329.5625
+178.0771942 15946.517578125
+178.3349457 61169.953125
+178.3540344 56405.2578125
+179.0631866 38623.73828125
+180.3143005 20372.357421875
+183.0754395 35479.5078125
+186.0861053 123906.3046875
+194.1032867 39031.6953125
+195.0863647 4861246.0
+195.12854 32339.798828125
+196.0892792 444584.25
+197.0905457 33222.375
+200.1017151 33499.9296875
+201.0862885 22195.4453125
+206.0911255 165343.84375
+207.0916748 17222.08203125
+218.1024628 58618.734375
+222.0846252 21296.103515625
+233.1277466 21224.837890625
+240.0956268 27491.466796875
+244.115509 23056.650390625
+246.0969086 695751.5625
+246.1255798 29713.21484375
+247.0999451 72424.5234375
+257.122406 104301.328125
+258.125885 24598.515625
+260.1124878 100835.671875
+270.0967407 149702.921875
+271.0992432 17654.94140625
+278.1181946 24429.69140625
+278.1508484 28924.296875
+283.1443481 52821.1640625
+287.1234131 153507.515625
+288.1072998 1601790.125
+289.11026 238360.046875
+303.1436462 36536.51953125
+305.1338806 3676353.0
+306.1191406 1252678.625
+307.1211243 213690.46875
+311.134552 72399.796875
+312.115387 33824.30859375
+321.1538391 368972.53125
+322.1564941 49576.58203125
+323.0984497 23293.7734375
+323.1443787 1337650.875
+323.1889343 42430.140625
+324.146637 222153.15625
+329.1424255 58854.09765625
+338.1420288 63465.90625
+338.1805115 440778.125
+339.1820374 85908.078125
+347.1486206 23624.537109375
+349.1602783 26678.890625
+351.1325684 22737.7421875
+359.1448975 77980.15625
+366.1862488 141522.40625
+369.1383057 40609.375
+376.1701355 129316.15625
+377.157074 85301.875
+378.1540222 34652.05078125
+394.1810303 868844.125
+395.1832581 199055.265625
+396.1889343 29721.25
+412.1878662 45648.08203125
+468.2170715 53213.921875
+478.2047424 23369.69140625
+485.2471313 263260.625
+486.2500305 66751.6796875
+488.1865234 52843.98828125
+492.229248 207181.171875
+492.7319641 103518.9921875
+493.2256775 35411.51953125
+495.2280884 52760.58203125
+503.7200012 21798.484375
+505.2096252 61730.34375
+506.2084351 56113.12890625
+512.2286987 70632.328125
+512.7194214 21607.162109375
+520.7435303 26428.90234375
+521.2318726 70759.9375
+523.2218018 555058.25
+524.223877 153014.953125
+525.2322388 23528.390625
+530.2423706 22392.26953125
+558.7427368 37539.5078125
+559.2476807 27080.18359375
+571.7492676 115134.4921875
+572.274292 439629.375
+572.7509766 35444.328125
+573.277771 111050.8046875
+576.2625122 70187.5625
+576.7642212 35293.96484375
+577.265686 45410.83984375
+580.2616577 93653.828125
+580.7549438 2978486.0
+581.2560425 2065947.125
+581.7579956 789875.0625
+582.2593994 146308.65625
+589.2670288 199343.625
+589.7661743 114269.2890625
+598.2733154 72540.671875
+598.7733765 64272.66015625
+599.7783203 74103.2109375
+606.2562866 45093.4609375
+624.2684937 72593.2890625
+655.3145142 29179.283203125
+673.3235474 462903.75
+674.3270264 201513.59375
+675.3240356 44176.234375
+802.3641357 107421.59375
+803.3675537 59708.96875
+873.3980713 100560.7890625
+874.4041748 52345.546875
+1001.455994 32500.025390625
+1002.441589 23453.017578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.39.39.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=39"
+RTINSECONDS=4.129987857
+PEPMASS=598.27001953125
+CHARGE=2+
+50.07095718 15306.791015625
+64.52629089 66700.59375
+64.53069305 41490.6796875
+64.58204651 39068.80078125
+64.58616638 26276.50390625
+64.63819885 15599.69921875
+64.64128113 13427.23828125
+82.05413818 15619.4404296875
+149.5658569 42936.98828125
+149.579483 22895.4296875
+159.0472565 12912.3935546875
+167.0919952 42370.6484375
+169.0598602 39642.734375
+175.1178131 264483.25
+177.0756531 64865.94140625
+178.059967 341285.96875
+178.3482513 79420.9921875
+179.0630798 35434.17578125
+179.0916138 23538.88671875
+183.0755463 29314.83984375
+186.0861664 93800.796875
+194.1021881 27776.001953125
+195.0863495 3984516.75
+196.0891724 427868.34375
+197.0921478 29582.4296875
+200.1020813 26719.17578125
+206.0912018 160075.4375
+218.1020355 61921.8671875
+222.0864868 23789.041015625
+234.0939178 13265.865234375
+239.1136627 11462.9150390625
+243.0877838 17761.748046875
+244.1167297 17370.4609375
+246.0968323 641667.375
+247.0992737 88434.7265625
+257.1228027 120235.0234375
+260.1124268 114557.8671875
+267.1071167 14878.6337890625
+270.0967407 155606.484375
+278.1489868 25775.55078125
+279.8683472 12278.1728515625
+281.1324463 13823.9130859375
+283.1423035 50235.75390625
+287.123291 147788.8125
+288.1072693 1706446.625
+289.1100159 237578.46875
+290.1126404 14559.6396484375
+294.1160889 26816.76171875
+295.1508484 13801.5771484375
+303.1441345 35744.625
+304.1283264 15720.5751953125
+305.1337585 3132767.0
+306.118927 1115792.125
+307.1216125 152472.859375
+311.1339722 47510.46484375
+312.1166687 40589.1640625
+318.1444702 20844.44140625
+321.153717 331314.78125
+322.1556702 43465.09765625
+323.1443176 1106991.0
+324.1463928 167820.25
+325.1493835 13843.53515625
+328.1554871 13236.0400390625
+329.1433105 46090.328125
+330.1473389 18263.490234375
+338.1429443 46212.55859375
+338.1802979 451568.03125
+338.6466064 31926.904296875
+339.1826172 72394.4921875
+341.1419067 12615.17578125
+347.148468 33776.703125
+349.1611023 16516.5390625
+351.129364 19285.35546875
+359.1436157 70941.96875
+366.1860962 116405.0234375
+367.1859741 20624.404296875
+369.1367493 36757.921875
+376.170105 117378.921875
+377.1572266 84076.0390625
+386.1651001 20570.63671875
+394.1806641 722757.0
+394.2408142 26010.5625
+395.1818237 148349.171875
+412.1870728 33927.6328125
+421.1776428 14592.552734375
+428.1985168 16713.09765625
+460.1922607 22154.12109375
+468.2206421 45911.1953125
+478.2052307 25890.6875
+483.7174683 18930.029296875
+485.2473755 198640.171875
+486.2500305 56169.3125
+488.1864319 62613.59375
+489.1907959 19343.85546875
+492.2286987 180898.484375
+492.730835 109214.7734375
+493.230896 23256.060546875
+495.2259521 69873.0546875
+503.7208557 14706.4921875
+505.2122803 63042.078125
+506.2040405 51621.04296875
+512.2244263 40808.84765625
+512.7272949 21275.3125
+520.7407227 32676.076171875
+521.225769 15792.037109375
+523.2212524 474171.78125
+524.2245483 116829.9609375
+525.2286987 25308.92578125
+539.237915 13508.158203125
+541.2330933 15596.416015625
+554.2628174 20658.537109375
+555.2518311 21940.05859375
+558.7424927 30889.5
+571.7505493 90218.03125
+572.2744751 311394.46875
+572.7521362 35395.97265625
+573.2816162 97499.03125
+576.2584839 36716.328125
+576.7698975 18982.1640625
+577.2663574 27220.412109375
+580.2614746 75062.3984375
+580.7544556 2279359.75
+581.2557373 1526362.375
+581.3365479 25540.22265625
+581.3658447 29045.1640625
+581.7572021 547931.75
+581.8652954 22184.607421875
+582.258606 126496.9296875
+589.2636719 35322.97265625
+598.2730713 51357.3984375
+598.7783813 27944.380859375
+599.2772827 50429.609375
+599.7767944 101645.3203125
+606.2606201 31239.458984375
+624.2682495 41094.51171875
+655.3228149 16342.8349609375
+673.322998 362810.09375
+674.3265991 118588.421875
+675.3289185 25873.248046875
+693.288147 19544.21875
+802.3620605 88239.453125
+803.367981 28680.181640625
+873.3977051 87465.4609375
+874.3955688 37878.75390625
+1058.486572 14753.328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.40.40.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=40"
+RTINSECONDS=4.240861104
+PEPMASS=598.27001953125
+CHARGE=2+
+53.97999573 17829.505859375
+63.20402527 16500.40625
+64.52628326 65622.3359375
+64.53048706 48756.6953125
+64.58219147 32583.060546875
+64.58600616 37308.01171875
+64.63816833 20364.69921875
+64.64134216 17417.0390625
+82.05439758 19204.322265625
+138.2394867 16049.59765625
+149.5725861 57255.8828125
+167.091629 58421.171875
+169.0593262 31624.03125
+175.1177368 308433.09375
+176.12117 25194.666015625
+177.0047607 15743.3828125
+177.0755463 52657.7578125
+178.0599213 344974.0
+178.0771332 13203.8212890625
+178.3429108 105439.8671875
+179.0632782 32626.271484375
+179.0918732 25683.603515625
+182.091095 24576.685546875
+183.0739136 34164.7265625
+186.0857849 127247.625
+194.1029358 36445.61328125
+195.086319 4514020.0
+196.0891724 471528.96875
+197.0916595 28773.048828125
+200.1020813 28954.68359375
+206.0908813 183731.9375
+218.1016998 69517.5859375
+234.099411 22883.953125
+243.0864258 27289.916015625
+244.1174927 19178.529296875
+246.0968475 644648.125
+246.1256256 33131.25
+247.1001282 62382.578125
+249.0983887 18708.251953125
+257.1225281 120908.8125
+258.1223755 21124.978515625
+260.1125793 129650.328125
+261.1185913 28627.017578125
+270.0967712 130571.0703125
+278.1477966 21033.677734375
+283.1428223 58543.08984375
+287.1228333 160863.375
+288.1072388 1706607.0
+289.11026 263801.3125
+290.1132202 26826.84765625
+303.1447754 40182.046875
+305.133667 3492893.5
+306.118927 1189558.25
+307.1205139 193446.140625
+308.1206055 28437.876953125
+311.134552 64523.171875
+312.1190186 47543.57421875
+321.1542358 390448.03125
+322.1578064 60794.015625
+323.1441956 1243111.875
+324.1461487 175844.90625
+325.1508179 26436.111328125
+329.1427307 36775.91015625
+338.1483459 36994.859375
+338.1801758 442220.8125
+338.6468201 23811.896484375
+339.1829529 74928.375
+349.1594543 28674.720703125
+351.1296692 20805.177734375
+358.1628113 18035.474609375
+359.143158 74549.3828125
+363.6526489 17088.650390625
+366.1865234 148327.546875
+367.1898193 36885.671875
+369.1390076 40488.34765625
+376.1702881 123793.125
+377.1551514 87605.2265625
+378.1563721 17545.525390625
+382.5519409 17848.43359375
+394.1805725 753704.375
+394.2394714 26353.8046875
+395.1825867 169432.90625
+396.1836243 24388.83984375
+398.1717834 20341.955078125
+412.1900024 33738.859375
+413.1687622 19254.17578125
+428.2030945 18631.04296875
+468.2203979 57013.39453125
+478.2042847 33257.20703125
+485.2469482 214176.671875
+486.2505798 62932.734375
+488.1871643 52209.34375
+492.229248 184753.390625
+492.7311096 107824.4765625
+493.230957 19280.404296875
+495.2271729 45204.42578125
+505.2107849 53206.53515625
+506.2037659 58903.1171875
+507.210968 21197.447265625
+512.2277222 40737.22265625
+512.7271729 29107.580078125
+520.737793 19947.01171875
+521.2330322 45487.1484375
+521.7250366 24192.8984375
+523.2213745 460994.09375
+524.2243042 128823.6328125
+525.2297974 29690.78125
+555.2620239 18596.95703125
+558.7422485 27556.09765625
+571.750061 85372.625
+572.2750854 311347.59375
+572.7536011 28944.91796875
+573.2796631 92421.8984375
+576.2616577 31970.865234375
+576.7653809 38934.7109375
+580.2648315 96699.2578125
+580.7545776 2538515.5
+581.2557983 1713351.5
+581.3363647 33397.9140625
+581.7573242 678722.75
+582.2577515 130483.09375
+589.265564 114296.1328125
+589.7669067 74069.5078125
+598.2739258 60094.56640625
+598.7755127 48033.89453125
+599.2744751 32347.744140625
+599.776001 82251.0234375
+606.2595825 33349.10546875
+624.2682495 59634.328125
+625.2653198 27479.251953125
+655.3170166 26913.75390625
+673.3238525 477573.34375
+674.3261719 152474.984375
+675.3256836 39208.390625
+693.2883911 23953.470703125
+711.2957764 22063.953125
+802.3634644 103010.5625
+803.3620605 55747.53125
+873.4007568 112290.8203125
+874.4053345 44689.2734375
+1001.459473 30498.583984375
+1002.463806 22783.6953125
+1058.475708 27405.0703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.41.41.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=41"
+RTINSECONDS=4.347356944
+PEPMASS=598.27001953125
+CHARGE=2+
+59.42998123 14020.0234375
+64.52619171 68515.8203125
+64.53068542 53250.640625
+64.58202362 45652.1171875
+64.58617401 37149.91015625
+64.63800812 22781.44921875
+70.03803253 16472.4765625
+71.25281525 13419.572265625
+90.57294464 17636.80859375
+117.3254623 18349.341796875
+119.3606873 15068.943359375
+141.1689606 19441.51953125
+149.5703888 64291.95703125
+157.5708923 15086.4892578125
+167.0921326 52547.13671875
+169.0600128 37253.3828125
+175.1178894 330976.6875
+177.0757751 67677.640625
+178.0434723 30280.0703125
+178.0599823 361345.53125
+178.3362427 67680.9609375
+178.3554382 34091.21875
+179.0640259 32580.17578125
+186.0861053 125194.7890625
+194.1028442 43396.5078125
+195.086441 4554644.5
+196.0892944 420754.21875
+197.092041 31655.505859375
+200.1018372 34672.9765625
+206.0912323 165749.5625
+207.0937042 31433.7109375
+208.3757935 18919.158203125
+218.1019745 47946.375
+233.1290894 19404.916015625
+234.0981293 15691.578125
+240.0960541 29683.34765625
+243.0856934 36995.15234375
+244.1147156 18576.9296875
+246.0971069 699823.0625
+247.1001587 83180.125
+249.0987091 18069.85546875
+254.2812042 17444.83203125
+257.1228333 119762.375
+260.1129456 125023.5703125
+261.1203918 16696.33984375
+270.0967712 145365.234375
+271.1012878 23856.55078125
+276.1059875 20853.376953125
+278.1496582 34878.86328125
+283.1443481 48920.34375
+287.1234436 182908.125
+288.1075134 1703327.375
+289.1104431 241616.875
+290.1112061 21994.58203125
+294.1182251 23787.7734375
+303.1446838 31423.75
+304.1283264 23099.048828125
+305.1341248 3396633.0
+306.1192627 1237409.75
+307.1211853 201258.265625
+311.1354675 71825.140625
+312.1165161 38435.58984375
+321.1542664 347155.625
+322.1567078 56355.98828125
+323.1445923 1160952.75
+324.1465759 175606.25
+325.1529541 24296.9453125
+329.1430054 52872.4765625
+338.1427002 35864.984375
+338.1807251 431604.75
+339.1836853 97471.0859375
+341.1464539 22158.216796875
+346.1712341 19635.546875
+347.1495056 26891.548828125
+349.1566467 26512.8671875
+359.1452942 69496.28125
+366.1865845 136876.1875
+367.1891785 29232.599609375
+369.139801 46137.703125
+376.1708984 136122.75
+377.1564026 79542.2890625
+378.1557007 18600.861328125
+386.1656189 37652.6484375
+394.1812439 784361.75
+394.2406921 27921.439453125
+395.1835938 164026.75
+396.1850586 19767.90625
+412.1903687 49961.19140625
+460.1921082 25052.779296875
+468.2223206 60076.890625
+469.2250977 29713.13671875
+477.2157288 22188.474609375
+483.7228088 23397.814453125
+485.2478943 200978.875
+486.2507019 54810.98828125
+488.1849976 62827.0078125
+492.2298889 178107.125
+492.7320557 110942.9921875
+493.2331543 58661.30078125
+495.2271729 51226.58203125
+503.2168579 23250.38671875
+505.2131348 60865.703125
+506.2073975 34065.62109375
+512.2323608 22569.26171875
+521.2332153 39737.90625
+521.7316284 32670.3046875
+523.2224121 510825.625
+524.2249146 135130.453125
+525.2304688 19051.1796875
+529.7519531 31044.755859375
+555.2524414 21601.083984375
+558.7436523 40146.1171875
+559.2401123 26189.90234375
+571.7504883 69163.515625
+572.2755737 356417.96875
+572.756897 36007.828125
+573.2807617 116480.90625
+576.2637329 32345.255859375
+576.758667 26554.724609375
+577.2643433 30325.90234375
+580.2645264 114687.3046875
+580.7559814 2611874.25
+581.256958 1702238.875
+581.3651123 31810.19921875
+581.7587891 689284.3125
+582.260376 128129.078125
+589.2677002 127447.4765625
+589.765625 40312.16015625
+598.272644 46866.8203125
+598.7730713 31385.08203125
+599.2794189 28011.373046875
+599.7788696 88749.3359375
+606.2572632 35152.48046875
+607.2588501 21129.8359375
+624.2698364 61943.75390625
+625.2772217 22971.017578125
+655.3123169 20682.759765625
+656.312561 21962.458984375
+673.3258057 464697.75
+674.3286133 195659.4375
+675.3369141 40025.21484375
+693.2895508 29960.177734375
+802.3657227 94186.2578125
+803.367981 56687.76953125
+873.3989868 114025.34375
+874.4035034 68679.109375
+1001.454407 25353.197265625
+1213.575562 20046.5859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.42.42.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=42"
+RTINSECONDS=4.454161809
+PEPMASS=598.27001953125
+CHARGE=2+
+52.01330948 13172.9033203125
+58.13414001 17357.4765625
+58.70401382 11046.8095703125
+61.52698898 12288.0
+64.38106537 11261.5908203125
+64.52622223 56386.02734375
+64.53065491 43187.7890625
+64.58198547 32180.041015625
+64.58611298 27807.447265625
+74.81242371 13558.6845703125
+81.04614258 12733.7548828125
+82.05393219 23327.00390625
+96.71427917 11083.564453125
+121.3784866 13262.7060546875
+149.5652771 37448.90625
+150.5795135 11169.12890625
+167.0917969 54974.1875
+169.0595856 38628.98046875
+175.1180115 305162.0625
+176.1203156 14096.5078125
+176.6795654 12831.0029296875
+177.0759277 77506.28125
+178.0601501 330576.625
+178.0965576 12761.3203125
+178.3358459 45510.390625
+178.3551483 23534.728515625
+179.0637054 21460.654296875
+183.075119 31141.5625
+186.0863342 103661.8671875
+190.0596924 16269.9140625
+194.1020966 60991.77734375
+195.0865326 4101422.0
+196.089386 406065.125
+197.0913849 34412.546875
+198.233429 13582.349609375
+200.1024475 25685.66796875
+206.0913239 168023.8125
+207.0948639 13940.9140625
+212.1128387 14278.6220703125
+218.1019745 51385.35546875
+222.0866852 17758.919921875
+232.1195068 13101.736328125
+232.1876526 16281.087890625
+234.0983734 12727.453125
+240.0966339 18515.865234375
+243.0868683 21613.63671875
+244.1169434 13370.5185546875
+246.0971375 639422.125
+247.1004028 71766.6328125
+248.111084 18417.19921875
+257.1230164 120231.7578125
+260.1132202 107897.53125
+270.0973511 124205.125
+271.1013184 14631.115234375
+278.1187134 16511.80078125
+278.1482849 32008.67578125
+283.1439819 45477.765625
+287.1237183 162480.625
+288.107605 1708939.0
+289.1104431 243361.953125
+290.1130676 20619.572265625
+294.1184998 19744.58203125
+302.1280518 18653.375
+303.1429138 26823.720703125
+304.1265259 22768.48046875
+305.1044617 62394.96875
+305.1342163 3193065.5
+305.2156372 20996.92578125
+306.1195374 1162475.5
+307.1215515 176881.40625
+308.120575 19663.396484375
+311.1340942 43427.21875
+312.118042 32425.787109375
+320.1330872 15291.6630859375
+321.1543274 333243.625
+322.1569824 63379.31640625
+323.098999 12716.19140625
+323.1446838 1091449.0
+324.1467896 179440.703125
+329.1430359 45784.87109375
+331.1497498 22106.1640625
+338.144104 33082.56640625
+338.1809387 386826.46875
+338.6438904 17669.6328125
+339.1828613 80383.921875
+347.1487122 40577.1875
+349.1573181 29719.2421875
+351.1307373 13460.9638671875
+358.1633911 16207.30859375
+359.1444702 68254.7265625
+360.1484375 14609.4560546875
+361.1621704 15702.59765625
+366.1867065 125904.8984375
+367.1891785 27086.62109375
+369.1373596 28849.486328125
+376.1705017 127987.953125
+377.1552734 60659.3828125
+378.1564331 13151.9814453125
+386.1658936 39191.8671875
+394.1204224 16446.05078125
+394.134491 11735.2255859375
+394.181488 711595.4375
+394.2401733 18575.0390625
+395.1835022 119529.0703125
+412.1878052 42857.22265625
+450.2080383 15178.66796875
+460.1900635 19057.8125
+464.1727295 20741.255859375
+468.2224731 39011.171875
+477.2153625 18389.185546875
+478.2046509 25371.826171875
+482.1919861 16073.4306640625
+483.7234802 17533.404296875
+484.2200928 15214.8212890625
+485.2479248 250361.390625
+486.2507324 57496.58984375
+488.1877136 53451.94921875
+492.2299194 193925.359375
+492.7311401 94330.90625
+493.2328491 36621.21484375
+495.225708 53783.5859375
+505.2112122 59126.4921875
+506.207489 58868.14453125
+506.7312927 22529.259765625
+512.2266846 34555.30859375
+512.727478 20065.78125
+521.2312012 41340.63671875
+521.7298584 19499.98046875
+523.2229004 432088.6875
+523.3094482 26742.607421875
+524.2261353 112059.0546875
+525.2296143 28767.29296875
+529.7440796 14425.8984375
+555.2525635 19199.5859375
+567.758728 17382.4296875
+571.7508545 95241.5
+572.2756348 310538.09375
+573.2805176 82818.6953125
+574.2874756 20454.33203125
+576.2603149 39652.47265625
+576.762085 32769.234375
+577.2636108 24376.26953125
+580.263855 58346.99609375
+580.7559204 2012834.875
+581.256897 1408425.625
+581.6774902 9461.43359375
+581.7590942 507965.125
+582.2609253 94545.21875
+589.2699585 23060.021484375
+589.7698364 19027.328125
+598.2789917 34986.7578125
+598.7749023 22882.9296875
+599.2768555 56317.48828125
+599.7785034 90185.5703125
+606.2595215 24742.55859375
+624.2667236 51852.8203125
+625.2681885 21749.474609375
+655.3179321 26243.498046875
+673.3250122 405885.84375
+674.3284912 133000.375
+675.3314819 40065.1640625
+693.2878418 16404.580078125
+711.2962646 20026.716796875
+802.3674316 84576.234375
+803.3704224 44371.47265625
+873.4036865 72745.8984375
+874.4056396 39820.76953125
+875.4080811 15031.623046875
+1001.466187 17695.806640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.43.43.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=43"
+RTINSECONDS=4.564676193
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58502197 17853.240234375
+64.52624512 70480.9921875
+64.53049469 48113.98828125
+64.58203888 59256.11328125
+64.58627319 34459.11328125
+82.054039 30977.27734375
+82.69018555 17069.22265625
+149.561203 17287.1484375
+149.5732117 55612.61328125
+167.0918121 47643.28125
+175.1178894 292234.25
+176.1208954 33971.8984375
+177.0762329 52967.85546875
+178.0600128 385728.90625
+178.0774841 21578.791015625
+178.3410645 105091.2578125
+179.0628357 37067.0625
+179.0904694 17170.10546875
+182.0897064 16770.439453125
+183.0752716 21921.775390625
+186.0859222 95371.71875
+194.1030731 32487.57421875
+195.0451508 32559.896484375
+195.0650177 45277.13671875
+195.0865326 4805807.0
+195.8663177 17708.828125
+196.0894775 449978.3125
+197.0924225 29974.326171875
+200.1023712 30732.330078125
+201.0868835 19401.490234375
+206.0913239 158921.328125
+213.0870209 20944.330078125
+218.102356 48365.7890625
+222.085556 25164.384765625
+234.0980377 15216.279296875
+240.0960236 30788.564453125
+243.0867767 35636.27734375
+246.0971375 617716.0625
+247.0996552 72899.53125
+257.122467 143804.96875
+260.112854 105873.5625
+261.1169128 23114.025390625
+270.0965881 161474.203125
+276.1030884 19799.484375
+278.1487122 27288.5
+283.1440735 44884.609375
+287.1236877 162305.03125
+288.1075439 1726224.5
+289.1104431 211461.796875
+290.1126099 18992.33203125
+295.1494446 31030.787109375
+303.1436462 28865.37890625
+305.1342163 3498587.75
+306.1193542 1210451.875
+307.1217041 208626.453125
+308.1226807 30442.384765625
+311.1358643 66099.671875
+312.1151733 34459.56640625
+321.1542664 336869.71875
+322.1575012 58600.49609375
+323.1447144 1275063.625
+323.1888428 39108.2734375
+324.1464539 215199.734375
+325.1499939 23476.009765625
+329.1426392 53517.67578125
+338.1423035 57447.30859375
+338.1810303 415007.21875
+338.6437683 30276.806640625
+339.1823425 91296.125
+349.1594543 33951.0859375
+358.1652832 25225.0
+359.1459656 71294.6640625
+366.1867065 138024.375
+369.1382751 33286.875
+376.1704407 145924.609375
+377.157196 98542.7734375
+386.1646729 41348.46484375
+394.1813049 832760.5625
+394.2405701 28481.044921875
+395.1833191 189579.984375
+396.1883545 22845.341796875
+407.1734619 17594.560546875
+412.1882019 26726.791015625
+420.6813965 25216.32421875
+460.1890869 25836.982421875
+468.2217712 53793.109375
+477.2154236 19786.9375
+483.723114 27646.490234375
+485.2473145 219946.359375
+486.2520447 58998.75
+488.1879578 50793.87109375
+492.2296448 157133.421875
+492.7317505 91579.875
+495.2290955 61453.96875
+503.7135925 28547.013671875
+505.2122803 64032.125
+506.2009888 32979.1171875
+512.225647 54914.4375
+512.7301025 29342.041015625
+523.2221069 488146.21875
+524.2246094 139758.5
+525.2267456 39590.63671875
+558.7423706 24906.361328125
+565.7477417 20836.63671875
+571.7503052 97929.03125
+572.2763672 287688.0
+572.7592163 20475.2734375
+573.2819214 102278.8671875
+574.2780151 22700.79296875
+576.2622681 51300.12890625
+576.7642212 52035.16015625
+577.2606201 29094.57421875
+580.263916 81806.46875
+580.7557373 2579565.25
+581.2568359 1805318.125
+581.3690186 21317.501953125
+581.7587891 591213.9375
+582.2601929 117433.0390625
+589.2696533 120750.71875
+589.7677002 86505.8671875
+598.2720947 83015.828125
+598.7714844 41703.0390625
+599.7805786 59294.234375
+606.2587891 35770.76953125
+607.2637939 26111.869140625
+624.267395 53261.4765625
+673.3247681 456098.28125
+674.3273315 193441.8125
+675.3324585 38928.1953125
+802.367981 101488.90625
+803.3678589 28410.849609375
+804.3761597 25876.58984375
+873.3997803 102083.2265625
+874.4090576 39542.1953125
+1001.455017 27722.607421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.44.44.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=44"
+RTINSECONDS=4.670769681
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13448715 16256.7177734375
+64.52622986 65847.4609375
+64.53064728 48597.0234375
+64.58209991 45967.70703125
+64.58628082 29458.232421875
+64.63814545 25326.0234375
+64.64159393 16123.0654296875
+82.09759521 14934.7021484375
+96.59570312 13976.0849609375
+106.4962158 13234.05078125
+149.5626068 24527.45703125
+149.5763397 36913.0078125
+167.0918732 43416.7109375
+169.0596313 42639.5625
+175.1179047 361008.71875
+176.1217804 28216.224609375
+177.0763245 88565.171875
+178.0602112 408408.59375
+178.3370667 74696.9296875
+178.3565063 33922.6171875
+179.0645752 29197.2109375
+179.0911407 27421.71484375
+183.0755463 26733.4453125
+186.0863495 113002.2734375
+194.1028442 40192.0234375
+195.0865479 4558745.0
+195.1281128 30084.75390625
+196.0893555 408061.53125
+197.0912476 36567.25390625
+200.1025696 22461.927734375
+201.0866394 20220.521484375
+206.0912018 160469.1875
+212.1130066 28286.61328125
+215.0905609 19599.43359375
+218.1020355 68280.5234375
+222.0861359 17251.541015625
+234.0977173 13679.0517578125
+240.0971222 26839.244140625
+243.0864868 27090.958984375
+244.1182098 18933.841796875
+246.0743103 10995.4384765625
+246.0971527 687318.625
+247.0995789 87690.21875
+249.0978241 21438.669921875
+257.1228027 108988.6640625
+260.112854 128610.546875
+267.1124268 15013.21875
+270.0972595 146219.875
+277.1403809 18960.171875
+278.1170959 16718.36328125
+278.1495361 36731.734375
+283.1422729 50518.8984375
+287.1238098 155272.921875
+288.107666 1880618.0
+289.1105957 260371.265625
+294.1185913 26770.021484375
+295.1495667 24764.890625
+302.1293335 18567.830078125
+303.1430359 36438.63671875
+304.1308289 15771.3291015625
+305.1042786 67236.53125
+305.1342163 3399954.0
+306.1192322 1282977.125
+307.1220398 182435.421875
+308.1238403 19864.892578125
+311.1360168 55343.01953125
+312.1178284 51661.27734375
+321.1542358 361963.75
+322.1567688 78804.875
+323.1447449 1233168.125
+324.1470947 233041.421875
+325.1498413 34285.52734375
+328.1607056 18918.21875
+329.1434021 31895.560546875
+331.1506348 17979.37890625
+338.1424561 69141.765625
+338.1810913 425417.0
+338.6452942 26668.962890625
+339.1831055 75686.7421875
+341.1472473 27823.947265625
+341.9952393 17056.49609375
+346.1714172 23840.07421875
+347.1513672 19628.193359375
+359.1454773 71744.5234375
+366.1861877 144255.625
+367.1893311 30273.943359375
+369.1415405 54301.46484375
+376.1702576 138768.171875
+377.1572876 84097.3828125
+386.1652222 28026.521484375
+394.181366 822137.25
+394.2401123 25244.955078125
+395.1827393 153789.546875
+396.1880798 31401.943359375
+412.1857605 34471.16015625
+414.9101257 17332.734375
+420.6845093 23647.486328125
+460.1907654 31491.8515625
+464.1797485 19510.189453125
+468.2218628 68260.0546875
+477.2182617 22462.7890625
+483.7255554 16900.904296875
+485.2477722 242716.796875
+486.2503357 64908.3984375
+488.1853333 42621.12890625
+492.2301331 167604.34375
+492.7310486 97387.828125
+493.230835 29372.75
+495.2267761 61802.25
+503.2228394 19992.029296875
+505.2119751 64129.57421875
+506.2042236 52572.5
+512.2244873 53551.4453125
+512.7285156 33486.20703125
+513.2305908 23146.841796875
+520.7440796 27194.3515625
+521.2338257 31829.8203125
+521.7366333 17497.345703125
+522.234375 15722.8876953125
+523.2227173 496493.96875
+524.2246094 132209.65625
+525.2277222 30690.462890625
+529.746521 24642.111328125
+558.744751 25469.4609375
+571.7523804 107938.921875
+572.276001 343573.3125
+572.7531128 29314.671875
+573.2805176 99156.8515625
+574.2852173 19454.103515625
+576.7642822 19256.271484375
+580.2640381 79871.8671875
+580.7556763 2534896.25
+581.256958 1675903.875
+581.7589722 580944.3125
+582.2587891 118011.7734375
+583.2636719 20925.96484375
+589.2693481 53426.5390625
+598.2766113 39218.42578125
+598.7791138 40463.70703125
+599.7780762 108235.3671875
+606.2618408 41950.203125
+624.2684326 50585.73828125
+673.3251953 406081.78125
+674.328064 158600.0625
+675.3223267 44783.08984375
+711.2915039 20994.65625
+802.3648071 108442.4921875
+803.3710327 37288.9140625
+873.4024048 90454.9921875
+874.4064331 55657.8203125
+908.0701294 17490.240234375
+1058.488525 24215.443359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.45.45.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=45"
+RTINSECONDS=4.778423793
+PEPMASS=598.27001953125
+CHARGE=2+
+57.23146439 16878.181640625
+64.52632141 66746.53125
+64.53073883 51049.9921875
+64.58223724 36212.328125
+64.58618164 35932.9375
+74.66149139 15290.8603515625
+82.05463409 15162.0517578125
+90.97946167 19441.54296875
+112.0712051 15076.75390625
+149.5732574 48521.8125
+167.0918732 54864.953125
+169.0592346 29539.154296875
+175.1179657 362090.5
+175.1354218 20369.99609375
+177.0763092 66346.484375
+178.0600739 360015.21875
+178.3338165 29501.111328125
+178.3527527 70339.203125
+179.0625 17444.095703125
+179.0922089 19062.34375
+183.0757599 28386.2890625
+186.0858307 124474.375
+194.1022491 26997.720703125
+195.0864563 4401523.0
+196.0893707 456042.0625
+197.0912018 35780.7578125
+200.1021271 29596.69140625
+201.0868835 16337.15234375
+206.0910645 173487.34375
+215.0898895 15937.029296875
+218.1025696 45361.8359375
+234.0971527 16097.69921875
+240.0952454 31923.7890625
+243.0876923 18235.66015625
+246.0970001 686222.3125
+246.1207123 14156.693359375
+247.0990143 73095.1875
+249.0969849 18016.845703125
+257.1227722 106013.9921875
+258.1246948 15014.6484375
+260.1125793 129806.53125
+270.0965881 137710.40625
+276.105835 18617.345703125
+276.1357727 17156.916015625
+278.1164246 20075.435546875
+278.1488647 26015.150390625
+283.1429138 47433.4296875
+287.1236877 136466.75
+288.1074219 1683051.375
+289.1099854 207330.1875
+290.1127319 23804.162109375
+295.1490173 21951.013671875
+302.1312866 20651.625
+303.1447144 38879.78125
+304.1266174 16191.533203125
+305.1339417 3302633.0
+306.1191101 1184702.625
+307.1217651 198892.859375
+308.1239624 19762.2578125
+311.1365967 53413.265625
+312.1184387 49038.640625
+321.1539001 365756.34375
+322.1564636 75302.6171875
+323.1443787 1260630.625
+324.1460571 186227.0
+325.1514893 22744.716796875
+329.1434021 50558.76171875
+338.1429138 38045.30859375
+338.1805725 395965.5625
+338.6423035 23749.447265625
+339.1824036 90127.859375
+346.1679688 22767.09375
+347.1490784 27983.345703125
+349.1582031 31185.361328125
+351.1354065 19055.244140625
+359.1443176 68243.7421875
+366.1867065 134015.8125
+367.18573 24256.50390625
+369.1393433 39084.984375
+376.1698608 129962.640625
+377.157074 69495.328125
+386.1646118 29587.921875
+394.1809998 742211.5
+394.240509 25441.47265625
+395.1829224 155800.046875
+412.1870117 47740.9375
+413.1636658 17988.49609375
+434.1737061 16643.96875
+450.2094116 17460.37890625
+460.187439 24426.306640625
+468.2216797 47501.79296875
+477.2185059 25667.5625
+483.2244873 18222.279296875
+485.2467957 216750.5625
+486.2502136 75415.71875
+488.1851501 51006.2421875
+489.1879272 20684.43359375
+492.2294617 164359.640625
+492.7320557 98791.453125
+493.2254028 33755.70703125
+495.2276917 48901.02734375
+497.2312317 18247.333984375
+503.2172546 18158.44921875
+503.716217 26719.521484375
+505.2121277 53749.52734375
+506.2032471 57656.6328125
+507.1976624 19840.015625
+512.2259521 39605.28515625
+521.2336426 40711.5078125
+523.2224731 429963.6875
+524.223999 154965.265625
+525.2278442 27166.181640625
+554.2684937 20033.38671875
+555.2556152 22101.509765625
+558.7437744 30709.69140625
+559.7437744 19106.021484375
+571.7504272 70414.9375
+572.2749634 299209.09375
+572.7544556 20440.56640625
+573.2805786 92409.2734375
+576.2626343 43383.52734375
+576.7606812 26130.23046875
+577.2619629 19589.478515625
+580.2637939 69008.71875
+580.7549438 2524397.5
+581.2561646 1622903.875
+581.7578125 575775.5
+581.8643188 25982.564453125
+582.2601929 109081.0703125
+589.2657471 53316.859375
+589.7644043 43762.51171875
+598.2722168 47026.65625
+598.7752686 34207.71484375
+599.276062 41163.5859375
+599.7789917 85988.875
+606.2567139 32260.119140625
+624.2702026 53465.7578125
+655.3106079 19966.46484375
+673.3232422 451599.3125
+674.3251953 121340.484375
+675.3276367 29791.404296875
+693.2971802 23704.015625
+711.2938232 22369.5390625
+802.3648682 98970.390625
+803.3610229 38942.2109375
+868.3157349 18554.24609375
+873.4008789 97867.8203125
+874.4048462 52468.484375
+1001.462158 20471.501953125
+1058.46875 20775.599609375
+1059.485962 17196.962890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.46.46.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=46"
+RTINSECONDS=4.886155488
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13702774 15236.240234375
+59.13938522 16227.4580078125
+63.58516693 12798.7470703125
+64.52619934 64468.984375
+64.53043365 44084.53515625
+64.58200836 41110.0
+64.58618927 31500.6640625
+64.63818359 22554.703125
+64.64134979 13753.0517578125
+76.28565216 15790.4482421875
+82.05437469 24440.78515625
+149.5633545 30856.453125
+167.0917053 46950.09765625
+169.0600128 31397.283203125
+175.1177216 299267.09375
+176.1199036 24316.064453125
+177.0754089 60082.0078125
+178.0598755 352977.6875
+178.077774 19992.044921875
+178.343811 87689.6328125
+179.0637512 33808.0625
+179.0922394 30135.673828125
+182.092865 23348.1640625
+186.0859985 125931.140625
+190.1081543 15636.083984375
+194.102829 40697.453125
+195.0863495 4122573.25
+195.1280823 28400.333984375
+196.0891571 411602.0625
+197.0922699 20342.384765625
+200.1023102 17881.01953125
+201.0856323 18103.41015625
+206.0911255 156258.0
+212.1126251 21008.78515625
+215.0904999 16850.484375
+218.1025696 60368.18359375
+237.1101379 18374.283203125
+239.1141357 15483.5556640625
+240.0958557 26009.671875
+243.084549 19075.482421875
+246.0968933 620452.5625
+247.1000977 96728.9765625
+257.1224365 111792.7890625
+258.1254578 22624.033203125
+260.1130371 102550.8125
+261.1184692 28629.466796875
+270.0966492 146125.640625
+271.0994568 25125.65234375
+275.3690796 12669.8359375
+277.1381836 13439.298828125
+278.1477356 29949.734375
+283.1431885 33000.640625
+287.1234436 124162.3046875
+288.1072998 1681775.625
+289.1098022 213626.125
+290.1132812 20009.107421875
+294.1197815 20354.46484375
+295.1503601 24640.880859375
+303.1424866 26115.55078125
+304.1298218 21372.22265625
+305.0519409 25911.943359375
+305.1338196 3255910.75
+306.1188965 1200472.375
+306.1969299 18897.794921875
+307.1213379 191204.828125
+308.1229858 21372.66796875
+311.1348877 50472.1484375
+312.1187439 38939.3359375
+321.1537781 346091.9375
+322.1558533 61254.9765625
+323.1443481 1078093.625
+323.1889954 29956.087890625
+324.146759 204147.765625
+328.1628113 17087.3359375
+328.6902161 16124.8876953125
+329.1444397 39489.59375
+338.1430054 43240.28515625
+338.1803894 433419.75
+338.6420593 29932.966796875
+339.1823425 71924.5625
+341.1452026 16869.14453125
+347.1472168 23838.580078125
+349.1599731 22522.0234375
+359.144928 75943.3984375
+366.1858521 114930.1953125
+367.1906128 32941.86328125
+369.1376953 18663.888671875
+376.1699219 120483.4140625
+377.1575623 55403.25390625
+378.1578064 24430.70703125
+386.1642151 18999.40625
+394.1807861 660548.5625
+394.240448 26270.84765625
+395.1813965 135084.25
+396.1850586 14300.4921875
+398.1700134 16162.9130859375
+412.186676 36548.37109375
+421.1836243 17253.380859375
+442.9532776 15270.53515625
+460.1889038 25087.724609375
+464.1767578 17647.6875
+468.2210388 54651.7578125
+469.2080688 14550.7216796875
+477.2168274 15915.1474609375
+485.2470703 203905.609375
+486.2512817 46139.3984375
+488.183075 49787.07421875
+492.2294922 187065.890625
+492.7308044 94338.5234375
+493.2288818 29647.890625
+495.230072 47043.1640625
+503.2144165 16957.05859375
+505.212616 62531.9296875
+506.2115173 51331.96875
+506.7256775 20056.8359375
+512.2275391 43096.13671875
+512.7272339 24465.998046875
+521.2315674 28406.302734375
+521.7390137 19541.078125
+523.222168 433687.96875
+524.2246704 104381.2421875
+525.2334595 29453.142578125
+571.7493896 84807.8125
+572.2751465 306520.875
+572.7504883 19219.59765625
+573.2807617 121257.90625
+574.2768555 15717.818359375
+576.258667 31234.5078125
+576.7598877 36088.76953125
+577.2611084 44128.8359375
+580.2632446 103509.5703125
+580.7550049 2416700.0
+581.2564087 1581803.375
+581.3668213 29672.236328125
+581.7577515 605533.0625
+582.2599487 110981.8203125
+589.2650146 35402.30078125
+598.2718506 47877.0859375
+598.7713013 21566.720703125
+599.2767334 56336.3203125
+599.7762451 93304.2734375
+606.2574463 31280.146484375
+624.2698364 57163.0390625
+673.3239136 390278.125
+674.3266602 174323.65625
+675.3345337 26380.626953125
+802.361084 78125.921875
+803.3720093 38229.62109375
+873.4005127 88939.3359375
+874.4067993 38262.703125
+1001.469727 27809.091796875
+1058.487427 18284.96875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.47.47.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=47"
+RTINSECONDS=4.995970385
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91491699 16289.6630859375
+58.13446808 20514.693359375
+64.52636719 68240.6484375
+64.53051758 35260.25390625
+64.58200073 48027.40625
+64.58621216 32490.4375
+64.78942108 15800.48046875
+75.27877045 17036.974609375
+82.05450439 14907.1064453125
+107.9164581 15725.5888671875
+149.5735931 55969.83984375
+167.0914001 53633.71875
+169.0599823 46683.671875
+175.1177368 321037.1875
+176.1199646 25734.404296875
+177.0756989 65743.59375
+178.0599976 359896.15625
+178.0773926 12585.22265625
+178.3357086 61038.5703125
+178.35466 45453.76953125
+179.0629272 20979.232421875
+179.091507 25374.8203125
+182.09198 22340.060546875
+183.0755615 23733.44921875
+186.0863037 99192.6796875
+194.1036072 21557.80859375
+195.0863495 4649712.0
+195.1283722 24372.17578125
+196.0890656 440704.90625
+197.0920715 23467.009765625
+200.1025238 21323.810546875
+206.0910797 144396.90625
+207.094101 18181.57421875
+218.1019745 78860.28125
+240.0962067 34958.2734375
+243.0851746 21963.66796875
+246.0968781 711443.0
+247.0997314 73650.984375
+257.122467 122583.2890625
+258.1246643 20920.6171875
+260.1127319 118574.8984375
+270.0965881 132744.6875
+283.1418152 48519.61328125
+287.1232605 152572.40625
+288.1072388 1690147.75
+289.1098022 236111.75
+303.1452026 37540.9765625
+304.1282349 20712.876953125
+305.1337585 3480168.75
+306.118927 1222282.0
+307.1211548 204815.96875
+308.1218262 18883.162109375
+311.1342163 47024.98046875
+312.1164856 31442.146484375
+321.1537476 360883.875
+322.1559143 77812.9765625
+323.1441956 1258341.125
+324.1466064 223898.6875
+325.153595 22646.919921875
+329.1445923 47160.30859375
+338.1428528 38850.671875
+338.1802368 463819.34375
+338.6460571 31220.056640625
+339.1817932 84067.3671875
+340.1821289 25886.40234375
+347.1468201 36529.01953125
+349.1609497 24512.625
+351.1296692 19265.654296875
+359.1440125 60522.09375
+366.1856689 113031.5703125
+367.1849365 20578.849609375
+369.1386719 23507.380859375
+376.1699524 144137.78125
+377.1564331 89414.828125
+386.1663208 29012.8046875
+394.180542 807643.6875
+395.1822205 141123.828125
+398.1646118 23743.478515625
+412.1879578 35015.078125
+420.6826477 25014.662109375
+434.1716614 22466.9375
+468.221344 51927.4921875
+473.1341553 17083.224609375
+483.7245789 34746.421875
+485.2468262 233345.71875
+486.2471924 80483.0859375
+488.1875 50260.05078125
+492.2284546 209841.125
+492.729126 110071.2265625
+493.2297668 26706.634765625
+495.2256775 72307.7578125
+503.2175598 26395.529296875
+503.7164307 41691.60546875
+505.2110901 61842.59765625
+506.208252 49516.734375
+512.2265625 52636.2265625
+512.7264404 35811.2109375
+521.2345581 63434.375
+523.2213135 558722.0
+524.223938 168945.265625
+525.2254028 23253.705078125
+554.2680054 20279.328125
+558.2514038 19578.646484375
+558.7381592 34179.73828125
+559.2419434 28596.3203125
+571.7485962 84694.328125
+572.2738647 330616.9375
+572.7506104 31336.373046875
+573.2817383 104835.953125
+574.2840576 24065.205078125
+576.2630615 54133.84765625
+576.7651367 30187.271484375
+577.2555542 20782.908203125
+580.2619019 98645.984375
+580.7543945 2617407.75
+581.2554932 1810718.625
+581.3352661 32133.3671875
+581.7572632 655156.9375
+581.8647461 27471.810546875
+582.2582397 163598.765625
+589.2665405 88583.2421875
+589.7669067 80586.8671875
+598.272522 85846.9296875
+598.7718506 59090.0703125
+599.7768555 58949.265625
+606.2584229 27385.7890625
+624.2661133 65397.27734375
+655.3086548 27597.533203125
+673.3227539 400198.40625
+674.3271484 172644.75
+675.3318481 35401.5
+693.2965698 18229.265625
+802.3613281 104101.5859375
+803.3717651 39963.578125
+873.4008179 98967.6484375
+874.4022827 51390.90625
+1001.457153 27360.9921875
+1058.48584 24853.7265625
+1206.308228 18734.8515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.48.48.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=48"
+RTINSECONDS=5.102915985
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13425446 17561.265625
+64.52614594 64567.98046875
+64.53044891 46539.89453125
+64.58193207 44032.27734375
+64.5860672 35873.859375
+64.63803864 17061.4453125
+74.81201172 16460.619140625
+149.56633 58523.79296875
+167.0919647 42355.66015625
+169.0599365 32329.5390625
+175.11763 293562.21875
+176.1205902 23988.337890625
+177.0757751 66086.125
+178.0597229 335573.375
+178.3343201 36194.703125
+178.3534546 59245.375
+179.0629425 27861.8359375
+179.0912628 37235.31640625
+179.5242004 14947.2685546875
+183.0747375 17070.380859375
+186.0860443 126505.3359375
+194.1017761 47250.046875
+195.0862274 4481320.5
+196.0891266 482511.8125
+197.0905762 19115.21484375
+200.1022797 33729.29296875
+201.085495 18940.978515625
+206.0909119 187797.828125
+212.1115417 19668.30859375
+213.0872192 20942.41015625
+218.1018524 37737.5703125
+240.0962372 31515.40625
+244.117569 24537.48828125
+246.0967407 702255.5
+246.1257324 33004.30859375
+247.0995789 67160.0703125
+247.1269989 15392.384765625
+249.0958405 24080.1796875
+252.0972595 15921.455078125
+257.1227722 108582.484375
+260.1122131 137794.59375
+270.0965271 143938.53125
+271.1020813 19092.3359375
+278.1183167 16527.62109375
+283.0643921 18922.23046875
+283.1420593 63407.1875
+287.1232605 182943.734375
+288.1071167 1712983.0
+289.1099854 245447.546875
+290.1120911 23518.94140625
+294.114624 20045.248046875
+303.1427307 31418.48046875
+305.1335754 3544352.5
+305.2156067 23301.494140625
+306.1187439 1241700.0
+307.1208496 209311.71875
+308.1237793 21479.1015625
+311.1346741 51373.16015625
+312.1168518 31834.837890625
+321.1534119 358412.6875
+322.1561279 65561.328125
+323.144104 1204706.75
+324.1462097 194105.546875
+325.1489258 21593.06640625
+329.144043 51833.375
+331.1495667 16944.251953125
+338.1423645 45734.79296875
+338.1802673 424762.59375
+338.6455383 49447.9375
+339.1815796 85836.15625
+346.1713867 20499.20703125
+349.1593018 29802.04296875
+351.1305237 25332.021484375
+359.1441956 73410.1328125
+360.1417847 21634.916015625
+366.1855469 151423.328125
+367.1888123 39926.87890625
+369.1347656 33587.53515625
+376.169281 135276.03125
+377.1573181 75159.8984375
+378.1595764 19460.92578125
+386.1651306 35509.86328125
+394.1196594 24762.908203125
+394.1802673 788457.0625
+394.2409668 25828.10546875
+395.1818542 154328.515625
+396.181427 20563.677734375
+398.166748 19155.734375
+412.1877441 34644.36328125
+468.2200317 66159.1875
+469.2324219 19064.14453125
+477.2175903 22006.310546875
+478.1999512 20576.01953125
+485.2464294 245678.609375
+486.2493896 60411.16015625
+488.183197 67873.9375
+492.2285156 184761.421875
+492.7310486 83638.96875
+493.2326965 33912.91796875
+495.2259216 67877.78125
+503.2243958 27574.3984375
+503.7197571 21014.92578125
+504.2200928 22193.3046875
+505.2102051 63114.59765625
+506.20401 61268.73046875
+507.2033691 19761.236328125
+512.2265015 50128.421875
+521.2315674 24507.767578125
+521.730835 22457.5859375
+523.2208862 497553.4375
+524.2234497 137460.734375
+525.2313843 35579.765625
+529.7470703 21906.59765625
+555.2592773 26481.39453125
+558.7425537 27170.771484375
+567.7622681 20098.177734375
+571.751709 89939.7890625
+572.2727051 336174.625
+573.2797852 100757.3671875
+576.2579956 38696.5703125
+576.7626953 25917.234375
+580.2605591 97539.578125
+580.7542725 2390143.25
+581.2553711 1700162.5
+581.3361206 25731.62109375
+581.3651123 20180.083984375
+581.7572021 619307.3125
+581.864624 27285.244140625
+582.2565918 92538.3046875
+589.2670898 62122.828125
+589.7637939 39921.55859375
+598.2717896 70288.453125
+598.7746582 53144.6015625
+599.2700195 32200.826171875
+599.7773438 96713.21875
+606.2559204 47789.15234375
+607.2738037 18205.166015625
+624.2680054 67321.171875
+625.2698364 18107.046875
+673.3231812 425674.6875
+674.3245239 161312.78125
+802.3636475 89718.9140625
+803.3588867 45612.30859375
+873.3981934 118885.8671875
+874.3981323 44480.2578125
+1001.456909 26001.544921875
+1033.49353 20865.126953125
+1058.481445 24654.681640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.49.49.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=49"
+RTINSECONDS=5.210283249
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13428497 14577.638671875
+64.52627563 72443.8515625
+64.53075409 44805.05859375
+64.58203125 50947.18359375
+64.58614349 32132.0703125
+64.63816071 22462.603515625
+64.64146423 18032.61328125
+74.81628418 15863.9990234375
+86.51689148 14036.6533203125
+98.03936768 15266.2861328125
+111.2962952 13119.7890625
+139.7953339 13797.3818359375
+149.5697784 53072.796875
+155.0789948 13695.56640625
+167.0923767 51416.51171875
+169.0601044 40088.703125
+175.117981 301167.96875
+175.9464111 16528.052734375
+176.1211395 25415.712890625
+177.076004 76598.0625
+178.0601349 325899.96875
+178.3361969 41916.4296875
+178.3548737 34271.61328125
+179.0916138 21641.92578125
+183.0758209 25255.8203125
+186.0865173 100837.3671875
+187.0895081 15555.75390625
+189.9249878 14308.5556640625
+190.0594635 13425.2529296875
+194.1022339 39799.078125
+195.0865021 4396636.5
+195.1280975 24191.90234375
+196.0894318 486390.84375
+197.0923767 24954.9765625
+206.0911713 173822.21875
+207.0930328 18403.537109375
+209.102951 19316.19921875
+212.1138916 21813.552734375
+218.1023865 70354.609375
+234.0962982 18368.767578125
+239.1139679 14462.5556640625
+240.0953522 22889.6953125
+243.0862427 23490.330078125
+244.1194 15820.0791015625
+246.0970764 677462.5625
+247.1004181 83473.6796875
+249.0969238 15747.0478515625
+257.1229553 112620.84375
+260.1126099 109641.8828125
+261.1195068 14303.572265625
+270.0969543 145293.765625
+278.1488342 23449.4296875
+283.1433716 40404.4921875
+287.1235657 132100.234375
+288.1075134 1714060.625
+289.11026 246424.21875
+294.1177979 19783.9765625
+295.151825 22095.759765625
+303.14151 29017.69140625
+304.1289978 18658.88671875
+305.1340942 3416931.25
+306.1194153 1098587.875
+307.121521 213911.546875
+311.1363831 55074.0234375
+312.1180725 44533.6484375
+321.1540833 347088.0
+322.1572876 76849.9609375
+323.0987549 18851.919921875
+323.1445312 1150163.75
+324.146698 181811.796875
+328.1619873 16333.15234375
+329.14505 46187.62109375
+338.1418152 49214.76171875
+338.1806335 431073.21875
+338.6452942 18822.205078125
+339.1828308 85414.765625
+341.1436462 14780.8779296875
+349.1600342 24094.751953125
+351.1317139 28492.23046875
+359.144043 56764.36328125
+360.1467896 27980.439453125
+366.1864014 107089.4296875
+367.1956177 17372.744140625
+368.1551514 17963.6484375
+369.1372986 39985.421875
+376.170166 130606.6328125
+377.1575623 90804.1171875
+378.156311 21459.9296875
+386.1655579 17091.234375
+394.1810303 792968.1875
+394.2400208 21744.4296875
+395.1828613 147004.171875
+412.1860352 51074.54296875
+420.6809387 19058.40234375
+460.1950989 24568.62109375
+468.2216492 66117.6328125
+477.2159729 23562.0703125
+483.7180481 16809.783203125
+485.2473145 213295.015625
+486.2510681 67880.3125
+488.1870117 54057.34375
+492.2299194 175075.46875
+492.7301636 104870.1953125
+493.2316589 28080.712890625
+495.2272949 56238.9609375
+505.2115173 63631.9453125
+506.2073364 62636.8828125
+512.2250977 58206.9921875
+512.7268677 61914.28125
+521.232605 48161.02734375
+521.732666 31782.73046875
+523.2227173 538878.6875
+524.2247314 128941.984375
+525.2296143 50270.19921875
+529.744873 23069.30859375
+555.2540283 25940.287109375
+558.7477417 32494.39453125
+559.246521 18642.892578125
+568.2556763 18715.029296875
+571.7491455 96890.6875
+572.2756348 360201.21875
+573.2803345 106347.6015625
+574.2798462 26349.734375
+576.2623291 48420.5703125
+576.7659912 28279.205078125
+577.265564 26632.4765625
+580.2626343 102299.25
+580.755188 2664764.75
+581.2564087 1766893.375
+581.3661499 26313.19140625
+581.7581177 683446.4375
+582.260498 112471.546875
+589.2675781 69084.96875
+589.7684937 40999.78515625
+598.2729492 67348.71875
+598.7787476 45221.1015625
+599.2755127 28068.6328125
+599.7785645 93187.53125
+606.2561035 43196.15234375
+607.2533569 21476.05078125
+624.2676392 48496.8671875
+673.3237915 427198.84375
+674.3267212 142044.125
+675.3261108 24023.79296875
+802.364502 109770.15625
+803.3603516 38258.8203125
+873.3977661 85060.078125
+874.3981934 45139.09765625
+1001.454651 26515.6796875
+1118.624634 16521.07421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.50.50.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=50"
+RTINSECONDS=5.318705361
+PEPMASS=598.27001953125
+CHARGE=2+
+51.36418915 12342.486328125
+52.21241379 15600.255859375
+54.6902504 18708.29296875
+58.1342392 17012.583984375
+64.52616882 68584.609375
+64.53049469 45739.796875
+64.58197021 48701.68359375
+64.58618164 34062.8125
+64.63790894 21371.197265625
+64.64131165 15914.1064453125
+65.6667099 15557.9150390625
+69.07855225 14231.931640625
+77.68766022 16536.673828125
+81.04676056 14634.6083984375
+95.0631485 19929.642578125
+149.5709381 62636.9921875
+152.0333862 15635.05078125
+153.8798065 14069.6201171875
+167.0918732 54251.98046875
+169.059906 40766.359375
+175.1176453 320898.59375
+176.1203918 29473.73046875
+177.0760193 64603.23046875
+178.0598755 379808.34375
+178.3326721 36968.54296875
+178.3513184 77972.015625
+179.0635834 26659.775390625
+179.0918274 34988.8984375
+180.2752991 14298.0400390625
+183.0751343 29978.166015625
+186.0857239 123550.5859375
+190.0594177 27359.4765625
+190.1080475 24199.59765625
+194.1017761 35810.9609375
+195.0862732 4607637.5
+195.1283112 22330.259765625
+196.0891418 500586.125
+197.0908203 43128.7265625
+200.1035614 29661.572265625
+201.0850372 24719.46875
+201.1456909 17103.08984375
+206.0909119 169084.828125
+218.1021576 47476.54296875
+239.1114044 22205.943359375
+240.0970917 23278.685546875
+243.086731 39671.33203125
+246.096756 744947.75
+246.1202545 13299.146484375
+247.0985718 81643.4609375
+249.0965729 16971.9375
+257.1222229 129314.2890625
+260.1121521 116024.1328125
+270.0968628 153281.546875
+271.6022034 15444.1982421875
+278.1161194 17028.431640625
+278.1494446 26204.685546875
+283.1426086 41664.94921875
+287.1233826 157671.296875
+288.1071167 1836352.875
+289.1098938 270622.65625
+290.1146545 19604.23828125
+295.1479187 22367.0546875
+303.1418457 19760.4140625
+305.1336365 3533264.25
+306.1188965 1305342.375
+307.1212158 245851.609375
+308.1220093 22094.0390625
+311.1342163 73936.015625
+312.1170349 41971.1484375
+321.153717 384373.375
+322.1564026 69862.53125
+323.0992737 36318.6328125
+323.144104 1262712.0
+324.1461792 190931.171875
+325.1499023 28700.546875
+329.1431274 64859.3125
+338.142334 49020.05859375
+338.1801758 441429.78125
+338.6455383 21333.556640625
+339.1820374 75642.6875
+347.1484375 23153.763671875
+349.1621399 26538.296875
+351.132019 24483.845703125
+359.1438599 65363.9921875
+366.1854858 159646.9375
+369.1370239 32699.521484375
+376.1698303 142984.9375
+377.1556702 75490.359375
+378.1591797 24154.859375
+386.162323 26245.603515625
+389.1599121 20747.2734375
+394.1804504 816624.1875
+395.1821594 165474.625
+412.1849976 42210.78515625
+413.1635437 22651.716796875
+420.6862488 19040.755859375
+460.1973267 19125.5
+468.2194519 79795.4296875
+477.2153931 23581.412109375
+485.2469482 251878.296875
+486.2513733 52496.69140625
+488.1858826 56659.72265625
+492.2286987 188820.6875
+492.7298889 94935.9453125
+493.2310486 26693.986328125
+495.224823 68065.46875
+503.223999 19339.66015625
+503.7168274 26157.892578125
+505.2106628 81367.5625
+506.203949 49482.484375
+507.207489 25541.037109375
+512.2272949 48172.3203125
+512.7338257 25306.607421875
+513.2344971 32911.99609375
+521.2333984 50507.46875
+523.2212524 495039.0625
+524.2233276 138519.078125
+525.2304688 20856.359375
+529.7474365 19927.375
+530.2402954 21117.552734375
+558.7458496 21728.42578125
+559.2344971 19320.107421875
+571.7492065 96053.234375
+572.2750854 331661.90625
+572.7518311 20913.72265625
+573.2781372 139411.96875
+574.2774048 23586.029296875
+576.2565918 50195.3515625
+576.7641602 24910.427734375
+577.2630615 35075.76171875
+577.7592163 20936.576171875
+580.2601318 68018.828125
+580.7543945 2593444.5
+581.2556152 1669204.375
+581.7572632 694908.0
+581.864624 21600.951171875
+582.2584839 133068.609375
+589.2675171 69342.2421875
+589.7672729 46823.89453125
+598.2750244 71080.1484375
+598.7752686 43275.98828125
+599.2750244 37010.32421875
+599.7753296 104217.7265625
+606.2626953 25578.396484375
+624.2684937 58783.39453125
+655.3170776 19964.189453125
+673.3228149 439556.90625
+674.3258667 176472.4375
+675.3285522 32248.91796875
+693.2937622 20493.611328125
+802.3620605 110831.0
+803.3713989 51898.0078125
+858.3571167 21562.79296875
+873.3991089 108976.40625
+874.4041748 56075.85546875
+1001.4422 29924.1171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.51.51.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=51"
+RTINSECONDS=5.425970033
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13426971 24518.796875
+64.52624512 65344.7578125
+64.53059387 49672.515625
+64.58195496 53192.4140625
+64.58615875 29891.140625
+64.63794708 29116.28515625
+64.64161682 19941.52734375
+69.41855621 12114.6474609375
+82.05381775 14739.5166015625
+83.63941193 15526.12890625
+84.59483337 13052.9775390625
+85.2388916 14057.92578125
+98.70443726 13528.3671875
+149.5711517 55688.4609375
+167.0915985 34258.6328125
+169.0590363 42117.953125
+175.1176758 293751.625
+176.1218109 25637.427734375
+177.0755157 74304.5859375
+178.0599213 345399.59375
+178.0777588 18168.953125
+178.3383484 69585.859375
+178.3568268 34619.04296875
+179.0634766 20473.154296875
+179.0898743 24321.001953125
+182.0904388 17602.7421875
+185.9368134 13715.3388671875
+186.0860291 114584.15625
+191.0906067 16011.3134765625
+194.1015778 45654.8671875
+195.0863037 4395910.5
+195.1282349 22159.94921875
+196.0890503 434267.15625
+197.0907593 31763.197265625
+200.1027222 26468.529296875
+201.0863037 23533.734375
+206.0910339 172431.375
+209.0769043 17018.5
+212.9623108 14464.8818359375
+215.0921631 16408.7578125
+218.1021881 68058.828125
+222.0869446 32676.99609375
+240.0952606 21397.55078125
+243.0856171 32256.5078125
+244.1163483 14290.287109375
+246.0967865 653646.0625
+246.1213226 11356.232421875
+247.0993652 81971.625
+249.096817 18468.642578125
+257.1226501 100921.9140625
+260.111969 150367.015625
+261.1156921 14189.1904296875
+270.0968018 159449.90625
+276.1047668 20069.080078125
+277.1385803 14865.1220703125
+278.1483765 28054.8046875
+283.1420288 41140.11328125
+287.1231079 189535.53125
+288.1071167 1687445.875
+289.1098022 249884.46875
+290.1134949 30363.82421875
+294.116272 19240.978515625
+295.1479492 26263.630859375
+302.1325073 25240.90625
+303.1427002 33733.2578125
+304.1273193 30170.576171875
+305.133667 3290834.25
+305.2159424 21323.408203125
+306.118988 1124028.625
+307.1209412 218245.59375
+308.1231689 20567.462890625
+311.1338196 63238.8671875
+312.1152954 42181.21875
+318.1386719 18397.568359375
+321.153656 345419.4375
+322.1567078 53087.06640625
+323.1442566 1149194.125
+324.1461182 185158.453125
+325.1461487 23479.263671875
+329.1434326 66261.328125
+338.1418762 51686.453125
+338.1802979 402421.15625
+338.6427002 15821.849609375
+339.1825867 74480.4140625
+346.1707764 27995.61328125
+347.1498108 22800.5546875
+349.1602478 33635.9140625
+351.1294861 21754.0234375
+358.1641541 19174.046875
+359.144165 66569.2578125
+366.1861877 131922.6875
+367.1861572 22308.220703125
+369.1385498 28811.806640625
+376.1699829 119457.5546875
+377.1561584 86314.296875
+378.1549683 18093.646484375
+386.162384 32760.419921875
+394.1194763 19091.734375
+394.1803589 737072.0
+394.2385864 25736.384765625
+395.1824341 171071.625
+412.1869202 43344.27734375
+460.193512 18833.025390625
+461.1831055 13960.623046875
+468.2199097 46950.00390625
+469.2247009 17021.724609375
+477.2155457 27270.384765625
+478.1995239 16166.716796875
+483.7151489 22203.89453125
+485.2470093 197579.375
+486.2506104 73795.3125
+488.1871338 55285.65625
+492.2285461 193801.28125
+492.7301636 96974.578125
+493.2286377 32723.609375
+495.2284241 51006.1484375
+503.7156372 29537.94140625
+505.2112732 52995.56640625
+506.2026062 42549.17578125
+512.2246704 68675.1015625
+512.7268066 20689.08203125
+520.7417603 20439.59765625
+521.2297974 38750.12890625
+523.2214355 508535.96875
+524.223999 121283.2890625
+525.2317505 37625.0859375
+555.2502441 22081.58984375
+558.7451172 20358.171875
+559.2380981 20716.23046875
+567.2583008 20847.470703125
+571.7489014 98575.640625
+572.2738037 350147.21875
+572.7521362 24623.556640625
+573.2791748 107213.328125
+576.2599487 60302.94921875
+576.7606201 22559.283203125
+580.2610474 90334.265625
+580.7542114 2581217.0
+581.2554932 1778296.875
+581.3348999 26788.857421875
+581.3684692 28608.046875
+581.7567749 677859.9375
+581.8643188 23960.416015625
+582.2592773 123012.171875
+589.2649536 63326.5859375
+589.7595825 30383.984375
+598.272583 66222.796875
+598.7733154 32278.986328125
+599.2741699 33395.3125
+599.7758789 53827.48828125
+606.2588501 34252.02734375
+607.2583618 22779.1015625
+624.2670898 80951.9609375
+625.2704468 22259.98046875
+655.3129272 17361.619140625
+673.3231201 415742.34375
+674.326355 158189.4375
+675.329895 32952.8203125
+711.2987061 36394.36328125
+802.3622437 111179.7109375
+803.368042 40367.5078125
+804.375061 18174.78515625
+873.3984375 93800.84375
+874.4046631 43652.4921875
+875.4051514 19214.853515625
+1001.45752 30672.3203125
+1058.473389 16409.318359375
+1146.985107 14506.71875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.52.52.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=52"
+RTINSECONDS=5.534394241
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52618408 78161.7890625
+64.5306778 62155.29296875
+64.58196259 50674.859375
+64.58601379 37387.21875
+64.63825989 26104.447265625
+149.5720825 69380.2734375
+167.0917053 36240.5859375
+169.0591278 36915.30859375
+175.1177063 320969.625
+175.1341858 34624.859375
+177.0757599 77402.2734375
+178.059845 371933.46875
+178.337616 77987.03125
+178.3561096 30351.001953125
+179.063736 36203.03515625
+179.0919647 35681.3359375
+186.0859375 124619.8984375
+193.9083405 18297.642578125
+194.1024933 42671.66796875
+195.0862579 4941545.5
+195.1282196 25815.623046875
+196.0890198 505064.40625
+197.0917511 24503.978515625
+200.1008759 26898.201171875
+201.0860138 17375.59765625
+206.0910492 152100.984375
+207.0934906 25996.845703125
+217.1278229 23527.779296875
+218.1016388 54854.0546875
+222.0866089 23230.775390625
+240.0956726 34879.08984375
+246.096756 729166.9375
+246.1255341 37778.27734375
+247.0995789 94599.5234375
+257.1224365 95228.7265625
+260.1122437 129038.2578125
+270.0965271 168468.265625
+277.1387024 31743.890625
+278.1504822 22809.73046875
+283.1422424 50817.60546875
+287.1235962 151816.703125
+288.1071167 1784104.875
+289.1099548 254569.140625
+290.1122742 21655.072265625
+295.1493225 37104.01171875
+303.14151 30592.669921875
+304.1274109 24727.27734375
+305.133606 3677481.0
+305.2155762 24484.384765625
+306.1187134 1318859.0
+307.1212769 198868.109375
+308.1204529 24108.88671875
+311.1343689 67920.46875
+312.1159363 40699.015625
+321.153595 406728.5625
+322.1570129 62675.1484375
+323.144043 1310449.25
+324.1466064 201824.34375
+325.1490784 26521.638671875
+329.1410828 37614.9453125
+338.1419983 64561.74609375
+338.1804504 421693.5
+338.6453857 24286.845703125
+339.1833496 90997.8359375
+346.1670837 22258.865234375
+351.1339111 24841.7578125
+358.1650085 23906.87890625
+359.1446533 55932.3046875
+366.1858521 147286.46875
+367.1884155 27450.169921875
+369.1387329 49941.56640625
+376.1694641 144968.0625
+377.1549683 77377.296875
+386.1650391 58460.515625
+394.1802673 816754.125
+394.2407837 30754.5
+395.1828308 203271.28125
+412.1833801 28142.962890625
+460.1903992 26362.955078125
+468.2210388 66411.140625
+483.2264709 29103.9375
+483.7170715 25704.470703125
+485.2470398 234748.609375
+486.2487488 46653.76953125
+488.1852112 60495.5234375
+492.2286377 199619.734375
+492.7295532 129495.421875
+493.2337036 28634.12890625
+495.2277527 82894.8359375
+505.2104187 65840.484375
+506.2042236 56393.00390625
+512.225647 70741.5390625
+512.7281494 32207.7734375
+513.2241211 22823.20703125
+521.2316284 46612.18359375
+523.2214966 553438.125
+524.223938 143832.140625
+525.2307739 28431.849609375
+529.744751 37515.51953125
+558.248291 21590.974609375
+558.7432861 23355.171875
+571.7498169 98717.9765625
+572.2744751 373793.0625
+572.7429199 22834.1796875
+573.2807617 94452.8203125
+573.3765869 24445.330078125
+576.258667 69652.4921875
+576.7613525 26520.16015625
+577.2633057 31155.697265625
+577.7687378 25756.263671875
+580.2614136 108484.546875
+580.7543335 2778072.5
+580.8389893 40389.8828125
+581.2555542 1781385.25
+581.3352661 23704.22265625
+581.3703613 28209.63671875
+581.7573242 688283.75
+581.8643799 27183.466796875
+582.2575073 145482.625
+589.2667847 112088.0625
+589.7636108 76155.03125
+598.2724609 97715.5546875
+598.7713013 41723.7109375
+599.7770386 63888.19921875
+606.2592773 29389.220703125
+624.2694702 62953.484375
+655.3130493 29246.76171875
+673.322937 451832.875
+674.3245239 164130.875
+675.321106 31283.478515625
+802.3643799 130015.109375
+803.362793 53258.36328125
+873.395813 108638.0
+874.4041138 63520.0390625
+1001.466064 28629.296875
+1002.457886 21854.1328125
+1058.464478 29102.349609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.53.53.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=53"
+RTINSECONDS=5.64022096
+PEPMASS=598.27001953125
+CHARGE=2+
+62.85717773 13040.060546875
+64.52627563 69633.4921875
+64.53050232 38715.19140625
+64.58204651 43809.1484375
+64.58618164 27562.380859375
+64.63821411 16913.47265625
+82.05400085 18114.150390625
+105.6593857 13437.560546875
+138.9749451 12675.4931640625
+149.5701752 55845.7421875
+167.091568 39436.24609375
+169.0596619 29445.697265625
+175.1178284 292298.28125
+176.1207886 21993.25
+177.0760803 66964.1015625
+178.0600433 345510.03125
+178.3345642 28539.029296875
+178.3538513 58998.921875
+179.0630341 39393.85546875
+179.0918427 16904.505859375
+183.0749969 42214.78125
+186.0862274 109692.0546875
+194.1033783 34265.08984375
+195.0864868 4265392.5
+196.089386 420961.25
+197.0923767 28902.318359375
+200.1016693 19249.58203125
+201.08638 17921.71484375
+206.0911865 165255.296875
+207.0932465 23521.33984375
+215.0890808 14283.0087890625
+218.1024017 70720.078125
+234.0964966 14980.8388671875
+240.0976562 14790.10546875
+243.0848236 21829.826171875
+244.1159058 13771.5234375
+246.0743256 11225.7236328125
+246.0969849 688152.9375
+247.1001282 92033.9921875
+257.1231995 105732.375
+258.125 14330.3330078125
+260.1125793 109659.1953125
+261.1179199 19178.248046875
+270.0974121 134951.625
+278.1477356 31091.77734375
+283.1425171 58601.94140625
+287.1234131 148352.90625
+288.1074524 1690513.875
+289.1105042 272343.125
+290.1110535 21750.169921875
+294.116272 22935.591796875
+295.1497192 29688.6015625
+303.1439819 30185.12890625
+304.1284485 21336.7578125
+305.1340637 3410048.5
+306.0589294 21041.09375
+306.1191711 1143214.0
+307.1213989 212169.8125
+308.1210632 21484.443359375
+311.1345215 47125.90625
+312.118866 40931.68359375
+321.1541443 361073.9375
+322.1578979 65338.7890625
+323.1445312 1175785.0
+324.1468201 164309.296875
+326.9165039 17556.357421875
+329.1447144 43171.63671875
+338.1424866 49747.83984375
+338.1806335 434757.03125
+338.6425781 24576.78515625
+339.1836548 83264.1640625
+347.1491394 23317.962890625
+349.1620789 25575.2578125
+359.1451721 57879.5078125
+366.1862488 132848.515625
+367.1856079 32226.380859375
+369.1371765 31002.30078125
+376.1707458 124018.484375
+377.1571045 70807.3828125
+386.1628723 32137.068359375
+394.1809692 728695.25
+395.1828918 156657.984375
+396.1885376 16475.44921875
+412.1867981 38675.328125
+420.6938171 16628.66015625
+460.1881104 23435.115234375
+468.2217407 41491.03125
+469.219574 16308.1611328125
+477.2205811 19820.515625
+478.2068176 22480.40234375
+483.229248 21344.62109375
+483.7182007 27846.9921875
+485.2477112 227453.515625
+486.25 67539.7734375
+488.1858215 51603.66015625
+492.2303772 169818.203125
+492.730957 110922.5625
+493.2322083 27035.55078125
+495.2267456 62263.8046875
+505.2113953 60972.63671875
+506.2052612 45528.2578125
+512.2249756 49874.69140625
+512.729187 26810.01171875
+521.2373047 18235.962890625
+521.7322388 16590.935546875
+523.2225952 489040.78125
+524.223999 115345.0703125
+525.227356 28806.685546875
+529.7454834 18116.9609375
+558.7478027 35013.234375
+567.2460327 17117.69140625
+571.7512207 82100.546875
+572.2740479 348724.15625
+572.7506714 45868.25
+573.2796021 93886.7421875
+574.2863159 25716.427734375
+576.2617188 45807.34765625
+576.7625732 31991.482421875
+580.2637329 96831.625
+580.755127 2529694.25
+581.2565918 1594538.375
+581.3660278 18718.1875
+581.7580566 607063.125
+582.2591553 97504.7265625
+589.2697754 57982.1953125
+589.7680054 16041.34375
+598.2774658 46252.34375
+599.274353 67700.359375
+599.7774658 96346.765625
+606.2541504 22786.599609375
+624.269104 55667.3359375
+655.3158569 23993.185546875
+673.324585 435422.9375
+674.3267822 175714.65625
+675.333252 34296.546875
+693.2880249 22748.68359375
+802.3648071 99180.0234375
+803.3674927 51409.99609375
+873.4013672 99295.3125
+874.402832 48024.578125
+1001.453247 18919.416015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.54.54.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=54"
+RTINSECONDS=5.749069761
+PEPMASS=598.27001953125
+CHARGE=2+
+58.81816483 13767.576171875
+64.52623749 67541.828125
+64.53050232 43741.5625
+64.58192444 45630.14453125
+64.58614349 34147.01171875
+64.63818359 20749.73828125
+65.65966034 16008.9560546875
+82.05415344 20276.59375
+100.010849 15529.46484375
+103.9490891 15526.564453125
+148.026062 15876.3515625
+149.5652924 53771.484375
+167.0923462 37101.5078125
+169.0603638 30260.103515625
+175.1019592 29090.45703125
+175.1178741 335521.90625
+176.1208496 24711.814453125
+177.0760651 72956.203125
+178.0600281 380720.59375
+178.3465881 92417.3671875
+179.0634766 34533.40625
+179.0914459 29125.6953125
+182.0911865 25402.55078125
+183.0757446 27757.318359375
+186.0862122 135802.515625
+194.1026459 37524.515625
+195.0863953 4589119.5
+196.0892334 495841.28125
+197.0920868 28767.896484375
+200.1024323 29571.908203125
+206.0910797 159496.953125
+206.2494049 16829.279296875
+207.0935364 19102.6796875
+209.1040039 17608.92578125
+212.1145172 16239.453125
+218.102356 67195.78125
+234.0971069 21225.8046875
+237.109375 16295.7158203125
+240.095047 30908.728515625
+243.0868988 26294.14453125
+246.0969696 736872.1875
+247.0990753 81154.4140625
+257.1228943 108915.234375
+260.1124573 104539.75
+261.1184387 21084.75
+270.0971069 137903.015625
+278.1178284 17024.28515625
+278.1486511 26829.146484375
+283.1426086 46174.80078125
+287.1231384 150889.296875
+288.1072998 1667989.875
+289.1104431 260074.484375
+290.1123962 35921.22265625
+295.1496277 27144.009765625
+302.1318359 20642.412109375
+305.1338806 3417895.0
+306.1192932 1167723.75
+307.1216125 208908.40625
+308.1222229 25127.84375
+311.1347656 77157.5390625
+312.1167297 19689.341796875
+318.1417236 17463.115234375
+321.1542664 386341.40625
+322.1564941 61975.77734375
+323.0990601 31588.5859375
+323.1443176 1201743.75
+324.1468201 214853.515625
+329.1451111 57698.30078125
+338.1423645 45085.828125
+338.1803589 467040.28125
+338.6468811 17184.814453125
+339.1832581 80660.8359375
+349.1587524 25718.376953125
+351.1323853 17910.158203125
+359.1444397 52587.09765625
+366.1860352 135027.59375
+367.1915894 18794.51171875
+368.1513062 20493.478515625
+369.1391296 60965.16796875
+376.1701355 143632.03125
+377.1580811 92644.6875
+386.1636658 29608.1640625
+394.1807861 831996.375
+394.2406006 30544.849609375
+395.1831665 135526.65625
+396.1821594 27989.080078125
+412.1896973 45202.953125
+413.1654663 21712.701171875
+420.6829834 17311.59765625
+460.1936035 22333.705078125
+468.2223816 58745.49609375
+469.2071838 18137.091796875
+477.2192993 36694.9921875
+482.1918335 16605.3671875
+483.7170105 30649.056640625
+485.2479248 227913.078125
+486.2515869 64974.08203125
+488.1861877 45621.5625
+492.229248 206053.375
+492.7311096 99440.4609375
+493.2328796 34274.26171875
+495.2260132 59316.10546875
+505.2117004 52876.1328125
+506.2048645 61968.98046875
+512.2279053 50397.69140625
+520.7496338 20598.73828125
+521.055542 17560.98046875
+521.2357178 36010.3203125
+521.7359009 23464.0546875
+523.222229 540749.0625
+524.2247314 128864.1015625
+525.2260132 22385.619140625
+555.2611694 18101.244140625
+558.7478027 17803.71875
+571.7512817 111790.0625
+572.2748413 354503.96875
+572.7581787 23550.115234375
+573.2815552 107141.640625
+576.2595825 61846.12890625
+576.7603149 31112.40625
+577.260498 38145.66796875
+580.2633667 104719.3359375
+580.7548218 2487954.0
+581.2559204 1716818.0
+581.3348999 35317.77734375
+581.7571411 605335.6875
+581.8634033 29350.03125
+582.2581177 99911.7578125
+583.2745361 21407.11328125
+589.2680054 55817.609375
+589.7648315 52768.15234375
+598.2744141 40130.1953125
+598.7728271 18414.072265625
+599.2729492 17792.041015625
+599.7766113 63900.52734375
+606.2560425 41547.22265625
+607.2595215 21828.609375
+624.2693481 67061.6796875
+673.3239136 422212.25
+674.3264771 189238.265625
+675.3339233 39700.16015625
+802.3623657 109287.4453125
+803.3629761 49898.76953125
+873.397644 86944.1328125
+874.4007568 44458.30078125
+1001.479919 21505.939453125
+1058.469238 24840.44921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.55.55.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=55"
+RTINSECONDS=5.856286096
+PEPMASS=598.27001953125
+CHARGE=2+
+53.80891037 15480.587890625
+58.13725281 17524.255859375
+64.52622223 77077.6484375
+64.53050232 42507.39453125
+64.58195496 42732.27734375
+64.5861969 30599.15234375
+64.63814545 24326.916015625
+64.6416626 16134.5888671875
+74.81609344 16479.525390625
+76.28586578 18412.0859375
+98.73696136 13955.296875
+100.100174 13653.427734375
+107.2748108 14054.46484375
+118.8660355 13564.4833984375
+142.7878418 14467.189453125
+149.5625916 28952.654296875
+149.5765686 31744.455078125
+160.4902802 13189.48046875
+167.0917969 42781.84375
+169.0591888 26012.77734375
+175.1178589 315725.3125
+176.1200104 23148.58203125
+177.0754242 67810.484375
+178.0600128 360058.03125
+178.3406525 91601.375
+179.0640106 33972.58203125
+179.0907288 15849.9189453125
+181.8762207 13811.1484375
+182.0917206 19530.359375
+183.0761414 24700.2734375
+186.08638 125780.3046875
+190.0597534 15471.5703125
+194.1022034 30021.357421875
+195.0647125 30199.701171875
+195.0864563 4370293.5
+195.1279907 24723.09765625
+196.0893555 416849.21875
+196.9545441 15978.4462890625
+197.0912476 40567.9375
+200.1021881 21344.466796875
+206.0913696 161922.234375
+207.0943604 17968.263671875
+209.1028442 16618.92578125
+218.1025848 67919.46875
+222.0857849 27293.517578125
+240.0968628 20497.24609375
+243.0875244 26183.27734375
+244.1169586 20548.939453125
+246.0969849 684746.625
+247.0993652 81494.703125
+257.1227722 98743.359375
+260.1127625 117427.7578125
+261.1169128 25088.314453125
+267.1123962 14508.541015625
+270.0969543 114739.328125
+271.1004333 22109.33203125
+278.1486206 26289.18359375
+283.1438904 42866.12109375
+287.1235657 152611.828125
+288.1075134 1701756.125
+289.1102905 246001.828125
+290.109436 16990.533203125
+294.1164246 17947.19921875
+295.1511536 32323.13671875
+302.1300049 16732.82421875
+303.1424561 37073.328125
+304.1253967 22288.82421875
+305.1340637 3462871.25
+306.1193848 1180729.0
+307.1215515 200288.296875
+311.1350403 49415.8046875
+312.1171875 43547.02734375
+321.1539307 363659.0
+322.1572571 61936.93359375
+323.0983887 26045.67578125
+323.1445618 1243256.25
+324.1474609 204509.59375
+325.1522522 23540.845703125
+329.1442871 64780.8046875
+338.1420288 48808.47265625
+338.1806641 445105.78125
+338.6441345 20028.1796875
+339.1829224 82391.90625
+347.1499634 29287.171875
+349.1605835 32558.416015625
+358.1676941 21137.708984375
+359.1453247 61247.6640625
+366.1864624 120623.75
+367.1899109 33345.66015625
+369.1383057 20628.767578125
+376.1705017 136393.453125
+377.1568604 82119.2421875
+386.1668701 21607.20703125
+394.1810608 784972.25
+394.2404785 23672.60546875
+395.1824036 184496.953125
+412.1914673 32938.5859375
+460.1924133 20077.212890625
+468.2232056 53498.3203125
+477.2195435 20311.818359375
+483.7182312 35286.61328125
+485.2473755 220438.71875
+486.2499695 60231.2734375
+488.1862488 68724.53125
+492.2294312 194570.15625
+492.7308044 122205.0703125
+493.2319946 22619.345703125
+495.2261047 64318.640625
+503.2168579 24886.0703125
+503.7193298 28470.64453125
+505.2125549 58292.82421875
+506.2018433 53456.5078125
+512.2277222 52419.62890625
+512.7252808 42303.9453125
+520.7371216 24526.248046875
+521.2252808 34981.734375
+523.22229 508060.65625
+524.225647 145534.8125
+525.2332153 22696.537109375
+541.2374878 19587.3125
+554.2750244 18977.6171875
+558.7460938 43662.4140625
+571.7496338 90747.8984375
+572.274231 359928.625
+572.7538452 34642.4765625
+573.2814331 105306.8125
+574.2735596 18984.0234375
+576.2631226 60039.4296875
+576.7574463 35712.296875
+580.2642212 96158.53125
+580.7554932 2654437.5
+581.2567139 1661733.25
+581.7582397 615789.5
+582.2593994 108966.8671875
+589.2696533 58930.54296875
+589.7629395 41203.84765625
+598.2720947 49694.66015625
+598.7749023 34107.796875
+599.2755127 44844.76171875
+599.7775269 117502.703125
+606.2579346 27473.603515625
+624.2709351 66645.328125
+625.2738037 23887.19921875
+673.3248901 448946.75
+674.3260498 135271.671875
+675.3335571 32306.138671875
+693.2834473 22406.462890625
+802.3666992 101418.9921875
+803.3690186 41446.7265625
+808.7224121 16017.8798828125
+873.3990479 99506.2109375
+874.4038086 32966.33203125
+1001.457214 20214.89453125
+1058.46582 22862.458984375
+1119.787109 16878.0703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.56.56.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=56"
+RTINSECONDS=5.964409345
+PEPMASS=598.27001953125
+CHARGE=2+
+55.21535492 14150.33984375
+64.33496094 18562.0
+64.52626038 82188.8828125
+64.53070831 55034.8671875
+64.58200073 57204.56640625
+64.58617401 37139.5625
+64.63824463 20971.46875
+149.5647278 37058.00390625
+149.57901 28133.916015625
+167.0915375 48321.56640625
+169.0596619 39229.40625
+174.8248901 17112.61328125
+175.117981 304945.59375
+176.1212311 27326.728515625
+177.0759277 77090.3359375
+178.0599365 377798.84375
+178.3383484 83080.4609375
+178.3574066 34082.078125
+179.0640869 39821.3515625
+186.0860748 108130.9765625
+194.1034241 39202.84765625
+195.086441 4637945.0
+195.1282043 23713.88671875
+196.0893555 439909.21875
+197.0907898 29264.6171875
+200.1009521 23702.31640625
+201.085434 25840.2265625
+206.0910492 172229.75
+207.094223 19473.001953125
+212.1126251 22497.5546875
+218.1026154 66692.4453125
+222.0856628 23027.30078125
+233.127182 18484.7109375
+234.0965271 27595.46875
+239.1129608 16383.4560546875
+243.0855713 19525.16015625
+246.0969849 704787.0625
+247.0992279 93686.078125
+249.095459 22985.837890625
+257.1225281 110507.9296875
+260.1123657 122831.9765625
+261.118042 24666.6953125
+270.0970459 135523.0625
+283.1434631 50079.109375
+287.1234741 176059.5625
+288.1074524 1755289.25
+289.11026 240157.0
+290.1148987 27240.740234375
+303.1445007 28183.27734375
+305.1340637 3577690.0
+306.0589905 22354.333984375
+306.1193848 1273155.875
+307.1217041 209508.9375
+308.1253662 21826.3203125
+311.1350403 58254.76171875
+312.1169128 49497.87890625
+318.1441345 24940.052734375
+320.1338806 22482.662109375
+321.1539917 355955.84375
+322.1574402 74977.6171875
+323.098877 23604.14453125
+323.1445618 1234217.25
+323.1882629 41020.50390625
+324.1468506 210760.8125
+325.1509399 19933.884765625
+329.1445312 39395.58984375
+338.1430664 46645.11328125
+338.1807251 467610.3125
+338.6442566 26605.48828125
+339.1829224 70742.359375
+340.1855469 21198.96484375
+341.1524658 19747.837890625
+347.1499023 20802.869140625
+349.1599731 24807.59765625
+351.1298218 25474.103515625
+358.1638794 24648.134765625
+359.1447449 72171.078125
+366.1861572 125299.484375
+367.18927 22078.7578125
+369.1376343 23187.23828125
+376.1698608 125456.953125
+377.1568604 97280.234375
+386.1645508 30720.88671875
+387.1651917 22259.412109375
+394.1809692 774088.6875
+394.2403564 29214.8046875
+395.1828918 158750.53125
+412.1872559 45498.16796875
+420.6798706 26953.3828125
+468.2216797 64755.96875
+469.2190857 19675.943359375
+483.7185974 24730.458984375
+485.2475586 242450.375
+486.2511902 71086.1171875
+488.1839294 55167.6484375
+492.2289734 184312.734375
+492.7300415 78049.09375
+493.2324219 42794.73046875
+495.2270203 73020.7421875
+496.2268982 21403.810546875
+505.2108154 62722.54296875
+506.2107849 66535.3125
+512.2264404 53688.55859375
+512.7281494 34359.65234375
+521.237915 30334.96484375
+521.7360229 43510.4375
+523.2225342 581395.75
+524.225647 143727.390625
+525.2342529 32149.541015625
+529.7446289 25488.203125
+555.2564087 20277.26171875
+567.256958 22694.599609375
+568.7557983 20488.87109375
+571.7508545 99119.09375
+572.2749634 364544.21875
+572.7562256 30062.66015625
+573.2808228 97566.8359375
+574.2694702 21197.953125
+576.2651367 49420.0078125
+576.7636719 37338.77734375
+580.2636108 78380.2734375
+580.7554932 2877812.25
+581.2565308 1989809.625
+581.7583008 709906.9375
+581.8638306 25979.748046875
+582.2590332 154039.015625
+589.2678833 105351.90625
+589.7653198 46690.55078125
+598.2740479 52487.41796875
+598.7785645 37281.23046875
+599.2798462 30984.466796875
+599.7782593 91429.6328125
+606.260376 49640.9609375
+624.2677612 71235.0234375
+673.3253784 468116.25
+674.3270264 177627.40625
+675.331665 26863.220703125
+693.2874146 28972.5078125
+712.3045044 22375.025390625
+802.3689575 90047.9765625
+803.366394 48051.18359375
+873.4001465 77626.765625
+874.4052124 53222.7421875
+1191.955688 19359.68359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.57.57.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=57"
+RTINSECONDS=6.071188866
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13412857 13747.2265625
+58.13704681 16558.232421875
+63.5851593 13389.984375
+64.52629089 68045.203125
+64.53047943 45079.53125
+64.58198547 42809.0859375
+64.58616638 29056.673828125
+64.63834381 20765.744140625
+64.64167023 18968.224609375
+71.37619781 13820.1005859375
+72.89544678 15834.4013671875
+74.81201935 17916.638671875
+126.8103867 12877.7001953125
+149.5648193 31214.99609375
+149.5789948 26819.5703125
+167.0917206 53918.1015625
+169.0597992 35933.7109375
+175.1176605 290831.375
+176.1172028 12124.7197265625
+177.0757446 60663.078125
+178.0598755 340662.59375
+178.3349762 39601.484375
+178.3541412 51872.41015625
+179.0907593 22248.908203125
+182.0921326 18250.666015625
+183.0586548 14706.572265625
+183.076004 23924.263671875
+186.0860138 89016.6640625
+194.1025085 35841.8671875
+195.0862579 4481998.0
+195.1277618 38587.53125
+196.0890503 426390.125
+197.0922089 31288.857421875
+200.1017151 41619.3515625
+206.0909271 163481.484375
+207.0935822 25247.5078125
+209.1009674 18415.923828125
+213.0847778 21909.3828125
+215.0912628 17572.0390625
+218.1015625 51873.08984375
+222.0862579 23906.3671875
+226.2390289 13532.21875
+237.108017 18921.537109375
+240.0958862 29046.62109375
+242.1027374 17997.755859375
+243.0863647 25770.83984375
+244.118576 18553.25
+246.0967712 692619.625
+247.0992737 76702.1328125
+249.0963135 14707.2685546875
+257.1221924 111860.390625
+260.1122131 141940.875
+261.1172485 18690.130859375
+263.500885 14415.6943359375
+270.0968323 126374.609375
+271.0972595 17836.591796875
+276.1338501 19700.14453125
+277.1379089 24043.560546875
+278.1507568 31253.228515625
+283.1432495 33339.16015625
+287.1231995 158117.828125
+288.1071777 1836412.5
+289.1097717 258076.609375
+295.1495361 31773.947265625
+303.1411133 42389.0078125
+305.133667 3403288.0
+306.1188049 1269911.625
+307.1207275 199975.515625
+311.134491 59960.28125
+312.1180115 37239.18359375
+321.153595 347158.1875
+322.1562805 48646.0
+323.0992432 24575.900390625
+323.1442261 1244577.375
+324.1460571 194704.78125
+329.1435852 54206.765625
+331.1482239 23881.98828125
+338.1419067 72888.1640625
+338.1803589 396406.53125
+339.1822815 71444.0234375
+341.1437073 17383.0
+347.1513977 26454.279296875
+349.1596069 21953.98828125
+351.1307678 14666.9892578125
+358.1706848 15285.2333984375
+359.1428528 60414.4609375
+366.1856384 152335.6875
+369.1393738 39902.48828125
+376.1696472 112225.078125
+377.1559753 84367.65625
+386.1654053 37492.37109375
+394.180603 783145.75
+394.2392273 32330.30859375
+395.1822205 178929.9375
+396.1908569 17636.216796875
+412.188385 40297.8046875
+450.2078247 16048.4931640625
+460.1905823 23723.783203125
+468.2223511 61107.421875
+477.2187805 21626.142578125
+483.7175293 16299.5205078125
+485.2472534 232178.03125
+486.2513428 59974.671875
+488.1851501 58029.4140625
+489.1892395 17914.177734375
+492.2290649 205883.46875
+492.72995 102611.984375
+493.2308655 22065.177734375
+495.2279968 62141.88671875
+503.7165527 16018.67578125
+505.2087097 58264.90625
+506.2043457 49805.359375
+506.7258911 16749.33203125
+512.2259521 45656.1875
+512.7218628 21403.05859375
+520.7393799 20181.896484375
+521.232605 25346.962890625
+521.7368774 16589.84375
+523.2214966 495936.125
+524.2236938 159925.296875
+525.227356 32325.025390625
+541.2332153 17404.798828125
+555.2544556 18881.98046875
+559.7418823 16570.357421875
+571.750061 125040.2109375
+572.2746582 341731.75
+572.75354 17433.142578125
+573.2767334 98715.9296875
+574.272522 16662.51953125
+576.2600098 53948.58984375
+576.7644043 33378.59765625
+577.2622681 36086.79296875
+580.2617798 85568.4375
+580.7545166 2535020.5
+581.2556763 1752923.625
+581.3691406 23880.568359375
+581.7575684 706227.5
+582.2592163 129727.546875
+589.2689819 51474.7109375
+589.7679443 21098.83203125
+598.2727051 69524.7265625
+598.7747192 46112.203125
+599.2714844 46384.48828125
+599.7774048 102054.5390625
+606.2593994 34565.5234375
+624.2672729 73047.9296875
+625.2764893 32628.185546875
+655.3135986 22514.1171875
+656.3058472 24523.537109375
+673.3234253 489842.46875
+674.3259277 159142.875
+675.3301392 29862.515625
+693.2901001 29183.255859375
+802.3637695 106617.2109375
+803.3701172 35651.62109375
+873.4014282 102821.0625
+874.3934937 50886.44140625
+1058.474854 21285.349609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.58.58.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=58"
+RTINSECONDS=6.179543217
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13462067 14545.7783203125
+63.58507156 15184.8828125
+64.52631378 69316.7890625
+64.53072357 47572.359375
+64.58197784 48427.12109375
+64.58629608 34370.6640625
+74.81651306 15590.8076171875
+76.28575134 19950.49609375
+146.5314789 17353.80859375
+149.5649872 36798.2890625
+154.095871 15885.8974609375
+167.0914764 42358.1171875
+169.0598755 32742.876953125
+175.1020966 24141.736328125
+175.1179352 301907.3125
+176.1205292 16298.482421875
+177.0762482 76921.0625
+178.0601654 368640.78125
+178.3464966 95796.5078125
+179.0918579 24882.337890625
+182.0910492 22876.01171875
+183.0760345 34861.5390625
+186.0863953 118516.0625
+194.1013641 45512.59375
+195.0865173 4356077.0
+196.089325 412110.21875
+197.0921631 43473.0703125
+200.1023865 30299.048828125
+201.0854797 18074.529296875
+206.0912781 168059.234375
+209.0788574 14103.84375
+218.10289 55134.234375
+232.1186676 16306.728515625
+234.0967407 16892.48046875
+239.1146088 21985.091796875
+240.096405 21467.408203125
+243.0851288 23466.787109375
+244.1171112 19383.822265625
+246.0970306 684739.625
+247.0997009 67687.5390625
+249.0974884 24230.927734375
+257.1229248 119277.046875
+260.1125488 89575.703125
+261.1144714 15269.6318359375
+270.0973206 134357.265625
+283.1448975 39301.19140625
+287.1235962 153241.984375
+288.1075439 1689084.375
+289.1104126 262702.96875
+290.1122131 28382.85546875
+294.1164246 20497.419921875
+295.151886 20793.69921875
+303.141571 30266.6171875
+304.1288452 24695.8828125
+305.1340637 3420960.0
+306.1192627 1195702.625
+307.1211853 207713.484375
+308.1201477 16026.693359375
+311.1357117 52195.765625
+312.1179199 40708.06640625
+321.1542053 341754.78125
+322.1572266 62153.6015625
+323.0983276 23579.240234375
+323.1445618 1241617.5
+324.146698 193352.9375
+325.1520081 23036.345703125
+329.1434021 63432.84375
+331.1512756 19455.236328125
+338.1420593 65021.12890625
+338.1807861 436715.25
+338.6436462 24176.58984375
+339.1822815 78292.6875
+347.149353 46945.2578125
+349.1603088 17074.724609375
+359.1460876 71718.3984375
+366.1865845 123925.953125
+367.1918945 27670.36328125
+368.1546021 17009.564453125
+369.1399841 29062.166015625
+376.1703491 147498.0625
+377.1555786 87749.078125
+378.1633301 14472.619140625
+386.1648254 30106.88671875
+394.1362915 17144.154296875
+394.1811523 799340.0625
+394.2397156 34638.7578125
+395.1834106 159978.421875
+396.1868286 23902.009765625
+398.1718445 18502.61328125
+412.1858521 29266.03515625
+420.68396 20403.97265625
+460.1948242 20855.736328125
+468.2217712 57507.58203125
+478.2078552 20256.091796875
+483.228302 20844.421875
+485.2475586 209807.875
+486.24823 50677.0703125
+488.1877441 46995.98828125
+492.229248 194666.71875
+492.7299805 109148.828125
+495.2241211 49784.58203125
+505.2114258 61716.12890625
+506.203949 51712.9609375
+512.2255859 52852.45703125
+512.7322998 21438.7734375
+520.7410278 26244.5234375
+521.2328491 40641.109375
+521.7315674 22237.337890625
+523.2227783 393925.65625
+524.2253418 139006.1875
+525.2284546 21457.453125
+558.7365723 19549.888671875
+571.7515259 91023.234375
+572.2736816 312475.96875
+572.7476196 24609.958984375
+573.2804565 104617.140625
+576.2648926 34691.0703125
+576.7607422 29022.3046875
+580.2622681 103676.71875
+580.755188 2530415.25
+581.2563477 1659971.0
+581.3653564 19549.94921875
+581.7583008 584548.625
+582.2579956 118062.78125
+589.2668457 73506.671875
+589.7614746 27863.994140625
+598.2722168 57108.13671875
+598.7763062 40120.53125
+599.2769165 44000.46875
+599.7767944 123620.703125
+606.2508545 35002.81640625
+615.1819458 20025.33203125
+624.2672119 61256.38671875
+656.3129883 20050.04296875
+673.3243408 454907.34375
+674.3262329 168504.390625
+675.3260498 28861.880859375
+711.3049316 21420.01171875
+733.3641968 17178.09375
+802.3636475 130936.78125
+803.3654785 48545.16796875
+873.4006958 98250.9921875
+874.4044189 56248.578125
+1058.476929 21533.60546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.59.59.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=59"
+RTINSECONDS=6.287276465
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58494186 14260.126953125
+64.52616119 67602.828125
+64.53059387 51746.2890625
+64.58200073 39298.4765625
+64.58612061 36328.66796875
+64.64157104 17787.408203125
+65.72995758 13453.330078125
+74.81138611 13035.3564453125
+130.9419708 14006.8212890625
+149.5682068 55180.16015625
+167.0918732 26368.703125
+169.0589142 33072.5078125
+175.118042 292532.9375
+176.121582 23135.421875
+177.0756073 67185.859375
+178.0600433 342298.0625
+178.3518677 66674.046875
+179.0640717 35047.35546875
+179.0917511 18542.908203125
+182.0922394 24558.595703125
+183.0765076 22136.7421875
+186.0862885 125832.6796875
+194.1024017 44907.46875
+195.0864563 4427510.0
+196.0892639 458949.09375
+197.0919189 35125.25390625
+206.0910645 151252.515625
+207.0921173 17582.453125
+209.1017609 18969.34375
+215.0922089 16220.61328125
+218.102066 73421.8125
+240.0952301 28660.845703125
+243.0842285 21393.216796875
+246.0971375 668197.875
+247.0995178 81917.8359375
+249.0979919 18878.1328125
+257.1226807 88370.28125
+260.1129456 114689.9453125
+270.0976562 126454.2421875
+276.1335144 25245.607421875
+277.138031 19521.041015625
+278.1486206 20336.03515625
+283.1421509 37374.16796875
+287.1235657 167526.234375
+288.0777283 20795.240234375
+288.1075745 1662549.25
+289.1105652 243568.546875
+290.1110535 29497.037109375
+295.1482239 21689.89453125
+303.1417236 20978.3671875
+305.1341248 3399736.5
+306.1193237 1205894.875
+307.1218567 198025.671875
+308.1230469 30434.6015625
+311.1355286 47736.4765625
+312.1141357 35418.0
+321.1542053 347868.8125
+322.1568909 56279.97265625
+323.1446533 1149537.25
+324.1469727 181832.46875
+325.1460876 24027.728515625
+329.142395 48042.12890625
+338.1419373 35705.28125
+338.1807861 454628.65625
+338.6461792 20436.05859375
+339.1837158 68782.65625
+349.1600342 23008.216796875
+351.1334839 19228.220703125
+359.1448059 64826.0546875
+366.1865845 123882.578125
+376.1705627 138152.640625
+377.1574707 67884.171875
+386.1664429 39835.35546875
+394.1811829 716472.3125
+394.2396851 27308.4609375
+395.1833801 175174.203125
+412.1919861 29029.685546875
+413.160614 18911.193359375
+420.6822205 37120.609375
+460.1907959 28918.330078125
+468.2206116 47746.82421875
+469.2281494 23111.103515625
+477.217041 18316.60546875
+478.2116699 17653.146484375
+483.723114 32253.783203125
+485.2476196 227174.375
+486.2519226 55199.28125
+488.187439 55018.46875
+492.2303772 166555.140625
+492.7320251 91710.0
+493.2329712 29763.4921875
+495.2262268 69706.5859375
+503.7166748 31240.541015625
+505.2108154 51406.46484375
+506.2059021 59327.16015625
+512.2290039 51666.921875
+512.7265625 19995.439453125
+521.2370605 33992.94140625
+523.2230835 473261.3125
+524.2260742 113314.1171875
+525.2323608 28595.138671875
+555.2567139 21217.41796875
+558.7473145 21807.337890625
+567.2642212 23208.69921875
+567.7590942 26911.68359375
+571.75 89826.171875
+572.2748413 357156.59375
+572.7521362 27783.240234375
+573.2800903 106746.2265625
+574.2860718 21029.16796875
+576.2628174 65062.73828125
+576.7634277 27060.126953125
+577.2633057 30751.482421875
+580.2615356 78353.8203125
+580.7560425 2636340.5
+581.2571411 1661975.625
+581.7589111 557549.3125
+582.2600708 143260.734375
+589.2669678 52937.16796875
+589.7683716 45589.37890625
+598.2727661 70943.9375
+598.7741699 52142.875
+599.2770996 40467.98046875
+599.7790527 67886.4765625
+606.2600708 39834.37109375
+624.2705078 78286.15625
+655.321167 26746.396484375
+673.196228 32327.5
+673.3257446 471521.8125
+674.3294067 164980.75
+675.3278809 34944.8984375
+693.2922363 22260.11328125
+784.3449097 20335.328125
+802.3673706 120532.6484375
+803.3710327 41207.91015625
+873.4051514 105489.421875
+874.4016724 52937.6640625
+1001.454285 24165.884765625
+1119.156128 19494.798828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.60.60.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=60"
+RTINSECONDS=6.395294353
+PEPMASS=598.27001953125
+CHARGE=2+
+57.64855194 17377.875
+58.13435745 24263.69921875
+60.36193085 19131.5
+64.52628326 75850.3125
+64.53060913 58190.640625
+64.58204651 55702.17578125
+64.58621216 32925.96875
+64.63821411 30758.25390625
+64.70057678 17054.9609375
+74.81144714 17243.130859375
+79.24549866 19383.302734375
+79.31884003 19141.669921875
+82.05393982 20412.185546875
+111.377533 22039.400390625
+123.8837128 15631.357421875
+132.109375 18131.697265625
+149.5631561 42086.26953125
+149.5769806 38309.80078125
+167.0912323 46359.46484375
+169.0601807 36969.125
+175.1179657 326184.03125
+176.2481842 19980.0625
+176.5538788 15986.015625
+177.0756378 63611.35546875
+178.0600586 362224.59375
+178.3474274 118082.0703125
+178.5906982 18608.236328125
+179.0635376 40903.31640625
+179.0909576 19769.7421875
+181.0387726 16669.748046875
+182.0341644 19008.580078125
+183.0765228 20208.345703125
+186.0863342 92214.4921875
+194.1028748 53109.96875
+195.0864258 4716021.5
+196.0890961 496519.71875
+197.0903473 35162.04296875
+199.1174164 16382.490234375
+200.1005096 32148.26953125
+201.0858612 29162.486328125
+206.0912323 194306.90625
+209.1013031 18147.796875
+215.0937958 23595.966796875
+218.10289 46831.6953125
+232.1155701 19206.376953125
+239.112381 24174.498046875
+240.0951691 34243.5078125
+246.0970001 661050.4375
+247.0995636 53489.87890625
+257.1225586 103070.7109375
+258.1223755 26698.267578125
+260.1129761 120457.8671875
+261.1150818 17596.92578125
+270.0968628 153027.015625
+278.149231 24470.603515625
+283.1423035 55702.8359375
+287.1235046 198561.046875
+288.1074829 1822147.0
+289.1104736 291923.875
+295.1494446 32707.169921875
+303.1439514 32856.26953125
+305.1340027 3585910.75
+306.1192017 1291173.625
+307.1215515 235488.890625
+308.1217651 42160.484375
+311.1352539 69372.296875
+312.1175232 30495.7109375
+320.1338196 23876.0390625
+321.1539917 353536.25
+322.1575928 72566.75
+323.0984192 27003.904296875
+323.1445007 1326477.375
+324.1469116 207096.0625
+325.1543884 25860.12890625
+328.1582947 31859.1328125
+329.1433105 48343.265625
+338.1494141 36677.1640625
+338.180542 516185.9375
+339.1825256 103090.2265625
+349.1608887 32601.126953125
+359.1445618 57387.47265625
+366.1864929 121867.9609375
+367.1904602 23864.220703125
+376.1701965 149351.71875
+377.1564026 86403.1328125
+378.15979 22210.7734375
+386.158783 25167.03125
+394.1310425 21708.68359375
+394.1810913 884561.6875
+394.2397766 33048.25390625
+395.1827698 158493.828125
+396.1833191 30969.494140625
+398.1729126 29471.626953125
+412.186615 41372.33203125
+468.2206116 37976.99609375
+483.2192688 27569.205078125
+483.7159729 19304.93359375
+485.2472534 224994.90625
+486.2511292 73262.9609375
+488.1854248 50840.328125
+492.2294922 222014.359375
+492.7329712 136829.296875
+493.2315063 29312.19921875
+495.2284241 55261.5078125
+496.228363 24878.09375
+505.2119751 90114.375
+506.2094116 43226.140625
+512.2252197 37248.5078125
+521.2332153 56970.23828125
+521.7304077 23967.875
+523.2219238 551253.4375
+524.223999 157810.390625
+530.237793 23733.30078125
+555.2542725 34973.31640625
+568.2379761 23646.279296875
+571.7467651 80909.1953125
+572.2756958 402510.125
+572.751709 38262.1015625
+573.281189 133500.046875
+576.2619019 82368.0703125
+576.7599487 41998.10546875
+577.2671509 27743.568359375
+580.2626953 145066.03125
+580.7553101 2935885.0
+581.2565308 2033515.25
+581.7579346 809970.0625
+582.2581177 138661.21875
+589.2667847 169429.390625
+589.7680664 112672.34375
+598.2738037 65457.76953125
+598.7752686 61460.78125
+599.7775879 52560.31640625
+606.2609253 38924.89453125
+624.2716675 49238.140625
+625.2728882 26131.431640625
+655.3126831 24058.69140625
+673.3244019 478200.21875
+674.3276367 187613.984375
+675.3272705 27646.306640625
+693.2840576 28847.91015625
+711.3013916 25770.25390625
+802.3629761 115018.125
+803.371582 50088.55859375
+873.3979492 133880.390625
+874.4066772 79225.0703125
+875.3969727 25247.640625
+1001.454224 40014.87890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.61.61.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=61"
+RTINSECONDS=6.500777297
+PEPMASS=598.27001953125
+CHARGE=2+
+54.65510941 14514.90234375
+57.36677551 12482.4931640625
+58.13434982 14113.216796875
+58.1374054 13642.1240234375
+60.93960953 14425.0673828125
+64.52635193 59920.92578125
+64.53070068 52432.52734375
+64.58195496 46851.76171875
+64.58613586 33179.15234375
+64.63834381 17427.748046875
+64.64155579 14099.4267578125
+71.40865326 11521.921875
+76.955513 12648.732421875
+87.30417633 12867.931640625
+149.573349 45389.34765625
+167.0914307 47737.07421875
+169.0602264 23175.009765625
+175.1178894 311069.5
+177.0760651 79705.65625
+178.059967 367799.03125
+178.078476 29210.453125
+178.3406525 74761.5
+179.062912 18731.703125
+179.09198 33250.8359375
+183.0758057 15819.1005859375
+186.0860138 102337.0390625
+190.0598602 17613.73046875
+194.1019745 39570.203125
+195.08638 4370031.5
+195.1279449 30834.146484375
+196.089325 449599.71875
+197.0916138 30747.455078125
+200.1009827 36258.44921875
+201.0862732 22689.77734375
+206.091095 167804.5625
+207.0917664 16481.787109375
+209.0781555 15958.3349609375
+212.1139679 17771.720703125
+215.091095 18367.853515625
+218.1019287 69869.78125
+221.100708 12755.80859375
+223.0931091 16017.3046875
+234.0991821 15937.3701171875
+239.1130829 15481.9677734375
+240.8661346 13733.791015625
+244.1186371 19058.52734375
+246.0968933 701677.125
+247.1001129 86723.6484375
+257.1225891 96978.40625
+259.129303 14565.4697265625
+260.1123962 127129.0078125
+261.1190186 17065.88671875
+270.0969238 147409.15625
+278.1494141 29257.349609375
+283.1426697 47372.6640625
+287.1236267 156409.59375
+288.1072998 1736690.875
+289.1100464 266048.25
+290.112915 17816.154296875
+294.1165161 22013.4921875
+295.1500854 21850.892578125
+302.1260986 18273.53515625
+303.1418762 35974.59375
+305.1338501 3322358.5
+306.1190186 1239936.625
+307.1219788 203523.453125
+308.1233521 26776.89453125
+311.1343994 42035.64453125
+312.1174927 32437.595703125
+321.1539917 371174.03125
+322.1557617 63629.9765625
+323.0982666 19658.236328125
+323.1443176 1136450.5
+324.1462402 195435.453125
+325.1487732 21188.69140625
+329.1430054 65992.171875
+337.1669006 14448.623046875
+338.1420288 54938.70703125
+338.1806641 413539.25
+338.6451721 28811.14453125
+339.1824951 73426.3671875
+346.1701965 18889.236328125
+347.1490173 18281.38671875
+349.1588745 25536.306640625
+359.1450195 76624.8828125
+360.1415405 19982.638671875
+366.1860962 147604.484375
+367.190094 25165.005859375
+369.1366272 29058.158203125
+376.1696472 126133.0234375
+377.1555176 87767.109375
+386.1636353 20786.7890625
+387.522644 13169.0537109375
+394.1806641 762106.0
+394.2397156 31802.99609375
+395.1820374 141793.59375
+396.1881714 26487.162109375
+412.1881104 31674.548828125
+421.1823425 19512.025390625
+460.1953735 22541.380859375
+468.2196655 57745.03515625
+469.2171326 21876.203125
+477.2169495 22232.734375
+478.2033081 27434.12109375
+485.2472534 235321.328125
+486.2503052 60437.06640625
+488.1861877 62932.96875
+492.2291565 198896.921875
+492.7297058 90535.7109375
+493.232666 49298.140625
+495.2268372 76911.2578125
+496.2301636 16777.86328125
+503.7181396 28470.453125
+505.2120667 61328.859375
+506.202301 48419.58203125
+512.2238159 24939.732421875
+512.7280884 21458.203125
+521.2340698 48358.1953125
+521.7354736 38698.01953125
+523.222168 505536.90625
+524.2241211 115578.09375
+525.2301025 35557.7109375
+529.7433472 14444.7158203125
+530.2496338 18863.693359375
+554.2657471 16210.3720703125
+555.2516479 23671.234375
+558.7420654 28517.98046875
+568.7554932 21122.0703125
+571.7498779 98634.640625
+572.2748413 357895.53125
+572.7467041 35537.8125
+573.2799683 110491.6015625
+574.2783813 17791.40625
+576.2619019 27590.548828125
+576.7567139 27057.5546875
+577.2644653 25630.13671875
+578.2649536 17502.087890625
+580.2605591 92799.328125
+580.7546997 2408738.75
+581.2558594 1605122.625
+581.335083 30890.111328125
+581.7579346 622694.25
+582.2594604 129229.4765625
+589.2677612 40400.34375
+598.272644 84575.3984375
+598.774353 50509.46484375
+599.276062 46947.25
+599.77771 100524.5078125
+606.2605591 24451.36328125
+607.2577515 18709.474609375
+624.2677612 55317.73046875
+625.2762451 17533.69140625
+655.3117676 16877.220703125
+673.3232422 395209.59375
+674.3247681 155087.953125
+675.3256836 23502.572265625
+693.2833862 22842.046875
+711.3031006 20411.13671875
+802.3626709 71436.8515625
+803.3636475 39768.8828125
+873.4016724 92283.1796875
+874.3977661 54253.9296875
+875.4224854 17102.3828125
+1001.457581 15806.138671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.62.62.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=62"
+RTINSECONDS=6.610150673
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13425064 22164.818359375
+62.84006882 14611.544921875
+64.52620697 68083.75
+64.53064728 56278.6796875
+64.58209991 53715.09375
+64.58621216 36124.7578125
+64.63835144 23008.244140625
+74.81147766 17446.5234375
+74.92340851 17295.07421875
+95.06302643 15800.662109375
+98.35582733 17281.564453125
+149.5632172 32832.19140625
+149.5770874 30284.15234375
+167.091217 40907.49609375
+169.060318 27713.337890625
+175.1178741 332171.96875
+177.0761871 77185.8046875
+178.0601044 379950.34375
+178.3395844 92487.96875
+179.0635681 32568.388671875
+183.075531 19072.62890625
+186.0861053 121925.03125
+194.1024933 45419.6015625
+195.0864716 4661240.5
+195.1283112 32851.09375
+196.0894012 425842.21875
+197.0920715 44053.43359375
+200.1026459 29292.484375
+201.0856171 27496.76171875
+206.0913239 144266.625
+218.1022644 61619.08984375
+223.2878265 17301.58984375
+234.0963287 18734.34765625
+239.112854 19120.154296875
+240.0962677 29903.85546875
+246.0970154 649999.0625
+246.1256561 33245.828125
+247.100235 100893.7421875
+249.0955963 17764.25390625
+257.1225891 113866.4375
+258.1238403 26669.947265625
+260.1122131 99387.4296875
+267.1062012 21718.576171875
+270.0967712 126595.1953125
+277.1387634 25062.02734375
+283.1427917 50354.3828125
+284.1482239 19724.07421875
+287.1235962 174096.484375
+288.1075134 1675578.25
+289.1101685 243460.90625
+294.1177063 28646.302734375
+295.1487122 21906.416015625
+303.143219 37071.98046875
+305.1340637 3508180.25
+306.0593262 22264.55078125
+306.1192322 1261952.75
+307.1219177 206037.8125
+308.1235657 19949.314453125
+311.134491 48681.8359375
+321.1540222 381554.875
+322.1577148 69773.8125
+323.1445618 1244711.75
+324.1468201 217877.328125
+325.1516113 29317.498046875
+329.1435547 50150.52734375
+332.7244873 20353.107421875
+338.1418762 47015.296875
+338.1805725 470200.46875
+338.6472473 20042.041015625
+339.1839905 83497.6640625
+347.148407 26983.01953125
+351.1290894 23408.412109375
+359.1421509 48472.16015625
+366.1867065 153670.875
+369.1403503 40793.69140625
+376.1705933 143362.5625
+377.1565552 113894.9609375
+386.1636658 23388.078125
+387.1716003 23254.14453125
+394.1810303 830460.1875
+394.2399292 38208.72265625
+395.1830139 163701.34375
+396.1818237 20713.337890625
+412.1878357 48875.86328125
+460.1921387 25164.546875
+468.221405 63500.38671875
+485.2471924 231440.75
+486.2493591 62285.89453125
+488.1886292 48858.98828125
+492.2293701 182072.796875
+492.7309875 101471.296875
+495.2313538 54600.52734375
+503.7190552 21769.8984375
+505.211853 68384.1484375
+506.204895 47077.91015625
+512.2261353 63788.24609375
+512.7333374 28412.2109375
+521.2331543 39529.87890625
+521.7299805 25042.162109375
+523.2226562 482261.6875
+524.2248535 155515.21875
+525.2264404 33685.421875
+530.2387085 22904.66015625
+555.2596436 31016.75390625
+571.7491455 94695.390625
+572.2753296 330268.4375
+573.2809448 88936.5234375
+576.2697144 31446.65625
+576.760437 28580.41796875
+580.2650146 82581.625
+580.7554321 2700639.0
+581.2568359 1903789.125
+581.3684692 28418.220703125
+581.7585449 686178.875
+581.8641357 23473.435546875
+582.2588501 135059.515625
+589.2680054 91305.3359375
+589.7639771 43991.828125
+598.272522 72337.015625
+598.7735596 48825.81640625
+599.2804565 27249.6875
+599.7784424 103989.78125
+606.2557983 35939.69921875
+624.2686157 85676.96875
+655.3153076 24463.265625
+673.3245239 507127.28125
+674.3270264 213685.328125
+675.3289795 34696.171875
+693.2908325 37821.21484375
+802.3657837 119079.3828125
+803.3650513 58455.43359375
+873.4008789 111421.921875
+874.4038086 63827.90234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.63.63.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=63"
+RTINSECONDS=6.716422754
+PEPMASS=598.27001953125
+CHARGE=2+
+53.43376541 13562.662109375
+56.86004257 12973.5732421875
+61.95391083 12676.5830078125
+64.52620697 68577.9140625
+64.53063202 52428.28515625
+64.58202362 49078.4765625
+64.58626556 26825.802734375
+64.64154053 14427.0478515625
+74.81170654 15510.9560546875
+94.67462158 14256.0107421875
+123.5645142 14408.814453125
+131.5127869 15538.369140625
+149.5649719 30674.669921875
+149.5786285 28951.703125
+167.0914612 44090.546875
+169.0596619 44677.66015625
+175.1177063 311208.46875
+176.1218872 25201.240234375
+177.0758667 70046.71875
+178.0598755 371764.65625
+178.0781403 20697.140625
+178.3518219 65508.48828125
+179.0629883 27146.0
+179.0916443 25073.1953125
+182.0922852 20480.333984375
+183.0736237 18601.671875
+186.0860901 93216.9375
+189.8844299 14418.560546875
+190.0602875 18779.03125
+194.1022034 42528.05078125
+195.086319 4444916.5
+196.0891418 428568.75
+197.0921326 26155.5703125
+200.1013794 21333.818359375
+206.0910339 158354.484375
+207.0950165 17539.0
+208.0700226 13941.8798828125
+212.1141357 14554.9052734375
+218.10289 60054.875
+222.0864105 19854.8828125
+239.1125031 17207.931640625
+240.0961761 23117.228515625
+243.0869141 24055.6875
+244.1148376 18425.94921875
+246.0968475 643749.4375
+246.1204681 10464.6572265625
+247.09935 82668.7109375
+248.1122894 21972.271484375
+257.1228333 96101.640625
+258.1260376 17691.1796875
+260.1122742 132038.015625
+261.1143799 20707.80859375
+270.0967407 160092.0
+271.1001282 17581.318359375
+277.1397095 20730.044921875
+278.1193237 24580.46875
+278.1495667 24141.697265625
+283.1427917 44231.39453125
+287.1237183 164136.125
+288.1072693 1720749.5
+289.11026 278466.84375
+290.1106262 29016.193359375
+294.1204834 14925.6396484375
+295.1487122 18757.77734375
+303.1433411 32963.39453125
+305.133667 3326133.5
+306.1189575 1200214.625
+307.1213074 183989.0
+308.1251526 17460.6015625
+311.1357727 45765.21875
+312.1160583 32384.333984375
+321.1536865 355412.5
+322.157196 71124.640625
+323.1441956 1245269.125
+324.1459351 163855.734375
+325.1519775 24509.828125
+329.1434631 38441.26171875
+331.1501465 26256.935546875
+338.1421509 68843.140625
+338.1803894 448307.75
+339.1832886 68114.578125
+349.1584473 36553.87890625
+351.1268921 22213.4375
+358.1732178 20350.390625
+359.1445007 75707.1328125
+366.1856995 131340.296875
+369.1410828 25325.064453125
+376.1698914 135844.375
+377.155304 88503.71875
+378.1563416 15907.701171875
+386.1630249 28559.48828125
+394.1804504 814462.3125
+394.2409058 27691.001953125
+395.1828613 186268.640625
+396.1856079 27611.103515625
+412.1898193 41006.35546875
+445.9822083 14986.3486328125
+460.1894836 25714.3515625
+468.2186279 46334.140625
+478.2047729 17709.431640625
+483.7199402 29665.251953125
+485.2471313 193718.296875
+486.2477417 60244.19921875
+488.186676 41246.31640625
+489.1835938 18010.59375
+492.2284851 203399.953125
+492.7296753 84756.5625
+493.2272644 26931.900390625
+495.2254333 41779.6875
+501.7279968 19209.259765625
+503.2140198 26424.1015625
+505.2115784 58555.9765625
+506.2029419 54356.16796875
+506.7297363 15998.12890625
+512.2251587 23160.654296875
+512.730896 16680.70703125
+521.2313843 43443.5703125
+523.2212524 477551.65625
+524.223877 143645.328125
+525.2252197 27792.365234375
+555.2539673 22464.744140625
+558.7444458 22614.287109375
+559.2463989 19211.921875
+571.750061 102543.4453125
+572.2736206 386936.75
+572.7442017 26457.302734375
+573.2786865 122404.5078125
+574.2856445 25089.390625
+576.2596436 58421.81640625
+576.7610474 29008.6015625
+577.2598877 27456.03125
+580.2618408 104505.171875
+580.7542725 2536583.75
+581.2555542 1821649.625
+581.3354492 28570.7265625
+581.3670044 26511.2578125
+581.7575684 574593.25
+582.2587891 166686.90625
+589.2669678 61537.921875
+589.7660522 34097.2734375
+598.2717896 60215.171875
+598.7736816 45402.85546875
+599.276062 35799.36328125
+599.7774048 111303.265625
+606.260437 41134.70703125
+624.2650757 58240.62890625
+625.2712402 16585.84765625
+655.3182373 28432.8828125
+673.3228149 454107.8125
+674.324707 167273.953125
+675.3314209 27920.041015625
+693.279541 17217.109375
+802.3623657 111944.859375
+803.3639526 45371.76171875
+873.3981323 108129.9609375
+874.4004517 50168.296875
+1001.446594 24599.619140625
+1002.425598 16816.43359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.64.64.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=64"
+RTINSECONDS=6.824655009
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632141 61224.3984375
+64.53067017 45746.140625
+64.58197784 42600.94921875
+64.58614349 33554.546875
+64.63807678 20017.177734375
+64.64150238 20490.32421875
+74.81634521 15256.376953125
+76.28127289 17858.466796875
+149.5675812 48362.6015625
+167.0917511 27844.439453125
+169.059967 34032.30078125
+175.117691 305589.375
+176.1217957 17825.3359375
+177.0761871 65096.25390625
+178.0598297 348189.625
+178.3429565 91168.109375
+179.0629272 27581.001953125
+186.0860138 116631.078125
+190.1076813 14490.5634765625
+194.1021729 49501.11328125
+195.0862885 4225833.0
+195.1276855 39749.9453125
+196.0890045 417070.34375
+197.0905609 23307.48046875
+200.1020966 33520.5234375
+206.0909424 156348.828125
+207.0944061 22122.94921875
+212.1129761 24864.1796875
+215.0914001 26169.619140625
+218.1021576 76272.9375
+234.09758 19283.9453125
+240.0963898 26365.33984375
+246.0968475 694707.8125
+246.1202698 11107.748046875
+247.0993652 65133.9609375
+249.0950623 21831.24609375
+257.1229553 95047.265625
+258.1260986 24864.94140625
+260.1121826 112933.2421875
+261.1178284 18342.740234375
+270.0968933 127944.2109375
+278.1501465 29042.5234375
+283.1431885 40761.296875
+287.1231995 147071.3125
+288.1071777 1693836.375
+289.1096497 252887.734375
+290.1138611 20310.08984375
+295.1486206 19572.0078125
+302.1327209 16071.7099609375
+303.1442871 24427.681640625
+305.1336365 3211486.75
+306.1188354 1184544.0
+307.1217651 188128.1875
+308.1242676 22069.318359375
+311.1341248 56707.91015625
+312.1165771 42809.09765625
+321.1535034 363496.34375
+322.1563416 70283.15625
+323.0982971 22310.263671875
+323.1441345 1127156.25
+324.1459351 220786.875
+329.1424561 47153.34375
+338.1420593 51523.87109375
+338.1802979 412892.6875
+338.6462402 23697.9140625
+339.1826172 65714.171875
+341.1421204 18915.36328125
+346.1680603 17607.70703125
+347.148407 24484.294921875
+351.1299133 18922.875
+358.1666565 21405.58984375
+359.1442261 90680.7734375
+366.1860962 130216.484375
+367.1870422 17187.646484375
+369.1400757 31830.544921875
+376.1697083 116473.1953125
+377.1555481 75115.1171875
+386.1619263 27356.13671875
+394.1804504 788808.6875
+394.2405396 26337.400390625
+395.1826782 155777.140625
+412.1892395 40417.765625
+413.1667175 19073.615234375
+420.686676 23650.568359375
+421.1833801 25550.03125
+434.1706543 20341.63671875
+460.1923828 18147.97265625
+468.2218018 51777.2734375
+477.219635 19232.705078125
+478.2054749 21098.064453125
+484.2207947 15207.7802734375
+485.1726074 24819.00390625
+485.2472839 196046.984375
+486.2485046 58050.78125
+488.1879578 39880.6015625
+492.2286377 160472.328125
+492.7302856 79244.21875
+493.230957 31300.025390625
+495.2245178 43551.15234375
+504.8799133 18786.73828125
+505.2122192 45991.65234375
+506.1992798 51756.62890625
+512.2260132 51735.94921875
+512.7261353 24088.162109375
+523.2209473 448804.09375
+524.2234497 132383.328125
+525.2251587 24822.806640625
+555.2525635 23563.185546875
+558.7433472 18835.2109375
+559.2485352 21803.4609375
+571.7498169 88062.625
+572.2729492 324847.75
+572.7474365 30927.1171875
+573.2787476 103235.0546875
+574.2897949 16305.84765625
+576.2555542 29208.68359375
+576.7563477 21700.48046875
+577.2620239 23107.791015625
+580.2617798 89120.9609375
+580.7541504 2427034.75
+581.2553711 1654607.375
+581.3370361 25729.771484375
+581.3666382 24490.251953125
+581.7572632 577114.875
+582.2575684 144091.25
+583.2645874 21952.359375
+589.2665405 48174.6171875
+589.7678833 26091.345703125
+598.2747192 46200.4296875
+598.7744751 47641.2109375
+599.2735596 49020.828125
+599.7774658 78684.9140625
+606.2573853 35142.0859375
+624.2695312 52719.98046875
+625.2699585 16956.533203125
+655.3153076 29885.455078125
+673.3232422 463648.6875
+674.3248291 195160.765625
+675.3232422 40829.203125
+693.2826538 21792.3984375
+711.3001709 23568.736328125
+802.3646851 103018.4453125
+803.3631592 51639.8359375
+873.4031372 97189.96875
+874.3997803 61671.97265625
+1001.455872 18773.958984375
+1002.467834 27240.869140625
+1058.476318 23863.23828125
+1059.487183 17852.265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.65.65.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=65"
+RTINSECONDS=6.933254161
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430786 21549.640625
+58.13712692 21435.240234375
+62.46793365 14282.8955078125
+64.52628326 73443.2421875
+64.53063202 53034.5859375
+64.58200073 48956.0859375
+64.58625793 33295.44140625
+64.63820648 18950.474609375
+64.64141846 15789.521484375
+82.0541687 21018.5625
+149.5692139 65293.125
+167.0918121 47353.953125
+169.0603027 41609.96875
+175.1179047 330584.84375
+176.1198883 19190.1015625
+177.0762024 88411.46875
+178.0601501 340993.40625
+178.338974 81580.171875
+179.0619049 21716.482421875
+179.0911713 24189.43359375
+183.0758972 33443.66796875
+186.0864105 118273.84375
+194.1023865 46366.58203125
+195.0864563 4614078.5
+195.1279755 21490.3515625
+196.0892944 436659.4375
+197.0911713 30289.07421875
+200.1013489 30884.919921875
+201.0865784 22708.0234375
+206.0912781 156180.6875
+207.0934906 25493.59375
+215.0906677 25374.955078125
+218.1025391 48737.5078125
+222.0870667 22154.875
+228.0869141 19348.302734375
+240.0967255 39057.42578125
+240.1245422 16306.630859375
+246.0970001 666685.125
+246.1257629 35864.07421875
+247.0997314 102405.3125
+249.0949707 19651.865234375
+257.1226501 121956.578125
+260.1127014 120204.4765625
+270.0969543 157540.21875
+271.0995789 17245.935546875
+277.1381226 20126.689453125
+283.1418762 40634.13671875
+287.1235352 165724.3125
+288.1074524 1690436.0
+289.1102905 250040.0
+290.1122742 31759.765625
+303.1437073 34883.625
+305.1340027 3403127.75
+306.1190491 1258195.625
+307.1208801 225546.5625
+311.1353455 59386.875
+312.1170654 26581.685546875
+321.1542053 355601.6875
+322.1567383 69887.328125
+323.1444702 1243325.5
+324.1463928 158740.359375
+325.1514893 29500.390625
+329.143158 70255.4765625
+338.1428528 54650.23828125
+338.1804199 432477.125
+338.6456909 25757.166015625
+339.1828918 96205.3671875
+347.1532288 18575.197265625
+351.1291504 22085.2578125
+359.1437683 59220.64453125
+366.1855164 126824.6015625
+367.1891785 30919.978515625
+369.1416931 23124.8671875
+376.1699219 125259.9765625
+377.1578369 101711.21875
+386.1643372 27135.740234375
+394.1810913 776717.9375
+395.1819763 160750.6875
+407.1660461 25225.41015625
+412.1861877 35619.609375
+450.2164917 18866.87890625
+460.1908569 24052.201171875
+468.2202148 54236.91796875
+478.203949 19887.716796875
+483.7185669 35044.8984375
+485.2473755 212138.171875
+486.25 75293.28125
+488.1881409 48664.28125
+492.2290344 180373.375
+492.7301331 77464.0546875
+493.2299194 24757.21484375
+495.2259521 64244.6171875
+505.2109375 56705.3984375
+506.209198 51923.19140625
+512.2255249 69661.3828125
+512.7286377 35606.18359375
+521.2305298 32555.107421875
+521.7368774 27010.421875
+523.2220459 492375.3125
+524.2243042 144796.171875
+529.7432251 37851.66796875
+558.7485962 31327.126953125
+567.2617798 22069.359375
+571.7507324 83553.7734375
+572.2747192 384008.84375
+572.7511597 31627.962890625
+573.2790527 107973.8828125
+574.2767334 33013.0625
+576.2633057 68288.75
+576.7631226 46184.5859375
+577.2619019 46711.2109375
+580.2637939 82176.9140625
+580.7549438 2858153.5
+581.2564087 1783930.875
+581.3676147 19673.044921875
+581.7576904 678532.125
+582.2606201 155057.90625
+589.2664185 84697.09375
+589.7645264 57673.75
+598.2737427 55342.0703125
+598.774292 58346.77734375
+599.7790527 49727.2890625
+606.258606 43065.6953125
+624.2676392 69560.2421875
+655.3175659 21006.833984375
+673.3238525 491161.40625
+674.3259888 191893.71875
+675.3174438 26066.8828125
+693.2929688 22326.451171875
+711.3029785 21458.45703125
+802.3604736 96654.4765625
+803.3667603 34125.6796875
+873.3950195 103931.6640625
+874.4069214 31471.267578125
+1001.437134 27660.501953125
+1130.049805 20645.833984375
+1201.478149 18690.34375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.66.66.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=66"
+RTINSECONDS=7.040221985
+PEPMASS=598.27001953125
+CHARGE=2+
+51.81533432 13991.048828125
+52.04024506 14137.8857421875
+58.13438034 16249.708984375
+64.52615356 63056.0546875
+64.53046417 46138.88671875
+64.5819397 37302.65625
+64.58612823 29028.12109375
+64.63805389 19248.763671875
+64.64134216 19092.00390625
+72.4083786 14383.9111328125
+80.01251984 13526.509765625
+90.98317719 15044.2802734375
+101.5599823 14117.9560546875
+149.5696716 68920.2421875
+167.091568 41800.4609375
+169.0592041 38500.48828125
+175.117691 318191.40625
+176.1201172 21185.1875
+177.0760956 63304.0703125
+178.0436401 26223.875
+178.059845 325736.0
+178.3405762 85215.484375
+179.0631409 30685.9609375
+179.0908661 22905.994140625
+183.0748596 20890.55078125
+186.0861969 95867.96875
+190.0594025 20730.986328125
+194.1030731 31385.5703125
+195.0862427 4482080.0
+196.0889587 473592.0625
+197.0908356 19312.78125
+200.101944 31654.28515625
+206.0909119 143487.34375
+207.0925293 16082.177734375
+218.1016235 61412.859375
+222.0848389 18778.806640625
+234.0965881 17568.1015625
+239.1131592 19012.513671875
+240.0960693 28224.35546875
+243.0867157 21894.728515625
+244.1162872 18709.66015625
+246.096756 643981.75
+247.098999 95575.2890625
+249.0971069 34452.48046875
+257.1230164 107769.7421875
+260.1122437 122691.203125
+261.1192932 16950.037109375
+270.0963745 149709.296875
+276.1317749 19104.634765625
+278.1498718 24416.97265625
+283.141449 47594.65234375
+287.1230774 164155.390625
+288.1070557 1753723.125
+289.1095581 262619.4375
+294.1195984 16638.57421875
+295.1491699 25645.693359375
+304.1278992 17850.126953125
+305.1335144 3504622.75
+305.2152405 23088.595703125
+306.1188049 1272558.125
+307.1210938 213059.703125
+308.1180115 21381.564453125
+311.1343994 40003.62890625
+312.1180725 47882.93359375
+321.1534424 383123.0
+322.1558533 57295.1953125
+323.0987549 27158.296875
+323.1439209 1220678.125
+324.146759 195564.359375
+329.1427002 49985.53515625
+338.1425476 40319.90234375
+338.1799927 438047.59375
+338.6479187 19728.634765625
+339.1828308 76611.5078125
+346.1702271 15944.6376953125
+347.1487732 23465.115234375
+349.1607971 23680.72265625
+359.1451721 73431.4609375
+360.144043 17995.9296875
+366.1860657 154939.4375
+367.1867981 21391.3125
+369.1385193 31158.638671875
+376.1698608 122410.8828125
+377.1557007 72607.5078125
+386.1669006 33978.7578125
+394.1802673 793725.9375
+395.182251 172634.421875
+412.1854248 47725.4609375
+420.6820374 18781.673828125
+450.2164001 17382.884765625
+460.190918 30511.666015625
+468.2191162 52063.66796875
+469.21875 17952.173828125
+485.2469177 208307.21875
+486.2503662 66064.375
+488.1856689 65725.03125
+492.2284546 186775.90625
+492.7287292 112416.7265625
+493.2284546 41638.14453125
+495.2278442 66215.9765625
+505.2107849 58678.3828125
+506.2063293 42748.38671875
+507.2041626 23194.669921875
+512.2261963 60780.734375
+512.7288818 31371.248046875
+521.2307129 23494.98828125
+523.2210083 470803.84375
+523.3619385 20473.873046875
+524.2242432 130235.8671875
+525.2281494 41612.7578125
+529.7428589 20686.287109375
+558.7391968 27055.72265625
+567.2572632 24243.44140625
+571.7463989 89773.953125
+572.2734985 301318.5625
+572.746521 29848.74609375
+573.2802124 97803.625
+576.2611084 50690.859375
+576.762146 37275.0234375
+577.2659912 31648.833984375
+580.2619629 72699.9375
+580.7539062 2439457.75
+581.2550659 1527328.25
+581.3358765 16275.0849609375
+581.7573242 616846.25
+582.2573242 104470.8984375
+589.265625 35567.296875
+589.7609253 29500.49609375
+598.2747192 55308.5625
+598.7750854 42294.25
+599.2769165 22123.962890625
+599.7785034 77091.171875
+606.2574463 33073.75
+607.2555542 20129.22265625
+624.2662354 62133.77734375
+673.3220215 430284.5
+674.3244019 171628.453125
+675.3317871 33233.6953125
+693.2772217 28918.01953125
+802.3630981 87150.2109375
+803.3643799 52849.16015625
+873.3997192 78033.3515625
+874.3908691 44616.62109375
+875.3995361 24914.71875
+1058.485107 17247.09375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.67.67.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=67"
+RTINSECONDS=7.148207602
+PEPMASS=598.27001953125
+CHARGE=2+
+50.21299744 14060.1103515625
+54.44415283 16763.30078125
+58.13411331 18196.490234375
+64.52627563 60561.44921875
+64.53046417 48376.30078125
+64.58203125 46213.70703125
+64.58616638 34470.77734375
+64.638237 23336.787109375
+64.64160919 17176.849609375
+149.5707245 61327.53515625
+166.213028 14063.9658203125
+167.0917816 39545.2890625
+169.0597839 48684.16015625
+175.1177368 319062.5
+176.1197968 19370.291015625
+177.0757751 58583.76171875
+178.0598907 373054.625
+178.0774994 16597.49609375
+178.3416138 91231.5
+179.0634003 18630.3359375
+179.0907898 16317.181640625
+186.0864258 109262.2109375
+194.1022491 42082.9296875
+195.0862885 4545778.0
+195.1285248 22850.125
+196.0891418 469609.0
+197.0916595 22193.546875
+200.1027069 20770.767578125
+201.0866394 23587.611328125
+206.0908966 174000.5
+207.0934753 25074.6875
+215.0908966 18981.349609375
+217.1283264 18302.248046875
+218.1020508 71774.546875
+222.0855255 16161.521484375
+234.096405 27275.72265625
+240.0955048 20284.462890625
+243.0858459 27892.6171875
+246.0968628 693490.25
+247.1000366 69316.7265625
+257.1225281 108968.6875
+260.1121216 116743.515625
+270.0966187 144136.171875
+271.0985107 16971.060546875
+276.1352844 18539.07421875
+278.116333 18909.201171875
+278.1491394 25573.015625
+283.1441345 58219.84765625
+287.1232605 173215.75
+288.1072388 1737316.375
+289.1098938 260918.640625
+290.1134644 19399.43359375
+294.1183167 28647.73828125
+303.1412964 36916.984375
+305.1336975 3476086.25
+306.118988 1194628.625
+307.1211853 209926.28125
+308.1209412 25829.3828125
+311.1348877 55757.9609375
+312.1159058 24289.32421875
+321.153595 406832.25
+322.1555176 68523.7578125
+323.0984192 19940.95703125
+323.1441345 1217627.125
+323.2081909 23368.185546875
+324.1466675 183305.53125
+328.1601562 15243.482421875
+329.1423035 59634.3359375
+338.1421814 44696.3046875
+338.1802979 474486.53125
+338.6453552 24255.51953125
+339.1428223 21515.890625
+339.1836853 87260.3671875
+346.1721497 20172.501953125
+347.1506653 17371.998046875
+349.1597595 41621.53515625
+352.5702515 15364.6572265625
+358.1643677 21947.15234375
+359.1445618 68082.9921875
+360.1446838 16761.55078125
+366.1860352 150413.34375
+369.1379089 35998.37890625
+376.1705322 142620.828125
+377.1557312 73403.5625
+378.1545105 25122.078125
+386.1631775 28205.080078125
+394.1805115 816157.4375
+394.2399902 31680.056640625
+395.1823425 169490.046875
+398.1694641 15696.208984375
+412.1856995 27829.609375
+423.1612854 18815.353515625
+434.1755676 20150.345703125
+460.1930542 21113.9296875
+468.2213745 52331.171875
+478.2039795 23126.009765625
+485.2469482 237014.28125
+486.2505493 78009.8828125
+488.1843262 48511.78515625
+492.2290039 209900.484375
+492.7295837 80935.203125
+493.2327271 31189.05859375
+495.2272949 55651.90234375
+496.2310486 20006.0390625
+503.2286072 19556.71875
+503.7167053 30112.115234375
+505.2101746 59563.22265625
+506.2084961 50720.48828125
+512.2260132 46160.18359375
+523.2214966 508859.71875
+524.2252197 158456.375
+525.2307129 40475.38671875
+555.260498 18592.423828125
+558.7462769 18196.71875
+564.1101685 20004.279296875
+567.757019 21869.51171875
+571.7490845 104565.3828125
+572.2741089 313736.09375
+572.7510986 33696.6171875
+573.2789917 96372.125
+574.286438 24929.83203125
+576.2622681 50399.5546875
+576.7602539 31302.0859375
+580.2615356 72996.6171875
+580.7544556 2345102.25
+581.2557373 1679834.875
+581.3674316 19847.251953125
+581.7573242 675135.0
+582.2591553 128908.8203125
+589.2664795 59745.63671875
+589.7722778 33501.0546875
+598.270752 49289.98828125
+599.2773438 29388.607421875
+599.7774658 74867.25
+606.2597046 38891.01953125
+607.258728 23085.072265625
+624.2688599 45463.625
+673.3226929 414785.125
+674.3260498 152960.1875
+675.321228 18684.736328125
+693.2921753 21287.99609375
+711.2978516 17990.076171875
+802.3634644 99017.65625
+803.3684692 29982.53125
+873.3998413 106716.5
+874.4021606 63040.703125
+891.507019 16559.294921875
+1001.448059 24898.662109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.68.68.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=68"
+RTINSECONDS=7.255877825
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13413239 24159.767578125
+58.13718033 17554.12890625
+61.86823273 15162.0673828125
+64.52606201 73936.1328125
+64.53046417 43636.87109375
+64.58194733 48916.30078125
+64.5861969 31332.396484375
+64.6381073 25010.880859375
+91.01932526 18028.345703125
+149.562088 29731.052734375
+149.5749664 56336.66015625
+167.0925293 37865.41015625
+169.0600739 21951.78125
+175.1177063 324199.84375
+176.1196594 31037.236328125
+177.075882 65387.96875
+178.0436859 30961.638671875
+178.0598297 390126.8125
+178.0769653 15717.0283203125
+178.3338623 27245.013671875
+178.352829 63461.54296875
+179.062912 21742.51953125
+179.0912323 21255.3984375
+182.0910797 20180.970703125
+183.0758514 36911.98046875
+186.085907 101102.015625
+194.1023102 33176.8046875
+195.0862885 4766868.5
+196.0890808 488089.21875
+197.3672485 16347.7333984375
+199.6797028 15453.662109375
+200.1015167 48864.08203125
+201.0852203 19941.689453125
+206.0911102 171520.84375
+218.1018524 64591.0703125
+222.0853729 21623.56640625
+234.0968323 22734.361328125
+240.0944672 27965.92578125
+243.0853119 19820.373046875
+246.0967712 718373.25
+246.1257019 34111.11328125
+247.0996094 70950.1953125
+249.0957031 19116.880859375
+257.1225281 116990.9765625
+260.1127625 147228.734375
+270.096283 146387.9375
+283.143158 55464.25390625
+287.1229553 171996.0625
+288.1072388 1675562.75
+289.11026 231413.625
+290.1124573 17359.0078125
+294.1164551 24791.4765625
+295.1495056 26368.83984375
+303.1437073 27728.560546875
+304.1358337 15002.736328125
+305.133728 3626236.25
+306.118927 1277416.0
+307.1214294 172601.375
+308.1234741 22241.36328125
+311.1351929 45510.42578125
+312.1152954 28407.43359375
+321.1538696 372095.3125
+322.1567993 72109.265625
+323.1441956 1261714.125
+324.1460266 197152.078125
+325.1525269 25342.603515625
+329.1437988 57746.9921875
+330.1417236 17229.1875
+331.1506348 18670.55859375
+338.1418457 50496.4765625
+338.1803589 467488.625
+338.6433716 23751.07421875
+339.1828918 87568.1953125
+351.1296082 16448.71484375
+358.1665039 26365.8125
+359.1432495 59646.62890625
+366.1851807 131435.921875
+367.1844788 23722.353515625
+369.1362915 46121.16015625
+376.1694031 108147.4140625
+377.1568298 82807.2890625
+378.1569519 25448.75
+379.5019226 17131.1484375
+386.1662598 24046.771484375
+394.180542 814019.125
+395.1819458 156164.015625
+412.1838379 24716.654296875
+420.6858215 28343.521484375
+460.1955566 20061.1328125
+468.2226562 48366.6640625
+485.247406 236665.671875
+486.2500305 64327.8125
+488.18927 48167.59375
+492.2284851 150908.9375
+492.7302856 87482.4296875
+493.2301025 43086.16796875
+495.2266846 70594.6484375
+503.7186279 19551.62109375
+505.2120972 62138.3125
+506.2088928 47899.953125
+512.2265625 57906.28515625
+512.7240601 37874.515625
+521.2324829 49752.37890625
+523.2214355 532268.8125
+524.223877 162488.578125
+525.2342529 32495.66015625
+529.737854 22529.689453125
+530.2407227 35227.08984375
+571.7523193 96103.9609375
+572.2749023 361997.71875
+572.7561646 20239.57421875
+573.2805176 100982.9765625
+576.2651367 52955.96875
+576.7592163 26516.212890625
+580.2618408 97719.1796875
+580.7545776 2578739.75
+581.2559204 1790606.25
+581.3679199 29135.423828125
+581.7575073 719649.6875
+582.2590332 133647.484375
+589.2661743 95708.421875
+589.7716064 32634.61328125
+598.2744751 55518.6875
+598.7720337 45834.33984375
+599.7769775 67405.125
+606.2583618 35378.16015625
+624.2660522 81750.1796875
+655.3066406 22868.275390625
+656.3041382 23840.974609375
+673.324646 468632.84375
+674.3272705 148353.078125
+675.3242188 46137.265625
+693.2918091 25388.7265625
+711.3015137 23578.03125
+802.3626099 106870.28125
+803.3630371 49337.99609375
+873.3997803 136424.890625
+874.4058228 49096.32421875
+1001.469971 31113.3515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.69.69.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=69"
+RTINSECONDS=7.362690144
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 58058.48828125
+64.5307312 45163.12109375
+64.58198547 34828.76953125
+64.58616638 27265.72265625
+64.63804626 16903.74609375
+74.8117218 20910.724609375
+74.81614685 15354.451171875
+82.05439758 17982.5703125
+149.5624084 20096.5078125
+149.5759277 28428.498046875
+167.0915833 49655.77734375
+169.0598755 36596.56640625
+171.6641235 12755.595703125
+175.1178436 272353.0
+176.1208191 29738.31640625
+177.075592 61531.82421875
+178.0599976 352137.9375
+178.3357544 43137.23828125
+178.3549194 29322.69921875
+179.0632935 33440.87109375
+179.0916443 22091.201171875
+182.0911407 23746.09375
+183.075531 20046.9609375
+186.0859833 94709.4140625
+190.0608978 25229.52734375
+194.1025238 47051.86328125
+195.0864563 3905325.0
+195.1281433 31351.49609375
+196.0892944 393116.90625
+197.0916748 22455.55859375
+200.1015625 27834.041015625
+201.0865173 18040.455078125
+205.0590668 14358.92578125
+206.0912018 159126.125
+207.0919952 14133.123046875
+212.1117859 22511.29296875
+218.1020203 54539.125
+222.085434 17962.701171875
+234.0991821 15769.447265625
+240.096817 33300.96484375
+243.0857086 14064.76953125
+244.1190491 20079.92578125
+246.074585 9196.3671875
+246.0970917 697647.875
+247.0998383 77344.5859375
+249.0974579 13736.767578125
+257.1225281 84552.2890625
+260.1125183 130318.765625
+261.1176453 19446.857421875
+270.0968628 128543.171875
+278.1192627 16085.8017578125
+278.1506958 17289.0859375
+283.1439209 48407.4140625
+284.1208496 14364.0517578125
+287.1235657 149114.15625
+288.107605 1573359.75
+289.1105652 247169.3125
+290.1112976 20637.353515625
+294.1192322 14137.2294921875
+295.1504211 20209.2109375
+301.8459778 13595.583984375
+303.1431274 16367.6982421875
+304.128479 17724.482421875
+305.1341858 3078635.75
+305.2166748 19841.7421875
+306.1194458 1068240.375
+307.1213379 184621.796875
+308.1244812 15915.7333984375
+311.1350708 39174.796875
+312.1178894 46333.40625
+321.1543274 348393.09375
+322.1573486 63750.3359375
+323.0983582 13224.111328125
+323.1446838 1044862.25
+324.1470032 159101.96875
+325.1486511 16313.61328125
+328.1606445 12663.9580078125
+329.1443176 47259.8828125
+338.1422424 51960.1328125
+338.1808777 380701.46875
+338.64505 19325.265625
+339.1828003 58266.0234375
+341.1505737 14280.4580078125
+347.1501465 30026.59765625
+349.1598816 19862.359375
+351.130127 15470.7275390625
+359.1451416 70939.453125
+366.1869507 117656.8671875
+369.1394653 17591.28125
+376.1708679 106990.265625
+377.1573181 80368.765625
+378.1565247 12782.5634765625
+386.1647339 19614.9609375
+389.1549072 18475.89453125
+394.1348267 14524.6767578125
+394.181366 712744.625
+394.2402954 26474.806640625
+395.1827087 136919.0625
+396.185791 24108.396484375
+412.1868591 36435.20703125
+420.6837158 18263.900390625
+460.1914978 25953.85546875
+468.2218628 44343.828125
+469.2271423 12181.6103515625
+483.2276306 18080.76953125
+485.2481384 211368.171875
+486.2518616 33200.4375
+488.1849976 53874.8984375
+492.2302856 157734.28125
+492.7315063 80271.5390625
+493.2349548 33897.6875
+495.2270508 56637.05078125
+503.7153931 14353.3310546875
+504.2182617 18094.408203125
+505.2114563 40658.85546875
+506.2084961 47623.0703125
+512.2280273 36992.203125
+512.7300415 29597.78515625
+521.237793 18313.544921875
+521.7351685 14294.5908203125
+523.2231445 403960.09375
+524.2262573 106747.765625
+525.232666 29714.9453125
+529.7474365 22209.44140625
+555.2479248 16991.140625
+558.744812 17602.28125
+571.7504883 108329.9765625
+572.2747803 309946.4375
+572.7567749 18453.9921875
+573.2833252 93928.828125
+576.2618408 21600.51171875
+576.7625122 20050.54296875
+577.267334 28713.017578125
+580.2645874 85307.78125
+580.7562256 2194191.5
+581.257019 1441320.5
+581.7588501 531640.5
+582.2593384 122960.671875
+589.2667236 25174.0390625
+598.2736206 46971.625
+598.7754517 35627.890625
+599.2744751 43560.625
+599.7781982 89559.21875
+606.2585449 22321.25
+607.2481689 19366.48046875
+624.2693481 55193.015625
+625.2714844 14288.8359375
+655.3077393 27503.662109375
+673.3251343 443827.53125
+673.4313354 8560.37109375
+674.3271484 142488.359375
+675.322876 25197.91015625
+711.2995605 15557.9482421875
+784.3483276 14988.9609375
+802.3675537 72789.1875
+803.364624 38598.26953125
+873.4003296 91211.0703125
+874.3989868 31877.810546875
+1001.466797 26319.236328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.70.70.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=70"
+RTINSECONDS=7.473669568
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 70797.4375
+64.53050995 42753.359375
+64.58198547 55948.18359375
+64.58618927 34044.3203125
+72.66530609 15062.970703125
+91.216362 15516.1357421875
+145.1825409 18147.140625
+149.569046 54695.5
+167.0918884 46556.8203125
+169.0601807 36374.48828125
+175.1178436 303808.6875
+176.1216125 17902.080078125
+177.0759888 66394.7265625
+178.0462952 8798.05078125
+178.0600586 352363.4375
+178.3416748 103066.2109375
+179.0639801 37180.359375
+179.09198 18989.345703125
+183.075119 19800.912109375
+186.0861816 119567.75
+194.1020508 54474.6796875
+195.0864258 4515066.5
+195.1281128 30313.365234375
+196.0892792 443772.25
+197.0909271 35811.5390625
+206.0911102 158187.25
+215.0904541 27321.71484375
+218.102417 51389.234375
+234.095932 17673.109375
+240.0958557 18729.14453125
+243.0872192 26633.45703125
+244.1178741 26132.14453125
+246.0969391 625658.5
+247.0996857 92533.046875
+257.1231689 93432.4296875
+260.1127014 102680.8515625
+270.0968323 121270.0390625
+277.1385498 19696.126953125
+278.1495361 29579.775390625
+283.1424866 59696.01953125
+287.1234436 122174.8984375
+288.1074524 1684042.75
+289.1102905 254757.421875
+289.1460571 12132.673828125
+290.1108398 18159.7890625
+294.1167297 17428.015625
+295.1513977 19692.138671875
+303.1423645 24914.73046875
+304.1250916 15801.2412109375
+305.1340332 3261706.5
+306.1191711 1196272.625
+307.1211548 202579.4375
+311.1348267 61928.08984375
+312.1176758 47811.9921875
+321.1543579 349460.8125
+322.1565552 65614.03125
+323.0986633 22294.173828125
+323.1444397 1183373.5
+324.1462402 199592.421875
+329.143158 51691.60546875
+331.1506348 19610.990234375
+338.1422119 54303.5546875
+338.1807861 423263.125
+338.6433411 17804.62890625
+339.1828003 89886.21875
+347.1503296 27639.392578125
+358.1673279 24319.662109375
+359.1445923 59121.98046875
+366.1865234 132589.0625
+367.1905518 28550.02734375
+369.1416931 30973.068359375
+376.1705322 138603.90625
+377.1548157 75267.96875
+378.1581116 20957.654296875
+386.1643982 20610.64453125
+394.1809692 736406.4375
+394.2408752 25429.01171875
+395.1825256 144434.578125
+398.6542664 18994.779296875
+412.1877441 34875.6015625
+413.166748 21251.005859375
+434.1800842 17218.298828125
+460.1901245 19797.82421875
+468.2206726 51794.99609375
+469.2208557 23901.28125
+477.2197876 20308.8984375
+483.2232971 21017.59375
+485.2476196 227299.03125
+486.2502136 76725.140625
+488.1864319 62874.19921875
+492.2296448 213867.96875
+492.7315369 130326.0546875
+493.2331543 36750.98046875
+495.2282715 67270.2890625
+503.2215576 28900.515625
+503.7114563 26611.25390625
+505.2133789 58482.58203125
+506.2044678 48492.07421875
+512.2283936 51990.58203125
+512.727356 36851.8828125
+520.7380981 17939.33984375
+521.2313232 36790.0859375
+521.7318115 32643.884765625
+523.2221069 519385.46875
+524.225647 131905.0625
+525.2283936 38870.09765625
+529.74823 24501.796875
+541.234436 22789.498046875
+558.7472534 27035.283203125
+567.263916 20001.498046875
+571.75177 95997.8984375
+572.274292 368228.1875
+573.2803955 105686.65625
+575.2721558 26600.87890625
+576.2611084 50851.8359375
+577.2645264 33756.80859375
+580.2632446 94067.875
+580.7553101 2625127.0
+581.2564697 1900589.0
+581.3654785 23018.609375
+581.7581787 689094.125
+582.2584229 127484.453125
+589.2661133 92444.046875
+589.7651367 65488.453125
+598.2741699 75829.6953125
+598.7771606 36823.171875
+599.2774658 42230.8828125
+599.7770996 72232.6953125
+606.2573853 32954.265625
+607.250061 21447.75
+624.2678833 60863.5234375
+625.269043 25342.578125
+673.3251953 428208.75
+674.3257446 185126.59375
+675.3270874 28860.8046875
+693.3019409 31358.12109375
+709.0560913 19381.7109375
+711.3036499 18492.359375
+802.3637085 88402.7890625
+803.3710327 47850.1953125
+873.4003906 108724.75
+874.4025269 55553.9453125
+1001.452881 28487.134765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.71.71.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=71"
+RTINSECONDS=7.581235361
+PEPMASS=598.27001953125
+CHARGE=2+
+53.09650803 11504.2216796875
+58.13428116 23173.529296875
+63.58494568 13928.1708984375
+64.52617645 59771.2890625
+64.53048706 38755.49609375
+64.58201599 43069.9921875
+64.58618164 28684.330078125
+66.18315887 11555.0908203125
+76.28115845 17136.4921875
+76.28522491 12277.6669921875
+81.58094788 11652.654296875
+82.05438232 12307.7666015625
+136.4550171 13190.501953125
+149.5742798 44315.28515625
+149.7412415 13986.3818359375
+167.0918274 39795.37109375
+169.0597687 28367.931640625
+175.1178894 272195.875
+177.076355 54737.4375
+178.0600586 342405.59375
+178.076004 10992.849609375
+178.3324585 24340.767578125
+178.3516846 57350.70703125
+179.0638275 34691.50390625
+179.0917816 14981.0361328125
+181.412323 13559.7451171875
+183.0755005 28487.908203125
+186.0860596 101414.171875
+194.1027679 36242.87890625
+195.0864716 4030858.5
+195.1278687 19091.515625
+196.089325 431049.0625
+197.0906982 38787.875
+200.1018524 32812.3515625
+201.0858765 22028.970703125
+206.0911255 166877.203125
+207.0935516 18142.8125
+212.1129761 15959.880859375
+215.0917053 20724.669921875
+218.1026001 70010.5625
+234.0965729 14583.92578125
+239.1109924 17047.859375
+240.0961609 15664.248046875
+243.0858765 25136.9921875
+244.1168365 20935.6328125
+246.0744476 8932.0654296875
+246.097168 648190.875
+247.0998688 82787.2109375
+257.1228333 109739.1171875
+260.1126099 114402.484375
+261.118866 13508.58984375
+270.0971375 140727.203125
+278.117981 22662.7578125
+278.1496582 16829.25390625
+283.1424866 40705.93359375
+287.1233215 158214.28125
+288.1076355 1574938.125
+289.1105347 227945.0625
+290.1135254 24045.19140625
+294.1178284 16990.6328125
+295.1510315 24620.9453125
+303.1430664 29999.63671875
+304.1282959 18597.09765625
+305.1342468 3164712.25
+306.1194763 1133894.375
+306.1985779 17970.0234375
+307.121521 187303.953125
+311.135376 48535.82421875
+312.1158142 20328.99609375
+318.1429749 21435.583984375
+321.1542053 360522.40625
+322.1564026 57855.171875
+323.1447449 1100832.375
+324.1469421 153001.609375
+325.1546936 17069.197265625
+329.1425171 45063.95703125
+331.1494141 15311.328125
+338.1429138 47916.8515625
+338.1807861 384789.8125
+338.6452332 30311.37109375
+339.1846619 70293.734375
+347.1502686 29893.265625
+349.1601257 14627.4609375
+351.133606 22439.033203125
+359.1443481 61194.890625
+366.1864014 135194.984375
+367.1911316 26211.439453125
+369.1399536 31628.59375
+376.1705322 124643.6328125
+377.1577454 67594.1328125
+386.1658936 38582.13671875
+394.1815491 653131.375
+395.1828003 140135.953125
+412.1896057 30610.908203125
+420.6877136 17971.04296875
+434.1711121 13866.8671875
+460.1915283 25044.32421875
+468.2217407 53073.015625
+477.221283 15563.7392578125
+485.2479858 219665.234375
+486.250885 48116.45703125
+488.186676 52127.7265625
+492.2298584 154083.234375
+492.7318115 73903.1328125
+493.2277222 15166.166015625
+495.2259216 40690.4921875
+496.2279663 21655.7109375
+505.2125244 61299.76953125
+506.209198 45249.609375
+506.7286987 19358.908203125
+512.2266235 45515.546875
+512.7299805 39312.7890625
+513.2288818 19379.97265625
+521.2371826 30685.349609375
+523.2230225 418764.0625
+524.2246094 115461.0390625
+525.2264404 35584.6796875
+530.2455444 15406.9765625
+555.263855 16546.421875
+556.2457886 15045.3603515625
+558.7442627 37232.4609375
+571.7515259 108772.4375
+572.2765503 319832.78125
+572.751709 21768.7890625
+573.2802734 105047.0625
+576.257019 29819.359375
+576.7636719 19662.255859375
+580.2631226 89734.9609375
+580.7563477 2191880.25
+581.2574463 1507969.75
+581.6792603 10823.1123046875
+581.7589722 586143.25
+582.260437 88064.171875
+589.2626343 23363.3984375
+589.7613525 21554.94921875
+598.2735596 56143.484375
+598.7835693 25680.259765625
+599.2773438 68308.890625
+599.7761841 87362.0859375
+606.2612305 35002.4765625
+607.2598877 18152.87890625
+615.7945557 16300.1484375
+624.269104 62626.30859375
+655.3164673 23860.62109375
+673.3257446 404083.09375
+674.3300781 151230.1875
+675.3259277 34837.890625
+693.2845459 20255.1015625
+802.3692627 99214.6640625
+803.3651123 29245.359375
+873.4017944 85752.1875
+874.4003296 32538.7109375
+875.4135742 23829.79296875
+1000.286987 17066.455078125
+1001.45929 28548.732421875
+1058.482178 14442.5859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.72.72.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=72"
+RTINSECONDS=7.691682496
+PEPMASS=598.27001953125
+CHARGE=2+
+53.40769196 14603.5322265625
+57.04972076 17430.677734375
+64.52635956 69706.8828125
+64.53047943 42499.64453125
+64.58207703 46945.1328125
+64.58618164 34799.05078125
+64.63819122 26150.13671875
+64.64144897 20391.62890625
+74.81142426 17072.150390625
+76.18035889 15885.353515625
+86.46674347 16702.115234375
+149.5704651 66413.890625
+167.0915527 41698.91015625
+169.059494 30555.994140625
+175.1180267 349784.78125
+175.1336212 30970.248046875
+177.0766449 62326.32421875
+178.0600891 361818.375
+178.0781555 21779.548828125
+178.3349915 49157.46484375
+178.3543854 53009.79296875
+179.0632782 30506.0859375
+179.0917816 20817.71875
+180.5044403 17487.0078125
+182.0908813 33358.28125
+183.0754089 34354.203125
+186.0861816 118619.96875
+194.1017456 48587.20703125
+195.0865631 4701221.0
+195.1282959 30997.244140625
+196.0893402 412019.21875
+197.0921631 31493.03515625
+200.1019287 43196.28125
+206.0913086 178758.28125
+207.0946503 18035.61328125
+218.10289 49074.34765625
+233.1265106 20176.990234375
+240.0971069 26653.96875
+246.097168 671233.75
+246.1257782 34631.7578125
+247.0994873 73348.28125
+252.0953827 19543.802734375
+257.1224976 114561.78125
+260.1123352 102194.0625
+270.0973511 131936.640625
+273.3800659 19675.490234375
+278.1488953 39803.3828125
+283.1434326 48115.2890625
+287.1234741 160425.328125
+288.1075745 1672092.5
+289.1105347 226983.484375
+290.118927 17553.36328125
+294.1176453 22634.84765625
+295.1159668 22420.126953125
+295.1480408 31997.974609375
+303.1430664 33553.390625
+305.1342163 3392071.5
+306.1194458 1205674.125
+307.1217041 194338.796875
+308.1217957 23122.603515625
+311.135376 43739.3359375
+312.115387 24465.572265625
+321.1544495 361763.9375
+322.1575928 60041.85546875
+323.0991211 23280.9375
+323.1446838 1231768.25
+323.1889954 35864.68359375
+324.1470947 195298.0
+329.1443481 52986.73828125
+331.1499939 33121.09375
+338.1421204 52080.60546875
+338.1808777 465009.875
+339.1827087 81456.609375
+349.1593323 24858.599609375
+358.169281 17687.970703125
+359.1443481 59421.1640625
+366.1867981 140122.703125
+367.188385 24355.458984375
+369.1394043 38929.1015625
+376.170166 101958.8203125
+377.1560974 95902.359375
+386.1648254 26993.1015625
+394.1373291 16150.501953125
+394.1811829 819535.3125
+395.1825562 163147.921875
+412.1884766 30815.431640625
+468.2215576 61386.0234375
+469.2183838 18331.193359375
+485.2478333 228936.265625
+486.2501526 57141.23828125
+488.1853333 40054.4375
+492.2306519 162847.8125
+492.7322693 82874.984375
+493.2313538 26750.970703125
+495.2288818 53574.4375
+496.2308655 19100.955078125
+503.7200317 20196.861328125
+505.2105713 56434.17578125
+506.208313 35854.2734375
+512.2282715 40121.2421875
+512.7312012 19496.091796875
+520.7377319 19677.798828125
+521.239563 27650.556640625
+523.2227783 472032.15625
+524.2249146 131853.453125
+529.7483521 25958.4375
+558.7502441 30982.68359375
+571.7513428 110942.8125
+572.276123 338353.34375
+573.2821045 115681.984375
+574.2762451 20644.138671875
+576.2631836 54094.97265625
+576.7631226 41672.5859375
+577.7654419 32816.94921875
+580.2619629 88281.5703125
+580.7556152 2642611.5
+581.2567139 1857278.5
+581.758667 764589.4375
+582.2595825 153833.828125
+589.2686157 123663.1796875
+589.7663574 60499.74609375
+590.269165 29682.482421875
+598.2749023 69479.1875
+598.7762451 34054.04296875
+599.7752686 51667.2890625
+606.2628784 55464.125
+624.2684326 62053.6484375
+673.1970825 28069.19921875
+673.3248901 506412.0625
+674.3264771 206560.765625
+675.322937 37332.8359375
+693.2825928 21269.744140625
+802.3683472 92971.0703125
+803.3699341 34818.71484375
+873.4004517 107773.390625
+874.4041748 71648.0
+875.4052124 24259.234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.73.73.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=73"
+RTINSECONDS=7.7981176
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13441467 17393.822265625
+64.52616882 68806.734375
+64.53043365 39307.1484375
+64.58203888 45381.6953125
+64.58617401 30945.75
+64.63800049 13089.2021484375
+66.7321701 14561.95703125
+110.8548965 14108.373046875
+111.1783981 15977.2275390625
+120.3275452 14480.822265625
+145.6441498 13461.7119140625
+149.5707092 57871.37109375
+167.0913544 26481.7421875
+169.0602112 36241.5546875
+175.1177368 347044.4375
+176.1205292 23559.3515625
+177.0758514 96578.734375
+178.0600128 357297.96875
+178.3443604 97857.859375
+179.0638123 27590.958984375
+179.0923462 17221.33984375
+183.07547 27114.173828125
+186.0861511 127082.2109375
+194.1031952 41791.3125
+195.08638 4497779.0
+196.0890961 399502.90625
+197.0904541 19437.646484375
+200.1015472 31949.46484375
+201.0857086 18914.884765625
+204.2735291 14151.5693359375
+206.0911255 173460.0
+218.1026459 73199.3828125
+219.1035004 15432.5146484375
+222.0852814 23023.603515625
+240.0963287 23658.78515625
+243.0864716 18748.529296875
+246.0969086 612219.5625
+247.0999603 93207.40625
+257.1224976 97930.21875
+258.1231995 16554.068359375
+260.1125793 113642.2734375
+261.1183472 25396.193359375
+269.1253967 15574.486328125
+270.0975037 127275.796875
+278.1482849 39843.92578125
+283.1429443 42420.81640625
+287.1230469 158105.046875
+288.1073303 1601156.25
+289.1101379 240620.734375
+290.1143188 32444.7109375
+294.1174316 21344.013671875
+295.1490479 26283.505859375
+302.1304932 16094.982421875
+303.1427917 31131.60546875
+305.1339111 3301904.0
+306.1192627 1185048.25
+307.1214294 206115.328125
+311.1340637 47206.171875
+312.1169434 41001.16796875
+320.1331177 22725.796875
+321.1541748 332254.71875
+322.1563721 60793.78125
+323.1443481 1169808.375
+324.146637 207536.90625
+325.148407 29414.921875
+328.1609802 26642.017578125
+329.1424866 27678.58203125
+331.1461487 23816.2578125
+338.1420898 44354.890625
+338.180542 449822.96875
+339.1826477 65951.9296875
+349.1600342 28071.125
+351.1311035 19987.740234375
+359.1447449 57975.48046875
+366.1864624 144405.0
+367.1894531 29875.201171875
+369.1384583 31868.52734375
+376.1697998 131631.78125
+377.1540833 96758.1796875
+394.1808777 772149.25
+394.2389832 21452.482421875
+395.1831665 162363.546875
+412.188324 29010.97265625
+460.188446 28927.08984375
+468.2211304 60335.4765625
+477.2196045 18957.654296875
+485.2470398 227771.921875
+486.2489624 44878.890625
+488.1868591 57495.26171875
+492.2294617 152956.5
+492.7319336 99887.7578125
+493.2303772 40791.80859375
+495.2259521 46908.52734375
+503.7142639 18197.306640625
+505.2099915 61739.28515625
+506.2045593 58353.3515625
+512.223999 42843.84765625
+512.727417 29975.078125
+521.7299194 22644.330078125
+523.2221069 448667.8125
+524.2244263 148518.125
+525.2260742 20965.19921875
+529.7384644 22582.21875
+554.2730713 22117.615234375
+558.7484131 17977.669921875
+571.7503662 77275.234375
+572.2755737 307332.0
+573.2799683 72729.875
+576.2650146 39302.80859375
+576.7693481 29235.76953125
+577.2696533 23114.771484375
+580.2602539 69105.0546875
+580.7549438 2324508.5
+581.2562866 1604033.5
+581.3649902 20535.052734375
+581.7581787 534316.4375
+582.2589111 86506.765625
+589.2653809 74332.6796875
+589.7637329 35433.58984375
+598.2731323 46600.08984375
+598.7686157 23319.05859375
+599.7769165 110819.8828125
+624.2674561 53677.99609375
+625.2758789 22602.572265625
+655.3154297 20580.103515625
+673.3232422 397192.46875
+674.3272705 173267.84375
+675.3308105 32023.005859375
+693.2962036 19354.06640625
+802.3639526 99879.2578125
+803.3708496 47502.30859375
+873.3986816 108855.3125
+874.4025269 52423.7578125
+875.4188843 22939.216796875
+1001.470886 33559.1484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.74.74.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=74"
+RTINSECONDS=7.906006321
+PEPMASS=598.27001953125
+CHARGE=2+
+51.44093323 11081.19140625
+51.86790466 13462.7431640625
+52.47611618 13232.4052734375
+53.91496277 13461.59765625
+56.54130173 12056.6328125
+64.52619171 64130.79296875
+64.53044891 44788.15625
+64.58190918 42176.63671875
+64.58614349 36354.1640625
+64.63798523 18825.078125
+77.36384583 13317.4365234375
+82.05434418 18491.017578125
+91.59555817 12746.6201171875
+136.1319122 16592.265625
+145.3088684 15415.90625
+149.5650787 38766.85546875
+159.4646149 12932.609375
+167.091217 42937.0859375
+169.0592957 27173.458984375
+175.11763 315885.90625
+176.1208649 17517.7578125
+177.0758057 64090.984375
+178.0598755 354527.28125
+178.3344269 30643.46875
+178.3535004 53624.58984375
+179.0628967 22426.396484375
+179.0935364 18686.349609375
+182.0917358 16901.95703125
+183.075119 32361.681640625
+186.0861053 89376.34375
+194.102829 28265.88671875
+195.0862427 4156677.25
+195.1278687 19554.12109375
+196.0888672 411417.53125
+197.0905762 26627.98828125
+197.4833679 13811.6630859375
+200.1006622 38306.47265625
+201.0849762 20046.171875
+206.0909882 162933.890625
+215.0913391 22853.828125
+218.1014404 56220.27734375
+222.0860596 16068.068359375
+222.7860413 13694.607421875
+228.0916901 14798.599609375
+240.0954437 20350.171875
+243.0851746 23949.396484375
+244.1168365 16763.642578125
+246.096756 667374.75
+247.0998993 88418.7421875
+249.5567017 12179.1328125
+257.1228638 103304.5859375
+258.1251831 17212.068359375
+260.1120605 121916.984375
+261.1183167 21493.310546875
+270.0966492 149597.859375
+271.0970459 22837.94140625
+276.1351929 19217.732421875
+278.1499023 26666.37890625
+283.144104 43119.76171875
+287.1231995 150373.265625
+288.1071777 1635882.125
+289.1099854 242061.625
+290.1133728 20649.013671875
+294.1149597 16839.22265625
+295.149231 21955.138671875
+303.1414795 24268.669921875
+304.1282959 18399.564453125
+305.1337891 3226676.75
+306.1188354 1147683.25
+307.1210022 196609.09375
+308.1255188 17462.673828125
+311.134613 56917.50390625
+312.1159058 26891.55859375
+321.1538696 359115.625
+322.1561584 55742.1484375
+323.0983276 23375.31640625
+323.1441956 1075882.75
+324.1462097 183940.140625
+325.1545105 20240.875
+329.1423645 43704.9375
+338.1432495 46520.76171875
+338.1804504 386825.40625
+338.6469421 17417.953125
+339.1416016 16634.6015625
+339.1825562 79976.1953125
+347.1477661 23351.939453125
+349.1582336 22786.162109375
+359.144165 61060.06640625
+366.1858215 122465.734375
+369.1390381 38988.3203125
+376.1704712 115780.828125
+377.1553955 89999.7578125
+378.1586914 14624.8427734375
+386.1666565 31122.771484375
+394.1807251 749588.375
+394.2404175 28346.10546875
+395.1823425 157194.203125
+412.1882935 41208.14453125
+420.6818542 17709.19921875
+460.1905518 18235.9609375
+464.1735535 16803.14453125
+468.2192688 40228.515625
+474.7098083 15066.4140625
+477.2139893 16284.8310546875
+478.2035522 26331.880859375
+483.7224426 20396.853515625
+485.2473755 249457.515625
+486.2502441 56684.17578125
+488.1863708 43909.86328125
+492.2297668 158497.4375
+492.7305298 86914.6640625
+493.2298889 28474.130859375
+495.2281189 56429.32421875
+503.7162476 22349.861328125
+505.2124329 64930.99609375
+506.2045593 31214.130859375
+506.7310181 16876.302734375
+512.2259521 34332.015625
+512.732605 24787.3203125
+521.2312622 41141.48046875
+521.7310181 30139.80078125
+523.222229 486866.75
+523.3097534 31050.208984375
+524.2242432 105630.8828125
+525.2241211 25017.962890625
+529.7408447 23858.423828125
+541.2287598 17800.681640625
+555.2555542 17609.99609375
+571.7519531 82532.3984375
+572.2755737 349387.09375
+572.7471924 21907.37109375
+573.2789917 83601.6484375
+574.2857666 25407.30859375
+576.2609863 33118.58203125
+577.2644043 25691.685546875
+580.2610474 92279.625
+580.7549438 2368135.25
+581.2562256 1705226.125
+581.7579956 638092.75
+582.2589111 103667.609375
+589.2623901 46826.96875
+589.7642212 17935.9375
+598.272644 64317.49609375
+598.7744141 41366.7265625
+599.2788086 29185.908203125
+599.7772827 64281.5078125
+606.260437 44418.23046875
+624.2678833 52780.33984375
+625.272644 21857.509765625
+656.3081055 19974.5625
+673.3235474 444542.25
+674.326416 135100.0625
+675.322876 21852.650390625
+711.2949219 18393.744140625
+802.366272 72049.6015625
+803.3674316 32109.25
+873.4039917 82761.5703125
+874.402832 51708.6328125
+1001.452026 17438.439453125
+1059.482422 15243.873046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.75.75.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=75"
+RTINSECONDS=8.015090176
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13443375 16704.9609375
+58.13729477 14820.9521484375
+58.6914711 11581.9033203125
+62.80248642 14856.5029296875
+63.86264038 13697.4208984375
+64.52637482 66681.234375
+64.53048706 34868.75390625
+64.58204651 45196.18359375
+64.58617401 30697.47265625
+64.63801575 22136.11328125
+119.9473648 13877.294921875
+149.5690002 53948.02734375
+167.0916748 47531.703125
+169.0596466 37648.98828125
+171.5111847 15164.3759765625
+175.1178894 306013.75
+175.1338501 26930.333984375
+177.0762787 69538.4765625
+178.0600281 331913.71875
+178.0778503 14887.92578125
+178.3473663 100193.1328125
+179.0645447 25133.517578125
+182.0906982 29328.330078125
+183.073349 19453.046875
+186.0860443 112761.1328125
+187.0884094 18186.005859375
+194.102829 40704.6640625
+195.086441 4162273.5
+195.1282806 29486.0234375
+196.0892334 455808.46875
+197.0927887 24706.04296875
+200.1017303 24025.98046875
+206.0910645 180078.046875
+215.0898132 14385.4482421875
+218.1018677 64934.765625
+222.0856781 21082.373046875
+240.094574 27930.365234375
+244.1170807 21111.3828125
+246.0969696 666840.0625
+247.1002502 80096.5
+257.1224976 110644.9140625
+258.1245728 15719.5400390625
+260.1125488 131498.421875
+270.0965271 137599.859375
+271.1014709 18485.462890625
+278.1188354 19664.40625
+278.1489868 34367.14453125
+283.1425476 52929.41796875
+287.1234741 170715.234375
+288.1074219 1660341.125
+289.11026 225095.625
+290.1127625 21377.666015625
+292.0081482 14872.4296875
+294.115387 18732.884765625
+295.1467285 24580.1015625
+303.1420288 34202.08984375
+305.1340027 3273878.75
+306.1192017 1213309.625
+307.1210632 182639.546875
+308.1210022 23592.94140625
+311.1343994 54437.66796875
+312.1164856 30453.65625
+318.1445618 18581.609375
+321.1539917 354520.625
+322.1565857 64278.0546875
+323.0984192 24802.029296875
+323.1444702 1218444.875
+324.1468506 199889.328125
+325.1531982 15202.1259765625
+329.1454773 56677.30859375
+331.1496582 28535.87109375
+332.9920044 15582.9775390625
+338.1428223 46505.578125
+338.1805725 456956.3125
+338.6433716 21743.56640625
+339.1832886 68501.40625
+347.1509399 28971.623046875
+349.1626587 21963.322265625
+351.1327515 24401.283203125
+359.1455078 63810.50390625
+366.1867371 122078.6875
+369.1395569 24717.544921875
+376.1707153 125603.2421875
+377.1577148 75313.9765625
+378.1578064 18052.68359375
+386.1646118 18676.923828125
+394.1370239 17767.712890625
+394.1810913 733415.125
+395.1825256 144489.796875
+396.1832275 21881.634765625
+412.1875 29315.572265625
+420.6812439 18721.208984375
+460.188385 20416.67578125
+464.1694641 20274.533203125
+468.2208557 60382.8125
+469.2131042 17723.51953125
+478.2069397 24965.00390625
+484.2207336 18091.302734375
+485.2478943 214517.765625
+486.2502136 56883.87109375
+488.1858215 60372.6015625
+492.2294006 182773.1875
+492.7314758 96270.5078125
+493.2329407 28276.2578125
+495.2269287 57797.4921875
+496.2301941 15922.8720703125
+503.723175 19855.3125
+505.2117004 60117.56640625
+506.2081909 42118.79296875
+512.2270508 28534.30859375
+512.7286377 22502.029296875
+513.2281494 19191.498046875
+521.2304077 30638.919921875
+523.222229 486697.6875
+524.2246094 125355.2265625
+525.230896 26378.583984375
+554.2665405 18698.658203125
+571.7487793 61573.73828125
+572.2749634 296373.25
+572.7495117 28194.13671875
+573.2803955 97211.546875
+576.2650757 40903.40234375
+576.7632446 44235.859375
+577.2642212 29212.724609375
+577.7652588 20307.296875
+580.2622681 66889.6484375
+580.755127 2236507.25
+581.2563477 1569315.875
+581.7581177 653792.625
+582.2583008 117521.6328125
+589.2650757 57646.22265625
+598.2755737 50724.99609375
+598.7733154 40424.97265625
+599.2721558 33937.01171875
+599.7772827 89588.28125
+606.2595215 42381.48046875
+624.2682495 48441.36328125
+625.2680054 17808.345703125
+673.3233032 434427.1875
+674.3261719 155359.5625
+675.3240967 45677.53515625
+711.305603 24834.6171875
+802.3633423 87464.0546875
+803.3728027 33387.2734375
+873.4001465 98228.3203125
+874.4075317 41734.078125
+1001.457703 25194.7265625
+1047.534058 18621.576171875
+1173.921265 18169.267578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.76.76.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=76"
+RTINSECONDS=8.123661809
+PEPMASS=598.27001953125
+CHARGE=2+
+57.92940903 19112.56640625
+64.52618408 84458.375
+64.5304718 58377.59765625
+64.58203125 50960.55859375
+64.5860672 42073.828125
+64.63813019 28298.47265625
+64.64128113 21695.708984375
+95.52121735 19587.716796875
+103.9832535 18386.767578125
+131.5500336 18958.458984375
+149.5691071 75124.21875
+167.0910645 36775.5546875
+168.0960083 20915.98046875
+169.0590515 36696.21875
+175.1175995 327338.875
+177.0760498 65926.390625
+178.059906 365071.84375
+178.0770111 16708.626953125
+178.3426361 122904.109375
+179.0623474 27379.158203125
+182.0925598 29636.0703125
+183.0749054 32265.677734375
+186.0860138 113815.5
+186.9916077 18082.259765625
+194.1010895 29205.83203125
+195.0862732 4982061.5
+196.0892944 475760.40625
+197.0922852 21650.97265625
+200.1010284 32589.5234375
+201.0860901 25588.48046875
+205.0601196 24805.47265625
+206.0908203 172581.015625
+215.091568 27303.740234375
+218.1022491 65474.82421875
+232.1162262 26900.798828125
+240.094986 25667.25390625
+246.096817 688574.0
+247.0992432 62170.125
+257.1225281 103173.59375
+258.1243896 20102.01171875
+260.1128235 128984.5078125
+261.1172485 25273.98046875
+270.0967407 143984.921875
+276.1348572 22533.029296875
+278.1488953 32913.8671875
+283.1418152 38589.7109375
+287.12323 160666.203125
+288.1071777 1776253.5
+289.1102295 258652.6875
+290.1056213 21476.677734375
+293.1721802 23081.4765625
+295.1485291 25548.177734375
+303.1443176 24072.236328125
+305.1336365 3536182.75
+306.1188354 1251023.75
+307.1211548 243783.125
+308.1226501 24614.361328125
+311.1337891 52701.49609375
+312.1156006 33592.80859375
+320.1698914 23867.275390625
+321.1535645 320908.46875
+322.1562195 67223.7265625
+323.1440735 1242946.625
+324.1460571 207008.84375
+325.1441956 22840.2265625
+325.6888733 21552.44140625
+329.1439209 35695.78515625
+338.1418152 52652.8359375
+338.1800842 417693.625
+338.6450806 31589.927734375
+339.1816101 84168.46875
+349.1621094 26216.23046875
+351.1308289 18586.943359375
+358.1635742 25529.494140625
+359.1433105 66934.3359375
+366.1855469 187256.421875
+369.1396484 32127.599609375
+376.1699524 137534.765625
+377.1548767 94282.53125
+386.1653137 41750.3046875
+394.1805725 841685.4375
+395.1816406 166836.078125
+412.1869812 36458.0390625
+460.1898193 26810.46875
+468.2197876 68337.96875
+478.2027588 35583.79296875
+483.7185669 28683.818359375
+485.2469788 220786.359375
+486.2507935 78946.8984375
+488.1864014 55011.62109375
+492.2297058 196863.0625
+492.7307434 90030.9609375
+493.2332764 52588.953125
+495.2256165 57547.28515625
+503.7199707 33909.09765625
+505.2118225 43489.53515625
+506.2071228 51406.65234375
+512.2265625 55154.49609375
+512.7247314 36498.05859375
+521.2351074 29168.580078125
+521.7363281 47289.11328125
+523.2210693 525574.25
+524.2230225 145097.5
+555.2537231 32547.84375
+571.7490234 86417.2265625
+572.2745361 338458.78125
+573.2800903 125791.5859375
+576.260437 73144.0234375
+576.7669067 32714.65625
+577.2629395 42624.5703125
+577.7717896 33130.8359375
+580.2635498 99685.8046875
+580.7544556 3013440.25
+581.2557373 1973559.375
+581.7576904 735750.0
+582.258667 110000.078125
+589.2692871 146522.21875
+589.7653198 130487.125
+590.2687988 36455.74609375
+598.2730713 58834.30078125
+598.7747803 51484.9453125
+599.774231 69104.9765625
+606.2537842 52945.87109375
+624.2716064 48639.078125
+673.3231812 476108.625
+674.3253784 219213.28125
+675.3226929 34504.1015625
+711.2957764 53922.8203125
+802.362915 129104.765625
+803.3671265 45034.23046875
+858.3674927 20841.623046875
+873.399231 123494.1171875
+874.399353 51199.84765625
+1001.457214 25683.412109375
+1002.458801 30538.103515625
+1058.465576 22741.626953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.77.77.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=77"
+RTINSECONDS=8.228876048
+PEPMASS=598.27001953125
+CHARGE=2+
+55.68512344 12051.7216796875
+58.13450241 14842.30859375
+64.52622223 54743.55078125
+64.53064728 41742.5859375
+64.58204651 36299.30859375
+64.58617401 23425.9609375
+64.63813782 14627.494140625
+64.64147186 11738.5849609375
+69.45457458 12016.6201171875
+69.74942017 12233.822265625
+75.41823578 12819.6240234375
+82.05384827 16264.572265625
+83.36475372 14081.7158203125
+96.81416321 10757.078125
+120.8563614 12420.87109375
+121.1455536 13469.0087890625
+121.9787292 11687.970703125
+149.5735321 49121.90234375
+167.0918884 36854.7734375
+169.0592651 29495.81640625
+175.1177521 316074.09375
+175.1355133 12965.97265625
+176.1204071 15377.7998046875
+177.0756378 56930.84765625
+178.0599823 322911.34375
+178.0780792 23187.236328125
+178.3391571 61990.78515625
+179.0639038 27857.03125
+179.0918427 25783.603515625
+183.0754395 16752.056640625
+186.0860901 97493.84375
+190.0596161 17733.11328125
+190.1073761 22069.26171875
+194.1027985 49428.6953125
+195.0863953 4092915.75
+195.1280365 19980.662109375
+196.089386 403446.46875
+197.0917053 26112.77734375
+200.1022339 25923.455078125
+201.0858917 23267.091796875
+206.0911102 138670.875
+212.113678 22072.1171875
+215.091568 14975.3330078125
+218.1020966 47905.109375
+222.0856476 13481.3017578125
+235.1317139 12883.1337890625
+240.0953979 18102.61328125
+243.0860901 24707.67578125
+246.0969696 626657.5
+247.099823 72968.390625
+249.0964203 22520.591796875
+257.1227112 99350.421875
+258.1256409 20536.8046875
+260.1125793 105830.5703125
+261.1179199 13413.763671875
+270.0971375 138969.09375
+271.1010742 22602.041015625
+272.1132507 15068.4267578125
+276.1057129 16716.509765625
+277.1388245 18704.291015625
+278.1492615 28555.615234375
+283.1430969 43492.75
+287.1234436 154278.21875
+288.1073608 1619421.0
+289.1100769 242731.65625
+289.1438599 8847.8818359375
+290.1134644 30451.470703125
+294.1167908 20907.525390625
+295.1506958 19388.171875
+303.1434937 23843.2578125
+305.1339111 3087716.25
+305.2164307 18885.234375
+306.1191406 1088628.125
+307.1213989 157370.453125
+308.1216736 17711.759765625
+311.1334534 36218.82421875
+312.1176147 32587.8984375
+319.1513977 18168.65625
+321.1541138 321548.96875
+322.1576233 75094.09375
+323.0977783 19036.37890625
+323.1444092 1092424.75
+324.1462097 153979.59375
+329.1431885 44541.64453125
+331.1517029 16195.859375
+338.1425781 48238.9140625
+338.1805115 406916.84375
+338.6437683 21798.1875
+339.1832275 76668.8515625
+347.1483459 18818.728515625
+359.1446533 61235.3828125
+360.1445312 14267.1337890625
+366.1861572 126930.71875
+367.186615 23591.90234375
+369.138092 23519.544921875
+376.1706848 131676.5625
+377.1557007 72809.9453125
+386.1626892 24768.55078125
+389.1563416 15999.8896484375
+394.1807861 703850.5625
+395.1830139 126144.4453125
+396.1864014 17640.22265625
+401.0517273 13441.359375
+412.1873169 36529.90625
+420.6878357 16629.142578125
+423.1593323 15932.70703125
+460.1922913 21685.158203125
+468.2195129 58896.8046875
+483.7175598 14584.703125
+484.2158508 16673.546875
+485.2474365 201754.515625
+486.2485046 60810.90234375
+488.1854858 55723.1328125
+492.2287292 145187.875
+492.7306519 116927.109375
+493.2295532 38151.84375
+495.2253418 70071.0
+503.72052 29085.537109375
+504.2170715 20251.677734375
+505.2116699 51608.39453125
+506.2094727 52587.140625
+512.227356 29646.94140625
+512.7330322 19941.603515625
+521.2305298 27028.98046875
+521.7396851 31239.798828125
+522.2349854 20502.53125
+523.2219238 458205.125
+524.2246094 125520.984375
+525.2311401 35489.2578125
+530.244751 20717.9453125
+558.7469482 25689.408203125
+571.7498169 90761.3671875
+572.274353 316969.09375
+572.7516479 40546.9140625
+573.2800293 100887.0390625
+576.2613525 42265.2578125
+576.7643433 31663.232421875
+577.2678223 22930.626953125
+580.2626343 57729.6640625
+580.7548828 2207171.5
+581.2561646 1358857.5
+581.7579956 525129.0625
+582.2599487 106573.09375
+589.2680054 34348.56640625
+589.7660522 23027.88671875
+598.2738647 45644.015625
+598.7780762 29316.763671875
+599.2781982 40734.54296875
+599.7769775 97224.2890625
+606.2579956 37213.875
+624.2674561 55726.171875
+625.276062 32607.248046875
+655.317688 22528.26171875
+673.3234863 378828.6875
+674.3267212 150150.640625
+675.3302002 37613.078125
+711.3007812 14427.400390625
+802.3631592 82980.59375
+803.3631592 36516.03515625
+873.4003296 86023.9609375
+874.4035645 32282.6484375
+1001.455078 29278.853515625
+1127.294922 15892.3076171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.78.78.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=78"
+RTINSECONDS=8.339313697
+PEPMASS=598.27001953125
+CHARGE=2+
+57.63933182 15988.0146484375
+58.13438416 17897.71875
+64.52629089 69731.4453125
+64.53045654 47814.91015625
+64.58203125 56848.25
+64.5861969 32611.00390625
+64.63824463 21047.1875
+70.59101868 16999.28125
+74.81188202 23950.78125
+74.816185 26270.615234375
+82.05434418 20930.47265625
+93.70518494 16932.826171875
+102.0061493 14939.4658203125
+113.9423447 15289.5576171875
+124.0677414 16746.134765625
+149.55896 17497.4765625
+149.5711975 71370.234375
+167.0914307 30522.826171875
+169.0597382 25461.83203125
+175.1177826 313164.625
+176.1201935 22381.99609375
+177.075943 70622.078125
+178.059967 332380.1875
+178.077774 21130.037109375
+178.3373718 65291.19921875
+179.0642548 20121.720703125
+183.0765991 19150.4921875
+186.0861511 120621.75
+194.1028595 24587.775390625
+195.0863342 4724936.5
+196.0892334 501265.09375
+197.0913391 31726.921875
+198.4461517 17402.453125
+200.1012268 35625.45703125
+201.085434 29392.912109375
+206.0909119 208276.4375
+209.1013184 25118.9375
+213.085083 17910.001953125
+215.0917816 20083.439453125
+215.1306458 17362.24609375
+218.1026001 53295.66015625
+222.0864105 28339.1953125
+234.0970917 23648.583984375
+240.0937958 20573.484375
+242.0173187 16286.8740234375
+245.1213226 22525.16015625
+246.0968628 686687.0625
+246.1256866 37407.23046875
+247.0989227 85322.2421875
+257.1228333 106313.3203125
+260.1123047 123534.609375
+267.1104736 25354.951171875
+270.0966492 166872.65625
+278.150177 23075.41796875
+283.1435242 49338.5859375
+287.1231689 175514.0
+288.1072693 1729375.125
+289.1098938 261647.09375
+303.142334 33354.6015625
+305.1337891 3536247.5
+305.2157593 23760.828125
+306.0593872 21429.94140625
+306.1190796 1232816.25
+307.1206665 231738.9375
+308.120575 19440.966796875
+311.1352234 45144.0625
+312.1165466 38979.27734375
+321.1535645 380332.59375
+322.1567688 74958.390625
+323.1442566 1293447.5
+324.1461182 202298.75
+325.1504211 24123.248046875
+329.1439819 59998.4921875
+330.1434937 18083.04296875
+338.1418457 43477.11328125
+338.1803589 462937.40625
+339.183136 75717.1953125
+347.1468506 30757.35546875
+349.1590881 26715.255859375
+351.1325684 25907.830078125
+359.1434326 62568.640625
+366.1861267 135240.546875
+367.1895752 34682.86328125
+369.1389771 32532.021484375
+376.1705933 109617.4140625
+377.1583252 76890.875
+386.1692505 19124.599609375
+394.180542 831706.625
+394.2406616 27185.998046875
+395.181366 143669.5
+398.6781921 19943.810546875
+412.1907959 59860.37109375
+468.2221069 58484.52734375
+483.7231445 20525.25390625
+485.2468567 224636.234375
+486.2492371 51556.8359375
+488.1862488 59498.67578125
+489.192688 23037.376953125
+492.2286682 184805.734375
+492.7301331 104338.671875
+493.2255859 21508.501953125
+495.2258606 61894.67578125
+503.720459 39005.984375
+505.2107544 68333.2265625
+506.2085571 70033.3671875
+512.2283325 52454.78515625
+521.2374878 38019.60546875
+522.2281494 23496.0078125
+523.2216797 532184.8125
+524.2235107 135091.484375
+525.2318726 23626.28125
+555.2516479 23018.197265625
+558.746582 27919.6953125
+571.7477417 122043.1484375
+572.2747192 387367.8125
+573.2788696 125943.8203125
+574.2744141 23869.2890625
+576.2581787 48040.390625
+576.7620239 31543.349609375
+577.2627563 24693.154296875
+580.2619629 117550.7109375
+580.7545776 2861400.75
+581.2559814 2005773.125
+581.7576904 731399.25
+582.2580566 143775.8125
+589.2647705 100973.9921875
+589.7659302 88332.1328125
+598.2736206 76717.5546875
+598.7757568 35879.546875
+599.2811279 23864.701171875
+599.7735596 53668.609375
+606.2576294 33182.359375
+607.2438965 20419.86328125
+624.2697144 76981.1640625
+673.3234863 507160.03125
+674.3253784 187795.40625
+675.3294067 33475.640625
+693.2911987 28138.875
+711.2943726 35934.48046875
+802.3635864 118025.359375
+803.3604736 51677.91796875
+873.3994141 111539.9296875
+874.4012451 62415.3828125
+1002.472961 22272.291015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.79.79.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=79"
+RTINSECONDS=8.445671553
+PEPMASS=598.27001953125
+CHARGE=2+
+53.24465179 12312.23046875
+58.13433456 16640.919921875
+63.58835983 14087.6083984375
+64.52632141 62488.92578125
+64.53079224 49558.58203125
+64.58197784 49532.109375
+64.58615875 32508.966796875
+64.63809967 15908.19921875
+64.64135742 13511.642578125
+149.5621796 29376.513671875
+149.5756989 41719.53125
+167.0918579 32452.076171875
+169.0598755 36297.65625
+175.1178284 308739.21875
+175.1338348 26002.478515625
+177.0762482 63271.046875
+177.4854889 15556.091796875
+178.0600891 305681.96875
+178.3441162 90095.8671875
+179.0634613 25975.98828125
+179.0910797 14949.9072265625
+183.0762329 16956.853515625
+186.0862427 113737.6953125
+190.0600891 18626.263671875
+194.1028442 39204.1875
+194.8213196 15465.59765625
+195.0864716 4304073.5
+195.1279449 20142.4921875
+196.089325 417404.5625
+197.0919189 34027.26953125
+199.1169586 15488.2734375
+200.1009674 28713.943359375
+206.0912476 154029.15625
+215.0925293 17596.28515625
+218.1027069 51199.859375
+221.1001892 15547.3193359375
+234.0968781 22918.1328125
+240.0960388 22097.833984375
+243.0844879 32274.130859375
+244.1185303 23413.869140625
+246.0970306 706166.3125
+247.0997314 78085.8671875
+257.1225586 96862.671875
+260.1129456 118057.296875
+261.1200867 17053.32421875
+270.0971069 121512.4140625
+278.1497498 22403.98828125
+283.1427917 46242.42578125
+284.1203918 18228.849609375
+287.1235657 152937.109375
+288.1075439 1613684.125
+289.1103516 256054.421875
+290.1114807 21579.2421875
+294.1180115 20867.41796875
+303.1418152 25742.087890625
+304.1278992 24425.65625
+305.1341248 3222020.5
+306.1192627 1134796.0
+307.1218567 187116.640625
+308.1224365 15811.3095703125
+311.1345215 45705.6796875
+312.1161499 21629.91015625
+321.1541748 315724.53125
+322.1581421 57530.3359375
+323.0988464 22797.361328125
+323.1446228 1124318.25
+324.1468811 188636.421875
+325.1507874 22128.4453125
+328.1610413 20841.88671875
+329.1440125 55326.70703125
+338.1428223 40845.9140625
+338.1807556 403631.96875
+338.6449585 19264.431640625
+339.1837463 76690.0625
+347.1490784 30848.919921875
+349.1618042 19171.52734375
+351.1310425 24204.900390625
+359.1432495 76375.7890625
+366.1863708 138260.4375
+369.1386414 31900.4375
+376.1703491 131710.703125
+377.1570129 87288.484375
+386.1637878 27575.79296875
+394.1353149 14278.6484375
+394.1811218 719013.375
+395.1836243 156175.375
+412.18927 40433.83203125
+420.6824341 17357.25
+421.1842346 26127.958984375
+460.1890564 18809.9375
+467.2368774 14441.25390625
+468.2214966 54872.109375
+477.2140808 20104.61328125
+483.7203979 34809.2578125
+485.247467 236207.203125
+486.2498474 56552.28515625
+488.1863708 55208.74609375
+492.2296143 158370.671875
+492.7301025 99636.703125
+493.2294617 45448.95703125
+495.229126 45586.625
+496.2299805 27242.5234375
+497.2351074 18746.529296875
+503.2173767 22909.603515625
+505.2142944 59494.265625
+506.2084351 40593.5859375
+512.2266235 47400.47265625
+512.727356 32768.71484375
+513.2284546 17052.458984375
+521.2305908 46336.01953125
+523.2225952 473394.59375
+524.2247925 121824.1484375
+525.2301636 29655.94140625
+558.7429199 26289.6796875
+568.2557373 19074.904296875
+571.7485962 96740.5390625
+572.2756958 353631.03125
+572.7504883 33523.3671875
+573.2793579 119388.921875
+574.2808228 27027.291015625
+576.2639771 59138.859375
+576.7602539 23404.45703125
+580.2629395 80660.5234375
+580.7555542 2683480.5
+581.2567139 1765869.0
+581.7583008 585875.0
+582.2597656 135154.765625
+589.2682495 62028.3828125
+589.7647095 31571.322265625
+598.2739258 64714.5078125
+598.7714233 41803.6875
+599.2868042 28323.3046875
+599.7774658 110751.46875
+606.2557373 26896.81640625
+624.2694092 59309.83203125
+673.3249512 414905.40625
+674.3273315 193220.21875
+675.3244629 40150.5
+693.2891235 31280.244140625
+711.2960205 17494.912109375
+802.3653564 102179.1328125
+803.3638916 42732.52734375
+873.4039917 89476.921875
+874.4117432 43845.76171875
+1001.469788 19238.884765625
+1002.466125 19018.958984375
+1058.475098 29103.673828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.80.80.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=80"
+RTINSECONDS=8.554326177
+PEPMASS=598.27001953125
+CHARGE=2+
+54.29159546 12958.427734375
+63.58478546 18492.169921875
+64.52622986 75189.140625
+64.53062439 50595.546875
+64.58196259 49941.6875
+64.58612823 37481.69921875
+64.63787079 22012.48828125
+93.78681183 15530.7958984375
+134.9697876 15156.3232421875
+149.5760345 34739.87890625
+167.0912476 36042.86328125
+169.0594635 37722.6875
+175.11763 324991.1875
+176.1173096 17717.45703125
+177.0759277 91800.40625
+178.0597534 379535.3125
+178.0777893 23567.337890625
+178.3418274 99618.171875
+179.0634308 35299.390625
+179.0916138 28116.83984375
+182.0912628 18355.8671875
+183.0754547 22479.62109375
+186.0858612 117378.1484375
+194.1025085 59669.26171875
+195.0862732 4729115.0
+196.0889435 443285.96875
+197.0926361 30392.935546875
+200.1016388 31262.052734375
+206.0909271 167865.890625
+209.1074524 16247.4755859375
+215.0912476 26733.357421875
+218.1020966 64565.60546875
+243.0862579 34752.43359375
+246.0967407 674519.25
+247.099472 76641.53125
+249.10289 16535.984375
+257.1221619 80769.5625
+260.1122742 113814.984375
+261.1177368 22729.44140625
+262.1154175 20916.1640625
+270.0966492 138344.28125
+277.1362305 22473.490234375
+278.1498718 22559.251953125
+283.1438293 40840.6484375
+284.1199036 20015.138671875
+287.1227112 171014.640625
+288.1071777 1774900.125
+289.1096497 270949.4375
+290.1137085 28183.625
+295.1476135 26298.189453125
+303.1434021 29794.970703125
+305.1336365 3316642.0
+306.1187744 1194020.5
+307.1212158 185524.1875
+308.1239624 27667.537109375
+311.1358337 49543.5703125
+312.1159363 42968.43359375
+320.131897 19591.158203125
+321.1535339 361525.71875
+322.1564941 52477.37109375
+323.0986023 18022.13671875
+323.1440125 1223011.75
+324.1460571 198244.453125
+325.151886 19362.9296875
+329.1431274 43179.54296875
+331.1470337 30157.49609375
+338.1416321 49409.19140625
+338.1802368 438139.59375
+338.63974 15120.1064453125
+339.1826782 65270.984375
+341.1454468 23577.08984375
+347.1497803 34347.69140625
+359.1444092 79869.71875
+366.1854858 131635.21875
+367.189209 23511.46484375
+369.1400757 37148.12890625
+376.1697998 142733.046875
+377.1538391 74739.2890625
+378.155365 21674.732421875
+386.1649475 28712.77734375
+394.180481 761483.75
+394.2404785 25709.173828125
+395.181427 143489.25
+412.1887512 42764.96484375
+421.1869812 16567.134765625
+460.1903381 25305.763671875
+468.2212219 58825.3828125
+469.2062073 16075.70703125
+485.2464294 231993.21875
+486.2501526 56684.890625
+488.1835022 50268.8125
+492.2284546 185673.65625
+492.7303162 116606.34375
+493.2317505 39634.953125
+495.2288818 58700.84375
+505.2110901 61166.8828125
+506.2002563 70052.2734375
+512.2310181 23430.970703125
+512.7253418 19944.60546875
+513.2320557 20852.37890625
+513.5353394 19497.8984375
+520.7401123 16252.4599609375
+521.2327271 22536.43359375
+523.2211304 507529.28125
+524.2233276 149785.828125
+525.2320557 36728.80078125
+554.2662964 19084.7265625
+555.2490234 17543.505859375
+558.7487793 28254.34375
+567.7557983 18305.1171875
+571.7475586 94652.890625
+572.2740479 359180.75
+572.7504272 23686.50390625
+573.2807617 120786.6484375
+576.2573853 48688.6015625
+577.2612305 26671.11328125
+580.2613525 108798.578125
+580.7542114 2800252.75
+580.8388672 40107.46484375
+581.2553101 1710228.25
+581.3388062 21380.740234375
+581.3696289 32078.84765625
+581.7567749 619790.8125
+581.8646851 23910.98828125
+582.2579346 87594.609375
+589.265625 89348.5
+589.7637939 62149.5703125
+598.2700195 75922.75
+599.7779541 54631.48046875
+606.2609863 27498.8125
+624.2672729 64725.46875
+625.2727661 26407.630859375
+673.3225098 419470.25
+674.3255615 168412.078125
+675.3231201 31538.10546875
+802.3629761 120578.8046875
+803.3634033 37600.7109375
+873.3964844 82424.40625
+874.4031372 53065.6640625
+1001.444763 29840.59765625
+1002.460205 21178.921875
+1058.479492 24297.08984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.81.81.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=81"
+RTINSECONDS=8.661754225
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13438034 19960.630859375
+64.5262146 65870.875
+64.5304718 44455.0625
+64.58201599 43259.22265625
+64.58617401 32779.390625
+64.63795471 26099.93359375
+64.64138794 23413.63671875
+82.05400848 26015.0234375
+105.0220947 14290.8828125
+110.0750351 13882.8916015625
+149.571228 54933.5078125
+167.0924835 61319.703125
+169.0592499 38085.8671875
+174.7168579 14046.662109375
+175.1178741 326251.9375
+176.1205139 17494.19140625
+177.0759735 60351.33203125
+178.0599976 353978.65625
+178.0769653 15980.115234375
+178.3453827 103825.4375
+179.0632935 45369.04296875
+183.0750275 26169.875
+186.0861359 124551.4765625
+194.1023712 41051.40625
+195.0864258 4454014.5
+196.0892487 446473.5625
+197.0917206 20483.451171875
+200.100769 30423.759765625
+201.0853424 18185.697265625
+206.0911102 169951.359375
+215.0906067 27415.08203125
+217.1283875 21484.689453125
+218.1030121 53461.33984375
+240.0967102 27339.27734375
+243.0853119 24264.236328125
+244.1159363 22104.216796875
+246.0970612 662798.1875
+247.0999146 62213.609375
+257.122406 116046.015625
+260.1125793 93294.2265625
+270.097168 121974.890625
+283.144104 41539.7734375
+287.1237488 183962.859375
+288.1074829 1785315.125
+289.1105347 284241.375
+290.1139526 22731.201171875
+294.1157227 20724.22265625
+295.1493225 23057.736328125
+303.1428528 36659.32421875
+305.1340332 3501580.5
+306.1192932 1151853.0
+307.1213989 196945.6875
+308.1239319 23784.0546875
+311.1342468 53147.39453125
+312.1173401 45110.5234375
+321.1542664 344120.03125
+322.1574707 63454.62109375
+323.1445007 1264161.25
+324.1470642 208721.671875
+325.1490173 21815.63671875
+329.1443481 60445.01953125
+331.1482849 19490.1484375
+338.1422729 58760.59765625
+338.1805725 451921.6875
+339.1833496 96881.671875
+341.1436768 17383.859375
+347.1488342 36716.71875
+349.1607971 25669.169921875
+359.1449585 75801.96875
+364.8485413 18005.955078125
+366.186615 134275.78125
+367.1908264 27877.349609375
+376.1706543 128892.515625
+377.1550293 116576.4765625
+386.1622925 33751.75390625
+394.1208496 17223.89453125
+394.1811218 741583.375
+394.2400208 35972.44140625
+395.1825867 153592.046875
+396.1859131 25783.87109375
+412.1868896 43828.53125
+420.6856079 28054.890625
+460.1891785 24315.55859375
+468.2209473 70675.84375
+469.2227173 19150.44140625
+478.2042236 22004.568359375
+485.2483215 207736.5
+486.250946 66732.640625
+488.1874695 51305.265625
+489.1885071 21520.134765625
+492.2292786 185459.34375
+492.7305298 120443.5234375
+495.2267151 71366.4140625
+503.7145691 31134.255859375
+505.2120972 55640.93359375
+506.2049255 55156.109375
+512.2289429 46157.19140625
+512.7249146 35443.99609375
+513.2262573 20554.125
+521.2299805 30535.697265625
+521.7373657 23856.666015625
+523.2224731 520927.78125
+524.2244263 143629.375
+525.2285767 36266.8984375
+550.2366333 22144.43359375
+554.2711792 24397.77734375
+555.2590942 26401.6484375
+558.746521 21073.111328125
+571.7497559 81743.3125
+572.2744751 325143.6875
+572.7536621 19880.13671875
+573.2817383 114193.9140625
+574.2749023 17877.150390625
+576.2584839 38790.23046875
+576.762207 40819.19921875
+577.2626343 23591.861328125
+580.2640381 129471.6484375
+580.7553711 2702958.5
+581.2565918 1828410.0
+581.6787109 16545.64453125
+581.758728 704546.3125
+581.8653564 26984.533203125
+582.2598877 105487.3671875
+589.2689819 51720.76953125
+589.7651978 49016.875
+598.2732544 53373.84375
+598.7745972 42722.9921875
+599.2747803 18154.744140625
+599.7783813 97729.15625
+606.258667 40952.02734375
+624.2679443 62642.4140625
+656.3121948 20333.416015625
+673.3248291 471692.0625
+674.3267212 156132.171875
+675.3352051 36641.04296875
+784.3499756 18479.66796875
+802.3653564 110566.6640625
+803.3648682 32754.734375
+873.4006348 99475.9921875
+874.4031982 42753.49609375
+1006.812256 17559.412109375
+1058.470703 17441.16796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.82.82.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=82"
+RTINSECONDS=8.769440097
+PEPMASS=598.27001953125
+CHARGE=2+
+53.40211105 14987.552734375
+58.17566299 14245.1533203125
+64.52623749 65772.4453125
+64.53044128 44614.24609375
+64.58198547 44200.25
+64.58621216 33316.765625
+64.63808441 16694.38671875
+82.05425262 18011.748046875
+89.01080322 14108.48828125
+90.99797821 17204.79296875
+113.4531784 13476.431640625
+127.2304382 17216.52734375
+141.8265381 14623.4521484375
+149.5723114 59555.80859375
+167.09198 44059.76171875
+169.0601959 43116.8125
+175.1177521 308788.0
+176.1211395 28258.72265625
+177.0759277 67032.9296875
+178.0599365 342057.65625
+178.0779877 22961.8515625
+178.3372803 72066.765625
+178.3564148 34422.0859375
+179.0640869 36228.87890625
+183.0754089 35447.07421875
+186.0860901 106623.6015625
+187.0871582 14889.728515625
+187.1759033 16218.298828125
+194.1033325 22351.12890625
+195.0862579 4545864.5
+196.0891113 447509.25
+197.0914612 31992.869140625
+200.1009064 23002.12109375
+201.0853729 22723.5078125
+206.0908051 174537.375
+218.1023102 81781.2890625
+243.0857849 22715.22265625
+246.0967865 664006.6875
+247.0999908 85449.265625
+249.0960999 17761.734375
+257.1223145 126388.7421875
+258.6987915 16994.333984375
+260.1122437 122235.75
+261.1182861 26268.521484375
+270.0966187 129365.515625
+283.1438904 40189.0390625
+287.1232605 157307.5
+288.1071167 1652832.125
+289.1093445 241649.015625
+290.1129456 20933.6171875
+295.1484375 25617.408203125
+302.1286316 23411.953125
+303.1430664 37492.09375
+304.1300659 21451.224609375
+305.1335754 3279232.75
+306.1186523 1254424.625
+307.1210632 220290.296875
+308.1218567 31859.51171875
+311.1346436 62445.83984375
+312.1175842 43688.12109375
+321.153656 352135.25
+322.1558838 65359.02734375
+323.0981445 20293.451171875
+323.1439819 1147340.5
+324.1463013 212453.46875
+329.1431885 55630.2578125
+338.1427612 42334.22265625
+338.1801453 460851.03125
+338.6437683 24852.232421875
+339.1827087 93625.4453125
+341.1400452 20398.630859375
+347.1467285 32271.658203125
+349.1621704 30732.990234375
+359.144043 66963.6484375
+366.1864319 114489.46875
+367.1869812 34363.5390625
+368.1541138 28988.138671875
+369.1383972 35748.375
+376.1694946 118895.28125
+377.1551819 74392.265625
+394.1203613 25653.181640625
+394.1802979 736875.375
+395.1812439 137414.46875
+396.1846313 25193.3828125
+412.1875 30955.8125
+413.160614 15908.091796875
+456.6429443 17014.60546875
+460.1884766 25952.009765625
+468.2194519 63110.640625
+469.2291565 19289.099609375
+483.2284241 23074.453125
+485.24646 219434.046875
+486.2506409 57453.5546875
+488.1855469 56737.05078125
+489.1778259 18884.509765625
+492.2288513 169805.15625
+492.7296143 96543.9765625
+493.2316589 48754.64453125
+495.2243042 75365.46875
+496.2288513 18320.140625
+505.2108765 59187.7578125
+506.2030945 51722.30859375
+507.1960754 26605.171875
+512.223938 64195.234375
+512.7268066 42415.2578125
+521.2355347 28456.41796875
+521.7294312 35936.046875
+522.2369385 21002.228515625
+523.2212524 430585.125
+524.2246094 118870.9921875
+525.2372437 27675.25
+571.7507935 83675.3203125
+572.2747803 343004.71875
+573.2788086 89737.75
+574.274292 21352.68359375
+576.2591553 54545.05078125
+576.7589722 23543.591796875
+580.2581787 101234.046875
+580.7541504 2453517.0
+581.2554932 1752758.625
+581.336792 31279.732421875
+581.7567139 635696.75
+582.2584839 106744.125
+589.2659912 60859.7890625
+589.7663574 35950.88671875
+598.2677612 57185.734375
+598.7723999 34405.7109375
+599.7764893 76254.890625
+606.2557373 46248.74609375
+624.2640991 46136.828125
+655.3118896 21867.345703125
+673.3223267 463372.25
+674.3237915 174830.34375
+675.3283691 29958.751953125
+693.2918091 29359.46875
+711.2938232 18695.583984375
+802.3637695 99899.90625
+803.3634644 24641.759765625
+873.4002686 112644.96875
+874.4013672 45643.11328125
+1001.46344 38075.640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.83.83.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=83"
+RTINSECONDS=8.876725664
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52614594 83330.53125
+64.53066254 52206.86328125
+64.58195496 57326.734375
+64.58615875 31929.951171875
+64.63845062 17474.775390625
+64.64154053 15368.5498046875
+74.81196594 18914.43359375
+85.56604004 14680.3251953125
+130.4761505 16209.55859375
+149.5752411 28735.552734375
+165.9716644 14854.7939453125
+167.0911255 42936.1484375
+169.0599823 24117.08203125
+175.1177216 304204.53125
+177.0756836 70404.1796875
+178.0436401 27171.869140625
+178.059845 360760.75
+178.3347473 48120.12890625
+178.3540192 54702.21484375
+179.0914307 19961.376953125
+182.0907898 24030.537109375
+186.0855865 98620.84375
+190.0137329 13913.6396484375
+194.1027069 42725.72265625
+195.0862122 4549516.5
+195.1278076 34497.02734375
+196.0890045 421668.125
+197.0918427 17278.30859375
+200.1021729 20472.076171875
+201.0853119 21981.607421875
+206.0909119 180250.921875
+209.1028595 17388.64453125
+213.0857239 15814.2744140625
+217.1282043 17519.91015625
+218.1020966 73094.4375
+222.0849457 16121.2568359375
+234.0989838 19714.724609375
+239.1152802 17989.3046875
+240.0951233 25043.59765625
+243.0865936 18383.916015625
+244.1188965 19066.96875
+246.0966644 653280.5
+246.1255493 35526.015625
+247.099472 87884.71875
+248.1101227 17303.017578125
+249.0954742 22073.833984375
+257.1222534 121087.7890625
+260.1124878 112376.8125
+261.1191101 17029.05859375
+270.0966187 135546.453125
+271.1026001 16942.90234375
+276.1071777 15828.6669921875
+278.1196594 27356.09765625
+278.1500549 28278.1875
+283.1419678 41203.98828125
+287.1231384 135938.34375
+288.1069946 1733405.375
+289.1099548 231482.828125
+290.1162415 25851.23828125
+294.1174316 18488.43359375
+295.1495361 29934.529296875
+303.1416016 29642.56640625
+305.1334534 3347118.25
+306.1188965 1114746.875
+307.1205139 212189.65625
+308.1223145 18095.3125
+311.1340942 46553.11328125
+312.1181335 48436.23046875
+321.1533813 350739.6875
+322.1570435 47776.4296875
+323.1439819 1142538.125
+323.2076721 24012.353515625
+324.1460876 187917.734375
+325.1497803 23953.8515625
+329.1436157 61767.59375
+337.1601257 15927.49609375
+338.1452026 36529.73828125
+338.1796875 398189.59375
+338.6434937 19226.2578125
+339.1818237 70520.203125
+341.1487732 19935.896484375
+347.1485901 24290.3046875
+349.1589966 34977.7421875
+351.1292725 17356.904296875
+359.1423035 63525.90234375
+366.1860046 140683.828125
+367.1833496 25549.91796875
+369.1386414 34657.9296875
+376.1699829 122452.875
+377.1569824 85036.578125
+386.1660767 43680.453125
+394.1802063 834829.0
+395.1811829 150274.15625
+412.1843567 49416.1171875
+420.6811829 27185.193359375
+450.2167358 17540.37890625
+468.2175598 47028.58984375
+469.2124023 19413.970703125
+477.2177734 18096.736328125
+485.2464905 242272.21875
+486.2477112 62445.12890625
+488.1864319 49174.640625
+492.2290344 138897.890625
+492.7295532 87372.8125
+493.2309265 21173.86328125
+495.2244263 56376.734375
+501.7216797 16704.36328125
+503.7200623 18526.904296875
+505.2106628 64571.84375
+506.2106628 51827.39453125
+507.2049255 17190.384765625
+512.223938 36566.4765625
+512.727356 26867.1796875
+520.7443848 20854.8671875
+521.2337646 28894.87890625
+523.2208862 454686.6875
+524.2234497 143011.640625
+525.2300415 19244.20703125
+558.7449951 38957.4453125
+559.2452393 26750.208984375
+571.7506714 82523.09375
+572.274353 338175.09375
+572.7541504 20068.58984375
+573.2772217 100427.7265625
+576.2592163 74079.7265625
+577.2659302 29232.7734375
+580.2613525 113163.765625
+580.7538452 2734032.0
+580.8394775 37234.82421875
+581.2550659 1889172.25
+581.3378906 23880.75
+581.3690796 26060.599609375
+581.756897 635576.5
+582.2585449 147131.515625
+583.2747803 19922.705078125
+589.2661133 86734.0625
+589.7642822 48249.38671875
+598.2719116 79903.1171875
+598.7808228 39563.3125
+599.2756958 36948.68359375
+599.7766113 77311.703125
+624.2683105 41222.82421875
+629.2887573 18672.123046875
+655.3162842 18019.12109375
+673.3227539 469845.3125
+674.3258667 184487.625
+675.3267822 40159.50390625
+693.2848511 34913.73828125
+711.2857666 25162.7265625
+802.3622437 93906.7421875
+803.3660278 45639.390625
+804.3775024 25137.939453125
+873.3967285 121722.6484375
+874.4006958 51519.1875
+1001.461487 24389.328125
+1058.466309 27735.3515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.84.84.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=84"
+RTINSECONDS=8.984245409
+PEPMASS=598.27001953125
+CHARGE=2+
+50.36233139 11989.2333984375
+51.81813812 14612.9482421875
+58.13442612 19221.8203125
+61.80557251 10876.6552734375
+61.95387268 11537.0625
+64.52620697 59486.86328125
+64.5304718 38395.19921875
+64.58203125 44472.24609375
+64.58615875 27306.990234375
+64.63832092 21665.552734375
+64.64167786 14511.9228515625
+65.02342987 12150.5322265625
+71.4567337 13556.0234375
+149.5655975 39816.74609375
+167.0917206 47996.32421875
+169.0596619 36483.80859375
+175.1178284 307134.8125
+177.0756989 70670.4140625
+178.0600433 343991.78125
+178.3346863 40584.42578125
+178.3542786 52710.5390625
+179.0634003 23460.953125
+179.0916595 28171.916015625
+182.0918121 17558.447265625
+183.0749207 21873.87890625
+186.0862579 117310.296875
+194.1026154 30643.71875
+195.0864563 4103542.0
+196.0893555 414281.9375
+197.0909882 27481.509765625
+200.103241 20573.748046875
+206.0911865 165799.921875
+207.0940094 21052.73828125
+215.0902405 20141.556640625
+218.1030426 47372.87890625
+233.1256866 16868.11328125
+234.0974579 23041.771484375
+239.1122894 17522.94140625
+240.0974121 31766.595703125
+246.0745697 10599.5986328125
+246.0970459 688814.75
+247.1000671 87184.2421875
+252.0951996 18333.052734375
+257.1228943 91623.8515625
+258.1231995 17956.951171875
+260.1125793 116072.203125
+261.1115723 14457.7353515625
+270.0971069 126819.1484375
+271.0998535 17098.76171875
+276.2892456 12119.18359375
+277.1368103 22206.3671875
+278.1179199 17274.447265625
+278.1490173 30359.095703125
+283.143158 51157.01171875
+287.1235962 139282.875
+288.0777283 20966.755859375
+288.1075134 1667680.25
+289.11026 274092.875
+290.1121826 15515.22265625
+294.1158447 17589.830078125
+295.149292 18382.728515625
+303.1427917 26806.427734375
+305.1340027 3236708.0
+306.1190796 1222286.125
+307.1213379 194239.21875
+308.1221313 21164.21875
+311.1353149 52800.4921875
+312.1175842 38363.69921875
+320.133728 21431.98828125
+321.1541443 368035.0
+322.1568909 75433.5078125
+323.0985413 20357.20703125
+323.1445618 1180475.375
+324.1470642 188819.3125
+329.1446533 43497.2421875
+331.150116 17748.654296875
+338.1418152 51156.890625
+338.1808472 410646.875
+339.1831665 74257.625
+340.1862488 17349.64453125
+349.1574402 20848.029296875
+351.1300049 17440.125
+359.1442566 74423.9140625
+366.1867676 133736.109375
+367.1877136 21225.08984375
+369.1396179 38924.39453125
+376.1700439 148923.34375
+377.1574707 83180.9140625
+378.1531677 25903.09375
+386.163208 28037.3359375
+394.1810303 756778.6875
+394.2409973 20909.70703125
+395.1828613 142929.71875
+407.1717224 14443.2138671875
+411.682312 21483.064453125
+412.187561 36998.55078125
+413.1610107 18475.9453125
+420.6820679 25399.490234375
+460.1886597 34455.234375
+468.2195435 71280.28125
+469.2142944 21202.71875
+478.2000427 19491.609375
+483.7198486 30669.4765625
+485.2469177 225589.203125
+486.2495422 71407.9609375
+488.1878662 56889.41796875
+489.1870728 15057.2861328125
+492.229126 151596.75
+492.7307129 114292.671875
+493.2363892 28162.08203125
+495.2266235 56048.8984375
+503.7138062 18323.42578125
+505.2110901 69063.421875
+506.2087402 24300.76953125
+512.227417 39314.953125
+512.7280884 36961.43359375
+521.2340698 17131.056640625
+523.2221069 480320.3125
+524.2241821 127678.515625
+525.2264404 25260.64453125
+555.2515869 26614.556640625
+558.7457886 18089.9609375
+571.7513428 88653.6015625
+572.2752075 348122.21875
+572.7539673 22987.787109375
+573.2803345 96969.9140625
+576.257019 41208.76171875
+576.7596436 27850.91796875
+577.2615967 19528.404296875
+580.2633667 74093.0859375
+580.755127 2285543.0
+581.2562866 1494141.125
+581.3649902 16765.6484375
+581.6691895 13637.166015625
+581.7583618 563602.0
+582.2580566 93065.34375
+589.2692871 47129.8515625
+589.7651367 23423.78125
+598.2732544 54489.875
+598.7759399 42808.6484375
+599.2775269 38716.19140625
+599.7774658 98733.578125
+606.2578125 35419.30078125
+607.2553101 18189.54296875
+624.2658691 46533.6875
+625.2753906 23576.53515625
+656.3029175 16123.6884765625
+673.324585 336027.125
+674.3273315 151917.953125
+675.3353882 36229.20703125
+693.2985229 17532.7421875
+711.2835083 18156.146484375
+802.3637695 90873.7265625
+803.3605347 20899.10546875
+804.3815918 16929.583984375
+873.4016113 109890.90625
+874.4048462 39936.2109375
+1001.45813 30664.23046875
+1002.466431 19215.12890625
+1058.508789 15225.369140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.85.85.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=85"
+RTINSECONDS=9.09388752
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52613831 76889.3671875
+64.53063202 61791.54296875
+64.58197784 54023.93359375
+64.58615875 34655.08203125
+64.638237 22564.541015625
+64.64147186 21901.552734375
+72.84049225 16000.23046875
+99.86894226 17634.259765625
+149.571579 62373.78125
+159.7565002 20501.17578125
+167.0914459 33357.6171875
+169.0601349 31627.900390625
+175.1176147 360794.25
+176.1197815 22298.662109375
+177.075531 53850.74609375
+178.0598907 369025.6875
+178.3450165 117268.0
+179.0632477 29094.80859375
+182.0909271 20075.7578125
+183.0753021 30060.458984375
+186.0858765 139332.265625
+190.1065826 18686.84765625
+194.1028748 42341.45703125
+195.0862732 4761975.0
+196.0891571 466687.0625
+197.0917053 29721.029296875
+200.1019287 37697.984375
+206.0908051 172954.796875
+218.1025848 62547.98046875
+239.1105499 20570.171875
+240.095932 22363.21484375
+243.0860443 23261.7265625
+246.0967865 704369.4375
+247.0991211 67806.6171875
+249.0965576 27924.791015625
+257.122467 129080.890625
+260.1122437 157762.0
+270.0963135 128544.0234375
+278.1500854 30537.15625
+283.1445007 40264.4140625
+287.1231384 169064.8125
+288.1071167 1715620.25
+289.1096802 238084.203125
+290.1141968 24825.8671875
+294.1165161 20896.57421875
+295.1499634 32245.0703125
+303.1419983 33008.8203125
+305.1336365 3606033.0
+306.118927 1297707.75
+307.1211853 225904.5625
+311.1343994 67807.1875
+312.1183167 41406.3671875
+321.153717 378338.03125
+322.1569824 65255.01953125
+323.0994873 24745.0390625
+323.1442566 1253525.375
+324.1460266 199269.03125
+325.1545105 23886.390625
+329.1422729 50372.24609375
+338.1415405 55175.23046875
+338.1802368 450009.875
+338.6436768 25745.955078125
+339.1827698 87514.34375
+346.1708069 29865.8203125
+347.1488342 30481.345703125
+349.157959 26281.5390625
+359.1442261 67098.8046875
+366.1852112 144659.765625
+367.1890259 24886.216796875
+369.137085 24512.642578125
+376.1694336 146820.90625
+377.1563416 96110.953125
+386.1636047 28035.048828125
+394.1804199 848066.1875
+395.1824951 182818.578125
+412.190979 21647.2734375
+420.682373 25072.869140625
+434.1708069 19415.779296875
+439.8269348 18506.580078125
+460.1867676 22498.087890625
+468.2210999 55934.71484375
+469.2189331 20967.212890625
+477.2175903 36094.515625
+482.1916199 20672.59375
+484.2162476 24822.505859375
+485.2466736 256139.75
+486.2507324 74283.53125
+488.1858826 36492.1328125
+492.2290344 188081.375
+492.7285767 109455.75
+493.2286377 80345.75
+495.2266846 61087.63671875
+496.2260437 20890.34375
+503.7206421 41968.06640625
+505.2117615 65481.12890625
+506.203949 52517.1640625
+512.2258911 50748.93359375
+512.7310791 24307.8203125
+521.7299805 28726.548828125
+523.2211914 594117.0
+524.2236328 146257.40625
+525.2373657 33309.0703125
+529.7459717 21466.83203125
+554.2662354 22379.736328125
+558.7454224 24831.900390625
+567.7489624 23056.91015625
+571.7490845 87981.515625
+572.2752075 386703.125
+573.2774048 96917.1796875
+576.2641602 45893.96484375
+576.7600098 46384.91796875
+577.2661133 27678.962890625
+580.2619629 121770.5390625
+580.7543335 2923838.75
+581.2557373 1974973.0
+581.756958 760896.5
+582.2581787 185435.828125
+589.2671509 123627.8125
+589.7648926 53155.77734375
+598.2730103 68682.640625
+598.7778931 25933.90234375
+599.7772827 66085.8828125
+606.2578125 39031.11328125
+624.2692261 69545.5234375
+655.3182373 21275.083984375
+673.322937 490809.09375
+674.3256226 164618.921875
+693.2919312 30475.453125
+802.3632202 101484.265625
+803.3599854 47857.84375
+873.3990479 123874.5625
+874.4006348 39501.7109375
+1001.458069 28861.19921875
+1058.487793 33300.46484375
+1059.473755 20875.744140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.86.86.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=86"
+RTINSECONDS=9.199855953
+PEPMASS=598.27001953125
+CHARGE=2+
+53.18577194 13373.048828125
+58.13422394 19143.587890625
+64.52624512 66312.0
+64.53063965 51034.6484375
+64.58194733 50630.38671875
+64.58613586 31174.697265625
+64.63834381 16861.240234375
+74.81629944 13222.3994140625
+82.05444336 12167.1416015625
+86.67445374 13380.841796875
+99.9745636 14568.1162109375
+149.5617065 18423.783203125
+149.573822 48616.2109375
+167.0922546 48011.62890625
+169.0600739 34429.51171875
+175.1177979 300635.9375
+177.0761261 53037.234375
+178.0600281 331071.3125
+178.0758362 13006.2978515625
+178.3515167 64235.85546875
+179.0639191 28288.40234375
+179.0920105 27479.892578125
+182.0918274 24364.078125
+183.0757294 31558.91015625
+186.086441 99553.296875
+194.1030884 21959.677734375
+195.0864105 4234261.5
+196.0891266 408229.46875
+197.0919037 32341.072265625
+200.1022186 35069.92578125
+201.0854187 32099.9375
+206.0910034 147428.65625
+207.094162 21136.341796875
+218.1025543 52243.5703125
+228.0863953 16566.009765625
+233.1248779 17397.001953125
+240.0951233 20817.037109375
+243.0869446 21067.876953125
+246.0729065 9861.9306640625
+246.0970306 642015.6875
+247.0997009 85753.9296875
+257.1230469 104498.359375
+260.1126709 117304.375
+270.0966187 150640.3125
+271.1047974 19931.44921875
+274.9186401 12686.3955078125
+277.1388245 22173.15625
+278.1485901 25620.205078125
+279.2405701 15003.2578125
+283.1445312 30076.71875
+287.1235657 171406.609375
+288.1073914 1734820.5
+289.1100464 215486.484375
+290.1142273 26978.498046875
+294.1181641 17931.119140625
+295.1492004 31521.12890625
+303.1421814 29828.37109375
+305.1340027 3232733.75
+306.1191711 1136660.0
+307.1212769 193412.359375
+308.1222534 17287.677734375
+311.1341553 56812.9140625
+312.1174927 42749.44921875
+313.1211548 15808.5078125
+321.1542053 388173.28125
+322.1564941 65056.25
+323.1445007 1059461.625
+324.1466675 181040.4375
+329.1441956 51135.05859375
+331.1485596 19820.978515625
+338.1427307 48998.421875
+338.1806335 411949.84375
+338.6441956 26073.1875
+339.1828003 105884.1171875
+346.1687622 15525.5068359375
+347.1508789 32148.4296875
+349.1619873 30784.236328125
+358.1656799 24206.52734375
+359.1452332 55423.30078125
+366.186615 127773.671875
+367.1899414 20516.416015625
+369.139801 47672.5546875
+370.1352539 15400.1796875
+376.171051 131505.4375
+377.1557617 81373.0390625
+386.1643677 24563.171875
+394.1809998 716418.8125
+395.1821594 129956.2421875
+396.1856079 19623.6484375
+412.1868896 25689.591796875
+420.6827698 15691.912109375
+460.19104 25183.380859375
+468.2202759 57464.82421875
+477.2191467 17345.1796875
+485.2475281 227888.015625
+486.2484436 65831.578125
+488.1850891 64430.90625
+492.2294617 142764.1875
+492.72995 106638.25
+493.2250671 19548.501953125
+495.2281799 56800.25
+503.7190247 19276.919921875
+505.2138062 59684.25
+506.2094421 48019.0
+512.225647 56714.5390625
+512.7304688 17811.529296875
+521.2332153 26093.56640625
+523.22229 471890.625
+524.2246094 128085.4296875
+525.2310181 39088.0859375
+529.7441406 16912.353515625
+554.2632446 15445.7509765625
+555.2456665 18944.51171875
+558.2556763 17771.056640625
+558.7445679 17671.83984375
+571.7503052 62424.65234375
+572.2746582 355447.96875
+572.7562256 22590.390625
+573.28125 101591.875
+575.7537842 14986.529296875
+576.2619019 56722.64453125
+576.7636719 29829.935546875
+577.2680664 26240.154296875
+580.2626343 93802.6953125
+580.755188 2488656.0
+581.2564697 1788962.875
+581.7582397 617517.875
+582.1567993 19835.048828125
+582.2592773 121896.3046875
+589.2677002 49954.73046875
+589.7680664 33425.1171875
+598.272583 56510.83984375
+598.7767334 40622.85546875
+599.2788086 35396.62890625
+599.7781982 101433.28125
+606.2635498 34090.9375
+624.2697144 49361.5
+625.2664795 19606.912109375
+655.3168945 21668.5078125
+673.324585 478921.625
+674.3270874 178775.0625
+675.3344727 35902.984375
+711.302063 23975.138671875
+802.3662109 84767.0078125
+803.3665771 42687.12109375
+804.3658447 24727.552734375
+873.4016724 101409.03125
+874.4052734 43226.9921875
+1001.457886 26776.470703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.87.87.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=87"
+RTINSECONDS=9.308740129
+PEPMASS=598.27001953125
+CHARGE=2+
+56.85219193 11678.4873046875
+64.52632141 57007.39453125
+64.53074646 43136.359375
+64.58197784 38428.390625
+64.58614349 30848.1484375
+64.63815308 14319.4580078125
+69.53473663 15796.7958984375
+77.37745667 12009.5791015625
+100.6180344 12507.6474609375
+149.5683289 48337.91015625
+167.0916748 46825.9921875
+169.0596313 46822.75390625
+175.1179199 271123.3125
+177.0759888 71166.8828125
+178.0600128 300084.25
+178.0767517 11010.20703125
+178.3429413 80076.296875
+179.0635529 28270.421875
+182.0912628 13667.970703125
+183.0751953 19460.685546875
+186.0864563 107768.3046875
+190.0596313 17666.06640625
+194.1020508 46512.43359375
+195.086441 4085028.75
+195.1281738 18786.43359375
+196.089386 387486.5625
+197.0904694 26661.337890625
+200.1029358 23993.373046875
+201.0865631 18149.951171875
+206.0912781 159842.84375
+209.1018219 16058.9833984375
+213.0847473 18057.984375
+215.091507 19296.56640625
+218.1022491 55215.55078125
+240.095459 22561.24609375
+243.0862274 25958.796875
+244.1180115 21702.54296875
+246.0970154 665959.375
+247.0995483 69454.359375
+248.1104279 13429.6748046875
+249.0965729 19235.39453125
+257.1230469 100444.7421875
+258.1249084 15955.6826171875
+260.1129456 103101.796875
+261.1183472 18500.798828125
+270.0971069 113969.6875
+278.1181946 18822.701171875
+283.1429443 34475.5703125
+287.1231995 141079.734375
+288.1074219 1588006.5
+289.1103821 251369.9375
+290.1115417 23804.240234375
+295.1460266 19339.22265625
+302.131134 15543.2607421875
+303.1414185 31503.65234375
+305.1339722 3149936.0
+306.1192627 1091638.5
+307.1209717 180539.265625
+308.1231689 25340.98828125
+311.1350098 46726.6875
+312.1126709 31058.119140625
+321.1541748 359940.84375
+322.1563721 51963.69140625
+323.1444702 1078874.375
+323.2077637 19348.94921875
+324.1465454 153895.796875
+329.1448364 48458.5
+331.1522217 22979.724609375
+338.1422729 51955.75390625
+338.1806946 426670.6875
+338.6452637 16603.5703125
+339.1835938 67251.6796875
+340.1850281 16779.7421875
+346.1696472 13537.765625
+358.1645813 17663.759765625
+359.1438904 70599.734375
+366.1864014 110939.7265625
+367.1893616 24851.404296875
+369.1392212 26061.90234375
+376.1698914 113272.3671875
+377.1564941 80955.3671875
+378.1564941 20640.9765625
+386.1645203 38712.48046875
+392.9673767 16612.556640625
+394.1809998 742682.25
+395.1818848 116517.7265625
+396.1854553 17336.919921875
+397.6803284 17692.9296875
+412.1901245 31224.234375
+420.6770935 16620.724609375
+434.1740417 16917.828125
+468.219635 45114.57421875
+469.2151794 20115.416015625
+477.2201233 24487.544921875
+483.7184448 22922.884765625
+485.2478638 212840.015625
+486.2488708 52517.45703125
+488.1835632 49078.3984375
+492.2295532 173203.9375
+492.7306824 87051.015625
+493.2312317 23324.29296875
+495.2263184 55541.90234375
+505.212677 50126.2109375
+506.2072754 39807.328125
+512.2249146 27019.53125
+512.732605 17711.775390625
+521.2340698 34870.515625
+523.2224121 425145.75
+524.2247314 98765.0703125
+525.2282715 25409.5390625
+529.7425537 17037.943359375
+555.2553711 17482.64453125
+558.7420044 20549.1875
+571.7489014 91752.9609375
+572.2739258 272749.5625
+572.748291 28284.09765625
+573.281189 96830.5859375
+574.2828979 18812.33203125
+576.2619019 37322.12890625
+576.762207 29181.44140625
+577.7598267 16709.923828125
+580.2619629 65963.8671875
+580.7550659 2220738.0
+581.2564087 1444898.25
+581.7584229 547146.1875
+581.8635864 21264.37109375
+582.2579956 97164.6953125
+589.2636719 28396.580078125
+589.7697754 26994.900390625
+598.2722778 50415.39453125
+598.7731323 27407.607421875
+599.2783203 37058.3203125
+599.7775879 97741.1640625
+606.2587891 26138.689453125
+624.265686 59007.6875
+625.2769165 17924.482421875
+656.2999878 17750.275390625
+673.324707 419254.34375
+674.3272705 161026.828125
+675.3244629 24419.0234375
+802.3629761 100584.1171875
+803.3690186 30920.818359375
+873.3997803 88973.1328125
+874.4049683 48786.0859375
+1001.459045 16033.3984375
+1058.478149 15296.296875
+1059.506714 17038.048828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.88.88.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=88"
+RTINSECONDS=9.418435057
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1373291 19776.345703125
+64.52622986 62645.359375
+64.53045654 49414.765625
+64.5819397 42131.3515625
+64.58612823 29556.044921875
+64.63813782 17542.591796875
+82.05417633 24153.08984375
+149.5612335 17554.650390625
+149.5736237 54318.5703125
+167.0916748 42726.0859375
+169.0595703 36088.1796875
+175.1176605 326922.96875
+177.0760803 79705.0703125
+178.0597992 362983.375
+178.3344727 40924.42578125
+178.3534851 61248.2890625
+179.0628815 19706.509765625
+183.0759735 20550.20703125
+183.206665 16428.900390625
+186.085968 108267.046875
+187.0907898 15114.3095703125
+190.0596771 16557.224609375
+194.1023865 46339.5078125
+195.0862579 4500513.0
+196.0890656 463395.09375
+197.0921783 28326.216796875
+197.5942383 15408.1630859375
+200.1016541 19543.052734375
+201.0858154 29180.9609375
+206.0908661 171890.109375
+218.1019135 51492.46484375
+222.0862579 23503.126953125
+240.0960388 19946.630859375
+243.0858612 28540.302734375
+244.1166992 18870.119140625
+246.0967255 695285.0
+247.099823 79330.90625
+257.1226807 115833.4921875
+260.1122742 117539.3515625
+270.0968018 131685.609375
+276.1331482 22920.6328125
+277.1383667 21977.53515625
+278.1496582 31084.818359375
+283.1420593 45724.31640625
+287.1230774 166692.96875
+288.1070862 1622659.875
+289.1098328 259767.796875
+290.11203 21627.169921875
+303.1436462 46759.40234375
+305.133606 3344850.75
+306.1187744 1180716.875
+307.1211243 181064.90625
+308.1217651 21643.470703125
+311.134491 57401.93359375
+312.1189575 51958.88671875
+321.153656 379756.4375
+321.4971008 19417.38671875
+322.1569519 70366.1875
+323.1441956 1221472.0
+324.1462097 202024.109375
+325.1522522 17491.111328125
+329.1439514 62701.38671875
+331.1528931 20587.400390625
+338.1430664 48312.62109375
+338.1800842 423674.03125
+339.1834412 74997.1640625
+347.1445007 20461.05859375
+349.1606445 30321.142578125
+358.167572 19548.60546875
+359.1443176 55345.99609375
+361.1572876 16001.4169921875
+366.1858826 138134.640625
+367.1903381 23364.27734375
+369.1410522 25786.599609375
+376.1697693 89459.0234375
+377.1572266 80922.0703125
+394.1805725 737785.625
+395.1819153 155586.0
+406.6886597 16705.40234375
+412.1897888 37366.734375
+460.1919556 28527.9453125
+468.2200928 34414.41796875
+469.2197876 24087.849609375
+477.2192078 30031.5390625
+483.7214966 21378.623046875
+485.2476501 193719.0625
+486.2496948 68777.1015625
+488.1860352 41919.90234375
+492.229126 162859.734375
+492.729187 87018.2734375
+493.2285767 37965.5703125
+495.2273254 51601.25390625
+503.7173767 29531.236328125
+505.2113037 52164.796875
+506.2049561 39602.7421875
+512.2235718 61569.4765625
+512.7253418 24676.1875
+521.2293091 45802.52734375
+521.7330322 20710.171875
+523.2217407 491730.46875
+524.2230835 146911.8125
+525.2310791 34395.546875
+554.2662354 18138.2734375
+558.7390137 22541.583984375
+563.244751 20869.841796875
+571.75 78461.5390625
+572.274231 318659.28125
+572.7515869 25228.03125
+573.2785645 102098.390625
+576.2626953 71527.7734375
+576.7597046 39203.734375
+577.2581787 47085.53515625
+577.7599487 19095.361328125
+580.2605591 90725.5546875
+580.7544556 2418377.0
+581.2556763 1726783.25
+581.3703613 22371.6953125
+581.7579346 683236.3125
+581.8641357 21897.4453125
+582.2584229 152524.984375
+589.2660522 95269.1484375
+589.7620239 63935.81640625
+598.2739868 59413.578125
+598.7695312 35210.99609375
+599.774231 73619.171875
+606.2567749 45538.85546875
+624.2671509 48653.00390625
+673.3234253 479137.84375
+674.3257446 181906.78125
+675.3338013 33399.99609375
+711.3037109 23079.1171875
+752.3512573 17932.65234375
+802.3624878 92133.2734375
+803.3688965 44881.05859375
+873.3991089 110797.234375
+874.4047241 56154.15625
+970.1459351 22763.423828125
+1001.46228 30900.134765625
+1058.490112 22774.005859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.89.89.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=89"
+RTINSECONDS=9.525386337
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13698578 12735.513671875
+63.58824921 13074.12109375
+64.52603149 49825.6171875
+64.53045654 45307.53125
+64.58201599 39978.765625
+64.58618164 31590.849609375
+64.6381073 15544.9609375
+70.45582581 13292.326171875
+74.81183624 16329.5029296875
+82.0541153 19691.923828125
+149.5758514 33926.390625
+167.0914001 48081.5234375
+169.0595093 37130.44921875
+175.1177979 293678.5
+176.1215057 21331.080078125
+177.0757446 72078.828125
+178.046402 10295.5556640625
+178.0599823 333502.53125
+178.3425903 87292.6640625
+179.0627899 26221.46484375
+179.0912476 21381.8984375
+182.091507 21096.947265625
+183.0748291 20587.6875
+186.0860138 107944.125
+194.1026459 37920.4140625
+195.0863495 3912525.5
+196.0891113 400511.15625
+197.0915527 27545.830078125
+198.5452271 12228.3759765625
+200.1017456 26771.3515625
+201.0858154 31136.142578125
+206.0910797 152372.375
+212.1141357 16273.9111328125
+218.1022034 71995.234375
+234.0965424 15047.5732421875
+240.0956573 31853.349609375
+243.0853577 21520.8984375
+246.0969086 593367.375
+247.0995483 71459.8359375
+249.0962677 16439.068359375
+257.1222229 90172.140625
+260.1120911 95907.5859375
+270.0966492 133494.78125
+278.1492615 18176.7890625
+283.1424866 36396.55859375
+287.1234741 144614.0625
+288.1073303 1590972.375
+289.1101379 235890.171875
+290.1131897 20921.787109375
+294.118042 20141.5546875
+295.1485901 19101.95703125
+303.1423035 32309.24609375
+305.1338501 2951004.0
+306.1191101 1066845.25
+307.1216736 156277.34375
+311.133606 37156.52734375
+312.1170349 38634.1015625
+318.1427002 17124.974609375
+321.1538086 348330.15625
+322.1564941 69036.4140625
+323.1442566 1019050.8125
+323.1887512 31214.853515625
+324.1465149 155485.609375
+325.1483765 23300.669921875
+329.1439209 47668.94140625
+338.1424866 45574.6171875
+338.180542 407328.5625
+339.183136 74386.21875
+347.1488647 21745.3203125
+349.156311 21618.189453125
+359.1448669 67899.609375
+366.1856079 125098.8828125
+367.1853333 15641.8564453125
+369.1351318 27308.787109375
+376.1699524 101230.0703125
+377.1582336 77640.1484375
+386.1592407 15595.9091796875
+394.1808167 689186.0625
+394.2398987 26923.95703125
+395.1834106 153389.796875
+406.8479614 14139.9189453125
+412.1881104 37500.671875
+450.2081299 17659.75390625
+460.1901855 17089.861328125
+468.2210388 55275.65625
+469.2087097 15640.7041015625
+483.7161865 18060.453125
+485.2472534 206186.640625
+486.2478943 53111.90234375
+487.2592773 17034.6953125
+488.1844788 57221.734375
+489.190979 18878.318359375
+492.2291565 172855.375
+492.7296753 84119.0390625
+493.2293091 27330.439453125
+495.2268982 56678.16796875
+503.2253723 31589.916015625
+503.7128601 25339.423828125
+505.2113953 56096.37890625
+506.2031555 58566.34765625
+512.2247314 66890.21875
+512.7331543 27353.599609375
+521.2324219 35210.99609375
+521.7285767 26604.435546875
+523.2215576 456841.5
+524.2246094 122208.3125
+525.2304688 38664.04296875
+554.2614136 19762.837890625
+559.2598877 15912.15625
+571.7495117 88921.21875
+572.2741699 367872.28125
+572.7422485 19092.287109375
+573.2819214 97387.6875
+576.260376 48882.96875
+576.7644043 20749.81640625
+577.2646484 18989.14453125
+580.2610474 101107.4765625
+580.7546387 2161262.0
+581.2557983 1570316.25
+581.3650513 26055.326171875
+581.7578125 570226.25
+581.8648071 20354.1328125
+582.2584229 111249.703125
+589.2651978 50830.203125
+589.7669067 18803.90234375
+598.2741699 55732.41796875
+598.7716675 17192.46875
+599.272583 40699.90625
+599.7779541 79398.984375
+606.2511597 30659.916015625
+624.2687378 55939.3671875
+625.2657471 23514.6640625
+655.3171387 26007.9609375
+673.3240356 403609.40625
+674.326355 168190.4375
+675.3293457 22791.08203125
+680.7142944 14912.2158203125
+802.3656616 88790.1171875
+803.3676758 43428.16796875
+804.3747559 16715.8828125
+873.3990479 96736.5234375
+874.4025879 38353.2890625
+1001.445984 15672.7939453125
+1058.475586 21268.060546875
+1081.016602 18099.130859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.90.90.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=90"
+RTINSECONDS=9.6348568
+PEPMASS=598.27001953125
+CHARGE=2+
+55.84371185 17155.453125
+64.52617645 75155.921875
+64.53065491 60006.359375
+64.58202362 43461.42578125
+64.58611298 37322.859375
+64.63821411 19433.60546875
+64.64156342 24399.603515625
+73.14730072 16897.578125
+82.05413055 22417.544921875
+149.5694275 67856.25
+167.0911407 34273.56640625
+169.0599365 34707.24609375
+175.117981 311456.90625
+177.0762939 70854.28125
+178.0600128 361060.0625
+178.0770874 11641.6416015625
+178.3504028 89131.1328125
+179.0634766 39135.80078125
+179.0919495 23637.701171875
+181.0809174 18382.353515625
+182.0915375 16877.30078125
+183.0742188 32719.15625
+186.0861206 114819.734375
+190.0595703 18908.13671875
+194.1016235 58414.58984375
+195.0864716 4765467.0
+196.089325 491619.28125
+197.0915222 28789.60546875
+200.1018524 32825.0
+201.0867767 20716.91015625
+206.0911255 186628.546875
+207.0954437 20139.013671875
+218.1022339 59868.078125
+243.086319 24514.392578125
+244.118454 19941.53125
+246.0735931 10765.8857421875
+246.0970917 712141.3125
+247.0998535 79997.609375
+249.0970612 20549.712890625
+257.1231079 125058.3828125
+259.6826782 21744.517578125
+260.1124878 117217.765625
+261.1187439 19153.73828125
+270.0968933 133512.734375
+276.1357117 18243.951171875
+278.1490173 24702.76953125
+283.1436768 35062.2109375
+287.1235962 161905.734375
+288.1075439 1694328.125
+289.1104126 282096.25
+290.1138611 39907.1328125
+294.1175537 25429.470703125
+295.1505737 23175.017578125
+303.1416931 37864.67578125
+304.1280823 21522.634765625
+305.1341553 3502509.75
+306.1192627 1293511.875
+307.1216736 214742.71875
+308.1209717 23644.638671875
+311.1363525 50332.55078125
+312.1170044 26958.748046875
+321.1542358 352780.25
+322.1568298 64143.98046875
+323.1447144 1142072.25
+324.1476135 194128.53125
+329.1422119 49119.546875
+338.1419067 51603.0234375
+338.1809082 452672.3125
+339.1830444 61344.4375
+349.1622009 19895.31640625
+359.1455078 71816.7890625
+366.1858521 146006.984375
+368.1542969 23610.583984375
+369.1376953 41801.51171875
+376.1711426 149508.328125
+377.1578369 71916.953125
+386.1651917 29955.736328125
+394.120636 21261.73828125
+394.1356506 15201.5556640625
+394.181488 811412.75
+394.2398376 23921.583984375
+394.3760986 17293.529296875
+395.183136 146525.625
+412.1923523 44427.875
+420.6857605 19615.056640625
+460.1890869 35048.82421875
+468.2220764 39280.94140625
+477.2192688 23005.826171875
+485.2479248 253883.765625
+486.2516479 70910.1171875
+488.1864319 42145.6171875
+492.2298279 169084.984375
+492.7315979 74909.578125
+493.2271729 44120.6875
+495.227417 52679.5546875
+503.2270203 25261.1171875
+505.2141113 64336.09765625
+506.2053223 77585.765625
+512.2271729 37982.67578125
+512.7296143 28753.22265625
+520.7401733 21255.03125
+521.2357178 47280.94921875
+521.7330322 28084.970703125
+523.2227783 557224.8125
+524.2252808 138101.78125
+525.2302246 41933.29296875
+529.7443848 27325.056640625
+571.7511597 56909.8671875
+572.274231 339397.0
+572.7467041 25888.92578125
+573.2793579 109545.0625
+576.2598267 44446.37890625
+576.765686 27661.208984375
+577.2635498 23763.720703125
+577.7607422 28270.671875
+580.2601318 106588.0
+580.7562256 2870665.75
+581.2572021 1901500.625
+581.7590332 722114.375
+582.2589111 138929.125
+589.2685547 115888.90625
+589.7671509 92512.046875
+598.2734985 69153.453125
+598.7764893 53305.53125
+599.2803345 29328.953125
+599.7772217 69391.2734375
+606.2582397 46851.05078125
+624.2687988 77493.421875
+625.2731323 30266.2578125
+673.3255615 536318.8125
+674.3272095 170407.453125
+675.3240356 25548.658203125
+693.3004761 23715.529296875
+711.2984009 19426.880859375
+784.3519897 24497.44921875
+802.3649292 80497.96875
+803.3730469 43496.44921875
+873.4012451 113808.9453125
+874.4051514 73046.2734375
+1001.467102 33828.23828125
+1058.469849 21959.353515625
+1059.488037 21423.3203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.91.91.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=91"
+RTINSECONDS=9.741415312
+PEPMASS=598.27001953125
+CHARGE=2+
+52.0934906 15372.30078125
+55.69848251 13814.5458984375
+58.13409042 16085.3095703125
+58.23840332 15268.8330078125
+64.52623749 63273.73828125
+64.53046417 41101.4609375
+64.58203125 43342.1953125
+64.58615112 30854.21484375
+74.81198883 18041.93359375
+74.81642151 13866.6337890625
+80.51265717 14832.919921875
+82.0541153 21448.94921875
+93.53466034 13576.5595703125
+100.7810822 13839.22265625
+130.726181 16200.185546875
+133.9385986 17204.345703125
+142.3615265 14612.068359375
+146.1312256 16467.294921875
+149.5698242 61253.859375
+164.0418396 15592.521484375
+167.0911407 28951.248046875
+169.059494 36741.49609375
+175.1175995 344860.9375
+177.0755615 55733.328125
+178.0597229 346658.65625
+178.3373566 66083.8046875
+178.3567047 33364.73046875
+179.0640106 28257.533203125
+179.0914154 19896.099609375
+182.0923309 17320.412109375
+183.0746613 16680.0390625
+186.0859375 103070.1953125
+194.1030731 37875.6484375
+195.0862122 4634561.5
+195.1281891 23480.765625
+196.089035 458581.25
+197.0915527 21085.2265625
+199.1517181 15697.08984375
+199.1968994 19043.5390625
+200.1017151 28324.71875
+201.0852509 18488.671875
+205.0586243 17453.865234375
+206.0908966 159997.53125
+213.0860748 16279.8701171875
+215.0908051 22094.224609375
+218.1027069 49786.890625
+222.0879517 19629.853515625
+233.1276703 16995.275390625
+240.0947113 28254.078125
+243.085907 22868.369140625
+244.1165771 19199.47265625
+246.0966797 689675.75
+246.1257324 32267.65234375
+247.0995178 73762.1640625
+249.0957489 23218.375
+257.122467 95218.875
+260.11203 122260.3984375
+261.1194458 16165.474609375
+270.0965576 139497.78125
+276.1348267 20467.068359375
+278.1470337 26764.30859375
+283.1436157 53726.12109375
+287.1229553 165117.515625
+288.1069641 1702305.625
+289.1097107 244904.640625
+294.1180115 18504.78125
+295.1480408 28596.455078125
+303.1421204 42724.93359375
+304.1291199 26557.16796875
+305.1333618 3189361.75
+306.0594482 20188.458984375
+306.1186218 1212358.0
+307.1206055 195981.625
+308.1233521 19201.916015625
+311.1353455 46539.3984375
+312.1141052 35630.55078125
+321.1534424 362678.78125
+322.1561279 65300.87890625
+323.0982666 19929.673828125
+323.1438293 1137320.75
+324.1457214 208541.40625
+329.1429138 40631.375
+338.1417542 63557.57421875
+338.1800537 407925.6875
+339.1830139 86859.7265625
+347.1486816 29663.197265625
+349.1582947 28259.98046875
+359.1426086 65234.17578125
+366.1855164 128849.828125
+367.1889648 22766.21875
+369.137085 34594.8046875
+376.1698914 125822.5625
+377.1568604 85776.453125
+386.1641541 23755.478515625
+394.1800842 794216.4375
+395.1815796 140292.078125
+396.1867981 22827.857421875
+412.188324 24398.498046875
+420.677002 23375.0625
+460.1922913 24799.78515625
+468.2221069 50463.546875
+477.2145996 18558.70703125
+483.7200012 33607.640625
+485.246521 225550.921875
+486.2482605 57333.296875
+488.1877747 41113.76953125
+489.1896973 19522.78125
+492.229126 175480.328125
+492.7278442 84589.328125
+493.2342529 32814.53125
+495.2246399 42832.5
+505.2098694 54322.47265625
+506.2036438 54877.82421875
+512.2236328 31797.98828125
+512.7310181 23743.94921875
+520.7370605 20975.890625
+521.2319946 31423.869140625
+522.2345581 17892.16796875
+523.2207642 521122.90625
+524.2244873 115313.1796875
+525.2305908 25982.4609375
+530.2398682 26412.84375
+554.2702637 21539.30078125
+555.2454224 18065.001953125
+558.7438965 33604.53125
+559.2323608 17863.6328125
+559.7390137 20582.49609375
+567.7537842 19539.859375
+571.7481689 98153.6875
+572.2745972 331576.0625
+572.7540894 23038.49609375
+573.2797241 96699.9140625
+574.2794189 31430.787109375
+576.260498 59551.7421875
+580.2620239 61731.203125
+580.7537231 2478612.25
+580.8390503 33585.328125
+581.255127 1665771.0
+581.3395386 30797.646484375
+581.7563477 536748.4375
+582.2574463 132400.953125
+589.2663574 81249.1171875
+589.7666626 43352.79296875
+598.2719116 58733.3046875
+598.7734985 34790.62109375
+599.2711792 28807.603515625
+599.7761841 65362.5078125
+606.2587891 28115.060546875
+624.2651978 50591.63671875
+673.3221436 401822.03125
+674.3258057 137711.03125
+675.3225098 32946.88671875
+693.2806396 18020.4375
+802.3634644 71616.15625
+803.3659668 44520.32421875
+873.3959351 107945.9609375
+874.4006958 64201.34375
+1001.44574 20265.12890625
+1002.456482 21096.50390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.92.92.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=92"
+RTINSECONDS=9.848723569
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13720703 17293.193359375
+58.49085617 13525.8447265625
+64.52611542 64893.359375
+64.53044128 46791.7265625
+64.58198547 49612.05859375
+64.58613586 33071.125
+64.63792419 20909.3046875
+64.64138794 18751.388671875
+74.81687164 14860.2841796875
+74.92292023 14231.341796875
+76.62406921 13514.8740234375
+109.6322632 16282.4443359375
+117.0372849 13936.9775390625
+127.444397 12897.810546875
+129.2598572 13486.427734375
+149.574707 38050.640625
+167.0921936 41326.859375
+169.0602264 31926.759765625
+169.125885 13102.1513671875
+169.4641418 13792.314453125
+169.5414276 16397.05859375
+175.1177826 291162.25
+176.1207275 23745.912109375
+177.0757141 81366.4765625
+178.059967 298204.78125
+178.3357239 52681.83203125
+178.3555603 42174.875
+179.0638123 33901.296875
+179.091095 23444.275390625
+182.0912018 20061.951171875
+183.0762939 28575.28515625
+186.085968 100636.109375
+194.1022339 34627.30859375
+195.0863647 4434476.0
+195.1278992 31832.20703125
+196.0891571 460851.5
+197.0925598 25127.236328125
+200.1019592 37643.15625
+201.0864868 14719.85546875
+206.0908813 141625.890625
+209.0776978 17177.798828125
+215.0911255 19325.5234375
+218.1022644 68472.34375
+222.0851593 12979.216796875
+239.1131744 16373.1279296875
+240.0955963 19609.064453125
+243.0850067 22071.2265625
+246.0968933 661499.375
+246.1255951 28751.4453125
+247.0999298 74067.640625
+249.0968628 23730.037109375
+251.9746094 15918.3046875
+257.1223145 107097.9140625
+258.1251221 15053.140625
+260.1117249 105041.0390625
+270.0968628 123144.0625
+271.1016846 25715.294921875
+283.1414795 47889.3125
+287.1232605 170173.65625
+288.1073914 1731359.5
+289.1101379 278303.6875
+290.113739 24321.748046875
+294.118103 18911.830078125
+295.150238 18379.638671875
+303.1431274 34743.2265625
+305.1339722 3322737.75
+306.1188965 1202110.625
+306.6471863 16321.6494140625
+307.1214294 194808.203125
+308.1217041 21346.826171875
+311.133606 56232.75
+312.1156921 22680.005859375
+321.1539307 345446.15625
+322.1560669 70909.0078125
+323.1444397 1124073.75
+323.1887817 30196.4921875
+324.1468201 172899.21875
+326.1334229 17163.974609375
+329.1435242 60412.46875
+331.1498413 22849.189453125
+338.1419983 54509.16796875
+338.180542 398363.5
+338.6442261 29439.337890625
+339.1826477 72232.828125
+347.1506653 33493.73828125
+351.1334534 20542.1796875
+358.1674805 17037.8515625
+359.1435852 57476.03125
+366.1865234 134649.9375
+367.1830444 23102.958984375
+376.1702576 138527.28125
+377.1576538 59947.4609375
+386.1645813 20185.2734375
+394.1809387 727561.9375
+394.2387695 24359.537109375
+395.1829224 163499.40625
+396.1859436 21116.46484375
+407.1669312 15283.546875
+412.1866455 40927.39453125
+421.184967 14732.5224609375
+429.6059265 13961.2470703125
+434.1707458 19792.21875
+460.1920471 37276.12890625
+468.2221375 59738.72265625
+485.2475586 198755.53125
+486.2494202 55745.01171875
+488.1853027 58894.94921875
+492.2290344 151176.125
+492.7302856 111397.3515625
+493.2298889 33646.3359375
+495.2269287 63366.25390625
+503.7158508 28060.599609375
+505.2128601 45142.95703125
+506.2051392 49417.265625
+512.2268066 54065.10546875
+512.7285156 29700.248046875
+521.2351074 29146.716796875
+521.7310181 27672.650390625
+523.2224731 476503.09375
+524.2243652 131479.84375
+525.2286377 29389.314453125
+555.2565308 27395.05078125
+558.7451172 37886.20703125
+559.2469482 20715.12109375
+559.744873 19270.53125
+571.7507935 87235.640625
+572.2755737 341580.5625
+572.7485352 29575.21875
+573.2807007 120022.234375
+576.2593384 66319.296875
+576.763855 43066.19921875
+577.2702637 35549.6875
+580.2620239 99971.546875
+580.7555542 2525621.5
+581.2565308 1730546.625
+581.7583618 661843.5625
+582.2591553 128477.1484375
+585.7776489 18423.884765625
+589.2687988 75609.46875
+589.7693481 33651.5078125
+598.2724609 53640.23046875
+598.7756958 23484.357421875
+599.2730713 27106.61328125
+599.7785645 87240.6640625
+624.2694702 61121.14453125
+625.2680054 26227.0703125
+655.3175659 23020.822265625
+673.324585 497390.90625
+674.3278198 156367.71875
+675.3290405 18956.60546875
+693.2844238 28388.783203125
+711.2963257 21002.646484375
+802.3624878 101451.8828125
+803.3655396 37027.9921875
+873.4033813 96428.625
+874.4064331 51024.60546875
+961.647522 18717.236328125
+1059.482056 18289.40234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.93.93.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=93"
+RTINSECONDS=9.95716157
+PEPMASS=598.27001953125
+CHARGE=2+
+52.74670792 15670.7890625
+53.37504959 13896.6357421875
+55.14661026 12926.3212890625
+58.55756378 13113.34375
+64.52631378 72050.6875
+64.53064728 53494.50390625
+64.58222198 34745.3203125
+64.58624268 29734.447265625
+64.63806915 20521.216796875
+64.64135742 14956.2041015625
+65.34049225 14124.6220703125
+74.81203461 15091.7744140625
+78.2328949 13961.587890625
+96.30892181 14346.0146484375
+99.82070923 17432.404296875
+103.4985809 15198.90234375
+104.82724 14251.6806640625
+130.6273193 15616.1875
+149.5683746 64535.1484375
+149.5812988 14895.7958984375
+167.0917358 41745.828125
+169.0593567 25621.412109375
+175.1018982 27589.357421875
+175.1179199 305522.3125
+175.3005219 15466.7353515625
+176.1192322 26264.4609375
+177.0760803 62739.16015625
+178.0600281 366114.03125
+178.3392487 88825.28125
+179.0633545 27411.23046875
+179.0911713 16642.2109375
+183.0748138 25963.779296875
+186.0861511 132576.84375
+187.0900726 14768.45703125
+190.0605316 20253.103515625
+194.1027985 56411.53125
+195.0863647 4402712.5
+196.0893707 468210.03125
+196.1207886 16084.3955078125
+197.0919189 32085.255859375
+200.1020203 27009.830078125
+201.0856476 23270.384765625
+206.0911102 178679.4375
+209.1016998 16846.091796875
+218.1021271 45983.109375
+234.0970001 18972.359375
+240.0957031 27228.716796875
+243.0850067 19397.240234375
+246.0968628 687115.1875
+246.1255951 34412.05078125
+247.0995178 94788.984375
+249.0982208 23570.2734375
+257.1227112 112786.0703125
+260.1122437 111924.625
+261.1177673 26753.140625
+267.1108093 18672.01171875
+270.096283 121526.40625
+276.131012 16703.326171875
+278.1162415 30600.65625
+278.1490173 30465.640625
+283.1427307 46600.94140625
+284.1173401 18200.767578125
+287.1231384 167854.015625
+288.1072388 1692816.875
+289.1101685 268214.0625
+290.1115417 23444.21875
+294.1172791 19136.603515625
+303.1436462 30214.890625
+305.1337585 3386245.0
+305.2151489 22414.5390625
+306.118866 1202247.625
+307.1208191 187771.015625
+311.1353149 53541.1953125
+312.1171875 26331.2421875
+321.1538086 323423.1875
+322.1562195 60565.72265625
+323.1442566 1223762.625
+323.2085266 18609.6015625
+324.146759 203939.78125
+325.1497192 35901.0234375
+329.1431885 50485.31640625
+331.1512756 22105.958984375
+338.1422729 61557.46484375
+338.180603 397962.9375
+339.183197 83929.2109375
+347.1479492 22213.97265625
+349.3106384 16900.501953125
+351.1308899 21483.916015625
+359.1425476 65592.1796875
+366.1855774 148587.671875
+367.1885986 26935.728515625
+369.1379395 20171.736328125
+376.1703186 128785.203125
+377.1561279 95029.34375
+378.1606445 22631.75390625
+386.1636047 30364.95703125
+394.1807251 734887.0625
+394.2405396 21581.439453125
+395.1832581 166533.46875
+396.18573 22775.28125
+412.1876831 34723.6875
+413.1651001 18375.13671875
+415.4440613 16276.447265625
+419.6980591 16639.37109375
+420.6815186 20777.279296875
+452.1923828 18364.79296875
+460.1893005 20231.54296875
+468.2200623 61011.7890625
+469.2103882 18659.875
+485.2470398 200172.484375
+486.2513428 67971.7890625
+488.1850586 59857.26171875
+492.2285461 162071.9375
+492.7293701 88953.4921875
+493.2313538 33310.015625
+495.2258301 63192.4453125
+505.2105103 74135.703125
+506.2053833 50557.4140625
+512.2226562 35513.74609375
+512.7260742 34818.50390625
+521.2328491 44086.8046875
+521.7345581 18282.158203125
+522.2333984 18527.24609375
+523.2211914 464510.8125
+524.2226562 127602.78125
+525.2252808 30641.626953125
+529.7416382 19457.666015625
+554.2576294 18371.0
+555.2576904 21923.16796875
+558.7422485 22385.513671875
+559.7423096 27267.53125
+571.7504883 99282.546875
+572.272644 297549.1875
+573.2789917 97306.34375
+576.2640381 39214.1015625
+576.7667847 22558.462890625
+580.2637329 96034.125
+580.7542114 2599755.5
+581.2553711 1701285.75
+581.7567139 605452.625
+582.2573853 100691.765625
+589.2648926 70575.359375
+589.7687988 23706.7578125
+598.2727661 62984.39453125
+598.7763062 35519.33203125
+599.2731323 21003.27734375
+599.7763672 75117.125
+606.256897 29119.9140625
+624.2657471 48769.890625
+636.6063232 21003.962890625
+673.3230591 432887.9375
+674.3270874 149441.0
+675.3251343 43077.546875
+693.2869263 21956.244140625
+711.3015137 28003.60546875
+802.3612671 96239.6328125
+803.366333 33575.203125
+873.3999634 132012.515625
+874.394104 58535.65234375
+1001.456665 34495.2421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.94.94.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=94"
+RTINSECONDS=10.06464016
+PEPMASS=598.27001953125
+CHARGE=2+
+50.31135941 14177.287109375
+58.13428116 16104.119140625
+64.52619934 57616.3359375
+64.53044128 41310.828125
+64.5821991 31191.908203125
+64.58616638 33363.43359375
+64.63808441 21642.677734375
+74.31070709 14875.275390625
+82.05438995 17868.529296875
+149.5700684 57163.3984375
+167.0921326 48454.41015625
+169.0604401 43136.5078125
+175.1178284 270693.96875
+176.120636 15324.29296875
+177.0763855 69739.7890625
+178.0600128 362662.125
+178.0779724 17187.279296875
+178.3424988 88128.328125
+179.0624237 29863.224609375
+179.0915527 22275.712890625
+182.0921631 24564.587890625
+183.0757751 30212.619140625
+186.0861206 91103.34375
+187.0904083 12992.970703125
+194.1029053 42701.6875
+195.0863647 4242280.0
+196.089386 455266.5625
+197.0916138 28597.29296875
+200.101059 29558.734375
+201.0850525 29871.20703125
+206.0909576 141175.109375
+207.9474335 15011.783203125
+213.0847626 27743.892578125
+218.102478 70548.1328125
+222.0866699 16522.89453125
+240.0956421 22892.619140625
+240.7457123 13963.044921875
+244.1208191 17465.4453125
+246.0968475 611930.25
+246.1207428 8240.0380859375
+247.0996704 78550.1484375
+249.1012421 16274.54296875
+257.1225586 98392.6171875
+258.1262817 19114.703125
+259.1253967 15690.4130859375
+260.1122131 93341.140625
+270.0968018 127873.171875
+271.099762 27641.9921875
+276.1034851 17018.5390625
+283.1427307 45335.8828125
+287.1233215 151230.5625
+288.1072083 1650737.625
+289.1100159 226937.03125
+290.1133423 18677.490234375
+295.1483459 27604.90625
+303.1417236 28823.224609375
+304.1269531 26159.943359375
+305.1337585 3267193.25
+306.1190186 1182100.875
+307.1210327 184444.421875
+308.120575 21813.57421875
+311.1350403 47953.83984375
+312.1160278 38321.07421875
+320.1320496 17639.908203125
+321.1539001 349230.3125
+322.1565247 66052.2109375
+323.0977478 24429.67578125
+323.144165 1137229.625
+324.1461487 203698.0
+325.148407 27733.248046875
+329.1435547 52706.8984375
+338.1416626 53023.27734375
+338.1801453 406161.96875
+339.1815491 55639.953125
+347.1471863 29303.24609375
+349.1628723 18666.255859375
+359.1441345 56074.875
+366.1860352 134299.265625
+367.190033 30664.373046875
+369.1392212 21433.802734375
+376.1702271 128367.765625
+377.1572876 67462.1484375
+378.1564636 14823.376953125
+386.1634521 31810.673828125
+394.1804504 722031.375
+394.240387 19177.7578125
+395.181366 142091.375
+412.1890564 24944.345703125
+434.1727905 17267.216796875
+468.2208862 47338.84765625
+478.2011108 15639.853515625
+483.7103882 25310.044921875
+485.2463379 233264.453125
+486.2492981 64228.26953125
+488.1864014 63335.26953125
+492.2287292 167376.203125
+492.7305908 117240.8046875
+493.2319641 31891.1484375
+495.2242737 76929.765625
+503.7189636 22295.84765625
+505.2114868 52964.765625
+506.206604 52328.21875
+512.2266235 34482.98046875
+521.2313843 40652.3828125
+523.2213745 490223.5
+524.2240601 144255.546875
+525.2349854 24862.84765625
+555.2540894 20489.03515625
+567.2591553 17640.375
+571.7483521 75691.421875
+572.2734985 310858.0
+572.7508545 37315.87890625
+573.2799683 90401.6953125
+574.2789917 21897.70703125
+576.260498 35923.5859375
+576.7624512 38423.47265625
+577.2590942 23613.2578125
+580.2587891 80590.296875
+580.7540894 2218426.5
+581.2553101 1399439.0
+581.3354492 19317.9140625
+581.7570801 545573.625
+582.2573242 118546.28125
+589.2647705 51137.875
+589.7650146 16090.0029296875
+598.2715454 39789.50390625
+599.279541 22262.31640625
+599.7761841 65453.87109375
+606.2556763 36906.07421875
+624.2646484 61402.796875
+625.2658691 26740.892578125
+673.3222656 417756.15625
+674.3258057 137210.140625
+675.3292847 24462.927734375
+802.3627319 100907.5390625
+803.3660889 56920.9296875
+873.4013062 85414.578125
+874.4009399 71020.21875
+1001.453674 24117.919921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.95.95.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=95"
+RTINSECONDS=10.17315602
+PEPMASS=598.27001953125
+CHARGE=2+
+53.25439835 13042.47265625
+64.52618408 72407.4921875
+64.5307312 55025.8359375
+64.58198547 38257.46875
+64.58613586 35418.76171875
+64.63824463 19784.619140625
+64.64152527 14959.794921875
+64.98596191 13497.69921875
+68.50153351 14095.689453125
+74.81627655 14330.779296875
+82.0544281 16613.033203125
+128.1125488 13205.3974609375
+149.5707855 62909.28125
+167.0921936 51597.47265625
+169.0600739 33690.93359375
+175.1178741 298300.09375
+176.1207123 32251.515625
+177.076004 76480.5546875
+178.059967 327630.96875
+178.3353119 41158.96484375
+178.3544159 38405.625
+179.0624542 27955.47265625
+179.0916595 20509.12109375
+181.0836334 15272.2197265625
+182.0911865 17874.9921875
+183.0761108 16384.92578125
+186.0857544 104018.484375
+194.1024323 48569.45703125
+195.0863953 4400368.0
+195.1279144 35847.7109375
+196.0892792 443774.53125
+200.1018066 27123.111328125
+206.0910797 159422.421875
+209.1028442 16220.1064453125
+212.1122742 25546.6328125
+215.0913391 17545.26171875
+218.1022949 64258.52734375
+228.0871582 13542.6064453125
+234.0943298 16439.783203125
+243.0865021 24445.08984375
+244.1180115 21174.13671875
+246.0969543 671906.625
+247.1001282 85414.21875
+249.0935059 21696.31640625
+257.1229248 100434.1015625
+260.1126709 122418.6328125
+270.0971985 134102.640625
+277.1393127 15546.216796875
+278.120636 21409.35546875
+282.1116638 15164.3349609375
+283.14328 46055.3984375
+287.1238708 156006.125
+288.1074219 1764740.625
+289.110199 250184.9375
+290.1124573 24087.837890625
+294.118103 23314.5390625
+303.1431885 20548.955078125
+304.1273193 15392.365234375
+305.1339722 3401605.5
+306.1191101 1155373.875
+307.1219482 187034.5625
+308.1216736 17041.619140625
+311.1348572 50460.39453125
+312.1166382 20469.28515625
+321.1540833 327109.78125
+322.1564331 65256.87890625
+323.1444702 1152321.125
+324.1465454 182605.984375
+325.1462402 22889.361328125
+329.1434937 63068.78515625
+338.1429443 52918.94140625
+338.180542 404229.03125
+338.6446228 30859.13671875
+339.1436768 15525.2001953125
+339.18396 74565.3984375
+347.1487427 26070.39453125
+359.1439209 74250.4375
+366.1868286 133696.0625
+367.1898804 17009.380859375
+369.1380615 29874.46875
+376.1707458 120859.9765625
+377.1558533 87243.2734375
+389.149353 16137.28515625
+394.1809692 750308.9375
+394.2399902 26909.806640625
+395.1824341 122438.7578125
+396.1851196 19534.501953125
+412.1890869 17523.673828125
+413.1625366 23945.607421875
+421.1813049 17223.02734375
+468.2229309 62045.67578125
+483.7210693 25108.28125
+485.2472534 221456.140625
+486.2504272 61168.375
+488.1879883 55773.33203125
+492.2292786 202348.40625
+492.730835 97384.4921875
+493.2289429 22984.197265625
+495.2273865 70290.46875
+503.2244873 22973.0390625
+503.7180176 15854.4990234375
+505.2145691 59159.28125
+506.2071228 54245.87109375
+512.2315674 46034.69921875
+512.7285767 34009.75390625
+521.2346191 40496.56640625
+523.2221069 471150.53125
+524.2237549 126422.734375
+525.2321167 34008.7734375
+530.2495728 30330.892578125
+541.2305908 18737.00390625
+555.2510986 17230.08203125
+558.7462769 15805.0
+559.2449951 26730.59765625
+571.7510376 119839.109375
+572.274292 357751.5
+572.7504883 20199.7109375
+573.2804565 102683.3828125
+574.2744751 31869.740234375
+576.2647705 46179.83984375
+576.7643433 19631.865234375
+577.2609253 32188.673828125
+580.2601318 87918.671875
+580.7553101 2525190.0
+581.2564697 1675008.625
+581.7583618 712775.0
+581.8654785 30623.96875
+582.260437 113370.4453125
+589.2667847 53039.9453125
+598.2730103 62888.60546875
+598.7783203 53536.453125
+599.2730713 25206.95703125
+599.7794189 93071.8671875
+606.2615356 40988.2109375
+607.2624512 20487.236328125
+624.2714844 52836.640625
+625.2750244 27274.591796875
+655.3111572 18059.125
+673.3237305 440775.0625
+674.3258057 147709.765625
+675.3314819 30588.41796875
+693.2915649 24177.0078125
+802.3644409 86787.8984375
+803.3694458 37142.2734375
+873.4020386 106933.8125
+874.4049072 43682.3359375
+1001.474487 25553.208984375
+1058.473633 18567.61328125
+1164.671997 17019.693359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.96.96.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=96"
+RTINSECONDS=10.28186403
+PEPMASS=598.27001953125
+CHARGE=2+
+54.15478516 18723.474609375
+54.59679031 15789.6767578125
+64.52618408 80893.828125
+64.53065491 63024.72265625
+64.58203125 56373.5234375
+64.58618927 39731.234375
+65.52379608 18058.283203125
+67.34009552 15723.744140625
+71.96901703 17272.8828125
+74.81138611 22360.0234375
+100.5858688 19165.068359375
+133.2394867 16584.91015625
+149.5728912 61901.56640625
+167.091629 37375.41796875
+169.0591583 46987.9140625
+175.1177368 330035.0
+177.0758972 51538.84765625
+178.059845 335116.15625
+178.349472 101290.609375
+179.0630493 34969.578125
+179.0912781 21471.3984375
+183.0750732 27775.326171875
+186.0864258 113718.078125
+194.1041107 35849.66015625
+195.0863495 4823496.0
+195.1278229 25969.025390625
+196.0891876 472374.84375
+197.0922546 25292.2734375
+200.1017914 25816.7421875
+206.0908051 159214.484375
+207.0941772 17167.298828125
+218.1024017 69655.421875
+234.0952606 23099.029296875
+240.0943298 22480.46484375
+246.0969086 735051.4375
+247.0996094 65122.55859375
+257.1225891 114912.171875
+258.125061 28103.419921875
+260.1129761 125058.28125
+261.115448 21609.5078125
+270.0966187 162434.96875
+271.1011353 23630.29296875
+278.149231 22614.130859375
+283.1423645 36233.578125
+287.1233521 164417.921875
+288.1073303 1726978.625
+289.1101685 270140.28125
+290.1118469 26418.564453125
+294.1157227 30351.681640625
+295.1477661 23157.478515625
+303.1438599 41775.73828125
+304.1292725 27524.302734375
+305.1338806 3643726.75
+306.1190186 1248135.375
+307.1213379 224549.09375
+311.1351624 63020.7421875
+312.1155396 35192.60546875
+321.1538696 330476.0
+322.1569519 68039.2109375
+323.0992126 23510.681640625
+323.1443176 1329298.75
+323.1891785 36071.98828125
+323.2078552 25641.65625
+324.1462097 200235.09375
+325.1563721 26812.44140625
+329.1427307 65600.1875
+338.1418152 52238.47265625
+338.1803589 462438.75
+339.1828918 99440.109375
+349.1588135 25142.60546875
+351.1285095 19153.83203125
+358.1647644 18318.078125
+359.1447144 57856.08984375
+366.18573 129309.9765625
+369.1375732 38003.86328125
+376.1702881 129161.859375
+377.1549072 87253.859375
+386.1653137 34000.90234375
+394.1806946 846606.6875
+394.2394714 36715.91015625
+395.1827393 190776.25
+396.192627 21096.78515625
+412.1864319 23860.076171875
+460.1885071 25361.19921875
+468.2212524 55488.29296875
+469.2190857 20820.345703125
+485.247345 270009.90625
+486.2493591 64780.40625
+488.1860962 49750.96484375
+492.2286072 200313.90625
+492.7288513 123844.828125
+493.2311096 62599.96484375
+495.2249451 65346.18359375
+496.2303162 18937.18359375
+503.2103577 23173.421875
+503.7258606 22247.439453125
+505.2111511 70497.890625
+506.2021179 56002.04296875
+506.7287598 21390.0234375
+512.2263794 50411.3828125
+512.7301636 27295.3671875
+521.2340088 52714.76953125
+523.2216187 556298.0625
+524.225769 116650.6484375
+525.2272339 27733.51171875
+541.2330933 19632.986328125
+555.2634277 28713.9296875
+571.7490845 82519.8359375
+572.274231 371004.125
+573.2794189 116341.609375
+574.2858276 23810.580078125
+576.2612305 84025.625
+576.7629395 42328.80078125
+577.2636719 29883.216796875
+580.260437 117459.59375
+580.7546997 2878981.75
+581.2560425 2104969.0
+581.3652954 30335.17578125
+581.7579346 678591.1875
+581.8640137 25336.677734375
+582.2597656 181064.078125
+589.2671509 124073.7109375
+589.7646484 78440.40625
+590.2683716 27137.974609375
+598.2814941 38877.98828125
+598.776062 41514.78125
+599.7761841 73681.875
+606.2572632 66264.2890625
+624.2678223 74195.0546875
+673.3233032 441851.21875
+674.3282471 187491.203125
+675.3215942 51802.7265625
+693.289856 27455.5390625
+802.3619385 102035.7265625
+803.373291 46279.01953125
+873.3972778 114253.4921875
+874.394043 49105.7421875
+1058.478516 29741.775390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.97.97.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=97"
+RTINSECONDS=10.38765978
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13447952 16498.98828125
+58.13729095 13651.943359375
+64.52623749 62506.0078125
+64.53065491 47978.8203125
+64.58188629 48546.03125
+64.58615112 31068.84375
+64.638237 19938.052734375
+64.64138031 15489.453125
+76.28530121 11916.5830078125
+82.05422974 17857.2265625
+83.07067108 11733.1181640625
+98.21461487 11247.4453125
+124.6681137 12965.1728515625
+139.0616913 12491.2158203125
+149.5665283 39024.94921875
+167.0917511 50270.90625
+169.0601959 34486.1796875
+175.1002808 15642.5283203125
+175.117691 313278.15625
+176.1214752 25329.802734375
+177.0758972 62766.68359375
+178.0598907 337881.875
+178.3414154 79281.71875
+179.063736 26438.60546875
+179.0914917 27721.49609375
+182.0923462 13708.2529296875
+183.0753174 24716.931640625
+186.0858917 99740.2109375
+190.0607147 19854.46875
+194.1026306 49219.2734375
+195.0863495 4088775.5
+196.0892334 404799.84375
+197.0921173 24508.783203125
+200.1017303 28183.58984375
+201.0850372 21511.93359375
+206.0908356 162250.578125
+209.1023102 15833.41796875
+218.1021576 62611.69921875
+222.0850677 15907.8798828125
+232.1195374 13535.9482421875
+234.0949097 18480.80859375
+239.1110382 23224.5859375
+240.0957336 22493.40234375
+243.0842743 15182.0302734375
+244.1174927 13954.6083984375
+246.0969391 631064.0625
+247.0992432 77409.4609375
+249.0965118 17098.359375
+252.0966034 13586.072265625
+257.1228027 110252.75
+258.1239319 15127.03515625
+260.1126099 127700.2265625
+261.1172791 22812.3359375
+267.107605 12421.4541015625
+270.0967407 131512.234375
+278.149231 28482.3671875
+283.1429749 53440.7421875
+287.1233826 159560.90625
+288.1073608 1620823.375
+289.1100769 279067.4375
+289.1435852 7795.0810546875
+294.1194458 17062.642578125
+295.1495361 20369.5546875
+303.1424866 39311.15625
+304.130188 12302.759765625
+305.1338806 3204906.75
+306.1191406 1087284.625
+307.121582 176241.78125
+308.1227722 21816.169921875
+308.4355469 12050.6669921875
+311.1348877 56432.3828125
+312.1190796 34019.08984375
+321.1539001 356242.375
+322.1558533 59169.83984375
+323.0987854 24346.203125
+323.1444092 1083854.5
+324.1461792 148214.484375
+325.1499939 24655.962890625
+329.1446228 36759.890625
+331.1499634 15224.455078125
+338.1425171 39856.90625
+338.1803589 412659.28125
+338.6450195 28143.353515625
+339.1830444 73885.2265625
+341.1410522 16502.203125
+349.1607056 13478.3642578125
+359.1450806 49832.921875
+360.1457214 19878.990234375
+366.1863403 106500.4765625
+367.1868286 23500.98828125
+369.1382141 32120.15625
+376.1706543 123711.1171875
+377.1555176 79122.7265625
+386.1624451 22202.115234375
+394.1807556 712701.5625
+394.2413025 23130.705078125
+395.183075 160825.171875
+396.1877747 26336.6015625
+412.1878357 27707.0703125
+420.677948 15171.1083984375
+452.1721497 16602.65625
+460.1896973 25571.76953125
+468.2203369 44454.3203125
+477.2143555 26837.365234375
+478.2026062 27907.05078125
+485.2470398 227505.671875
+486.2492981 73286.4609375
+488.1865845 60303.7734375
+492.229248 175683.34375
+492.730835 102506.4921875
+493.2311096 34656.91015625
+495.2277527 62674.77734375
+503.2166138 21615.72265625
+503.7130737 23479.69140625
+505.210083 51707.078125
+506.2125854 48466.16015625
+507.22052 15049.787109375
+512.2255859 40549.10546875
+512.7282104 23415.609375
+513.2313232 14915.18359375
+521.2335205 27748.8203125
+521.7386475 17515.189453125
+523.222168 452540.15625
+524.2241821 115977.546875
+525.2321777 26486.859375
+558.7406616 19877.58984375
+571.7505493 78798.6171875
+572.2738037 329635.34375
+572.7529297 26398.6328125
+573.2788086 104126.0859375
+574.2783813 17775.490234375
+576.2613525 59105.0859375
+576.7601318 36227.2265625
+580.2624512 94600.84375
+580.7550659 2402955.75
+581.2563477 1586915.75
+581.7581787 612871.1875
+582.2591553 115617.7890625
+589.2626953 28159.68359375
+589.7699585 19315.033203125
+598.2739868 47485.16015625
+598.7745361 40701.0390625
+599.2780151 46940.70703125
+599.7775879 75788.890625
+606.2612915 28794.603515625
+624.2703247 57084.90625
+625.269104 28244.42578125
+655.3155518 28210.80859375
+673.324646 422298.5625
+674.3265381 161538.390625
+675.3309326 22687.533203125
+693.2904663 25700.794921875
+784.3637695 19851.1796875
+802.362915 68253.15625
+803.3694458 34567.6171875
+873.4020996 83642.8203125
+874.4059448 42444.4296875
+961.0635376 16465.796875
+1001.459717 15528.5537109375
+1232.753174 14878.0185546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.98.98.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=98"
+RTINSECONDS=10.49794845
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626801 63887.94140625
+64.53048706 41714.328125
+64.58226776 34783.38671875
+64.58626556 27448.6171875
+64.63834381 19385.296875
+66.89769745 17516.388671875
+69.67819214 14103.53125
+116.0944138 14197.380859375
+129.1507721 14631.2431640625
+144.187149 14482.466796875
+149.5646057 28623.095703125
+149.5774841 29327.51171875
+158.7239838 14418.2783203125
+167.09198 52279.09375
+167.2740021 13958.8154296875
+169.0597076 37897.9375
+175.1020355 29561.1171875
+175.1178589 316378.4375
+176.1181641 15220.6474609375
+177.0760651 79005.4609375
+178.0599365 355638.90625
+178.0776825 12825.5
+178.3414154 92287.40625
+179.0624695 19634.33203125
+179.0916138 24259.271484375
+182.0896149 13610.6328125
+183.0747375 19755.712890625
+186.0860443 108769.0625
+190.0598907 15520.376953125
+194.101944 34076.94921875
+195.0863647 4451832.5
+196.0891418 427266.3125
+197.09198 16486.23828125
+200.101944 18776.087890625
+201.0866852 29837.201171875
+206.0911255 166363.609375
+215.0919495 22141.625
+218.1017609 67761.640625
+227.4894714 17274.125
+242.1022797 14835.798828125
+243.0860596 26994.298828125
+244.1171265 22482.2109375
+246.0968628 649312.375
+247.1003723 76690.9375
+249.0958252 20565.359375
+257.122406 104703.5703125
+260.1121521 128050.0234375
+267.1082458 18071.59765625
+270.0967712 112969.296875
+271.1042786 18264.685546875
+278.1500549 22900.125
+283.1419678 62135.8984375
+287.1233215 144604.96875
+288.1072388 1682685.5
+289.11026 273878.875
+290.1117859 25392.8046875
+294.1162109 15857.001953125
+295.1497498 30856.939453125
+303.1422424 22080.55078125
+304.1278687 24699.369140625
+305.1337891 3265056.0
+306.1188965 1225774.5
+307.1209717 215497.375
+308.1231689 17257.03125
+311.1350708 56176.453125
+312.1177368 43172.22265625
+321.1535034 344542.71875
+322.1566162 68311.9140625
+323.098053 21027.96875
+323.1441956 1171921.25
+324.1463318 192048.125
+328.1582031 21864.69921875
+329.1421204 53005.09765625
+338.1421204 46654.1171875
+338.1804199 384498.3125
+338.6451111 31785.84765625
+339.1829529 76022.609375
+341.144928 19050.837890625
+347.1477661 26652.931640625
+349.1607361 30800.96484375
+351.1331177 17792.001953125
+358.1696472 18836.611328125
+359.1437988 69645.5078125
+366.1858521 127665.9921875
+367.1888733 21283.603515625
+369.1363831 39957.13671875
+376.1705322 122483.703125
+377.1557922 93979.734375
+378.1590271 22055.234375
+386.165863 34906.41796875
+394.1806641 774712.5625
+394.240387 25463.32421875
+395.1816711 145006.453125
+396.184082 20903.716796875
+412.1911926 25683.125
+434.174469 23122.998046875
+452.1853027 16780.115234375
+460.1920166 23187.837890625
+468.2218018 47148.45703125
+477.2160645 21137.3984375
+483.7148438 27513.212890625
+485.2468567 225224.578125
+486.2498474 73791.265625
+488.1858826 77775.4375
+492.2288818 165807.671875
+492.7286987 111037.3984375
+493.2277832 36536.015625
+495.2278748 61605.234375
+503.2228394 28171.3359375
+503.7205505 29734.2890625
+505.2116699 60942.76953125
+506.2061157 62358.6796875
+512.2245483 42802.23046875
+512.7297974 28779.916015625
+521.2272339 20207.58203125
+521.732605 24754.814453125
+523.2213135 449136.71875
+524.2236938 125011.4375
+525.234436 21445.056640625
+555.2584839 26348.1328125
+558.744812 26840.6640625
+571.7492676 66028.2421875
+572.2751465 331803.75
+572.7525024 18662.0625
+573.2792969 98926.9375
+576.2595825 63959.6015625
+577.2648315 39147.453125
+580.2631226 92139.3671875
+580.7542725 2349909.0
+580.8389893 34573.4140625
+581.2554321 1577926.375
+581.756958 669347.3125
+581.8634644 32651.458984375
+582.2583618 99087.6015625
+589.2678833 64211.015625
+589.7664795 46010.28125
+598.2704468 39599.03125
+598.770874 31504.8125
+599.2735596 27293.53125
+599.7770996 63173.98828125
+606.2619019 19901.29296875
+624.2677002 44973.9140625
+625.2684326 24905.068359375
+655.3337402 17282.59375
+673.3233032 399201.1875
+674.3262329 150570.328125
+675.3299561 27011.880859375
+693.284668 18133.703125
+711.2945557 23074.439453125
+802.3625488 96908.4296875
+803.3644409 63467.078125
+804.3696899 20163.310546875
+873.3966064 114769.1796875
+874.4028931 47555.2421875
+875.4082031 18723.71875
+1001.468567 25067.984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.99.99.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=99"
+RTINSECONDS=10.60569682
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 66364.359375
+64.53046417 47722.39453125
+64.5819931 47109.06640625
+64.5861969 29460.55078125
+64.63816833 14574.0283203125
+64.64139557 14137.08203125
+65.52577209 17259.73046875
+71.99248505 14805.8154296875
+76.56632233 15115.9697265625
+97.60787964 16652.484375
+149.5619659 30185.185546875
+149.5752411 30468.5
+166.1532288 15129.4326171875
+167.0925751 21572.837890625
+167.7480621 15364.4794921875
+169.0602722 28644.572265625
+175.1176453 297089.21875
+176.1214752 21170.990234375
+177.0758209 64135.31640625
+178.0598755 362616.0
+178.3390961 91974.5859375
+179.0639801 23188.037109375
+179.0912018 15790.23046875
+183.0746613 26882.841796875
+186.0858612 116647.7734375
+189.1043549 15257.97265625
+194.1023407 28531.90625
+195.0862732 4487460.0
+196.0890961 417439.0625
+197.091156 34444.71484375
+200.1018524 24212.576171875
+206.0908966 160692.0
+207.09375 18445.359375
+215.0930328 17137.791015625
+215.7720947 14972.9326171875
+218.1024017 73975.4921875
+221.1016693 16187.61328125
+222.0857239 18128.3125
+234.0979156 29297.51953125
+239.1145325 18367.908203125
+240.0954895 16118.763671875
+246.0968475 676209.5625
+247.0999451 64146.11328125
+249.0958557 14633.1982421875
+257.1228333 142582.90625
+260.1123047 133537.21875
+270.0965576 124404.0
+278.1152954 19375.12890625
+278.1490173 20266.685546875
+283.1425476 43286.75
+287.12323 176516.03125
+288.1071777 1649190.75
+289.1100159 243710.984375
+295.1495667 21683.052734375
+303.1411743 20037.275390625
+305.1336365 3505862.75
+306.1188354 1298966.125
+307.1213684 182750.25
+311.1361694 41672.71875
+312.1162109 31550.3046875
+321.153717 341413.125
+322.1552734 56475.7265625
+323.1441956 1221283.625
+323.2094116 21886.7578125
+324.1462097 170812.90625
+325.1484985 19715.01171875
+328.1613159 22704.44140625
+329.1436462 64766.20703125
+331.1492004 18754.447265625
+338.1449585 41308.84765625
+338.1802063 432775.15625
+338.6451111 17854.65234375
+339.1833496 55871.5625
+343.0380859 14883.0966796875
+347.1461182 23144.462890625
+349.1595764 28564.951171875
+351.129303 20449.74609375
+359.1427002 55314.1796875
+366.1870422 123251.6875
+367.1882935 42846.10546875
+376.1695862 120904.7734375
+377.1558228 64270.01171875
+386.164093 31310.462890625
+394.1804199 753973.4375
+395.1829529 169238.625
+412.1885376 43551.8125
+413.1687317 26429.029296875
+428.1983948 21888.353515625
+430.1853333 19078.421875
+461.1838379 17763.255859375
+468.2203979 42095.30078125
+477.2134705 21701.779296875
+478.2033081 27407.83203125
+485.2469177 209180.390625
+486.2507629 58444.875
+488.1871643 62118.4609375
+492.2290955 167715.625
+492.7302856 107813.21875
+493.2288818 22475.10546875
+495.2258606 64420.87890625
+505.210968 51828.9140625
+506.2094421 62716.34375
+512.2299805 30760.66015625
+512.7302856 18384.267578125
+520.7347412 21898.734375
+521.2339478 46818.1953125
+523.2215576 485911.1875
+524.223999 129574.421875
+525.2304688 25931.94140625
+529.7473755 23203.48046875
+567.2573242 25485.4921875
+571.7509766 80976.6953125
+572.2720337 317823.0625
+573.27771 90445.5078125
+576.2625732 54932.2109375
+576.7641602 23362.080078125
+577.2581787 28933.419921875
+580.2614136 95559.5390625
+580.7544556 2405396.25
+581.2558594 1624206.125
+581.3669434 20671.443359375
+581.7571411 599045.0
+582.258728 107170.9140625
+589.2659912 89401.6953125
+589.7650146 24953.390625
+598.2752075 43504.83203125
+598.7731323 38012.9296875
+599.7758179 116323.3515625
+606.2515869 34535.99609375
+624.269043 50867.4921875
+673.3230591 447371.125
+674.3269043 153814.0
+675.3262939 22929.4296875
+693.2972412 23575.94921875
+802.3624268 100667.171875
+803.3693237 59907.140625
+873.401001 120941.265625
+874.4034424 54648.8828125
+875.4085083 18438.17578125
+1001.450134 24351.857421875
+1058.477417 18108.458984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.100.100.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=100"
+RTINSECONDS=10.71358237
+PEPMASS=598.27001953125
+CHARGE=2+
+50.93025208 13422.16796875
+51.52973938 14253.513671875
+52.01750565 16324.5166015625
+64.52628326 74057.984375
+64.53047943 51263.484375
+64.58203125 57303.7421875
+64.58618927 35656.83984375
+64.63800049 25485.7421875
+64.64129639 16294.306640625
+82.05404663 23522.552734375
+96.33978271 15396.4443359375
+96.51502991 14922.041015625
+97.19831085 14131.529296875
+111.8650055 14635.017578125
+117.8831558 16368.4765625
+149.5617065 18491.904296875
+149.5736847 56851.546875
+167.0918884 48808.00390625
+169.0593109 32089.43359375
+175.1178741 320883.78125
+175.1338348 27142.09765625
+176.1211548 16483.82421875
+177.0757751 76878.34375
+178.0599976 341704.65625
+178.3432159 99354.8203125
+179.0637207 21110.283203125
+183.0752563 35193.58984375
+186.0861206 114916.5859375
+190.0608521 19375.041015625
+194.1024933 31985.6875
+195.086441 4540501.5
+196.089325 421133.1875
+197.0923767 40653.71484375
+200.1007538 40194.32421875
+201.0858459 16284.955078125
+206.0911407 165693.25
+210.0565796 16191.177734375
+212.112854 19587.560546875
+215.0908813 22900.00390625
+218.1015167 54133.9921875
+222.0855713 16103.7529296875
+234.0956879 19384.640625
+246.0742188 11778.2958984375
+246.0970001 651060.6875
+247.0994568 93413.1640625
+257.1229858 114819.6015625
+258.1268005 19642.865234375
+260.1122742 116621.5234375
+261.1156006 17451.578125
+270.096405 154863.375
+277.1397705 32114.400390625
+278.1493835 26845.904296875
+283.1425476 56032.8828125
+287.1233521 159881.9375
+288.0778198 25527.177734375
+288.1074524 1684894.625
+289.1101685 265371.875
+290.1118164 20082.9609375
+294.1184692 22899.283203125
+295.1504822 21304.40234375
+303.1436157 33763.37109375
+305.1340637 3478955.75
+305.2161865 22691.919921875
+306.1193237 1206383.875
+307.1212463 171420.390625
+311.134613 55138.71875
+312.1194153 41954.99609375
+320.1313477 17932.427734375
+321.1540527 362070.125
+322.1560364 57974.90625
+323.0980835 19920.974609375
+323.1445007 1215320.875
+324.1468506 209382.796875
+325.1525574 22014.251953125
+329.1449585 49079.30078125
+338.1416626 67451.578125
+338.1807251 446581.53125
+339.1829529 84579.578125
+347.1497192 23807.662109375
+347.6483459 17548.8125
+349.1586914 24947.173828125
+351.12677 21263.142578125
+359.1445312 57947.3125
+366.1857605 152159.171875
+369.1386108 22438.205078125
+376.1704712 126641.2109375
+377.1567078 85712.125
+378.1560364 17362.9296875
+386.1643677 28046.990234375
+394.1809998 758047.875
+394.2389221 30503.708984375
+395.1830139 192334.4375
+396.1894226 19973.220703125
+412.1878357 41683.92578125
+419.1951294 18034.880859375
+460.1893005 36153.2734375
+463.1905518 18898.287109375
+464.1759644 18677.453125
+468.2234192 45822.26953125
+478.2061157 28144.986328125
+485.2476196 229044.1875
+486.250061 64773.66015625
+488.1853638 53593.14453125
+492.2293091 220194.6875
+492.73172 125702.0390625
+493.2322998 25700.55859375
+495.2256165 56178.6640625
+504.2182617 26840.478515625
+505.2131958 65795.859375
+506.2048035 52798.609375
+512.2279053 66950.3515625
+512.7293701 38357.55078125
+521.2328491 32411.744140625
+523.2224121 533481.0625
+524.223938 145403.59375
+525.2330322 35705.58984375
+529.7441406 17729.912109375
+554.2663574 25150.296875
+555.2490234 20379.4375
+558.7459106 25992.087890625
+571.7489014 112989.5
+572.276123 345188.15625
+572.7521362 31479.544921875
+573.2819824 126835.640625
+574.2782593 19966.01171875
+576.2602539 54249.16015625
+576.7632446 32719.078125
+580.2619629 115940.3359375
+580.7553711 2916455.75
+581.2566528 1969760.875
+581.7583008 702079.5
+581.8638306 24199.93359375
+582.2590332 141212.640625
+589.2669678 92679.6484375
+589.7650757 71131.5078125
+598.2731323 65421.00390625
+598.7831421 31338.85546875
+599.7776489 84884.46875
+606.2555542 40954.5703125
+624.267395 74884.2578125
+625.270874 33712.73828125
+629.298645 19535.609375
+673.3245239 448197.5625
+674.326416 187681.5625
+675.3306885 25982.982421875
+693.2877808 31234.98828125
+802.362793 106073.078125
+803.366272 51326.6953125
+873.3967896 109488.8828125
+874.4000854 46574.54296875
+1001.441406 26037.52734375
+1002.473877 20045.427734375
+1248.746582 19694.140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.101.101.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=101"
+RTINSECONDS=10.82087434
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 61149.14453125
+64.53048706 46881.17578125
+64.58202362 56989.48046875
+64.58616638 28955.515625
+64.63827515 17021.255859375
+64.64151001 14469.9580078125
+74.8118515 15609.7900390625
+74.81650543 12950.4345703125
+81.04625702 17498.388671875
+82.05415344 20684.576171875
+149.5764771 40179.50390625
+167.0924835 38149.796875
+169.0602264 42307.30859375
+175.1177979 321085.09375
+177.0759735 74402.3671875
+178.0601196 339829.96875
+178.3401947 90032.578125
+179.0634918 18102.00390625
+179.0912476 24021.33984375
+182.0909271 18292.734375
+186.0862122 112204.3828125
+187.0964508 14201.1162109375
+194.1030121 44595.90625
+195.086441 4341562.5
+195.1284637 25361.873046875
+196.0890961 450982.625
+197.0918121 35696.1953125
+200.1010132 19998.888671875
+201.0860291 16132.75390625
+206.091095 167675.078125
+213.0847168 15425.9033203125
+218.1023865 43093.4765625
+234.0973816 21827.080078125
+240.0960846 29887.046875
+246.0969696 622927.3125
+247.0998535 89774.5859375
+249.0955353 16006.1279296875
+257.1227417 95880.71875
+260.1124268 115037.4296875
+270.0963745 149827.015625
+277.1380615 25679.6640625
+278.1491699 35021.12890625
+283.1421814 42516.26171875
+287.1238403 150949.15625
+288.1074524 1650903.75
+289.1096497 245152.796875
+294.1152344 16448.248046875
+295.1491699 20682.4140625
+303.1420288 25058.978515625
+305.1339722 3326047.5
+306.1191711 1133991.0
+307.1210327 206873.09375
+308.1257019 21122.904296875
+311.1340332 42367.03515625
+312.1166077 33623.0390625
+321.1540833 363291.75
+322.1564026 70336.75
+323.1444397 1158630.5
+323.1884155 33640.7265625
+324.1467896 161862.1875
+325.1480408 26415.861328125
+329.1438904 53067.75
+331.147522 20308.349609375
+338.1416016 51517.94921875
+338.1806641 403008.75
+339.1835022 96919.0546875
+347.1488342 35221.73828125
+349.1610413 18434.4140625
+351.1305542 21073.05859375
+353.7878418 18265.171875
+358.1676636 22143.650390625
+359.1444397 63764.484375
+366.1865845 133920.484375
+367.1892395 22212.83203125
+369.1382446 32368.255859375
+376.1704407 121900.4453125
+377.1566772 87893.78125
+385.8407593 15794.2177734375
+386.1639404 34995.6796875
+394.1809998 714797.3125
+395.1828003 137958.703125
+412.1899719 33362.859375
+420.6806335 22997.77734375
+464.1708374 15832.11328125
+468.2222595 57866.80078125
+469.2292175 20034.55078125
+477.216156 22103.26953125
+483.7198181 20359.7265625
+485.2470093 187460.1875
+486.2495728 65641.375
+488.1877136 42973.13671875
+492.2290955 196340.390625
+492.7309875 92890.9453125
+495.2281494 60297.12890625
+503.7252197 24230.529296875
+505.2123108 54540.6953125
+506.2039795 45923.2890625
+512.2255249 44318.7578125
+512.7275391 45082.5
+513.2261963 19824.171875
+520.7373047 21730.125
+521.2349854 39245.91796875
+521.7365723 24504.3046875
+523.2223511 457598.75
+524.2235718 131407.5
+525.230835 17926.9609375
+529.7474976 20183.216796875
+558.7450562 30551.8515625
+559.244873 20120.6796875
+571.7503052 93186.6953125
+572.2747803 359274.15625
+573.281189 105755.3359375
+576.760376 36019.93359375
+580.2619629 109578.5703125
+580.755188 2597810.25
+581.2564697 1756615.0
+581.7578125 665441.3125
+581.8634644 20314.04296875
+582.2588501 147542.765625
+589.2659912 81740.828125
+589.7644653 29899.939453125
+598.2745361 61360.625
+598.7733154 44215.44140625
+599.2758789 21285.861328125
+599.776062 35699.87109375
+606.2578125 32957.2734375
+624.2693481 47550.53515625
+625.2756958 24881.232421875
+655.3145752 28332.7734375
+673.3240356 459520.625
+674.3275757 192319.515625
+675.3283081 35333.81640625
+693.2988281 24964.892578125
+802.3648071 119146.609375
+803.3634644 46875.8984375
+873.3994751 115132.265625
+874.3999023 52354.58203125
+1001.448364 23726.50390625
+1058.480713 15986.7890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.102.102.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=102"
+RTINSECONDS=10.92867477
+PEPMASS=598.27001953125
+CHARGE=2+
+51.5675354 13457.767578125
+58.78193665 15020.974609375
+64.52616119 61987.00390625
+64.5304184 48348.06640625
+64.58216095 28994.001953125
+64.58616638 32140.7421875
+64.63786316 19309.46875
+64.64135742 21726.998046875
+65.67520905 13447.689453125
+149.5675659 47880.22265625
+161.800827 12697.3837890625
+167.0915985 39471.515625
+169.059494 29720.939453125
+175.1177063 279142.40625
+176.1196899 34019.35546875
+177.0757599 85865.265625
+178.059906 342800.28125
+178.3424988 85863.5390625
+179.0639648 31567.533203125
+179.092041 29028.74609375
+182.0904846 23878.66015625
+183.076889 15552.591796875
+186.0860748 87703.4765625
+194.102829 31674.416015625
+195.0862732 4300159.0
+195.1280518 20318.46484375
+196.089035 460181.1875
+200.1021423 27977.8828125
+201.0853882 26674.220703125
+206.0908813 166852.625
+212.1142883 15629.5859375
+218.1024017 59741.046875
+222.0849762 17486.521484375
+229.966568 12173.6240234375
+234.0976868 13862.13671875
+240.0956268 23847.01953125
+243.0851288 19340.919921875
+244.1169739 27675.720703125
+246.0968475 664676.0625
+246.1208649 13701.5546875
+247.0992432 75058.8359375
+248.1068726 15940.521484375
+249.0983887 15640.31640625
+257.1227112 96755.8046875
+258.1234436 25281.4921875
+260.11203 91607.2578125
+270.0966797 129127.5078125
+271.1005249 23389.1640625
+277.1412354 20167.4921875
+278.1482849 28089.1015625
+283.1427307 46853.15625
+287.1233521 173083.71875
+288.1071777 1675220.125
+289.1098938 262968.0
+294.1178284 23603.142578125
+295.1516113 17828.42578125
+303.1417542 26047.25390625
+304.1301575 16801.548828125
+305.133728 3256765.0
+306.1188049 1204841.5
+307.1211243 201727.96875
+308.1228638 25140.125
+311.1351318 47194.13671875
+312.1173706 38176.50390625
+318.1440125 19098.45703125
+321.1536865 348949.28125
+322.1562805 62242.4609375
+323.1442261 1119529.625
+324.1464539 192156.6875
+325.1476135 22256.796875
+329.1437683 48826.39453125
+338.1428223 47848.9140625
+338.1804504 409782.78125
+338.644989 23538.646484375
+339.1828003 86976.453125
+346.1703796 25535.30078125
+347.1490479 36204.84765625
+349.1600952 22672.265625
+351.1299133 18111.125
+358.1645813 20229.552734375
+359.1435547 62134.1015625
+360.1490173 18066.06640625
+366.1862793 149016.328125
+368.1521606 15057.166015625
+369.1405029 40930.421875
+376.1694946 114650.8125
+377.1560669 73769.234375
+386.1665039 21407.005859375
+394.1806335 731454.875
+394.2400818 25460.212890625
+395.1821594 172855.78125
+412.1871338 40405.48046875
+460.1917725 18356.2734375
+468.2222595 51209.31640625
+478.206665 27600.91015625
+483.7200317 29743.265625
+485.2467651 230071.890625
+486.2507324 66930.5703125
+488.1863403 68205.8515625
+492.2284241 158499.703125
+492.7312012 71336.5234375
+493.2316284 25578.18359375
+495.2270813 61256.90625
+503.7153931 23170.478515625
+505.2106934 53728.33984375
+506.2055969 60533.63671875
+512.2266235 28982.30078125
+521.2316895 36974.18359375
+521.7327271 24050.939453125
+523.2218628 435378.84375
+524.2251587 124044.359375
+525.2246094 37240.93359375
+553.2285156 17069.484375
+558.743103 17255.158203125
+567.2554932 23118.375
+571.7492065 61921.03515625
+572.2749634 295197.28125
+572.7490845 33538.65234375
+573.2788696 87294.9609375
+574.2687378 29267.296875
+576.2613525 31501.1640625
+577.2617798 22204.3046875
+580.2628784 72382.0625
+580.7547607 2360025.75
+581.2560425 1518249.875
+581.3382568 28949.384765625
+581.6506958 20460.44921875
+581.7575684 551193.8125
+581.8634033 16364.4970703125
+582.2587891 104733.9453125
+589.2677612 44340.43359375
+589.7608032 30765.861328125
+598.2720947 44027.9453125
+598.7728882 33841.47265625
+599.2772217 36062.296875
+599.7768555 75502.5390625
+606.2579346 37360.6015625
+607.2543945 18491.740234375
+624.269104 64060.70703125
+625.2687378 19368.43359375
+656.3114014 19315.482421875
+673.3231812 447281.9375
+674.326355 137865.4375
+675.3262329 37067.26953125
+693.2764282 21924.7265625
+802.3640747 109839.15625
+803.3684082 42472.89453125
+873.4020996 117495.3125
+874.4014893 33619.8515625
+1001.458008 30434.900390625
+1030.861694 16537.15234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.103.103.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=103"
+RTINSECONDS=11.03743701
+PEPMASS=598.27001953125
+CHARGE=2+
+54.78225327 13901.896484375
+58.13718033 15840.537109375
+62.81718063 13892.421875
+64.52630615 57329.93359375
+64.53047943 39720.34375
+64.58202362 43642.1328125
+64.58612823 30930.623046875
+64.63805389 17764.390625
+74.81213379 14020.701171875
+82.05381012 17847.591796875
+90.03896332 14056.54296875
+92.45281982 13080.7294921875
+149.5706635 59265.296875
+167.0914459 61036.58984375
+169.0599365 32837.05078125
+175.1018677 28078.447265625
+175.1178284 292123.6875
+176.1197662 24184.515625
+177.0756378 70902.796875
+178.0599365 336513.40625
+178.3317413 27642.37890625
+178.3509674 76536.8671875
+179.0635223 26325.7265625
+179.0918884 29830.037109375
+183.0748138 17849.873046875
+186.0861511 116253.921875
+194.1029053 42969.58984375
+195.08638 4404084.5
+195.1278381 22136.134765625
+196.0891113 463737.46875
+197.0905151 28474.080078125
+200.1010895 33677.50390625
+206.0909882 161914.515625
+207.0941162 18270.73046875
+212.1134186 15009.19140625
+218.1019897 64957.6171875
+240.0954895 31501.1171875
+243.0873566 17009.111328125
+244.1166229 17837.5078125
+246.0968781 673894.5625
+247.1002197 85331.109375
+249.0967712 21594.958984375
+257.1223145 121324.671875
+260.1122742 125122.4375
+270.097168 127051.515625
+276.1324158 20340.931640625
+278.1486816 25086.353515625
+283.1424561 43463.13671875
+287.1233826 161233.65625
+288.1073608 1672988.5
+289.11026 264223.0
+290.1134033 28363.486328125
+294.1158752 21282.3359375
+295.1497192 20737.822265625
+302.1340332 20689.515625
+303.1440125 36342.19921875
+304.1275635 26325.1484375
+305.1338196 3376280.75
+306.1190796 1225808.125
+307.1208496 206238.828125
+308.1219788 27259.91796875
+309.1272888 20113.5
+311.1348267 44863.40234375
+312.1174011 47706.4453125
+318.1444702 18010.484375
+321.1537476 326722.53125
+322.1557617 53652.2890625
+323.0987854 17887.0390625
+323.1443176 1218224.125
+324.1462402 178730.90625
+325.1520691 15742.892578125
+329.1427917 33271.375
+331.1479797 17013.912109375
+338.1427307 45760.4296875
+338.1803284 435788.3125
+338.6439819 20159.060546875
+339.1827698 84218.171875
+347.1504822 35294.671875
+349.1556091 18312.388671875
+359.1431885 59214.3359375
+360.1410522 15955.6552734375
+366.1863098 132516.109375
+367.188324 23765.21484375
+369.1368408 24208.81640625
+376.1701355 138733.546875
+377.1556702 69188.6796875
+378.15979 26590.265625
+386.1637878 34398.89453125
+394.1807861 698723.1875
+394.2399292 26798.37890625
+395.1821289 164375.59375
+396.1810608 23136.880859375
+412.1807251 23540.04296875
+413.1631775 19093.4296875
+460.1893311 25107.408203125
+468.2200012 32197.140625
+477.2149658 28898.908203125
+478.2015991 17766.162109375
+483.7162781 25112.845703125
+485.2467651 221111.84375
+486.2505493 58213.171875
+488.18573 39965.12109375
+489.188385 16754.517578125
+492.2299194 156960.90625
+492.7299805 100185.703125
+493.2315369 30400.578125
+495.2276611 60081.43359375
+496.230957 34379.47265625
+503.2172852 28186.34765625
+503.7161865 17287.416015625
+505.2129211 55306.38671875
+506.2165222 32933.77734375
+512.2254639 34249.42578125
+512.7264404 22537.3984375
+513.230896 26364.927734375
+521.2330933 39737.51171875
+521.7306519 34467.16015625
+523.2219238 477263.34375
+524.2241211 121613.34375
+525.2283325 19314.26171875
+558.7387085 23187.017578125
+567.7597046 17359.6015625
+571.7498169 81224.3515625
+572.2750244 288310.75
+573.2802124 95720.7890625
+576.2610474 26995.681640625
+576.7628784 24765.578125
+577.2579956 17870.251953125
+580.2606812 114586.234375
+580.7548218 2254411.0
+581.2560425 1607031.375
+581.3689575 17386.45703125
+581.7578125 549250.375
+582.2596436 115252.765625
+589.265686 62170.73828125
+589.7659302 30724.93359375
+598.2729492 57432.65234375
+598.772644 25334.458984375
+599.2776489 32091.166015625
+599.7754517 68188.1484375
+606.2539062 24575.7109375
+612.2685547 15982.380859375
+624.2706299 60993.0
+625.2679443 24475.169921875
+655.3153687 22878.564453125
+656.3053589 16315.1650390625
+673.324585 409912.40625
+674.326416 151625.171875
+675.3289185 32139.357421875
+802.3612061 87550.4453125
+803.3624268 38955.44140625
+822.3509521 22429.609375
+873.4018555 101551.0234375
+874.4013672 44174.76953125
+1001.460327 27185.400390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.104.104.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=104"
+RTINSECONDS=11.14556426
+PEPMASS=598.27001953125
+CHARGE=2+
+51.60621262 14284.6123046875
+64.52620697 71107.2890625
+64.53047943 46302.93359375
+64.58196259 42530.4765625
+64.58612061 33806.1796875
+82.05444336 16197.5400390625
+84.27404022 16342.62890625
+116.5412598 16012.3974609375
+149.5754242 26449.6015625
+167.0917969 60183.6171875
+169.0599518 45578.046875
+175.1177368 320506.15625
+176.119812 21221.123046875
+177.0761261 73292.859375
+178.059967 360580.5625
+178.077652 12605.0390625
+178.3450623 104100.828125
+179.063797 24475.71484375
+179.0910797 29437.16015625
+180.0798492 16593.4296875
+181.0806885 17492.490234375
+183.0745697 18626.484375
+186.0862427 114964.65625
+194.102356 59703.85546875
+195.086319 4643666.5
+196.0892334 443417.6875
+197.092453 31175.564453125
+200.1015625 30640.38671875
+206.0909271 192592.53125
+207.0933838 19374.705078125
+215.0899963 19553.099609375
+218.101593 44056.171875
+222.0850372 17150.953125
+223.0910339 17783.806640625
+223.3814545 17043.24609375
+234.099411 22359.033203125
+244.1184692 20893.5625
+246.0967407 769706.125
+246.1255493 39101.4375
+247.0991211 71902.6796875
+248.1057587 16390.39453125
+257.1226501 126812.4375
+260.1118774 136859.734375
+261.1188354 17916.5234375
+270.0966187 131507.984375
+283.1444092 51366.2265625
+287.123291 160862.546875
+288.1071777 1743219.25
+289.1099243 271095.9375
+290.1122742 26840.33984375
+294.1180115 24360.74609375
+295.1489258 28464.51953125
+303.142334 33137.5546875
+304.1265259 21932.525390625
+305.133667 3648387.5
+306.118988 1170906.125
+307.1211243 223011.203125
+308.1222229 28647.271484375
+311.1344299 64129.625
+312.1168213 52903.69140625
+321.1535645 408383.5
+322.1565552 66982.203125
+323.098114 21254.017578125
+323.1440735 1295150.125
+323.2080688 22578.091796875
+324.1465454 213520.40625
+325.1487122 26819.955078125
+329.1433105 53344.97265625
+331.1534729 18562.583984375
+338.1428833 51855.02734375
+338.1801758 435516.8125
+338.6457214 18595.22265625
+339.1824951 93183.0625
+341.144043 16784.453125
+347.1449585 24731.77734375
+349.1560059 18612.068359375
+351.1346436 23272.578125
+358.1668701 23326.994140625
+359.1438599 77861.390625
+366.1858521 159520.96875
+367.1870117 28953.646484375
+369.1388245 53173.234375
+376.1698608 139668.21875
+377.1560669 69722.4296875
+378.1554565 18612.23828125
+386.1647949 27554.857421875
+394.1805115 823910.0625
+394.240509 22047.626953125
+395.1828308 159497.46875
+396.0818481 15848.31640625
+412.1850586 37836.72265625
+413.1724854 16047.7666015625
+420.6863098 21993.087890625
+460.1860046 26563.693359375
+464.1766357 19013.62890625
+468.2216187 46046.16015625
+477.2164612 19505.193359375
+478.1973267 19802.2734375
+483.7134094 26993.552734375
+485.2467041 234722.625
+486.2509155 72588.5546875
+488.1871643 62613.5546875
+492.2285156 196906.46875
+492.7294006 137371.015625
+493.2333984 29548.87109375
+495.2252197 56966.7734375
+503.7149658 22626.4609375
+505.2102966 55733.74609375
+506.2070618 57698.71875
+512.2243042 51607.53125
+512.7276611 22987.22265625
+521.2324829 29635.525390625
+521.7341309 23752.755859375
+523.2209473 530393.5625
+524.2224731 113005.53125
+525.2265625 36033.54296875
+530.242981 17588.634765625
+554.272644 22189.16796875
+571.7501221 66499.671875
+572.2744141 312600.625
+572.7472534 22687.208984375
+573.2776489 101117.2265625
+576.2653809 36636.6171875
+576.7595215 32176.439453125
+580.2608032 75365.328125
+580.7540894 2516271.25
+581.2553101 1565685.25
+581.3392944 25532.33203125
+581.7571411 606908.5625
+582.2566528 122631.5234375
+589.2635498 74212.375
+589.7619019 27424.515625
+598.2745972 58033.125
+599.2772827 21620.66015625
+599.7786865 71415.5703125
+606.2608032 31470.310546875
+624.2678223 78091.046875
+655.3178101 24152.24609375
+673.3225098 426285.71875
+674.3256226 148407.953125
+675.3234253 46157.7734375
+693.2822876 25429.71484375
+802.3620605 109213.5078125
+803.3673706 40804.91796875
+855.9465332 17131.451171875
+873.3987427 106020.4296875
+874.4051514 55276.71484375
+919.4274902 20605.0859375
+1001.453674 30340.189453125
+1058.490601 23151.720703125
+1167.486694 15908.4697265625
+1171.212769 16604.314453125
+1291.085449 18170.64453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.105.105.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=105"
+RTINSECONDS=11.25283544
+PEPMASS=598.27001953125
+CHARGE=2+
+50.62893295 13930.83984375
+50.82522964 20895.59375
+53.62453079 16036.958984375
+55.69628525 14629.5517578125
+64.52630615 79173.0
+64.5306778 51911.234375
+64.58208466 50800.4609375
+64.58620453 42865.9375
+64.63822174 19390.35546875
+64.64135742 20005.921875
+64.69343567 19284.970703125
+65.57850647 18122.375
+73.52120972 13408.671875
+113.64254 15849.3330078125
+116.7490921 14154.453125
+146.7371216 17111.681640625
+149.5709534 58794.8828125
+167.0917206 23486.7578125
+169.0595856 27824.017578125
+172.6928101 17591.904296875
+175.1179352 298323.96875
+176.1206055 29121.970703125
+177.0758209 76222.3828125
+178.0601196 406539.34375
+178.0779114 23942.658203125
+178.3351746 50056.71875
+178.3546448 51852.0546875
+179.0636139 30317.71875
+179.0921631 28076.19921875
+182.092926 22230.548828125
+183.0750885 31698.568359375
+186.0862885 122629.6796875
+194.1019592 51004.9765625
+195.0865326 4592050.5
+196.0894165 468178.1875
+197.0902252 30781.921875
+200.1022186 40806.359375
+201.0855408 25295.447265625
+206.0913086 140083.65625
+207.0943451 25214.392578125
+212.1143341 24812.44921875
+218.102829 45781.90234375
+240.0964508 25407.0078125
+243.0864105 27037.12109375
+244.118515 19225.0546875
+246.0971527 740982.375
+247.100296 98954.515625
+257.1229553 129110.890625
+260.1127319 105167.8984375
+270.0968933 165972.96875
+277.1391602 16888.1953125
+278.1173096 20953.2578125
+278.1489868 27203.353515625
+283.1429443 43968.05078125
+287.1237488 155360.453125
+288.0774841 20749.677734375
+288.1076355 1803630.375
+289.1102295 254801.765625
+290.1134949 21000.646484375
+294.114624 19848.794921875
+295.1488953 24958.591796875
+302.1308899 20776.705078125
+303.1445923 32101.595703125
+305.1342163 3552908.0
+306.1194458 1241938.375
+307.1213074 205020.875
+307.8547058 15590.740234375
+308.124176 24920.712890625
+311.1358643 67997.84375
+312.1175537 46900.953125
+321.1543274 325614.1875
+322.1578369 59107.875
+323.0983582 21905.2890625
+323.1117859 17931.267578125
+323.1447449 1231332.375
+323.1881714 31518.291015625
+324.1473694 212307.546875
+325.149353 24593.759765625
+329.1427917 58627.41015625
+331.9402466 16763.912109375
+338.1427612 50833.72265625
+338.1807861 431673.03125
+339.1831665 80587.8359375
+341.1493835 17408.103515625
+347.1439514 25825.060546875
+349.15802 30042.171875
+359.1438599 75088.0859375
+366.1868286 134948.9375
+367.1860657 21111.171875
+369.1389465 25643.19140625
+376.170929 119461.3125
+377.15802 66328.6875
+386.1651917 37997.54296875
+394.1813049 743604.375
+394.2393799 29716.474609375
+395.1831665 179312.0
+412.1866455 24013.97265625
+420.6786804 27823.890625
+460.1963501 18209.1953125
+468.2215576 47951.71875
+477.2131958 17148.060546875
+478.2029114 29317.8203125
+483.7201843 34698.92578125
+485.2470398 251390.296875
+486.2497253 47406.69140625
+488.1860657 61104.77734375
+489.1876526 24089.201171875
+492.2303467 176909.484375
+492.7304993 111207.34375
+493.2296448 34625.55078125
+495.2273254 73170.1640625
+496.2313538 17835.046875
+505.2131958 54004.26953125
+506.2068481 53703.59375
+512.2266235 40750.0625
+512.727417 35499.20703125
+521.2334595 41084.60546875
+523.2226562 512841.5625
+524.2250977 154752.28125
+525.2268066 26164.873046875
+541.2359009 17605.5234375
+558.7420654 25297.265625
+568.2598877 21504.0703125
+571.7492676 95546.71875
+572.2755127 377977.78125
+573.2811279 79885.515625
+576.2631836 45952.8046875
+576.7655029 30831.185546875
+577.2661743 26636.12890625
+580.2631226 133765.734375
+580.7558594 2713892.75
+581.257019 1909816.875
+581.7589111 693536.75
+582.2592773 173976.8125
+583.7754517 18801.947265625
+589.2681274 95891.9140625
+589.7684326 48758.3125
+598.2757568 63701.25
+598.776123 41656.64453125
+599.2727051 40575.890625
+599.7766724 86922.5625
+606.258728 35643.859375
+624.2689819 71577.140625
+625.276123 22882.369140625
+673.3256226 406469.21875
+674.3273315 196259.421875
+675.3372803 23161.640625
+693.2906494 22609.0859375
+802.3643188 81205.6484375
+803.3674316 44919.6328125
+859.4019165 18161.609375
+873.4019165 108943.484375
+874.3952026 57814.64453125
+1058.470581 18194.904296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.106.106.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=106"
+RTINSECONDS=11.35983813
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629852 62767.38671875
+64.53063965 50798.1875
+64.58203888 47161.89453125
+64.58609009 32131.556640625
+64.63838959 19762.224609375
+64.64167023 21427.662109375
+74.19848633 12969.43359375
+74.81208038 20117.365234375
+74.81624603 18736.02734375
+85.82784271 14264.201171875
+149.5651855 41152.65625
+153.7539215 15149.21875
+167.0914307 42059.98828125
+169.0599976 40268.92578125
+175.1177673 307296.21875
+176.1208954 30302.458984375
+177.0759735 71439.359375
+178.0599976 327272.71875
+178.0780029 30192.96875
+178.3366547 58486.31640625
+178.3557739 23827.84375
+179.0632324 29561.974609375
+179.0906372 20145.208984375
+182.091156 26329.361328125
+183.0756378 29999.931640625
+186.0860748 122054.28125
+190.0591736 18521.14453125
+194.1030731 30226.033203125
+195.08638 4421736.0
+196.0893402 454001.0
+197.0917969 31755.755859375
+200.102066 37465.19140625
+201.0848389 22580.423828125
+206.0908661 146783.4375
+213.0858154 18471.927734375
+215.0907135 21555.990234375
+218.102356 43282.359375
+222.0861816 18613.1328125
+240.0975037 24815.49609375
+243.0865021 25522.9296875
+244.1179657 26427.375
+246.0969543 658873.125
+246.1256256 26084.1484375
+247.099472 65632.3828125
+257.1227112 112920.453125
+258.1272583 19785.345703125
+260.1128235 103844.7734375
+261.1160583 18328.287109375
+270.0969238 121957.859375
+271.1000671 24727.01953125
+277.1378174 16287.1630859375
+278.1503906 27565.333984375
+283.1435242 30209.201171875
+287.1231689 170848.546875
+288.1073608 1569345.875
+289.1104431 254315.546875
+290.1133728 18700.142578125
+294.1171875 19768.259765625
+295.1487427 29615.10546875
+303.144043 36044.59375
+304.1274719 18985.126953125
+305.1339111 3377521.5
+306.1192017 1153666.375
+307.1213989 186163.234375
+311.1338196 35799.8046875
+312.1178589 35998.078125
+321.1538696 335440.25
+322.1567688 66632.6484375
+323.1444092 1221103.125
+324.1464844 169684.90625
+329.1437073 46125.33203125
+338.1422729 48837.09765625
+338.1805115 398429.78125
+339.1828003 96637.09375
+341.1438293 17762.927734375
+349.1599426 37587.9921875
+358.1620178 21364.234375
+359.1448059 57475.68359375
+366.1860046 118216.171875
+369.138916 17665.63671875
+376.1703796 127971.859375
+377.1587219 81356.84375
+378.1618652 21514.47265625
+386.1656494 27448.82421875
+394.1204224 21731.994140625
+394.1807861 742753.75
+394.2405396 33526.4453125
+395.1829529 166623.28125
+396.1803589 17282.359375
+412.1894531 29222.328125
+420.6824036 22337.423828125
+421.1817932 19916.650390625
+460.1916504 21712.39453125
+468.2203064 52858.71484375
+481.2008667 15476.96875
+485.2472839 194352.125
+486.2498169 69615.53125
+488.1873474 44692.125
+492.229126 136932.875
+492.7300415 89277.5234375
+493.2353821 42161.453125
+495.2258911 55859.48828125
+496.230072 20774.296875
+505.2131042 51923.859375
+506.2025757 52750.23828125
+512.2282715 52383.07421875
+512.7283325 38453.12890625
+513.2305908 21027.787109375
+521.2346191 30720.802734375
+523.2221069 436196.84375
+524.2230835 124673.0546875
+525.2322388 19291.150390625
+554.265686 21849.798828125
+558.7427979 32187.6875
+571.7520142 95934.15625
+572.274353 332124.96875
+572.7502441 34823.65234375
+573.2801514 91475.796875
+574.2839355 24759.025390625
+576.2618408 28554.025390625
+576.7600098 19348.974609375
+580.2620239 86720.3515625
+580.7547607 2326388.25
+581.2561646 1604871.875
+581.3656006 16629.77734375
+581.7579346 620809.0625
+581.8652344 24410.16015625
+582.2589111 125473.015625
+589.2679443 88280.1953125
+589.7684326 61458.99609375
+598.2714233 61361.453125
+598.7719727 29468.91015625
+599.2770386 33170.8359375
+599.7769165 80668.8046875
+606.2573242 41751.43359375
+624.2679443 77328.765625
+673.3241577 468300.71875
+674.3262939 163984.46875
+675.3247681 50250.16796875
+711.3067627 21208.794921875
+802.3635254 106558.7734375
+803.3723145 50433.82421875
+873.4006958 103981.4765625
+874.3961792 50952.80859375
+875.4076538 19678.283203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.107.107.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=107"
+RTINSECONDS=11.46770742
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632904 52661.20703125
+64.53046417 32809.73828125
+64.58197021 39489.0234375
+64.58604431 32757.6953125
+64.64131927 18202.892578125
+67.13550568 16411.8125
+127.1597519 13742.8173828125
+137.9654541 13529.5078125
+147.634201 14014.9326171875
+149.573349 41246.90234375
+167.0914612 52894.79296875
+169.0600739 36947.38671875
+175.1021271 26152.623046875
+175.1179047 314553.90625
+176.1223297 21729.66015625
+177.0760345 83512.875
+178.0600433 352962.0
+178.0782623 24982.162109375
+178.3455811 95420.9375
+179.0635223 26412.626953125
+179.0914764 24104.037109375
+182.091156 25999.23046875
+186.0860291 116903.84375
+190.107132 14416.3974609375
+194.1018372 21333.40625
+195.086441 4425547.5
+195.1285248 23039.544921875
+196.0892639 420953.6875
+197.0921021 21586.1328125
+206.0912323 184166.765625
+215.0910797 23370.138671875
+218.1028595 47976.484375
+222.0846252 18417.40234375
+234.0966187 17746.49609375
+240.0964355 25773.83984375
+243.0864563 18431.5703125
+246.0970459 697545.875
+247.099823 73444.6015625
+257.1225891 117605.921875
+260.1125793 154139.5
+267.109314 13474.8525390625
+270.0973816 126368.34375
+271.1003723 18727.982421875
+278.1493835 25943.775390625
+283.1436768 50014.91796875
+287.1233826 150048.21875
+288.1074524 1686463.375
+289.110321 236433.96875
+290.1129761 23202.392578125
+294.1177063 25658.74609375
+295.1496277 34219.953125
+303.1438293 31156.484375
+304.1310425 24304.19140625
+305.1340637 3306526.0
+305.216217 20616.685546875
+306.1192627 1165324.0
+307.1212769 196704.703125
+311.1348572 67068.375
+312.1175537 44910.49609375
+312.1875916 16280.78125
+321.1541443 354426.78125
+322.1559753 62941.6640625
+323.0989075 23998.345703125
+323.1445923 1184527.375
+324.1464233 180784.265625
+325.1483765 26889.587890625
+329.1443481 56872.5390625
+338.1421509 49334.625
+338.1808167 417569.625
+339.1411438 17431.55859375
+339.1833801 79076.953125
+341.1449585 23117.97265625
+349.1593323 19716.984375
+351.1304321 30915.380859375
+358.1626282 22647.5390625
+359.1446533 71450.046875
+360.1474609 18422.8828125
+366.0383301 16499.53125
+366.1865234 137107.4375
+367.186676 23445.08984375
+369.1404724 18379.369140625
+376.1706238 114621.7265625
+377.1578979 71518.9375
+386.1654358 41464.890625
+394.1810608 716972.5
+394.2403259 29292.8671875
+395.1824341 148784.3125
+396.1885986 19277.197265625
+412.1847839 25712.162109375
+428.2023315 14432.576171875
+434.1737671 17149.91796875
+468.2207336 52551.421875
+477.2173767 25145.044921875
+478.2023621 23895.576171875
+483.7188416 21069.1796875
+485.2478333 194503.828125
+486.2481384 45766.30859375
+488.1864929 39430.6328125
+489.1907959 19265.537109375
+492.2297668 170674.0625
+492.7309875 96839.2109375
+493.2304382 23919.248046875
+495.2295532 67636.7734375
+496.2325134 27355.818359375
+503.2218628 16643.0546875
+505.2120667 63834.5859375
+506.2029419 46409.9609375
+512.2296143 32808.1015625
+512.7267456 24935.267578125
+513.2282715 27168.353515625
+521.2353516 33567.6015625
+521.732605 27255.98828125
+523.2225952 453498.21875
+524.2242432 131782.765625
+525.2352905 31097.8046875
+530.7495728 16194.3583984375
+558.2454834 17736.361328125
+558.7480469 27585.94140625
+567.2677612 20783.4921875
+571.7494507 53215.5078125
+572.2755127 307879.34375
+572.7522583 26245.91015625
+573.2797852 86734.0703125
+576.2601318 37905.00390625
+576.760376 45001.8671875
+577.265625 23453.09765625
+577.7684937 23491.46875
+580.2644653 83567.296875
+580.7553711 2073362.25
+581.2567749 1427094.375
+581.7583618 554117.3125
+582.2598267 115626.296875
+589.7688599 26225.33203125
+598.2727661 66020.6171875
+598.7749634 42064.4375
+599.2776489 42141.140625
+599.7766113 74524.2421875
+606.2593994 29668.1640625
+624.2703247 56472.37109375
+625.2658081 26234.736328125
+673.3252563 409389.8125
+674.3267212 168248.8125
+675.3310547 31894.21875
+784.3613892 16690.978515625
+802.3641968 99803.1640625
+803.3682861 32670.654296875
+873.4015503 101006.5859375
+874.4107056 49078.6796875
+984.3942261 16762.689453125
+1001.468933 26705.681640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.108.108.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=108"
+RTINSECONDS=11.5764197
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13424301 18099.427734375
+64.52618408 70890.140625
+64.53063965 53379.34765625
+64.58200073 44246.36328125
+64.5861969 36941.98046875
+64.63819885 21986.98828125
+64.64136505 15342.1689453125
+74.81197357 17566.412109375
+76.28128052 18025.091796875
+82.05395508 18106.029296875
+91.18183899 14435.998046875
+149.5614166 16244.2861328125
+149.5733643 56731.140625
+161.5376129 15246.326171875
+167.0919647 42610.47265625
+169.0599976 31243.431640625
+175.1177216 307933.375
+176.1204834 15474.7841796875
+177.0760803 75779.6640625
+178.0599976 391243.3125
+178.3488312 95844.65625
+179.0630646 33690.9296875
+179.0907898 19031.6875
+182.0916748 21715.642578125
+183.0751495 41889.83203125
+186.0863495 92009.78125
+194.1024323 30605.478515625
+195.0863953 4548493.5
+195.1284027 28119.6640625
+196.0891266 446169.0625
+197.0917511 45431.703125
+200.1009827 39446.03515625
+206.0911102 186252.625
+209.0763397 16206.5302734375
+209.1020813 16495.3046875
+218.1018219 64576.1796875
+234.0971222 19253.595703125
+239.1158752 18766.650390625
+240.0958099 30504.447265625
+246.0968628 709754.75
+246.1217804 15058.9716796875
+247.0989532 84607.2734375
+257.1230469 121836.828125
+258.1269836 24719.744140625
+260.1126099 116579.65625
+270.0969238 135587.265625
+277.1389465 20543.654296875
+278.1488953 28834.998046875
+283.1434326 57219.6640625
+287.1231689 175574.109375
+288.1072998 1713107.75
+289.1101685 267972.71875
+290.1129456 27271.56640625
+295.1487427 33116.32421875
+303.1401672 24028.134765625
+304.1268616 20145.232421875
+305.1338196 3554475.0
+306.0589905 23676.76171875
+306.118988 1200208.25
+307.1213989 187494.609375
+308.1240234 20273.01953125
+311.1340027 53709.83984375
+312.1159668 44722.046875
+321.1538086 358089.8125
+322.1575012 48741.6640625
+323.1442566 1197999.75
+324.1467285 220271.203125
+329.1437683 66327.90625
+331.1473389 19770.412109375
+338.1416016 57677.79296875
+338.1804504 435766.75
+338.6435547 20193.5546875
+339.1836243 71436.765625
+349.158783 23929.162109375
+351.1290283 23996.384765625
+353.5142212 17056.041015625
+359.1435547 83642.25
+360.1421814 16060.44921875
+366.18573 145367.515625
+369.1377563 29784.087890625
+376.1700134 131806.78125
+377.1554871 81123.9765625
+386.16745 27878.53125
+394.1204529 16918.037109375
+394.1806641 751229.625
+395.1820984 145473.46875
+396.1806335 21207.947265625
+412.1887817 22414.037109375
+420.6790466 29773.880859375
+450.2089233 18191.509765625
+460.1925049 17666.85546875
+463.1800232 18145.646484375
+468.2221985 53287.61328125
+469.2095032 21280.296875
+474.7099609 17644.31640625
+485.2470703 215302.03125
+486.2496948 74650.84375
+488.1855774 53780.75
+492.2287292 166132.921875
+492.7297058 116390.9453125
+493.229126 20852.71484375
+495.2254639 67539.421875
+503.7167053 29959.390625
+505.2116089 58165.21875
+506.2014771 39024.03515625
+512.225769 37844.51953125
+521.2338257 33943.421875
+521.7298584 24418.86328125
+523.2215576 494287.1875
+524.2246704 124017.0078125
+525.2271118 35826.08203125
+555.2538452 21372.0390625
+558.7438965 34753.48828125
+567.2601929 29859.58203125
+571.7496338 67401.7109375
+572.274353 322010.8125
+572.7536011 32979.06640625
+573.2790527 86369.2109375
+576.2593384 36140.7421875
+576.7681274 28896.802734375
+580.2628174 104328.3125
+580.7543945 2430391.25
+580.8391113 34161.38671875
+581.2556152 1699677.25
+581.3372192 29928.724609375
+581.7574463 618535.1875
+582.2576904 114866.0859375
+589.267395 69585.234375
+589.7626343 35804.8984375
+598.2700806 30960.3828125
+598.7759399 26172.169921875
+599.2810669 36568.35546875
+599.7770386 119231.671875
+606.2585449 37721.51171875
+624.2669678 45745.390625
+673.322998 432495.53125
+674.3254395 166163.890625
+693.2888794 22697.900390625
+802.3616943 119313.7734375
+803.3667603 52125.23046875
+873.3974609 103073.2890625
+874.4057617 41485.08984375
+875.4102173 35743.0625
+1001.452271 32006.3671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.109.109.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=109"
+RTINSECONDS=11.68364382
+PEPMASS=598.27001953125
+CHARGE=2+
+55.38913345 13519.8916015625
+58.13443375 17238.57421875
+64.52626801 62234.96875
+64.53054047 39390.984375
+64.58200836 43257.87109375
+64.58618164 28131.767578125
+64.63828278 23566.853515625
+64.6414566 16009.693359375
+76.28548431 14946.595703125
+115.6028824 13786.5791015625
+136.7258606 15068.5859375
+145.1828918 15480.083984375
+149.5692596 55398.87109375
+158.5610657 13462.1455078125
+167.0916901 44565.73046875
+169.0595551 31253.822265625
+175.1177979 331222.78125
+176.1202545 28012.982421875
+177.0760193 68512.6640625
+178.0600128 367713.53125
+178.0772858 13270.798828125
+178.335495 48018.35546875
+178.3545837 38844.75390625
+179.0636902 21151.53515625
+179.0918884 23401.421875
+182.0908051 25692.48828125
+182.7090302 16400.984375
+183.0755768 22490.677734375
+186.0861053 109919.171875
+194.1022797 54463.484375
+195.0864105 4476238.5
+195.1282043 21618.609375
+196.0892334 445924.5
+197.0908661 41163.6328125
+200.1016235 30058.52734375
+201.0850067 17478.287109375
+206.0911407 172301.921875
+212.112793 20973.349609375
+215.0904999 30778.947265625
+218.1021118 62812.6875
+239.1122437 20550.748046875
+240.0958252 26787.4375
+243.087265 26362.25
+244.1170044 18914.740234375
+246.0969696 684206.0625
+247.0993042 71103.2578125
+249.094574 22034.255859375
+257.1225281 114774.9609375
+258.1246643 25087.369140625
+260.1126099 115398.28125
+261.1162109 21247.23828125
+268.1936646 13415.0205078125
+270.0969849 122419.625
+271.1018677 16899.20703125
+272.1125488 13660.3212890625
+276.1071777 21006.958984375
+278.1195068 21360.2109375
+278.1502686 20916.95703125
+279.5470276 13847.8427734375
+283.1430359 52302.7578125
+287.1236572 168197.71875
+288.1073303 1879294.75
+289.1100769 264907.28125
+290.1138 17001.62890625
+294.1165771 26996.154296875
+295.1496887 27098.82421875
+303.1434021 37645.45703125
+304.1254883 15368.453125
+305.1338501 3389066.75
+306.118988 1267973.875
+307.1213684 218420.953125
+308.1222229 18000.234375
+311.1343384 62591.4921875
+312.1162109 28146.75390625
+321.1538086 362413.8125
+322.1574707 85191.96875
+323.0989075 24549.001953125
+323.1443481 1201430.25
+323.2072754 23505.201171875
+324.1467285 181290.71875
+325.155365 14790.5703125
+329.144043 55861.73828125
+331.1491699 15758.6708984375
+337.160675 16579.490234375
+338.1422729 78662.734375
+338.1805725 463347.125
+338.6437378 17771.86328125
+339.183075 96720.6875
+347.1513367 18583.79296875
+349.1617126 34483.125
+358.1621094 24229.037109375
+359.1437988 77235.265625
+366.1860352 121607.9375
+369.1384888 41553.12890625
+376.1698608 120794.9140625
+377.1557007 102693.9375
+386.1630554 27456.5625
+389.1607666 18577.107421875
+394.1807556 769522.875
+395.1821594 150778.25
+396.184906 18457.333984375
+412.1882019 33825.5703125
+413.1691589 20631.3515625
+420.6818237 26587.912109375
+450.2116699 19141.04296875
+460.1888733 22295.59375
+468.2209167 55806.0859375
+477.2164612 31117.267578125
+485.2468262 219413.234375
+486.2517395 74400.0546875
+488.1899414 58853.3046875
+489.1834412 16248.87109375
+492.2285461 200924.46875
+492.7301025 108560.296875
+493.2298584 37207.86328125
+495.2301025 57544.97265625
+505.2133484 59927.04296875
+506.200531 56160.47265625
+507.2082214 28131.82421875
+512.2290039 49908.6171875
+512.7288818 25365.751953125
+520.7380981 22937.333984375
+521.236084 19939.62109375
+523.2220459 498371.9375
+524.2243652 147596.953125
+525.2276611 25357.51171875
+555.2471924 14903.6015625
+558.7415771 18527.205078125
+567.7518311 24074.548828125
+571.7507324 76831.8515625
+572.2738037 301051.46875
+573.2813721 83417.703125
+574.2835693 23277.61328125
+576.2612305 38190.0625
+576.7645874 22302.083984375
+580.2636719 98559.1015625
+580.7545776 2360915.5
+581.2560425 1592208.375
+581.3699341 20317.443359375
+581.7575684 552684.4375
+582.2581177 155892.171875
+589.2655029 47533.83203125
+598.2719116 68418.3984375
+599.2744141 35577.921875
+599.7758179 93589.8671875
+606.2578735 28668.46875
+624.2695923 59733.5625
+625.2703857 24048.42578125
+673.3234253 417749.59375
+674.3257446 164114.0625
+675.3289795 28541.298828125
+693.288269 24651.681640625
+711.2890015 21532.42578125
+802.364563 97385.7734375
+803.3678589 47573.02734375
+848.9718628 16876.810546875
+873.4000854 88266.0390625
+874.4017944 61069.78515625
+1001.465149 27822.21875
+1128.578613 16125.34375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.110.110.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=110"
+RTINSECONDS=11.7927348
+PEPMASS=598.27001953125
+CHARGE=2+
+58.95994186 17589.10546875
+59.70697021 18254.751953125
+64.52624512 68828.0625
+64.53050232 41834.9453125
+64.58222198 35709.81640625
+64.58624268 34036.1640625
+97.35135651 15975.537109375
+109.3079758 16137.1259765625
+149.5698853 61709.3203125
+167.0921173 47610.3515625
+169.0599976 33956.6015625
+175.1179199 325065.3125
+176.0814209 16473.130859375
+177.0759277 65355.51171875
+178.0600739 321380.1875
+178.0780029 21378.5546875
+178.3338318 37342.1015625
+178.3528595 72173.96875
+179.0631104 32666.025390625
+186.0865326 126389.4453125
+187.1914673 19671.3203125
+194.1030579 45681.1171875
+195.0865326 4752978.5
+196.0894012 473943.9375
+197.0924225 36220.04296875
+200.1009369 27939.044921875
+201.0862427 20584.703125
+206.0913696 149180.40625
+215.0906677 20645.40234375
+218.1022797 60770.12109375
+224.8580322 17699.259765625
+234.0957794 22557.970703125
+234.3938446 18183.435546875
+240.0960846 39266.6484375
+243.087738 22678.23828125
+246.0971069 734691.375
+246.1256714 33618.18359375
+247.0995941 94795.1015625
+252.0975037 17386.505859375
+257.1229248 110990.7421875
+260.1128235 117213.0234375
+261.115509 18301.138671875
+270.0970154 110157.5390625
+278.1494751 28070.197265625
+283.1443787 59068.828125
+287.1237488 183987.328125
+288.1076355 1721076.625
+289.1104431 258496.625
+295.1500244 31764.87109375
+304.1272278 21591.15234375
+305.1341553 3487789.0
+306.1192932 1240190.125
+307.1220093 218935.375
+308.125061 23151.087890625
+311.1349182 63428.22265625
+312.117981 42358.1015625
+321.1543884 392587.4375
+322.1569824 63699.8828125
+323.1445923 1368126.125
+324.1471863 191705.59375
+325.1461792 23024.244140625
+329.1436462 52556.34765625
+331.1496582 23417.015625
+338.1427612 45610.0703125
+338.1808472 464961.96875
+338.6441345 34275.4609375
+339.1830444 70491.8515625
+347.1521912 21056.41015625
+349.1600952 35273.8828125
+359.1449585 46908.46484375
+366.1858826 140977.53125
+367.18927 40122.7890625
+369.1417236 29036.34765625
+376.1707153 140130.109375
+377.1568909 87695.140625
+378.1595154 20640.740234375
+386.164917 23925.91796875
+394.1811523 828379.0625
+395.1834106 160675.390625
+404.7897034 21985.833984375
+407.164856 21396.92578125
+412.1900024 34149.62109375
+420.6813049 24509.873046875
+468.2206421 40664.39453125
+478.2087097 21607.529296875
+485.2477112 242357.0625
+486.2529602 46893.90234375
+488.1875 47006.4375
+492.2298584 176488.640625
+492.7294312 113852.546875
+495.2319336 42470.98046875
+503.7211914 26378.39453125
+505.2128296 50769.6953125
+506.2031555 49467.07421875
+512.227356 55166.703125
+521.2372437 25058.61328125
+523.1345215 36070.84375
+523.2227783 548736.8125
+524.2233887 125946.2890625
+525.2272949 26230.98046875
+558.737915 27974.443359375
+571.7509766 87480.2578125
+572.274353 304864.34375
+572.7532959 24342.193359375
+573.2805786 107540.8203125
+576.2609863 41703.4609375
+576.7625732 27891.951171875
+580.2640381 95378.40625
+580.7556152 2674321.75
+581.256897 1785229.625
+581.7589722 610423.625
+581.8656616 29859.837890625
+582.2595825 128339.6875
+589.2687378 145801.171875
+589.765686 68017.046875
+598.2735596 50831.29296875
+598.7788086 35455.01171875
+599.7754517 58460.8984375
+624.2695923 67209.765625
+625.2727661 23302.986328125
+655.3200073 31393.798828125
+673.324585 464217.46875
+674.3266602 162058.6875
+675.3244629 34934.50390625
+693.2896729 24332.052734375
+802.3653564 125173.109375
+803.371582 66110.3984375
+873.4022827 112028.046875
+874.4049683 63747.86328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.111.111.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=111"
+RTINSECONDS=11.89851197
+PEPMASS=598.27001953125
+CHARGE=2+
+53.19253922 11404.2724609375
+58.13423538 12752.1962890625
+64.52622986 57525.0546875
+64.53044891 36953.50390625
+64.58209229 39311.18359375
+64.58621216 29629.73046875
+64.63800049 21927.794921875
+76.28549194 12225.25390625
+90.58937836 11367.8701171875
+149.5691071 47907.48828125
+157.8443909 14368.9814453125
+167.0919952 45129.015625
+169.0597076 42119.21875
+175.1177521 337354.1875
+176.1214905 15562.80859375
+177.0758362 71563.21875
+178.0599518 350853.0625
+178.337738 55689.32421875
+179.0631714 26398.6328125
+179.0917664 36757.23828125
+182.0923462 15248.6884765625
+183.0747986 22640.4609375
+186.0859222 115744.40625
+190.0592346 18799.546875
+194.1022491 49630.16796875
+195.086319 4195931.5
+195.1278076 29831.25390625
+196.0892181 426940.90625
+197.0915833 44779.73046875
+199.0965729 12449.6943359375
+200.1008759 21724.751953125
+201.0866089 20041.62890625
+206.0910492 163706.125
+207.093811 17828.998046875
+212.1138611 20232.17578125
+215.0909729 19981.55078125
+218.1026154 57650.19921875
+239.1130066 13376.4794921875
+240.0967102 28401.0703125
+243.0864105 21132.412109375
+246.0968628 669065.25
+247.0993805 94571.9375
+257.1224976 96261.359375
+260.1120911 102598.7890625
+261.1182861 15104.685546875
+270.0966492 148431.75
+278.1192017 18405.666015625
+278.1500854 24385.037109375
+283.143219 49591.5546875
+287.1232605 161338.890625
+288.1072388 1665428.625
+289.1100159 230797.671875
+290.1123962 27730.619140625
+294.1167908 19998.166015625
+303.1428223 30995.697265625
+305.133728 3199510.5
+306.0591431 19534.7265625
+306.1188354 1217007.25
+307.1208191 185829.484375
+308.1243591 17553.861328125
+311.1346436 52429.41015625
+312.1150818 28774.943359375
+320.1714172 17583.701171875
+321.1536255 359411.375
+322.1567078 74142.2578125
+323.0982971 16223.0146484375
+323.1440735 1137403.875
+324.1464844 188134.625
+329.142334 61640.54296875
+331.1498108 17734.2578125
+338.1414795 56904.33203125
+338.1805115 402147.8125
+338.6435852 25392.0078125
+339.1824341 88551.3203125
+347.1496582 20152.787109375
+349.1585388 22445.609375
+351.1317749 14675.744140625
+359.1445923 69699.1796875
+359.3363037 15836.4052734375
+366.1856995 121475.109375
+367.1867371 17559.751953125
+369.13974 34555.765625
+376.1701355 119754.546875
+377.1544495 85617.0625
+378.1582031 17000.869140625
+386.1650391 19077.3046875
+394.1805115 735041.125
+395.1821594 153691.953125
+412.1873779 29095.833984375
+413.1638184 20839.1953125
+420.6769409 32588.71484375
+434.1758728 20411.111328125
+451.2012024 15832.1962890625
+460.1922302 30249.0546875
+468.2196045 48200.95703125
+469.2203674 23597.26953125
+477.2130737 20792.216796875
+485.2466431 219832.109375
+486.2493591 52869.98828125
+488.1876526 47915.76953125
+492.2293396 171919.296875
+492.730835 93747.6875
+495.2273865 75912.203125
+503.7159424 20692.859375
+505.2121582 64070.00390625
+506.2068787 44148.4453125
+512.2248535 39103.203125
+512.725647 32948.18359375
+521.2352905 24774.248046875
+521.7348633 16619.197265625
+523.2220459 411344.375
+524.2245483 128315.71875
+525.2235718 16456.328125
+555.2510986 17016.3984375
+558.746582 23850.8984375
+571.7502441 72138.390625
+572.2738647 291843.65625
+573.27948 100433.5078125
+576.2568359 32586.224609375
+576.7612305 37522.53515625
+577.2658081 18728.849609375
+580.2592773 80802.1328125
+580.7545166 2166609.75
+581.2556763 1470421.25
+581.3677368 19573.822265625
+581.756958 548363.625
+582.258667 105659.8515625
+589.2738037 29044.92578125
+598.2714233 29020.712890625
+598.7706909 29629.107421875
+599.2754517 46168.58203125
+599.7753906 73372.7890625
+606.258606 21300.091796875
+624.2684937 52196.88671875
+673.3227539 368646.8125
+674.3265381 133207.9375
+675.3267212 49221.6171875
+693.2892456 29104.498046875
+802.3603516 76234.1171875
+803.3630371 46111.66015625
+804.3748169 15138.216796875
+858.3736572 17786.376953125
+873.401062 115671.3203125
+874.4053345 50340.63671875
+1058.498657 19546.439453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.112.112.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=112"
+RTINSECONDS=12.00811053
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13454056 20095.365234375
+58.37792587 21076.775390625
+64.52632904 80161.21875
+64.53075409 52322.00390625
+64.58194733 61550.29296875
+64.58623505 31956.904296875
+64.63799286 25229.8125
+79.97648621 17466.44921875
+89.76396942 19150.556640625
+149.5614319 19148.806640625
+149.5735474 58882.29296875
+154.0739746 16119.7685546875
+167.0918274 50589.140625
+169.059845 35631.359375
+175.118042 318907.1875
+176.1199036 26943.46484375
+177.0762787 67791.15625
+178.0601959 355718.9375
+178.3339081 34584.35546875
+178.3531952 65765.5
+179.0635223 25257.845703125
+179.0918274 29728.623046875
+180.0778198 17639.77734375
+183.0756226 20830.33984375
+186.0861664 112171.921875
+194.1027069 34311.9453125
+195.0865326 4808922.5
+196.0894775 499275.6875
+197.0921478 30484.427734375
+200.1029205 24537.1875
+206.091217 146378.015625
+211.5519867 17119.578125
+218.1029663 59113.671875
+222.0861053 21625.73828125
+240.0962219 33738.0546875
+243.0859985 25845.853515625
+246.0971375 689302.75
+247.0995941 84956.1171875
+249.0966034 19885.646484375
+257.1227417 117523.796875
+260.1130371 111883.96875
+270.0974121 149246.921875
+277.1383057 17794.16015625
+278.1488037 32168.462890625
+283.1424866 57919.00390625
+287.1236877 181039.65625
+288.1076355 1694271.875
+289.1102905 254193.046875
+290.1132507 19715.654296875
+295.1497192 29233.341796875
+303.1428223 34159.8359375
+304.127594 32784.40625
+305.1342163 3487228.75
+306.1194458 1240806.625
+307.1218872 222088.453125
+308.1236877 23224.01171875
+311.1355591 42036.984375
+312.1192017 48491.28125
+320.135437 21141.451171875
+321.1543579 355235.75
+322.1567078 52036.55859375
+323.0976868 27772.142578125
+323.1446533 1249805.625
+324.1474609 203425.796875
+325.1506653 20026.12109375
+329.1448669 47250.5625
+331.1474304 21479.7109375
+338.1442566 36127.109375
+338.1809082 455110.8125
+338.6441956 23625.52734375
+339.184021 86630.2109375
+347.1484985 28408.607421875
+349.1599121 27349.322265625
+359.1451111 56104.17578125
+366.1874084 144561.8125
+367.1890259 24674.384765625
+369.1385193 28959.96484375
+376.1708374 172602.25
+377.1577759 65840.8359375
+386.1635437 23522.431640625
+394.1375122 19221.265625
+394.1812134 815797.0
+394.2401428 30683.99609375
+395.1830139 135824.546875
+396.1877441 20803.849609375
+412.1875305 31242.22265625
+434.1716003 19453.693359375
+468.221283 64954.1953125
+469.2161865 19788.849609375
+477.2158508 21054.212890625
+483.7210083 40717.94921875
+485.2472534 257412.359375
+486.2522888 63474.3671875
+488.1873779 59284.05078125
+492.2295837 189201.78125
+492.7295532 135339.125
+493.2288513 48324.203125
+495.2294922 68846.6640625
+496.2271118 37489.9296875
+503.2182617 20789.833984375
+503.3522339 19118.197265625
+503.7237244 27822.5546875
+505.2105408 61731.3359375
+506.2062988 60652.32421875
+512.2255859 54851.43359375
+512.7279663 34947.6171875
+521.2349854 49265.8515625
+521.7348022 29906.98828125
+523.2227783 526350.1875
+524.225708 151522.375
+525.2270508 45471.96484375
+554.2686768 24667.4375
+555.2578125 25715.388671875
+571.6556396 18334.201171875
+571.7520142 85525.6328125
+572.2762451 376780.15625
+572.7542725 39944.671875
+573.2811279 123954.125
+576.2642212 75728.5859375
+577.262207 27593.060546875
+580.2651367 121782.453125
+580.7557983 2877038.0
+581.2568359 2002886.625
+581.758606 707587.5
+581.8637085 28996.544921875
+582.2595825 120046.71875
+589.2686768 143689.71875
+589.7668457 67714.4609375
+590.2712402 24523.716796875
+598.2729492 77460.5390625
+598.7772217 36055.31640625
+599.7770996 70162.640625
+606.2589111 54984.57421875
+624.2694702 79293.890625
+656.3092041 25549.83984375
+673.3247681 488044.3125
+674.3284302 196018.59375
+675.3289795 27476.978515625
+693.2948608 21658.19140625
+744.9276733 20936.169921875
+802.3656006 100355.8515625
+803.3665161 61275.75
+804.3656006 21235.501953125
+873.4023438 120604.2734375
+874.4049072 60181.01171875
+1001.443054 21815.88671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.113.113.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=113"
+RTINSECONDS=12.11436246
+PEPMASS=598.27001953125
+CHARGE=2+
+50.71552658 14278.4931640625
+58.13428879 20620.587890625
+64.52628326 68321.984375
+64.53069305 49123.46875
+64.58205414 53156.84375
+64.58618927 33575.984375
+64.63816833 18912.068359375
+74.81192017 18940.517578125
+74.81594849 17449.244140625
+76.28595734 12421.6962890625
+82.05517578 16470.51953125
+85.4031601 14222.875
+108.7931442 13769.7001953125
+149.5614624 16157.9599609375
+149.5728149 37333.52734375
+167.0918579 42659.78125
+169.0596619 32234.203125
+175.1020508 25063.609375
+175.1179352 303798.21875
+176.1215973 28864.64453125
+177.0761108 58279.55859375
+178.0599365 345809.125
+178.0777435 15073.4423828125
+178.3478851 84701.6015625
+179.0625153 20189.53515625
+179.0906219 20833.591796875
+182.0910797 20000.66015625
+186.0862579 124712.28125
+194.1025848 37535.34375
+195.086441 4223615.5
+196.0892639 431224.8125
+197.0912628 38465.6875
+201.0861969 20536.77734375
+206.0912323 163772.890625
+218.1023254 50791.66796875
+222.0867462 18301.556640625
+239.1127167 15528.5859375
+240.0956116 31922.435546875
+246.0969849 678031.5
+247.0996246 89209.53125
+257.1228943 106549.75
+260.1127625 114049.4140625
+261.1156616 14585.65234375
+262.123291 14790.681640625
+270.0975342 133352.0
+271.1027527 14651.1630859375
+278.1483459 15847.03125
+283.1431274 35006.359375
+287.1234741 144790.046875
+288.1075134 1717622.875
+289.1104736 227713.984375
+290.1120605 15237.1806640625
+295.1492615 27415.642578125
+303.1439209 37818.375
+304.1246033 16169.0439453125
+305.1340637 3198642.75
+306.1193542 1166426.0
+307.1214905 184726.3125
+311.1357422 43936.09375
+312.1172791 58419.98828125
+321.1542358 328842.125
+322.1582947 55407.7734375
+323.1445312 1183798.375
+324.1469727 224842.5625
+329.1432495 46995.58984375
+338.1420288 48435.01953125
+338.1808167 425726.34375
+338.6445618 18587.587890625
+339.1829529 71664.75
+347.149353 16923.890625
+349.1594238 27621.416015625
+359.1445618 61289.3984375
+366.1870117 116123.8203125
+367.1881104 36039.55859375
+369.138031 42645.82421875
+376.1701965 121649.0
+377.1554565 83394.1796875
+378.1578674 24835.359375
+386.1627197 35615.39453125
+389.1558228 16582.4609375
+394.1810608 717568.1875
+395.1828613 132986.484375
+397.863739 13463.8642578125
+412.1894531 30465.13671875
+420.6837769 16003.3134765625
+460.1936646 22610.244140625
+468.220459 47069.10546875
+469.2188416 17531.896484375
+477.2121582 16313.5703125
+483.7194824 20199.041015625
+485.2477112 212565.65625
+486.25 65695.390625
+488.1870117 43400.8984375
+492.2294312 163439.078125
+492.7306213 101457.484375
+493.2319641 30209.25
+495.2260742 53263.07421875
+503.2211609 24041.8125
+505.214447 60996.4609375
+506.2088013 54599.6171875
+512.2293091 53399.03125
+512.7265625 19717.2578125
+521.2359619 15407.2900390625
+521.736145 18730.25390625
+522.237854 15953.947265625
+523.2224121 418585.0
+524.2242432 112100.109375
+525.2319336 28755.5234375
+530.7380981 15180.3642578125
+558.7441406 17899.279296875
+559.2431641 18627.94140625
+571.750061 78345.8359375
+572.2744751 352330.375
+572.7521973 35944.9453125
+573.2800293 87504.0234375
+576.2631836 48357.08984375
+576.7647705 24832.83203125
+577.2633057 27370.15625
+580.262085 90280.4375
+580.7555542 2582036.5
+581.2566528 1842848.125
+581.6504517 16286.5615234375
+581.7583618 669021.4375
+581.8646851 23576.724609375
+582.2590332 132469.5625
+589.2661743 57261.6875
+589.7628784 20810.470703125
+590.2588501 17635.71484375
+598.2728271 66160.2734375
+598.7761841 29902.845703125
+599.2799683 29343.560546875
+599.7762451 79609.6171875
+606.2606201 40948.53125
+607.253479 19671.30078125
+624.2669678 62721.734375
+625.2738037 23336.474609375
+655.315918 22416.6796875
+656.3161621 18666.794921875
+673.3244629 468371.15625
+674.328186 174594.578125
+675.3300781 29088.525390625
+711.2935791 26447.23828125
+778.815979 16767.88671875
+802.3624878 96604.15625
+803.3622437 35451.421875
+804.3804932 26798.07421875
+873.3989868 103560.4453125
+874.4075317 35384.08203125
+959.4502563 15454.6904296875
+1001.46167 28827.91796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.114.114.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=114"
+RTINSECONDS=12.22320975
+PEPMASS=598.27001953125
+CHARGE=2+
+50.32594681 14040.75
+58.13741684 13925.1376953125
+62.16072464 12290.17578125
+64.52626038 64503.28125
+64.53047943 42498.88671875
+64.58197784 44652.1953125
+64.58615875 36673.19921875
+64.63825989 16080.6201171875
+71.63598633 14873.953125
+74.81196594 17840.556640625
+74.81625366 17581.267578125
+75.66135406 13511.1279296875
+84.80321503 12375.76953125
+109.2960205 14475.583984375
+111.0262146 15904.9375
+149.567337 47636.9453125
+167.0923004 31488.8125
+169.0600128 44642.43359375
+175.102005 26744.4921875
+175.1178741 310887.59375
+177.0757904 76675.515625
+178.0599823 372352.28125
+178.078064 19127.05859375
+178.3392944 79907.75
+179.0634613 20261.591796875
+179.091629 36832.55078125
+182.6346588 14270.0771484375
+183.0760803 23437.666015625
+186.0858307 102620.28125
+194.1027527 50090.85546875
+195.0863495 4269805.5
+195.1280212 19494.25
+196.0890656 435230.03125
+197.091568 33292.828125
+200.1019135 29940.130859375
+201.0869446 15417.2939453125
+206.091217 187145.015625
+207.0936127 33220.78515625
+213.085968 16798.189453125
+215.0916595 16721.021484375
+218.1026306 56985.015625
+234.0962982 18108.162109375
+239.112854 15759.375
+240.0965881 34910.00390625
+243.0866547 19286.16796875
+244.1176605 21649.33203125
+246.0968628 683313.4375
+246.1256409 30549.43359375
+247.0993347 69189.1953125
+249.0966797 13695.0078125
+254.3004608 16668.66796875
+257.122406 117976.9453125
+258.1256714 16960.216796875
+260.1123962 113602.4375
+261.1173401 21410.978515625
+270.0968628 114074.3046875
+271.1015625 18528.693359375
+276.1336365 18045.169921875
+278.1485596 25052.462890625
+283.1440125 38562.359375
+287.1231995 146696.484375
+288.1072388 1705820.0
+289.1099854 228863.15625
+290.1135254 28510.1640625
+294.115448 21985.365234375
+302.1313171 17291.447265625
+303.1413879 27766.19140625
+305.133728 3191624.5
+306.1188965 1169051.5
+307.1212463 201690.578125
+308.1236877 33272.765625
+311.1342163 47830.74609375
+312.117218 35074.50390625
+321.1536865 356589.34375
+322.1566772 80210.9609375
+323.1442566 1136226.375
+324.1459045 180893.109375
+329.1427917 52100.55859375
+338.1426697 44193.18359375
+338.1804199 407501.78125
+338.6445007 30398.34765625
+339.1832886 61135.140625
+341.1514587 16191.49609375
+347.1496582 21458.6796875
+349.1584167 33686.51953125
+358.1680298 19507.658203125
+359.1429749 64903.00390625
+366.1860962 133619.140625
+367.1887512 30099.71484375
+369.1394653 28763.884765625
+376.170105 119882.15625
+377.15625 83271.921875
+394.1806946 773191.0
+395.1818848 157545.296875
+396.1810913 17594.548828125
+412.1895447 30691.25390625
+420.6824646 16210.9833984375
+468.2196655 49065.19140625
+478.2063599 21998.845703125
+482.1871338 16741.421875
+485.247406 228097.328125
+486.2492371 55886.765625
+488.1845703 64327.19140625
+492.2288208 146229.65625
+492.7289429 86091.0390625
+493.2323303 34100.3125
+495.2253418 48698.015625
+505.2110596 60240.83203125
+506.2154236 31389.75
+512.2265625 57854.3515625
+521.2327881 25953.416015625
+523.2213745 455653.40625
+524.2234497 127798.5234375
+525.227356 27960.287109375
+558.7425537 28435.134765625
+559.2457275 21925.53515625
+571.2268066 18769.125
+571.7472534 96970.5078125
+572.274231 343023.15625
+573.2814331 88275.96875
+576.2571411 28642.92578125
+576.7632446 17752.16015625
+577.2648926 30671.064453125
+580.2639771 87107.1796875
+580.7545166 2432554.5
+581.2556763 1647732.25
+581.336792 26050.8125
+581.3671265 27329.287109375
+581.7573853 657090.875
+582.2573242 139293.859375
+589.2693481 51282.38671875
+589.7709961 17469.45703125
+598.272522 76416.1484375
+598.7720337 33570.48828125
+599.2741089 32510.125
+599.4349365 17554.677734375
+599.7745361 49732.9375
+606.2601318 39852.09765625
+624.2670288 65645.5703125
+625.2717896 22959.373046875
+673.3231812 453856.8125
+674.3267212 157792.71875
+675.326416 26637.37890625
+693.2894897 21436.1796875
+769.4534302 15640.4990234375
+802.3635254 90315.0546875
+803.3748169 41504.92578125
+873.4000244 91520.9921875
+874.4034424 39215.453125
+1001.443054 21695.58203125
+1058.474121 24604.244140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.115.115.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=115"
+RTINSECONDS=12.33165763
+PEPMASS=598.27001953125
+CHARGE=2+
+53.15416718 14832.02734375
+60.70450211 16662.87890625
+64.52628326 66173.3359375
+64.53047943 42806.1015625
+64.58200836 55187.21875
+64.58618164 30576.96484375
+64.63814545 31236.390625
+64.64148712 20697.806640625
+98.01216888 15172.3642578125
+111.9873734 15571.57421875
+149.5674286 48970.77734375
+167.0920563 27726.18359375
+169.0594177 19713.56640625
+169.8985443 16269.5419921875
+175.1023102 21585.6015625
+175.1177216 275264.65625
+176.1207886 17553.716796875
+177.075592 63826.859375
+178.0598602 338048.71875
+178.3362732 61524.91015625
+178.355423 28926.890625
+179.063736 34122.54296875
+182.0904236 18175.9140625
+183.0753326 20778.845703125
+186.0858765 127663.953125
+194.102356 30766.345703125
+195.0862885 4669149.5
+195.1283417 28062.38671875
+196.0890045 430266.59375
+197.0925598 22654.021484375
+200.1015472 34380.140625
+206.0909576 163583.1875
+212.1014862 20216.775390625
+218.1021729 71371.6875
+234.0968018 18415.197265625
+240.0937347 24118.0234375
+246.0967255 639729.75
+247.1005402 81619.734375
+257.1221619 114624.2109375
+258.1242371 21860.17578125
+260.1118164 118722.4609375
+260.9091797 23506.060546875
+270.0964355 135577.109375
+278.1492615 30743.353515625
+283.1439514 48300.96484375
+287.1233215 160422.515625
+288.1070557 1581819.375
+289.1099243 268052.875
+290.1113281 25923.435546875
+294.1177368 21852.314453125
+295.1487122 30717.060546875
+303.1426392 33344.0
+305.133606 3336664.75
+306.1188965 1248413.875
+307.1210022 218370.296875
+311.1343384 55210.99609375
+312.115509 32454.515625
+321.1535339 342140.375
+322.1549072 45214.90234375
+323.0993042 17126.720703125
+323.1441345 1228458.875
+324.1466675 191500.140625
+325.1513367 15873.1142578125
+329.1455383 49471.67578125
+338.1426392 50212.35546875
+338.1802063 474214.3125
+338.6454773 26302.791015625
+339.1820374 86412.984375
+341.1482239 17688.244140625
+349.1584473 32407.80078125
+351.1315613 19668.318359375
+359.1437073 61569.4921875
+360.1424255 22999.7890625
+366.1853638 131012.1953125
+367.1897583 27196.365234375
+369.1359863 27692.728515625
+376.1702271 120979.5859375
+377.1556702 93586.5234375
+378.1606445 23196.076171875
+386.1648865 44934.42578125
+389.1598816 21467.8671875
+394.1803589 770435.25
+395.182251 176733.796875
+396.1846924 18016.326171875
+412.1863403 31009.83203125
+428.1910706 25765.240234375
+460.1873474 23314.41015625
+468.2211304 60520.96875
+477.212677 18164.859375
+478.198822 18457.8828125
+485.24646 208571.78125
+486.2504578 57145.4296875
+488.1876831 57300.82421875
+492.2279358 176422.9375
+492.7286072 120215.453125
+493.2323303 34043.8828125
+495.2251587 61404.4921875
+505.2123718 69498.0
+506.2042847 57279.45703125
+512.2248535 43499.58984375
+512.7252197 38539.875
+520.7375488 21669.685546875
+521.234375 51094.0
+523.2210693 492833.90625
+524.2241211 130263.90625
+525.2283325 21222.048828125
+554.2669678 18286.73828125
+555.2572632 28907.38671875
+558.7427979 45305.8515625
+559.239563 28314.173828125
+559.7456055 22833.1640625
+567.2653198 18389.3125
+571.7475586 104549.9765625
+572.2737427 330356.1875
+573.2780151 98652.3515625
+576.2607422 66664.1484375
+576.7633057 29693.953125
+577.2609863 37836.9609375
+580.2631226 91091.0390625
+580.7540894 2654129.75
+581.2553711 1888468.375
+581.3400879 32622.76171875
+581.7570801 761146.625
+582.2588501 144971.5625
+589.2687988 93689.09375
+589.7626343 53607.16015625
+598.2712402 64566.265625
+598.7768555 45037.203125
+599.7758179 92852.9609375
+606.2557983 36248.70703125
+624.2670898 65452.73828125
+673.3223877 450241.6875
+674.3253784 202689.09375
+675.3319702 56029.13671875
+693.2820435 26103.294921875
+802.3625488 110991.953125
+803.3627319 47980.67578125
+850.7514038 17596.96484375
+873.3973389 113061.875
+874.4006958 46692.9140625
+1002.463684 23866.0703125
+1012.156189 17896.658203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.116.116.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=116"
+RTINSECONDS=12.4385996
+PEPMASS=598.27001953125
+CHARGE=2+
+51.16081238 12082.2880859375
+54.66535568 12774.685546875
+58.13428879 12608.9658203125
+58.13721466 15509.123046875
+63.11252594 12686.509765625
+64.52625275 56245.83984375
+64.53045654 42253.43359375
+64.5821991 28167.548828125
+64.58625793 30006.17578125
+64.63808441 17846.546875
+64.64134216 18718.875
+82.05436707 20954.40234375
+106.6628876 13889.7392578125
+131.8748322 12118.4169921875
+143.1751862 15075.7158203125
+149.5649567 40816.74609375
+159.8871765 12900.9658203125
+167.0919647 42444.85546875
+169.0598602 33946.234375
+173.4493866 13077.4306640625
+175.1178894 299805.625
+177.075943 78323.53125
+178.0601349 313156.6875
+178.0780182 19196.728515625
+178.3498688 74208.21875
+179.0917206 18296.587890625
+182.091217 26206.009765625
+183.0751343 22069.03125
+186.0862122 123427.734375
+194.1020355 36684.42578125
+195.0865021 4133599.5
+196.0895081 443896.09375
+197.0926971 22476.267578125
+200.102066 21515.34765625
+206.0912933 170712.21875
+212.1130524 18546.4140625
+215.0921021 18574.72265625
+218.1025238 67426.4453125
+226.9519806 13468.578125
+234.0980072 26990.755859375
+240.0970001 24410.955078125
+243.0862122 18852.162109375
+244.1180267 23585.212890625
+246.0970917 675884.75
+246.1258087 28443.34765625
+247.0998077 88398.6484375
+249.0946655 16546.365234375
+257.1228027 100440.90625
+258.1272583 15444.8583984375
+260.1127625 105367.4140625
+261.1163635 17954.869140625
+263.6558838 12940.9697265625
+270.0967407 130388.828125
+271.1008301 16424.62109375
+272.1120911 12358.8427734375
+276.1341553 18086.169921875
+277.1404419 13562.73828125
+278.1195068 18453.408203125
+278.1499939 28403.4609375
+283.1437683 55167.84375
+287.1237488 155689.40625
+288.1075745 1752664.375
+289.1103821 239286.75
+294.1174927 17870.06640625
+295.1515503 20328.34765625
+302.1321106 16924.22265625
+303.14505 21814.388671875
+305.1341858 3215903.75
+306.1195068 1180865.875
+307.1210632 199135.75
+308.122345 24561.57421875
+311.1357422 50325.43359375
+312.1175537 40552.41015625
+321.1541748 328305.75
+322.1564636 69238.8046875
+323.1446838 1167909.75
+324.1467285 190206.984375
+325.1512451 18153.865234375
+328.1582947 16370.6796875
+329.1446838 39379.5703125
+338.1422119 51006.76953125
+338.1807556 433949.65625
+338.6431885 26680.701171875
+339.1828918 67581.78125
+341.1417542 15320.8232421875
+347.1494751 20025.1484375
+358.1655273 20548.125
+359.1455383 75136.8984375
+366.1864014 136157.328125
+367.1891174 29434.041015625
+369.1376343 26722.166015625
+376.1704407 113645.734375
+377.1549988 63184.328125
+378.1611938 17907.365234375
+386.1652222 24898.068359375
+394.1811523 689236.5
+394.2400513 25009.916015625
+395.183075 165145.078125
+395.7859192 12830.681640625
+396.1896057 14874.166015625
+412.1901855 36939.37890625
+420.6841736 20614.23828125
+450.2070618 19779.048828125
+460.1955566 19542.763671875
+468.2215576 58331.375
+477.2197266 16127.0380859375
+478.2094116 20024.005859375
+483.7175598 14792.2705078125
+485.2476196 215515.796875
+486.2496033 46408.9296875
+488.1860962 40201.46875
+489.191925 21263.025390625
+492.229126 159730.546875
+492.7293701 76557.921875
+493.2255859 25892.93359375
+495.2276001 57541.96875
+496.2305603 24882.193359375
+503.2190247 14258.392578125
+505.2122803 60604.046875
+506.2042236 47382.44921875
+512.2287598 27767.2734375
+512.7226562 27133.798828125
+521.2338257 36270.50390625
+521.7351685 19469.76171875
+523.2228394 450146.0
+524.2258911 114211.6796875
+525.2314453 18983.798828125
+552.3360596 13642.73046875
+558.7451172 26643.2109375
+571.7504272 97011.703125
+572.2747803 284010.28125
+573.2814331 87250.4375
+574.2774658 20077.748046875
+575.2545776 16329.6845703125
+576.2619629 38242.04296875
+576.7644043 35944.34375
+577.2637329 19423.794921875
+580.2644043 67567.1640625
+580.7558594 2091462.625
+581.2568359 1364639.125
+581.758606 521618.59375
+582.2601318 106232.1640625
+589.2644043 25371.298828125
+598.2728271 61785.24609375
+598.7772217 18787.1328125
+599.27771 22535.642578125
+599.7791138 76105.0546875
+606.2557373 45375.05078125
+624.2701416 49301.6875
+673.3250122 375238.3125
+674.3275146 122120.0703125
+675.3319092 34159.2890625
+802.3654785 81594.3515625
+803.3699951 38917.5859375
+873.4013062 93438.0546875
+874.4020386 56253.984375
+1058.48645 18873.091796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.117.117.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=117"
+RTINSECONDS=12.54844613
+PEPMASS=598.27001953125
+CHARGE=2+
+57.65415955 14738.017578125
+58.13440323 18386.353515625
+58.13724136 17072.392578125
+58.72484207 14006.91015625
+64.52627563 67325.3671875
+64.53073883 54830.71484375
+64.58201599 48570.94921875
+64.58612061 33523.8828125
+71.8800354 16480.173828125
+149.5722961 61176.6953125
+167.0923309 36430.08203125
+169.0598602 32215.525390625
+175.1177826 339044.75
+177.0757446 51615.28125
+178.0600433 341040.96875
+178.3350067 40351.50390625
+178.3540192 47944.328125
+179.063385 26120.12890625
+179.0918732 29922.54296875
+183.0757599 29743.099609375
+186.0861511 103320.96875
+190.8356476 16790.6484375
+194.1016998 47255.79296875
+195.0864105 4541489.0
+195.1281738 34203.9375
+196.0891113 403254.34375
+197.092865 30847.029296875
+200.1022949 39689.66015625
+201.0852203 30294.666015625
+205.060257 20463.376953125
+206.0910187 167393.359375
+209.0771027 20084.21875
+217.2670135 15599.9765625
+218.1018829 59920.80078125
+233.1243591 18704.04296875
+234.0963135 18343.96875
+243.084137 23521.18359375
+244.1176453 19963.673828125
+246.0968781 674094.5
+247.0991364 73322.6953125
+257.1227112 114341.15625
+258.1253357 24000.185546875
+260.1122437 101338.4375
+261.1178894 27995.69921875
+270.0966797 126800.1953125
+277.1380005 19220.19140625
+278.1480713 40743.80078125
+283.1419983 23114.939453125
+287.1233215 145809.375
+288.1073914 1641901.875
+289.1099548 274782.1875
+290.1121216 21910.61328125
+294.112915 20860.8359375
+295.149353 41547.41015625
+303.1430969 25795.625
+305.1339111 3436789.5
+305.2158813 26465.720703125
+306.0592041 21498.74609375
+306.118927 1285375.0
+307.1211243 189488.09375
+308.1211548 19518.791015625
+311.1349792 52664.53515625
+312.1174316 53047.45703125
+318.1429138 19733.705078125
+321.1539917 348000.40625
+322.1569519 67449.6171875
+323.1443481 1186398.125
+324.1463013 229858.46875
+329.1428833 63354.69140625
+338.1420593 59199.515625
+338.180481 424088.5
+339.1828308 84804.5234375
+341.1416016 19265.072265625
+347.150238 29341.49609375
+349.1571045 18086.150390625
+351.1309204 19686.31640625
+359.1444702 60458.91796875
+366.1867065 131420.609375
+369.1371155 24050.146484375
+376.1699829 131193.640625
+377.1570129 101548.9765625
+386.1670532 32943.94140625
+394.1807861 811683.75
+394.2402344 32433.576171875
+395.1828003 163041.125
+396.1838989 23052.021484375
+397.6821289 17360.046875
+412.1869507 46065.515625
+413.1638489 28742.744140625
+420.6858215 26200.986328125
+468.2221069 48904.1640625
+469.2135925 17631.53515625
+477.2174377 25281.900390625
+478.2016296 19299.6796875
+483.217865 22237.505859375
+483.717926 23199.806640625
+485.2472229 239937.609375
+486.25 66562.609375
+488.18927 41258.59375
+492.2295532 187949.796875
+492.7307129 83751.796875
+493.2310791 35521.87109375
+495.2252808 59554.9375
+503.2226257 21588.326171875
+505.2103271 50506.4765625
+506.2043457 63319.37890625
+512.2313232 33253.9609375
+512.7234497 24908.578125
+521.2334595 46175.55859375
+521.7318726 39141.75390625
+523.2217407 499122.1875
+524.223938 150331.96875
+525.2298584 32141.130859375
+529.7468262 24074.9453125
+556.2469482 20641.041015625
+558.7445068 26429.736328125
+559.2470093 20222.748046875
+567.2625732 23037.69140625
+571.748291 100964.515625
+572.274231 346843.5625
+573.2775879 95082.203125
+574.2787476 19794.474609375
+575.2659912 19570.0859375
+576.2609253 49616.53515625
+576.7648926 38343.81640625
+580.2634888 99072.8125
+580.7547607 2467665.5
+581.2559204 1777345.875
+581.366333 18692.630859375
+581.7575684 563595.6875
+582.2587891 127241.7265625
+589.2669678 96339.46875
+589.7696533 52030.83984375
+598.2732544 66485.8125
+598.7709351 33427.69921875
+599.2720337 19538.34765625
+599.7770386 75984.75
+606.2590332 47882.48046875
+624.2680664 42688.47265625
+625.2694092 27117.2890625
+673.322998 424458.1875
+674.3272095 148943.21875
+675.3283691 39069.3828125
+711.3013306 27131.232421875
+802.3643799 104375.5234375
+803.3655396 51909.31640625
+873.3966064 77126.7421875
+874.40448 46748.55078125
+1001.464417 28794.62109375
+1002.439453 17529.083984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.118.118.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=118"
+RTINSECONDS=12.6554459
+PEPMASS=598.27001953125
+CHARGE=2+
+50.84578705 10743.19921875
+58.13417435 23402.669921875
+58.13715744 15793.0498046875
+64.52616119 52721.12890625
+64.53044128 35769.58203125
+64.58201599 35374.58203125
+64.58618164 26760.310546875
+76.28134155 17076.177734375
+81.04656219 15850.576171875
+111.9442596 11528.126953125
+116.1273117 13334.5986328125
+118.0178528 13592.1923828125
+120.2151642 12664.0263671875
+145.1826782 13036.06640625
+149.5717773 47955.1796875
+167.0908356 41594.83203125
+168.6643524 11897.7294921875
+169.0593414 27146.142578125
+175.1177216 318193.34375
+176.1207275 19012.302734375
+177.0759583 87394.6953125
+178.0598602 365236.5
+178.0779114 16582.42578125
+178.3343353 31896.45703125
+178.3535461 36842.6640625
+179.0639496 22139.580078125
+179.0916748 17971.482421875
+182.0913239 16966.53125
+183.0743713 21265.720703125
+186.0859375 112822.4296875
+193.2019806 12850.6728515625
+194.102829 41048.83203125
+195.086319 3963419.25
+195.1281891 17818.419921875
+196.0891571 408766.1875
+197.0925903 18389.95703125
+200.1012878 28725.951171875
+206.0910645 162193.96875
+207.0939941 25583.5859375
+212.1139984 15690.376953125
+213.0845795 15878.115234375
+215.0901947 15075.267578125
+218.1021881 66609.2734375
+222.0888519 11196.0625
+233.1255188 20429.396484375
+234.0971527 15487.623046875
+240.0954132 16266.796875
+243.0851746 25448.82421875
+246.0968781 629844.0625
+247.0998535 84660.6171875
+249.0982361 15175.8955078125
+257.1228638 110289.1171875
+260.0837402 19481.599609375
+260.1125488 100363.28125
+261.1183472 16176.7578125
+270.0971069 143263.46875
+276.1335144 17342.095703125
+277.1386719 15597.451171875
+278.1488953 27683.90234375
+283.1428833 45561.6796875
+284.2927246 13507.9384765625
+287.1233521 182840.5
+288.1073303 1667124.125
+289.1101685 260446.28125
+290.1149292 19439.748046875
+295.1509094 33056.39453125
+303.1436157 26459.392578125
+304.128418 22128.9453125
+305.1338196 3089058.0
+306.1190796 1129822.125
+306.1990662 19797.0390625
+307.1212463 183708.59375
+308.1220703 25378.3515625
+311.1351929 47033.06640625
+312.1159058 29422.294921875
+320.1318054 20765.578125
+321.153717 362407.625
+322.1547852 50568.83203125
+323.1443176 1080483.375
+324.1468506 199883.1875
+325.1487427 17457.95703125
+329.1434631 57923.0546875
+338.1427612 54473.44140625
+338.1805115 395209.84375
+338.6465454 21900.791015625
+339.1829529 55709.56640625
+347.151001 29775.41015625
+349.1590271 29267.755859375
+351.1291809 16909.759765625
+358.1645813 16403.34765625
+359.1451416 55143.43359375
+366.1858521 147835.53125
+369.138916 30436.515625
+376.1696472 122395.3125
+377.157959 92701.5078125
+386.1651611 23183.517578125
+394.180603 729396.125
+394.2398682 20714.326171875
+395.1830444 146752.71875
+396.1861572 17188.046875
+412.1861877 26526.07421875
+420.684845 15990.923828125
+460.1893311 32286.15625
+468.2217407 58125.83203125
+477.2112732 18497.560546875
+483.2321167 16330.60546875
+485.2471313 208488.296875
+486.2494812 61219.03125
+488.1860657 59736.66015625
+492.2287292 154501.296875
+492.7300415 88077.2109375
+493.2315063 22318.79296875
+495.2261963 53477.375
+496.2271423 22210.2734375
+503.7167358 24723.5
+505.2110596 40540.73046875
+506.2098999 38212.55078125
+512.2267456 43258.01171875
+513.2317505 14113.353515625
+521.2310181 44452.328125
+521.7260742 16064.9091796875
+523.2218628 490391.5625
+524.2249146 116458.953125
+555.2458496 23819.46875
+557.2437744 17109.521484375
+558.7421875 23330.015625
+567.2591553 17406.970703125
+571.7494507 67434.0703125
+572.2749023 304352.46875
+573.2807007 104851.5859375
+575.262085 15587.77734375
+576.262085 38913.4296875
+576.7636108 25947.37109375
+577.2664795 40395.12890625
+580.262207 74604.9609375
+580.7549438 2140753.5
+581.2562256 1375934.75
+581.3705444 17819.71875
+581.7579346 518513.875
+582.2583618 87305.0
+589.2670898 37452.91015625
+589.7758179 17749.037109375
+598.2718506 41905.34765625
+598.7740479 28139.404296875
+599.2767334 21848.70703125
+599.7772217 81727.1484375
+606.2578735 26584.310546875
+624.2694702 63743.99609375
+625.2735596 17358.328125
+655.3119507 21780.814453125
+673.3239746 382229.0625
+674.3267212 147601.890625
+675.3272705 26610.71875
+693.2867432 19682.4375
+711.2994995 14201.994140625
+802.3637085 73252.7265625
+803.3710938 37139.66015625
+873.3996582 107196.265625
+874.4157104 33329.765625
+1001.444885 30262.60546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.119.119.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=119"
+RTINSECONDS=12.76589075
+PEPMASS=598.27001953125
+CHARGE=2+
+52.50226212 17634.6875
+56.09545135 15711.568359375
+57.68579102 17094.23046875
+59.73122025 19050.392578125
+60.56911087 18734.8125
+64.52627563 77120.390625
+64.53066254 59371.97265625
+64.58198547 57262.46875
+64.58613586 45058.16015625
+64.63822937 29162.162109375
+64.64147186 21457.791015625
+138.3860016 17998.388671875
+149.5705719 74525.03125
+167.0917664 34260.57421875
+169.0593109 37532.5234375
+175.1177063 309038.90625
+176.121994 35526.36328125
+177.0755615 55945.0859375
+178.0597992 360018.15625
+178.3412018 120232.640625
+179.063797 31336.181640625
+186.0860138 119086.6640625
+194.1020508 46663.09765625
+195.0863037 4682653.0
+196.089035 437067.21875
+197.0911407 40553.203125
+200.1024323 23029.03125
+201.0860138 24900.443359375
+206.0909882 186909.640625
+212.1116486 26534.169921875
+218.1025848 63651.296875
+233.1278076 23990.59375
+234.0971985 31520.322265625
+240.0960541 27076.796875
+243.0841827 28333.263671875
+246.0736694 12801.95703125
+246.0968628 656646.875
+246.1257324 35480.95703125
+247.0995483 90476.9296875
+257.122345 119165.171875
+260.1122742 139112.3125
+270.0966187 139690.890625
+271.0982666 23554.482421875
+278.1494446 44642.984375
+283.1429749 37370.78125
+287.1233521 161580.40625
+288.1071777 1705467.625
+289.109436 222484.625
+303.1413879 40588.5
+304.1272583 19906.65234375
+305.133667 3597277.75
+306.1190796 1297970.875
+307.1210632 222746.171875
+308.1231079 30219.255859375
+311.1349182 62180.80078125
+312.1168823 30562.541015625
+321.1539001 365981.71875
+322.1573792 58708.77734375
+323.1441956 1250321.375
+324.1465149 202718.6875
+325.1479492 35088.52734375
+329.1427612 57324.35546875
+330.1473389 20826.20703125
+338.1417236 66032.59375
+338.180481 456567.125
+338.645752 25248.70703125
+339.182373 94510.890625
+349.1591797 27394.05859375
+351.1279297 22304.814453125
+358.1659546 23348.568359375
+359.1432495 69332.484375
+366.1845093 139251.453125
+367.187561 20985.900390625
+369.1366272 31037.068359375
+376.1700439 180145.59375
+377.155304 95380.296875
+386.1659241 27835.720703125
+394.180603 851562.4375
+394.2394104 24902.8125
+395.1821594 163892.53125
+396.181366 21221.376953125
+412.1818848 31926.8203125
+467.3453369 18984.203125
+468.2213135 59921.15625
+474.7095947 21581.748046875
+477.2141113 36515.08203125
+478.2041626 20011.427734375
+484.2150269 25966.115234375
+485.2470398 215840.84375
+486.2483215 83389.1015625
+488.186615 49320.421875
+492.2285156 180961.234375
+492.7306213 110319.5703125
+493.2280273 34242.96484375
+495.2277527 51881.578125
+501.2365723 28490.7734375
+503.2163391 20110.51171875
+505.2103882 82200.9765625
+506.1994019 51611.69140625
+507.2073975 20148.71484375
+512.2249146 45539.359375
+512.7284546 50547.77734375
+520.7372437 29053.259765625
+521.2289429 39323.49609375
+521.732605 21652.41796875
+523.2213745 578394.625
+524.2236328 144652.203125
+529.7490234 26754.20703125
+555.25354 36581.0859375
+558.741394 25827.8984375
+571.7504272 84297.1171875
+572.274353 374388.78125
+573.2772217 128150.6328125
+574.2700195 31133.029296875
+575.2730103 25902.759765625
+576.2617798 84015.65625
+576.7585449 50916.546875
+580.2597046 120544.1875
+580.7543945 2990608.0
+581.2557373 2184250.75
+581.3699341 35345.9921875
+581.7570801 798789.875
+582.2592163 139678.375
+589.2662964 216113.3125
+589.7652588 134536.234375
+598.2693481 65583.953125
+598.7727661 46778.8359375
+599.7822266 36700.09765625
+606.2589722 51850.78515625
+624.2669678 97878.1875
+673.3233643 499112.625
+674.3265381 203978.65625
+675.3206177 27189.41796875
+802.3613892 106407.578125
+803.3681641 45780.2734375
+873.3946533 132408.40625
+874.4021606 41048.55078125
+875.4108887 26632.138671875
+1001.456726 27018.744140625
+1176.388062 20571.30078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.120.120.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=120"
+RTINSECONDS=12.87108658
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13415909 16146.3818359375
+62.70827484 12162.3876953125
+62.71255493 12130.529296875
+63.05608749 11977.515625
+64.3022995 13245.4111328125
+64.52622223 56477.02734375
+64.53069305 47777.96484375
+64.5819931 43148.32421875
+64.58615112 24127.638671875
+64.63799286 22690.478515625
+64.6412735 15808.48828125
+65.35700989 13064.0390625
+76.28570557 15151.7119140625
+98.1389389 13580.3125
+109.4894714 14300.265625
+115.7148895 16316.5732421875
+149.5626373 29328.333984375
+149.5764618 29880.91015625
+157.4995728 16274.037109375
+167.0924683 33849.0859375
+169.0601807 28737.861328125
+175.1022186 24174.6953125
+175.1177521 296848.90625
+177.0758209 60063.44921875
+178.0438385 24806.18359375
+178.059906 338557.34375
+178.3329163 32610.69140625
+178.3522949 57412.4765625
+179.0632019 24940.94140625
+179.0912628 22167.12890625
+183.0756226 19826.63671875
+186.0860443 91302.203125
+194.103653 17381.41796875
+195.086319 4054143.0
+195.1279144 22818.5
+196.0891113 399927.28125
+197.0923004 17655.140625
+200.1021118 23585.078125
+201.0858002 28758.5546875
+206.0910797 159937.03125
+207.0927734 18802.5625
+218.1019135 57302.234375
+222.0858917 14667.2412109375
+234.0967712 15488.267578125
+240.0948334 20999.287109375
+243.0860748 27800.388671875
+244.1173096 30722.607421875
+246.096817 675576.6875
+246.1207275 13236.0087890625
+247.099823 73828.875
+257.1228027 105174.171875
+258.1256409 15492.5654296875
+260.1116333 99427.5
+261.119812 13872.2587890625
+270.0966492 136570.6875
+278.1499939 29595.52734375
+283.1437378 42361.51953125
+287.12323 160815.953125
+288.1072388 1700120.0
+289.1101074 255950.390625
+295.1495667 26027.310546875
+303.144043 29745.017578125
+305.1337585 3276803.75
+306.118866 1166761.375
+307.1210938 183078.234375
+308.1250305 18238.181640625
+311.1338501 54719.9375
+312.1177368 48472.0703125
+321.1535034 335320.125
+322.1562805 74727.9453125
+323.0983887 20241.29296875
+323.1441956 1146820.625
+324.1459961 191836.703125
+325.1521301 24741.1640625
+329.1435242 64795.46875
+338.1419067 67357.125
+338.1805115 424832.03125
+339.1827087 83977.9375
+346.168335 16298.666015625
+347.1489868 30400.74609375
+349.1626282 25348.640625
+351.1296692 19371.416015625
+358.1646423 20334.009765625
+359.1434937 73170.546875
+366.1859131 159398.265625
+367.1872559 19064.2734375
+369.1387024 35196.88671875
+376.1697388 129226.921875
+377.1569519 82958.6953125
+378.1622314 16737.8671875
+386.1650391 34365.765625
+389.1566467 14576.79296875
+394.1806335 731655.25
+394.2413635 29576.337890625
+395.1822205 142381.953125
+396.1832581 14500.4033203125
+412.1860962 36562.05078125
+420.6782227 17343.43359375
+421.1804199 18710.818359375
+450.2113342 16094.7861328125
+460.1891479 22157.91015625
+468.2217102 50200.34375
+469.2173767 19730.76953125
+483.7197266 27828.50390625
+485.2472534 226270.234375
+486.2507019 51795.9765625
+488.1861877 60331.76171875
+489.1864929 17356.455078125
+492.2290344 188492.859375
+492.7302856 60366.20703125
+493.2283936 45788.05859375
+495.2268982 58727.55078125
+496.2244873 19113.328125
+503.2184143 19591.60546875
+505.2102661 58381.87890625
+506.2036438 52746.71484375
+512.2275391 48230.109375
+512.7264404 34557.08203125
+513.2312622 18437.494140625
+521.2316284 40795.81640625
+523.2216797 459965.375
+524.2237549 124795.96875
+525.2297974 29828.54296875
+559.2451782 17289.27734375
+567.2524414 19247.138671875
+567.75177 21794.615234375
+571.2305298 21430.423828125
+571.7496948 80797.34375
+572.2734985 309230.53125
+572.7462158 17309.126953125
+573.2803345 89618.140625
+576.2631226 53387.01953125
+576.760437 27346.392578125
+577.2616577 22171.41796875
+580.2615967 66111.625
+580.7546997 2216276.25
+581.2556763 1555075.5
+581.756958 574107.0
+582.2589722 130850.65625
+589.2662354 28652.048828125
+589.765564 28620.8984375
+598.2713623 51296.07421875
+598.7775879 35573.76171875
+599.2792358 41988.74609375
+599.7758179 81666.7265625
+606.2581177 40718.51171875
+624.265625 51117.83203125
+673.3227539 380628.28125
+674.3267822 138918.703125
+675.3203125 28842.208984375
+802.3639526 93314.3125
+803.3648682 42073.625
+873.3966675 90121.5625
+874.4043579 54698.9765625
+1001.460938 23414.82421875
+1002.466003 18017.33984375
+1058.479858 15817.234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.121.121.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=121"
+RTINSECONDS=12.98057194
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52616882 69081.6796875
+64.5304718 50337.58984375
+64.58200836 52697.0703125
+64.58612061 41224.30078125
+79.48919678 18174.138671875
+99.38158417 15181.3427734375
+128.9887238 15111.3759765625
+145.5751801 16984.41015625
+149.5690765 64571.296875
+162.2327576 16100.44921875
+167.0916595 41682.73828125
+169.0596313 39282.9140625
+175.1178284 320147.59375
+176.1200562 25989.95703125
+177.0761261 71024.8828125
+178.0471191 12149.58203125
+178.0598907 375324.875
+178.3375244 65706.0078125
+178.3567352 33817.12890625
+179.0626373 40049.3671875
+179.0909119 23724.220703125
+182.0907745 18345.203125
+183.0755005 31782.251953125
+186.0861206 113036.078125
+194.1025238 46909.87109375
+195.0863342 4757339.5
+195.1280518 27619.931640625
+196.0891266 459066.1875
+197.0917816 39671.2578125
+200.1022339 21239.0625
+201.08461 25239.671875
+206.0908966 158022.953125
+212.1121216 26385.044921875
+218.1026764 53041.33984375
+221.1010284 16783.900390625
+222.0858917 27628.78515625
+240.0958099 28654.470703125
+243.0865173 20669.125
+246.0968475 737819.875
+247.0998077 96258.28125
+257.1222534 107474.765625
+260.1124573 140188.28125
+261.1170044 22126.439453125
+270.0967712 148566.421875
+283.1423035 61033.03125
+287.1234131 176386.859375
+288.1073303 1744008.875
+289.1099854 248273.0625
+294.120636 15790.58203125
+295.1517029 20281.177734375
+303.144989 38298.984375
+304.1269836 30831.296875
+305.1338196 3456858.75
+306.1190491 1247744.75
+307.1211243 236655.828125
+311.1351013 54330.5703125
+312.1171875 46621.2734375
+321.1538696 417152.5
+322.1558533 66277.9921875
+323.1442871 1295294.25
+323.1887207 38344.42578125
+324.1463318 202862.265625
+329.1446228 51378.09765625
+338.1420898 67792.4296875
+338.1803894 440763.875
+338.6461792 20510.349609375
+339.1845398 66584.7265625
+347.1506348 33071.2734375
+349.1605835 38011.87109375
+359.1443787 103899.8671875
+366.18573 144080.109375
+369.1399841 17837.09765625
+376.1712646 137985.75
+377.1555176 104548.203125
+386.1684265 27037.8828125
+389.1557617 22186.193359375
+394.1806641 838921.3125
+395.182373 144312.5
+412.1883545 26754.353515625
+420.686554 20316.9921875
+460.1921387 24713.05078125
+468.2157593 36824.13671875
+477.2168884 28594.568359375
+483.7133789 29437.486328125
+485.2471008 243265.515625
+486.2493286 73651.34375
+488.1848145 52802.37890625
+492.2294617 200891.609375
+492.7311707 103091.3671875
+493.2322693 44811.23046875
+495.2242126 66017.9609375
+496.2227478 21047.888671875
+503.2176208 23263.478515625
+503.7162476 38128.578125
+505.2102356 53074.19140625
+506.2055054 59449.7890625
+512.2266846 56873.13671875
+512.7219849 29765.12890625
+521.2315674 55237.109375
+523.2219238 553741.3125
+524.225708 149667.25
+525.2299194 23933.0859375
+555.2506104 25455.599609375
+567.2531738 22810.8125
+571.7510986 110357.421875
+572.2745972 382847.5625
+572.7567139 37833.375
+573.2783203 109899.0390625
+574.272644 26477.083984375
+576.2612305 47285.734375
+576.7601929 29859.65234375
+577.2623901 32288.314453125
+580.2630005 97188.2421875
+580.7548828 2780683.5
+581.2562256 1924892.25
+581.3679199 30079.087890625
+581.7575684 681925.4375
+582.2601929 156344.828125
+589.2651978 75597.0625
+589.7634888 50644.97265625
+598.2744141 72151.6796875
+598.7735596 34421.4609375
+599.2651367 35222.5234375
+599.7767944 68604.9453125
+606.2597656 53594.80859375
+624.2683105 55992.01171875
+673.3232422 433731.75
+674.3251343 187084.8125
+675.3270874 31657.2734375
+802.3641968 109364.6484375
+803.3665161 44832.76953125
+873.4007568 126958.234375
+874.402771 54578.23046875
+1001.461975 26151.283203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.122.122.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=122"
+RTINSECONDS=13.08706992
+PEPMASS=598.27001953125
+CHARGE=2+
+51.92994308 14373.7021484375
+57.63134384 15164.75390625
+58.13424301 25743.142578125
+58.13705444 14645.3642578125
+64.52628326 66299.515625
+64.5306778 56327.546875
+64.58198547 44902.703125
+64.58616638 32093.626953125
+64.63822937 25863.736328125
+64.64134979 22941.791015625
+73.95413208 16358.056640625
+76.4335022 14113.48828125
+78.46328735 16996.30078125
+79.23789215 15121.2451171875
+82.05402374 16901.29296875
+86.39056396 17546.96484375
+96.29373932 14711.732421875
+149.5743103 41208.33984375
+167.0917358 51982.234375
+169.0596619 35748.984375
+175.1178284 308625.125
+176.1204376 25912.599609375
+177.0752563 52132.1640625
+178.0600281 360383.46875
+178.3379364 70242.828125
+178.3569946 37663.2890625
+179.0633392 34500.09765625
+179.0910339 20809.009765625
+182.0921021 19056.02734375
+183.0752411 35325.2578125
+186.0864258 96086.109375
+194.1026764 39143.78125
+195.086441 4581343.5
+196.0891571 465091.84375
+197.0911407 41355.4609375
+200.1005096 30821.677734375
+201.0865631 21646.923828125
+206.0911255 157724.59375
+215.0913239 33588.828125
+218.1024628 49782.6953125
+222.0855255 20364.244140625
+240.0976105 26281.755859375
+243.0876312 25869.115234375
+244.1171417 17483.57421875
+246.0970459 748674.5625
+247.0999756 84388.1953125
+257.1230774 135786.078125
+260.1127014 120603.734375
+261.1172485 20287.095703125
+270.0965881 125542.078125
+271.102356 22336.8671875
+278.1489258 28683.69140625
+283.1442261 55934.25390625
+287.1236572 175731.75
+288.0777283 23366.30859375
+288.1075745 1673120.125
+289.1098938 262051.0
+294.1152649 30189.7890625
+295.1494751 27417.068359375
+303.1434326 20767.5
+305.1341248 3444138.25
+306.1192932 1232902.375
+307.1216736 215671.5
+311.1344299 36647.87109375
+312.117218 35783.703125
+321.1543579 355168.90625
+322.1564026 64483.57421875
+323.0988464 17144.83984375
+323.1445007 1184698.0
+324.1468506 177421.171875
+325.1501465 18733.78125
+329.1434021 52379.046875
+338.1417236 51574.8828125
+338.1807556 477848.78125
+339.1829224 83907.8359375
+349.1597595 27481.25
+351.1310425 24343.185546875
+358.1662598 19938.67578125
+359.1432495 74555.8125
+360.1462402 24191.2421875
+362.1602783 17883.349609375
+366.1860352 153404.3125
+369.1365356 27100.5859375
+376.1701965 142446.671875
+377.1557007 102511.390625
+378.1581116 26329.041015625
+386.1655273 33493.0859375
+394.1204529 17311.6953125
+394.1810913 767861.6875
+394.2409668 28456.7109375
+395.1827087 151064.59375
+396.1854858 20861.642578125
+412.1890259 34231.05859375
+420.6858215 17228.927734375
+460.1943665 18238.5234375
+463.2044067 23641.642578125
+468.2194519 59032.41796875
+483.7184448 22592.775390625
+485.247467 238288.796875
+486.2492065 56807.6328125
+488.1862488 54877.484375
+492.2293701 165459.640625
+492.7314148 76844.7734375
+493.2347717 41803.05078125
+495.2275391 53593.3359375
+503.7208252 20572.14453125
+505.2121277 67993.8125
+506.2088013 47944.05078125
+512.223877 46128.99609375
+512.7276001 36379.08203125
+521.2319946 46229.05078125
+521.7374878 32997.3125
+523.2227783 519956.8125
+524.2255249 123496.90625
+525.2263794 24658.296875
+558.7453613 26669.84375
+571.7523193 100297.578125
+572.2721558 393342.21875
+572.7453613 31481.716796875
+573.2810669 96977.8359375
+576.2609253 51931.859375
+576.7592163 35641.8671875
+580.263916 84128.9921875
+580.7557373 2667402.25
+581.2567139 1735036.375
+581.7582397 695967.3125
+582.2589722 130669.0859375
+589.2675171 88299.609375
+589.7648926 45469.65625
+598.2767944 59296.40625
+598.7775879 41115.45703125
+599.2766113 26900.42578125
+599.7794189 75644.7265625
+606.2589722 43085.00390625
+607.260376 20761.53515625
+624.2695923 49916.98046875
+625.2744141 27876.400390625
+655.3068237 23407.859375
+673.3257446 459469.6875
+674.3260498 146849.125
+675.3255005 24193.00390625
+693.2940674 23922.064453125
+711.2998657 21776.341796875
+802.364624 101092.5390625
+803.3602905 30425.91796875
+873.4033203 116768.1328125
+874.4069824 56130.734375
+902.5731201 16900.771484375
+1001.456909 35015.40234375
+1002.453735 21418.85546875
+1011.108093 18257.810546875
+1114.261353 18256.36328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.123.123.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=123"
+RTINSECONDS=13.19429808
+PEPMASS=598.27001953125
+CHARGE=2+
+54.96154022 17182.873046875
+58.13440323 18326.908203125
+58.1373291 20654.0390625
+64.52638245 69385.40625
+64.53050995 42322.2890625
+64.58195496 42821.109375
+64.58620453 30736.3359375
+65.39781952 16259.1064453125
+72.57106781 12951.8427734375
+74.81173706 14896.822265625
+81.06539154 15659.123046875
+101.444458 15170.6826171875
+149.5608673 27617.720703125
+149.5760498 39394.9375
+167.0922394 42839.72265625
+169.0597076 31105.79296875
+175.1179199 310971.1875
+175.1330872 14145.984375
+176.1206665 23989.685546875
+177.0761414 58147.7421875
+178.0601807 332238.3125
+178.0756073 11594.369140625
+178.3422546 98273.71875
+179.0650024 17574.068359375
+179.0923309 19255.908203125
+183.0763702 25329.134765625
+186.0862427 126374.109375
+190.1071625 17432.791015625
+194.1044617 32125.439453125
+195.0647125 40386.234375
+195.0865631 4299051.0
+196.0894165 438839.53125
+197.0915527 33035.1171875
+200.1026764 25855.47265625
+201.0858765 19551.306640625
+206.0913696 176504.140625
+206.1098785 21388.248046875
+207.0934906 23956.083984375
+209.0783386 15621.4365234375
+215.0931702 14690.0927734375
+218.1019287 78240.6484375
+233.1277313 14952.0234375
+239.1141968 16702.685546875
+246.0723572 11691.09375
+246.0972595 668617.3125
+247.100296 80215.40625
+253.0942535 15312.8662109375
+257.1229248 114500.5390625
+260.1129761 130348.96875
+267.1082764 16412.71484375
+270.0970459 111917.2265625
+271.1034546 16067.3525390625
+278.1503906 26546.447265625
+283.144165 43367.68359375
+287.1235657 165608.03125
+288.107666 1810556.0
+289.1102295 248235.421875
+290.1142578 26543.380859375
+294.1167908 22144.4921875
+303.1429138 21619.23046875
+304.1255493 18716.03515625
+305.1342163 3442271.75
+306.1194763 1262795.375
+307.1218567 199640.640625
+311.1351318 58991.2421875
+312.1174927 23200.77734375
+321.1544189 325528.875
+322.1567688 61407.734375
+323.1447144 1169960.375
+324.1467896 219603.390625
+325.1494751 23659.80859375
+329.144989 40317.234375
+338.1423645 57386.2890625
+338.1809998 410355.28125
+339.1824341 85832.5625
+347.1503601 23317.595703125
+349.1605225 31005.705078125
+359.1453247 75694.4140625
+366.186554 121607.421875
+367.1887512 33986.5625
+369.1388245 42942.4453125
+376.1705322 132263.328125
+377.1573181 92922.515625
+378.1514893 16117.015625
+386.1669922 36026.33203125
+394.1322632 18686.59765625
+394.1813049 799882.375
+394.2408142 26736.568359375
+395.1829224 165703.0
+396.1891785 20621.90234375
+412.1878357 35208.82421875
+460.1933289 23889.294921875
+468.2218628 49525.31640625
+485.2480469 231168.5625
+486.2487793 34906.390625
+488.1864929 51307.9453125
+492.230011 163805.921875
+492.7316895 93967.703125
+493.2315369 38808.95703125
+495.2315979 44400.28125
+496.2265015 21236.185546875
+503.2230835 24350.087890625
+505.2095947 60128.66796875
+506.2067261 26738.966796875
+507.2074585 14882.0673828125
+512.2281494 54034.52734375
+521.2365723 29758.232421875
+523.2229614 478149.375
+524.2255249 127918.875
+525.2264404 26886.134765625
+529.7379761 21264.875
+555.2554321 20115.896484375
+571.7503662 97839.4609375
+572.2762451 282794.9375
+572.7506104 21211.16796875
+573.2803345 92420.0625
+576.2601929 35507.46484375
+576.7644653 27786.060546875
+577.2678223 21137.482421875
+580.2637329 96162.984375
+580.7556763 2373859.0
+581.256897 1537947.5
+581.7592163 554113.375
+582.2598267 122616.96875
+583.2709961 17970.091796875
+589.2681274 59228.97265625
+589.7767944 20699.59375
+598.2744751 51467.38671875
+598.7756958 44760.90234375
+599.2774658 43873.55078125
+599.7788086 56957.16015625
+606.2573853 33964.0234375
+624.2667236 58330.45703125
+673.3248901 434867.46875
+674.3283691 192468.484375
+675.3295288 34196.1015625
+693.2874146 23703.833984375
+802.364624 96850.4375
+803.3718262 35026.265625
+873.4025879 108625.6328125
+874.4046021 46013.9140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.124.124.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=124"
+RTINSECONDS=13.30219784
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13732529 20972.19921875
+64.52616119 77451.0703125
+64.53046417 48727.921875
+64.58198547 55408.7421875
+64.58620453 34022.92578125
+64.63829803 21308.26953125
+64.64141846 19205.83984375
+66.01109314 16378.8251953125
+74.81131744 16644.45703125
+82.05443573 19607.25
+103.9596863 19257.8125
+132.083313 15421.541015625
+134.4574432 14504.349609375
+136.5435638 16023.8359375
+138.0910645 15853.08203125
+138.5663452 18059.5859375
+149.5750427 54277.7109375
+151.0525055 19307.52734375
+167.0917511 47995.22265625
+169.060379 34885.6015625
+175.1178741 367217.8125
+177.0761566 70701.90625
+178.0599823 363100.28125
+178.3402405 96327.9765625
+179.0634766 27670.111328125
+183.0753174 25720.572265625
+186.0860291 128569.1640625
+190.0607452 22291.638671875
+194.1029205 41577.9296875
+195.0864105 4688962.5
+196.0892487 445171.96875
+197.0919037 21218.759765625
+200.1017609 19699.685546875
+206.0912933 136324.28125
+218.1021881 49383.390625
+224.6903229 17553.560546875
+229.7424011 17328.6640625
+234.0973358 21264.15625
+243.086319 23219.216796875
+244.1174469 29478.521484375
+246.0969543 666867.625
+246.1249237 17963.83984375
+247.1000977 76887.3125
+249.0946503 19276.4765625
+257.1229858 109605.4609375
+259.1304626 18494.38671875
+260.1123352 110029.734375
+261.1138 19244.640625
+270.0966492 147246.734375
+271.1020508 24991.12890625
+283.1444397 32345.59375
+287.12323 188689.640625
+288.1073608 1671794.875
+289.1102295 269540.875
+290.1129761 33370.27734375
+295.1494446 27354.529296875
+303.1425171 22604.388671875
+305.1338806 3524837.75
+306.1191406 1179950.5
+307.1214905 228051.640625
+308.1228027 37649.19921875
+311.1351624 68372.8203125
+312.1171265 43722.33203125
+321.1536865 359227.125
+322.1575012 71323.0234375
+323.1442566 1210289.375
+324.1468201 207900.21875
+329.143158 37338.859375
+338.1424561 58580.41015625
+338.1804504 457491.96875
+339.1831665 64107.70703125
+347.1506348 39377.06640625
+349.1585388 23616.265625
+359.1456909 49182.6640625
+366.1859131 155062.1875
+367.1886902 41210.828125
+369.1389465 33940.515625
+376.1702271 109155.1640625
+377.1554565 87080.1796875
+386.1653137 33941.64453125
+394.1808472 853230.8125
+394.9753418 17771.1171875
+395.1830139 190808.8125
+396.1846924 35292.32421875
+412.1861877 25197.109375
+420.6822815 21511.3125
+468.2217712 60952.41015625
+469.2191467 19745.041015625
+477.2111511 27843.26953125
+478.2007751 31938.060546875
+485.2471619 186846.921875
+486.2493591 82119.125
+488.1859741 56660.44140625
+492.2281494 214072.921875
+492.7298279 118162.7421875
+493.236145 26202.12109375
+495.2297363 55620.9609375
+503.7225037 21426.197265625
+505.2123718 62461.96484375
+506.2054749 56769.14453125
+507.2039795 20110.517578125
+512.2293701 50644.6640625
+512.7303467 25954.818359375
+521.234375 43542.7265625
+521.7400513 29316.951171875
+523.222168 497095.3125
+524.2233887 144049.046875
+525.2304688 36513.4921875
+529.7453613 21782.275390625
+558.7438965 39221.046875
+559.7508545 30151.162109375
+571.7501221 114327.7109375
+572.2747192 370137.71875
+573.2776489 106110.734375
+574.2796631 30177.353515625
+576.2615356 49982.0
+577.2615967 25817.76953125
+580.2627563 110256.796875
+580.7547607 2592610.75
+581.2562866 1834507.0
+581.7576294 735103.8125
+582.2574463 144510.625
+589.2672729 124256.9140625
+589.7666626 62444.2734375
+598.274353 60533.46875
+598.7740479 26919.953125
+599.7766724 54043.14453125
+606.2602539 47752.44140625
+607.2630615 23650.857421875
+624.2678833 69173.28125
+637.8399658 21587.5
+673.3242188 444361.3125
+674.3276978 159524.9375
+675.3360596 28959.97265625
+693.2971802 26827.017578125
+712.2932739 21838.681640625
+802.362915 127647.4296875
+803.3657837 52297.4296875
+873.3972778 122626.3515625
+874.4086914 40423.50390625
+875.4107056 22069.423828125
+1001.462463 22650.85546875
+1002.462463 30553.3671875
+1058.483032 24235.1484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.125.125.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=125"
+RTINSECONDS=13.40824557
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 54011.15234375
+64.5306778 40752.0859375
+64.58194733 32057.015625
+64.58612823 29298.43359375
+64.63812256 20777.046875
+64.64144135 19739.861328125
+76.28556061 14561.90625
+82.05405426 15192.826171875
+149.5731659 39204.57421875
+155.0788116 15358.10546875
+159.1907196 12431.955078125
+167.0918427 42342.0390625
+169.0601959 27518.2109375
+175.1020966 22233.1640625
+175.1176605 290962.625
+176.0810699 11336.46484375
+176.1209106 24006.671875
+177.0759277 83921.71875
+178.0597839 338575.0625
+178.3339691 38741.30859375
+178.3540649 44606.28125
+179.0641632 24020.755859375
+179.0921936 24059.083984375
+182.0911407 20275.130859375
+183.0757141 21251.201171875
+186.0858002 107070.4609375
+190.0603027 19418.6796875
+194.1023102 45556.171875
+195.0862274 3979845.0
+195.1278229 19104.521484375
+196.089035 432327.96875
+197.0922546 31644.021484375
+200.1024475 29451.43359375
+206.0907745 172733.71875
+207.0938873 23319.47265625
+208.0693207 14164.1845703125
+209.1017151 20930.728515625
+215.0924072 14924.7353515625
+218.1022034 57237.56640625
+234.0965118 20452.484375
+240.0955505 26197.330078125
+243.0866241 19966.75390625
+244.1171875 14733.0712890625
+246.0967255 652861.3125
+247.0991211 81193.140625
+248.1108551 12825.837890625
+249.0961609 12785.1005859375
+257.122406 93128.5625
+258.1256409 21691.310546875
+260.1123962 112468.4453125
+270.0967102 133178.765625
+271.1000671 20754.81640625
+278.1181641 16966.13671875
+278.1483765 25639.4296875
+283.1427612 43607.0859375
+287.1230164 145106.015625
+288.1070557 1613824.625
+289.1099548 229410.6875
+290.1127319 20665.697265625
+294.1192627 16093.658203125
+295.1480713 18506.76171875
+303.1412659 26400.1171875
+304.1271362 15763.4658203125
+305.1335144 3190500.75
+305.2157898 17708.6484375
+306.1188354 1120335.125
+307.1206665 183004.0625
+307.9524536 13000.0732421875
+311.1340332 41806.34375
+312.117981 42026.98046875
+321.1537476 326921.46875
+322.1565247 72347.71875
+323.098999 17578.23828125
+323.1440735 1150490.25
+324.1459961 185668.03125
+325.1530457 20297.490234375
+328.158905 14820.9443359375
+329.1426086 40923.98828125
+331.1493225 14112.6689453125
+338.141571 53591.3828125
+338.1802063 388054.4375
+338.6446228 18727.787109375
+339.1821289 61528.33203125
+347.1477356 23213.46875
+349.1608582 24331.703125
+351.1307983 17474.4375
+359.14328 81693.3984375
+366.1855469 118801.9375
+367.1861877 19095.529296875
+369.1415405 16014.341796875
+376.1696472 114347.9140625
+377.157135 78264.203125
+378.1559753 12384.658203125
+386.1634521 28942.82421875
+394.1803589 697976.75
+394.2399902 16092.4912109375
+395.1825256 147894.421875
+396.1868286 16281.8857421875
+412.1878662 30406.638671875
+432.6786499 13730.990234375
+434.1775818 15977.51171875
+460.190033 22333.119140625
+468.2191772 51418.7578125
+477.2131958 21858.876953125
+478.1978149 17749.630859375
+483.7199402 20432.138671875
+485.2467651 224263.15625
+486.2505798 59355.43359375
+488.1872253 59165.30078125
+492.2284851 160554.421875
+492.7306519 96562.09375
+493.2304382 32324.462890625
+495.2253723 64533.84765625
+496.2265625 17583.0234375
+503.7145081 19244.71875
+505.2111511 53622.25
+506.2046814 53126.3671875
+512.2261963 28890.32421875
+512.7279053 36613.046875
+521.2320557 55126.66015625
+523.2208862 460247.875
+524.22229 129016.2578125
+525.2255859 19260.83203125
+541.2312012 16188.3583984375
+554.2699585 19639.552734375
+558.7439575 19287.6171875
+559.2424927 24117.181640625
+559.7481689 24292.423828125
+571.7501221 104537.1171875
+572.2740479 325200.625
+572.7514038 27270.18359375
+573.2784424 94782.796875
+574.2791748 20405.767578125
+576.2583618 31737.189453125
+576.7631836 25231.32421875
+577.2627563 19620.302734375
+580.2615356 79787.5390625
+580.7540283 2045192.625
+580.8394165 25032.828125
+581.255188 1434875.125
+581.756897 583626.25
+581.8626099 22002.501953125
+582.2574463 103835.828125
+589.2650757 33398.34375
+598.2716675 42811.9921875
+598.7721558 15195.69921875
+599.2755737 59789.28125
+599.7746582 100273.1953125
+606.2570801 25073.296875
+624.2643433 46417.3671875
+625.2699585 22972.6640625
+673.3224487 365763.125
+674.3256836 142358.4375
+675.3287354 27369.20703125
+693.2913818 16899.19140625
+711.2954102 15894.69921875
+802.3622437 84903.4375
+803.3613892 24981.5703125
+804.3648682 16941.859375
+873.3968506 86190.984375
+874.4077148 41464.9140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.126.126.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=126"
+RTINSECONDS=13.51875037
+PEPMASS=598.27001953125
+CHARGE=2+
+64.5263443 74342.8046875
+64.53050995 46386.69140625
+64.58200836 60810.51171875
+64.58621979 35134.84375
+64.63830566 20609.388671875
+64.64142609 16948.447265625
+91.25648499 16684.0234375
+116.0608521 18536.685546875
+149.5638885 43052.953125
+167.0920868 33778.953125
+169.0597076 55154.51953125
+175.1178894 354322.25
+175.6168518 19919.01171875
+176.1201172 25600.701171875
+177.0760345 82587.9921875
+178.0600891 372304.875
+178.341095 107117.140625
+179.0637512 31994.404296875
+179.0923157 24196.078125
+182.0909729 29101.96875
+183.0764618 26613.923828125
+186.0864716 119643.1796875
+187.0688782 17391.67578125
+194.1030273 38562.56640625
+195.0864716 4817994.5
+196.0892792 470237.09375
+197.0916748 47838.07421875
+200.1025543 41836.59375
+201.0853119 19232.97265625
+206.0911865 169613.328125
+212.1008301 18806.55078125
+213.0851135 24215.943359375
+217.1266022 20757.142578125
+218.102005 64173.30859375
+221.0999298 22588.720703125
+233.1290588 27396.4609375
+240.0942841 28223.234375
+243.0867157 18592.24609375
+246.0969696 700367.6875
+246.1256714 32758.861328125
+247.1000977 78230.484375
+249.0957489 28840.96875
+257.1224976 126718.515625
+260.1129761 109978.46875
+270.0973511 106755.8359375
+276.1321106 22719.0
+283.1441345 39513.30859375
+287.1236267 191039.6875
+288.1074829 1734928.5
+289.1105042 247867.0
+290.1131287 25553.8125
+294.1162109 29930.884765625
+303.1442871 33998.83203125
+305.1340332 3417054.75
+306.0594482 23654.59765625
+306.1194458 1256247.875
+307.1211853 200727.828125
+308.1252441 34816.203125
+311.1345825 51547.41796875
+312.1171875 51782.6796875
+321.1539307 329316.09375
+322.1573486 61731.1171875
+323.1445312 1287037.125
+323.1885681 36892.79296875
+324.1467896 212858.484375
+325.1563721 25551.265625
+329.1442566 52690.79296875
+338.1429749 62073.10546875
+338.1806641 489113.78125
+338.6453552 30030.240234375
+339.1832886 82388.234375
+347.1497498 38012.1796875
+349.1589966 33797.62109375
+358.1631775 24032.59375
+359.1453857 74561.2109375
+366.1865845 125094.703125
+367.1864014 18560.91015625
+369.1386108 27976.41015625
+376.1704102 141050.875
+377.1564941 75684.5703125
+386.1661987 33565.8984375
+394.1810303 754050.6875
+395.1836243 163449.71875
+412.1873779 39858.78125
+413.1773071 19180.33984375
+460.190918 24791.8203125
+468.2198181 65489.61328125
+469.2229309 22195.826171875
+483.720459 26968.625
+485.2472229 247571.65625
+486.2488708 68080.234375
+488.1842346 56712.30859375
+492.2298279 187072.921875
+492.7289734 117034.2578125
+495.2277527 58818.08984375
+505.2095642 43299.6953125
+506.206665 70320.453125
+512.225708 80827.0078125
+512.7297363 32224.880859375
+520.7358398 24084.79296875
+521.2330322 23625.759765625
+523.2221069 508509.6875
+524.2247314 143175.84375
+525.2290649 37572.21875
+558.7445679 25914.2265625
+567.2595215 20122.21875
+571.7537842 75604.6640625
+572.2756958 341863.6875
+572.7454834 21227.54296875
+573.2799683 92604.65625
+576.2615356 74401.9140625
+576.7612915 52451.8359375
+577.2717896 20824.916015625
+580.2629395 101871.078125
+580.755249 2855729.5
+581.2565308 1949659.25
+581.3656006 31352.26171875
+581.6782837 15671.349609375
+581.7579346 667628.9375
+581.862915 20131.177734375
+582.2595825 157011.140625
+589.2678223 122722.6796875
+589.7683716 40506.4296875
+590.2696533 22172.681640625
+598.2734985 67207.9375
+598.7752686 44094.7890625
+599.7802124 55275.08984375
+624.2667236 85431.7109375
+625.265564 27176.154296875
+673.324646 487636.28125
+674.326355 163350.21875
+675.3275146 31828.529296875
+693.2906494 24878.60546875
+802.3649292 134962.53125
+803.3677368 57018.84375
+873.3995972 102302.1953125
+874.4013062 50764.8515625
+1002.462158 22974.78125
+1045.05542 22622.6796875
+1058.489258 20821.21484375
+1059.463989 22249.82421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.127.127.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=127"
+RTINSECONDS=13.62474179
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626038 54016.72265625
+64.53048706 41920.90625
+64.58226013 34972.70703125
+64.58628082 24853.384765625
+64.63825226 17560.435546875
+64.64152527 17893.296875
+69.94870758 12395.5029296875
+74.81239319 14873.1435546875
+82.0544281 18060.84765625
+86.92989349 15545.9013671875
+133.2905426 12250.3408203125
+149.5634308 34423.76953125
+149.5769653 30915.1875
+167.0917816 46748.34375
+169.0598297 46924.65234375
+172.1073151 15916.431640625
+175.1178131 310771.6875
+175.1344299 10593.533203125
+176.1212158 20464.84765625
+177.0761108 45371.94140625
+178.0599365 364456.125
+178.0779266 18571.607421875
+178.3453064 83908.984375
+178.8166199 13771.4765625
+179.0635376 31164.029296875
+182.0909729 22004.490234375
+183.0759583 26748.947265625
+186.0861664 89828.6796875
+194.1023102 49798.609375
+195.0864105 4248133.5
+196.0891724 445346.34375
+197.092514 23291.666015625
+200.1013336 26251.328125
+201.0856628 18127.056640625
+201.4696045 12998.7724609375
+206.0913239 153761.265625
+208.7324371 16607.478515625
+212.1125793 17661.748046875
+213.0852051 15855.2001953125
+215.0904083 26530.623046875
+218.102356 65795.203125
+222.0852509 19050.376953125
+233.1267548 20141.98828125
+234.0982361 16832.2890625
+240.0955963 36032.0703125
+243.086441 18772.5546875
+246.0969696 678988.9375
+246.125824 31616.53515625
+247.0996552 65132.45703125
+257.1225586 114594.765625
+260.1124268 120786.953125
+270.0971375 116904.875
+278.1501465 21626.607421875
+283.144104 45648.35546875
+287.1235046 138229.140625
+288.1074219 1548593.375
+289.110321 238580.25
+290.1133423 22565.08203125
+295.1498413 21395.248046875
+303.143219 30678.50390625
+305.1339722 3192057.25
+306.1190186 1198837.75
+307.1212769 197405.515625
+308.1217651 17611.681640625
+311.1345825 51458.12109375
+312.1171265 46851.10546875
+318.1416931 15378.4697265625
+321.1539001 357012.96875
+322.1565247 64975.3515625
+323.0986938 22941.59765625
+323.1444702 1098743.5
+324.146759 184516.546875
+329.144104 42496.01171875
+338.1426086 39794.8828125
+338.1806335 406959.0
+338.6425476 20550.96875
+339.1832275 86723.203125
+341.1487732 17019.138671875
+349.1590271 24739.546875
+359.1458435 62402.015625
+366.1861572 119498.46875
+367.1888123 21411.43359375
+369.1382141 26435.05078125
+376.1704407 119936.375
+377.1552124 63146.3203125
+378.1590271 21815.388671875
+386.1654663 18479.34375
+394.1809387 727954.5625
+394.2403564 27838.8984375
+395.183197 143135.046875
+396.1888123 18641.38671875
+412.1895447 41898.51953125
+420.6842041 15289.009765625
+450.2107544 20328.54296875
+468.2218628 54529.58984375
+478.2083435 19349.697265625
+483.7215576 26897.0859375
+485.2472229 171336.78125
+486.2516174 55938.359375
+488.1847534 33521.51953125
+492.2294312 170380.296875
+492.73172 82492.1953125
+493.2316895 21118.333984375
+495.2254333 47317.234375
+505.2128601 45887.10546875
+506.2054138 58535.13671875
+506.7270203 19380.736328125
+512.232666 33118.23046875
+512.7265015 19487.251953125
+520.7360229 20958.943359375
+521.2324219 50926.3046875
+523.2225952 427888.875
+524.2259521 128913.9140625
+525.2297363 25511.44140625
+531.1691895 17906.46875
+554.2718506 16678.228515625
+555.2546387 22357.185546875
+571.7498169 80738.5859375
+572.2738647 302640.75
+572.7550659 25473.34765625
+573.2781372 88268.5390625
+574.2816162 23129.576171875
+576.2641602 46617.31640625
+576.7631226 20906.505859375
+580.2625732 84736.890625
+580.755249 2356792.75
+581.2564697 1535172.5
+581.7580566 569202.0625
+582.2561035 97116.140625
+589.2640381 48638.9296875
+589.7703247 31565.662109375
+598.2730713 47695.875
+598.7727661 35439.3671875
+599.274292 42714.0
+599.7770386 67883.0
+624.2703857 61840.73828125
+655.3112183 23113.552734375
+673.324646 416425.3125
+674.3269043 135613.046875
+675.3248291 29547.958984375
+802.3665771 82681.5546875
+803.3679199 29515.5078125
+873.3982544 96116.90625
+874.4145508 35299.4921875
+1001.456482 25209.384765625
+1002.468933 20468.078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.128.128.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=128"
+RTINSECONDS=13.73348763
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58488464 15301.6337890625
+64.52627563 71250.2578125
+64.53067017 43362.86328125
+64.58202362 44747.50390625
+64.58624268 24290.0078125
+64.63830566 22093.720703125
+64.64152527 14301.5771484375
+65.15671539 12421.359375
+69.9859848 12474.7890625
+70.29080963 13345.9833984375
+70.74729156 12153.3701171875
+74.81203461 17912.03125
+78.34527588 11880.234375
+82.05412292 19333.41015625
+102.129509 14001.251953125
+129.0080414 14790.861328125
+132.6487885 11877.240234375
+149.5706482 49598.359375
+167.091507 36031.40625
+169.060257 28333.5625
+175.1004791 13866.4306640625
+175.1036682 7861.4272460938
+175.1180573 332692.4375
+176.1217651 29753.115234375
+177.0762329 83362.9375
+178.0445251 9678.85546875
+178.0601654 335269.65625
+178.0781403 16781.8125
+178.334198 29683.201171875
+178.3532104 57556.40625
+179.0635376 21964.1875
+179.0915833 16171.033203125
+182.0912933 15089.91015625
+183.0751648 22230.228515625
+186.0863953 115027.1640625
+194.1025543 37956.26953125
+195.0650177 32839.703125
+195.0865936 4177630.5
+196.089325 426227.8125
+197.0904083 41981.0859375
+200.1027527 21907.822265625
+201.0845795 17486.279296875
+206.091217 153332.546875
+212.1136322 21757.650390625
+218.1025238 73762.6171875
+233.1254272 17003.40625
+240.0955048 21041.71875
+243.0863953 18893.240234375
+244.1177979 15650.369140625
+246.0971985 647587.3125
+247.0997467 76966.25
+249.0969543 15698.2236328125
+257.1230164 87715.890625
+258.1253662 28277.203125
+260.112854 130207.71875
+261.1190491 13813.24609375
+267.111084 17962.140625
+270.0970459 136113.28125
+277.1413269 18948.94140625
+278.1200562 21313.58984375
+278.1504211 21250.884765625
+283.1429138 45922.51953125
+287.1235962 168500.53125
+288.107666 1664295.125
+289.1104736 250033.9375
+290.1133423 28146.0234375
+295.1498413 32251.02734375
+303.144043 29166.0078125
+305.1044312 61595.125
+305.1342773 3284119.75
+306.1194458 1165803.375
+307.121582 190409.71875
+308.1241455 19883.3984375
+311.1341248 40919.84375
+312.1164246 21577.115234375
+320.1327209 17249.287109375
+321.1544495 360556.1875
+322.1576843 64324.3203125
+323.0986938 19159.15234375
+323.1448059 1152744.875
+324.1473083 159159.921875
+325.1516418 19044.83984375
+329.1446228 60624.375
+338.1422729 40775.64453125
+338.1810608 412934.75
+338.6435242 18398.6328125
+339.1830444 65241.51953125
+349.1602478 18127.55859375
+351.1299438 16433.1328125
+353.1146851 14976.8505859375
+358.1686401 15478.001953125
+359.1450195 60068.55859375
+366.1864929 116494.5859375
+367.1863708 17674.634765625
+369.1422119 17330.017578125
+376.1708374 117123.7109375
+377.1561584 90200.4453125
+378.1574402 23445.822265625
+386.1650391 26168.123046875
+394.181366 776275.0625
+394.2406921 23068.427734375
+395.183075 155853.78125
+396.1885986 16919.91796875
+412.1878052 27810.443359375
+420.6836548 26943.30859375
+460.191803 18410.345703125
+468.2225342 48942.03515625
+474.7093811 15662.0498046875
+477.2200928 16034.2734375
+478.2085266 23302.69140625
+483.7190857 19839.45703125
+485.2480164 215059.046875
+486.2510071 65295.16015625
+488.1863098 58762.28515625
+492.2292175 192010.5625
+492.7314758 97847.046875
+493.2337341 32743.869140625
+495.2269592 56279.43359375
+503.2189941 23456.1484375
+503.7208557 30012.865234375
+505.2123718 70509.9375
+506.2096252 49774.22265625
+512.2289429 41804.67578125
+512.7311401 16274.3203125
+521.234375 40291.84765625
+521.7338257 26079.736328125
+523.2227783 454847.53125
+524.2249146 124778.140625
+525.2320557 31938.21484375
+555.2510986 29751.689453125
+558.7399292 25779.572265625
+559.2476807 28744.16015625
+571.7493286 83653.828125
+572.2759399 325338.59375
+572.7484741 19618.29296875
+573.2814331 113834.21875
+574.277832 18133.25390625
+576.2633057 38601.01171875
+576.7681274 17409.462890625
+577.2672119 17378.876953125
+580.2620239 92433.9453125
+580.7557983 2418127.0
+581.256897 1545745.625
+581.7582397 508163.4375
+582.2603149 96461.7265625
+589.2692871 23489.685546875
+589.7699585 18093.814453125
+598.274231 52120.58984375
+598.7788696 32789.8828125
+599.274231 35961.671875
+599.7783203 80363.875
+606.2636108 41858.83203125
+624.2675171 70218.875
+655.3145752 19986.12890625
+656.3079224 16983.119140625
+673.3248291 415854.8125
+674.3284302 152178.84375
+675.3300171 31466.443359375
+802.3621826 83468.8515625
+803.3721313 40250.0078125
+873.4025879 91072.078125
+874.4038696 65079.17578125
+1196.168579 16214.208984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.129.129.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=129"
+RTINSECONDS=13.84293899
+PEPMASS=598.27001953125
+CHARGE=2+
+59.91799164 14876.8720703125
+64.52616119 64517.85546875
+64.53043365 45215.30078125
+64.5819397 40932.609375
+64.58614349 35132.09375
+83.84889984 14040.1826171875
+149.5717773 60644.08984375
+167.092453 37674.9140625
+169.0597687 26896.82421875
+170.0811462 15077.5458984375
+175.1177063 297555.75
+176.121933 17875.94921875
+177.0760803 73143.3046875
+178.059967 359110.8125
+178.3433685 98089.3359375
+179.0913849 26068.203125
+183.0738983 15548.4169921875
+186.0858765 98091.6171875
+190.0601654 17623.7265625
+190.1086731 15411.6298828125
+194.102951 35338.8515625
+195.0863342 4383633.5
+195.1279144 32885.62890625
+196.0892334 448726.875
+197.0909271 34297.0625
+200.1024323 30767.814453125
+201.084549 22702.33203125
+206.0914001 156692.59375
+212.1133728 20065.03515625
+213.0829163 15163.490234375
+218.1022186 59920.48828125
+222.085495 15332.5322265625
+234.0973358 25624.564453125
+240.0971527 18738.9140625
+246.096817 688097.25
+246.1257324 30103.025390625
+247.0989532 78452.1484375
+247.1270447 19046.744140625
+257.1228333 110540.296875
+260.1123962 117293.15625
+270.0967712 137729.890625
+271.1023865 18352.0546875
+277.1371765 20663.875
+283.144165 34081.984375
+287.12323 139852.34375
+288.1072998 1690198.125
+289.1100464 250483.15625
+290.1138 17209.6640625
+303.1421204 35442.484375
+304.1296692 27470.912109375
+305.1338196 3377693.75
+306.1190186 1227516.125
+306.1980591 21032.109375
+307.120575 215505.71875
+311.1335449 36629.97265625
+312.1161194 41492.12109375
+321.1537476 342098.96875
+322.157959 68242.234375
+322.307312 18000.0234375
+323.1442871 1248182.5
+324.1457214 182394.21875
+325.1500854 22133.958984375
+328.1596375 19672.5390625
+329.1443176 54713.79296875
+338.1419983 53187.88671875
+338.1804504 409620.65625
+338.6437683 31570.58203125
+339.1838379 62350.8203125
+347.1446533 24444.4921875
+349.15802 26563.767578125
+358.1642761 23132.935546875
+359.1431274 72103.09375
+366.1856995 122645.046875
+367.1901245 23419.080078125
+369.1389465 25527.240234375
+376.1707458 116723.3125
+377.1560364 78660.03125
+386.1637268 31992.548828125
+394.1202087 19924.7734375
+394.1807251 767161.375
+395.1830139 153710.578125
+396.1827698 16599.28515625
+412.186554 42834.93359375
+420.6835022 21034.701171875
+460.1911011 30012.5546875
+468.2205811 61612.6328125
+469.2156067 18954.328125
+477.2198181 20273.966796875
+485.2468872 203048.671875
+486.2489319 74098.0546875
+488.1865845 46394.71484375
+492.229248 221162.71875
+492.7302551 144347.25
+493.2319641 25032.423828125
+495.2254639 57187.8359375
+505.2121277 63471.0859375
+506.2080688 42543.7578125
+512.2283936 54541.609375
+512.7295532 39527.390625
+513.229126 20423.2421875
+521.2339478 33692.7578125
+523.2217407 476088.96875
+524.2232666 127865.8515625
+525.2270508 31429.423828125
+567.7526855 23934.087890625
+571.7515869 83715.0
+572.2753296 306331.9375
+573.2764282 92713.6171875
+576.2608032 41326.6015625
+576.7637939 53454.9296875
+577.2648926 27823.08984375
+580.2632446 81148.953125
+580.7546997 2404322.0
+581.2560425 1572462.625
+581.7578735 544190.0625
+582.2570801 109451.09375
+589.2658691 75386.5078125
+589.7642822 21091.732421875
+598.274353 70290.7734375
+599.2728271 23364.244140625
+599.7779541 73463.4453125
+606.2630615 24855.337890625
+624.2692871 72351.3671875
+655.3146973 27355.474609375
+673.3234253 399582.78125
+674.3265381 146326.734375
+675.3239746 30987.033203125
+711.3022461 26170.572265625
+802.3631592 109630.0234375
+803.3693848 65003.234375
+873.3980103 94443.5078125
+874.4014893 53401.3359375
+1001.450684 28841.5625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.130.130.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=130"
+RTINSECONDS=13.95083439
+PEPMASS=598.27001953125
+CHARGE=2+
+54.55485535 15966.7724609375
+56.82419205 22036.435546875
+62.97663116 15432.8916015625
+64.52629089 65356.1484375
+64.53050232 42655.921875
+64.5822525 35547.33984375
+64.58609009 31127.6875
+64.63798523 29762.498046875
+64.64124298 22839.365234375
+71.08521271 16425.6796875
+74.81173706 28767.58203125
+82.05407715 23634.94921875
+100.3070221 15652.7099609375
+102.043808 17252.212890625
+102.3189697 16336.5634765625
+108.670517 16145.5068359375
+149.5732117 65462.14453125
+167.0923157 39870.890625
+169.0595856 28308.201171875
+175.1177368 310324.03125
+176.1214447 22465.978515625
+177.0758667 64029.68359375
+178.0598907 335619.25
+178.0762177 13986.513671875
+178.3425293 115977.3125
+179.0634613 38285.09765625
+182.0918884 18767.806640625
+183.0755157 34623.6484375
+186.0861053 116687.1640625
+194.1026917 27215.955078125
+195.0864105 4857973.5
+196.0892944 455780.65625
+197.0913696 44251.44921875
+200.1015167 46132.30078125
+201.0852509 23763.44921875
+206.0911865 153849.78125
+209.1025848 20480.337890625
+212.1142273 19740.556640625
+218.102417 55191.3984375
+222.0841522 34100.64453125
+234.0969238 30200.72265625
+240.0950165 28315.708984375
+242.1031952 19896.685546875
+244.1169281 19056.767578125
+246.0969696 681307.125
+246.1226501 12274.6416015625
+247.099884 87641.28125
+249.0962067 21280.494140625
+257.122467 128764.7265625
+258.1228638 24178.59765625
+260.112793 139385.953125
+270.0966797 124575.7578125
+278.1499634 22160.841796875
+283.1422729 55400.53125
+287.1235046 159644.578125
+288.1073914 1709991.0
+289.1105652 274422.5625
+290.1129456 24412.47265625
+295.1513367 29416.162109375
+303.1420288 39496.1015625
+305.1339722 3412136.5
+306.118988 1242979.625
+307.1217957 199774.21875
+311.135498 35119.0
+312.1164551 30473.716796875
+321.1538086 367707.28125
+322.1556396 61856.109375
+323.1443787 1359222.0
+324.1466675 215751.484375
+329.1447449 51785.78515625
+338.1805725 463805.3125
+339.184021 68382.359375
+349.160614 24084.203125
+359.1445923 68728.625
+366.1867981 144309.296875
+367.1877136 37007.0
+369.1391296 22791.302734375
+376.1705017 154129.125
+377.1571045 85158.46875
+386.1635742 29500.66015625
+394.1808777 787590.625
+394.2405701 28234.294921875
+395.1831055 160915.953125
+396.1842041 25911.169921875
+420.6820679 23277.12109375
+434.1762695 21549.400390625
+460.1942139 22730.587890625
+468.2217407 41751.296875
+478.2063599 22695.685546875
+485.2474976 235401.234375
+486.2504272 72429.953125
+487.2533264 19522.080078125
+488.1864014 55660.89453125
+492.2296448 166566.328125
+492.729187 77909.2578125
+493.2297974 31555.244140625
+495.2261963 43085.08984375
+505.2123718 55593.25
+506.2103271 37748.140625
+512.2260132 62076.67578125
+512.7229004 31409.451171875
+521.2349243 53901.87890625
+521.7368774 22289.791015625
+523.2224731 470043.03125
+524.2243042 121446.1796875
+530.2506714 19272.44140625
+558.7437744 39812.50390625
+567.2581787 30814.33984375
+571.750061 105564.90625
+572.2753296 385054.4375
+572.7581177 22946.458984375
+573.2789917 112099.609375
+576.2612915 56504.8359375
+576.7608643 51344.62109375
+580.2619629 90744.7265625
+580.755188 2600567.0
+581.2562866 1779911.25
+581.7578125 627122.375
+581.8632202 27168.560546875
+582.2597656 121779.0078125
+589.2681274 150293.015625
+589.7675781 112817.5546875
+598.2740479 70655.7734375
+598.7724609 36484.0703125
+599.7753906 46389.37109375
+624.269043 59834.734375
+673.3248901 472670.03125
+674.3262939 207980.765625
+693.2979126 19696.501953125
+711.3005981 21201.814453125
+802.3641968 124565.140625
+803.3711548 52273.51171875
+873.4003296 108485.3671875
+874.4093628 29217.966796875
+984.4244385 21045.94921875
+1001.459595 32378.505859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.131.131.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=131"
+RTINSECONDS=14.05667869
+PEPMASS=598.27001953125
+CHARGE=2+
+53.47806931 13716.541015625
+58.13723755 19085.6328125
+63.58498001 15692.1103515625
+64.52613068 71387.8203125
+64.53047943 43615.37890625
+64.58195496 45470.453125
+64.58618927 35584.1875
+64.638237 22680.30078125
+64.64142609 14652.919921875
+103.0961456 12865.85546875
+114.9091415 12232.94921875
+144.1908875 16367.3212890625
+149.5693207 52672.953125
+156.5305939 14911.1240234375
+167.0917206 43062.9453125
+169.0599823 18444.59375
+175.1178589 298190.1875
+177.0760956 68312.5546875
+178.0600281 367452.6875
+178.3357391 52228.23828125
+178.3560333 41598.48828125
+179.0636444 28178.720703125
+179.0911407 15033.650390625
+183.0748138 20098.259765625
+186.0858307 78553.109375
+190.1072083 18163.869140625
+194.1017609 43033.32421875
+195.086441 4435149.5
+196.0893097 452040.84375
+197.0911255 25208.576171875
+200.1022034 17546.94921875
+206.0910187 180059.609375
+207.0939941 18742.974609375
+213.0842743 16010.3681640625
+218.1017456 65146.87890625
+240.0964203 21138.984375
+243.0845337 17043.314453125
+246.0969543 672995.75
+247.1000061 88564.40625
+257.1230774 104312.53125
+258.1262207 27889.4296875
+260.1124268 128455.5078125
+261.119873 18639.666015625
+262.4889832 14801.4140625
+270.0967407 146975.546875
+277.136261 19416.33984375
+278.1504822 18624.783203125
+283.1436462 41643.78125
+287.1235352 164854.84375
+288.1074524 1695965.5
+289.1100769 262746.40625
+290.1122742 17007.998046875
+294.1168823 24550.0078125
+295.1506958 26666.53125
+303.14328 20943.93359375
+304.1269836 22121.431640625
+305.1340332 3266761.0
+306.1190796 1190254.0
+307.1213989 212720.140625
+308.1216736 25966.10546875
+311.1344299 53779.91015625
+312.1169128 27017.54296875
+321.1542664 381637.65625
+322.1574707 52336.37890625
+323.0982971 17227.078125
+323.1445923 1127588.625
+324.1461487 212134.265625
+325.1489868 23318.587890625
+329.1442566 54589.99609375
+338.14328 42819.64453125
+338.180603 448524.8125
+338.6431885 21224.3984375
+339.1414795 21298.576171875
+339.1831055 71836.6953125
+346.1709595 18518.904296875
+347.1491394 26083.671875
+351.137146 15618.24609375
+358.1625671 14465.705078125
+359.1436157 72062.5859375
+366.1862488 109343.0859375
+367.1891479 26233.96875
+369.1383057 36275.78125
+376.1696472 115389.25
+377.1569519 88306.34375
+378.1599121 18485.37890625
+386.1627502 37215.41015625
+394.1810608 711268.0
+394.2399902 21964.306640625
+395.1827698 175654.296875
+412.1892395 45185.0
+421.1867676 27364.05078125
+450.2027588 22862.482421875
+460.1909485 21698.923828125
+468.2197571 50377.04296875
+469.2159424 18147.75390625
+478.2006531 29361.197265625
+483.7207642 29130.00390625
+485.2471619 217468.328125
+485.3180237 12623.9443359375
+486.2502747 64676.00390625
+488.1860962 54352.7265625
+489.1868286 20492.466796875
+492.2299805 139783.65625
+492.7294922 91430.03125
+493.2304688 32710.701171875
+495.2262573 45904.359375
+496.2314453 21730.296875
+504.2294922 15953.84765625
+505.2120667 47869.42578125
+506.2109985 32581.431640625
+512.2261353 51693.75
+512.7261353 31839.24609375
+520.741333 23939.546875
+521.2380981 28960.591796875
+523.22229 458453.875
+524.2246704 120654.4296875
+555.2543945 25863.36328125
+558.746582 16592.728515625
+571.7519531 120438.4765625
+572.2750244 339296.6875
+573.2790527 91737.15625
+574.2747803 17657.625
+576.2565918 29402.4375
+576.7619629 41513.046875
+577.2651367 37438.46484375
+580.2631836 87389.265625
+580.7553101 2437376.25
+581.2565918 1594657.875
+581.3664551 24527.380859375
+581.7582397 625126.0625
+582.2603149 132013.734375
+589.2683105 66696.9140625
+589.7671509 40763.9296875
+598.2734375 67683.859375
+598.7754517 25968.298828125
+599.7763062 63163.9609375
+606.2580566 39009.11328125
+624.2677002 57860.8046875
+625.2755737 18473.443359375
+655.3167114 19254.482421875
+673.3250122 455550.90625
+674.3280029 172369.078125
+675.3338013 34221.5546875
+693.2902222 29316.97265625
+711.2953491 26106.8125
+802.3638916 111293.6484375
+803.3693848 49102.0859375
+817.0362549 16393.05859375
+873.4028931 99820.6484375
+874.4042969 45493.4453125
+937.2501831 14876.8544921875
+1001.455444 31284.78515625
+1059.473389 20708.365234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.132.132.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=132"
+RTINSECONDS=14.16520546
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 64562.61328125
+64.53045654 59809.42578125
+64.58192444 54575.0234375
+64.58612823 49790.515625
+64.63809204 21942.951171875
+64.64156342 22518.81640625
+74.8160553 28033.724609375
+74.99817657 21088.62109375
+81.04587555 19624.05078125
+82.05427551 26234.203125
+117.2262802 20391.361328125
+149.5657654 61133.55859375
+167.0919952 37819.08984375
+169.0599213 30054.638671875
+175.1025391 24744.857421875
+175.11763 403212.875
+176.1190948 21539.95703125
+177.0755768 74287.6875
+178.0598145 404957.53125
+178.3406372 115708.609375
+179.0641327 50379.3984375
+179.0916748 24019.931640625
+186.0857086 110672.9609375
+189.0730743 21547.525390625
+194.1027069 36720.29296875
+195.0862122 5279415.5
+196.0891571 533667.4375
+197.0914154 38923.9609375
+206.0908356 164555.90625
+209.1019592 25397.0625
+209.7819061 19710.5390625
+218.1017456 79733.2890625
+234.0944214 20858.583984375
+243.084549 32279.50390625
+246.0967102 761143.5625
+246.1255798 37859.77734375
+247.0994415 81975.28125
+257.1225891 137127.53125
+260.1119385 112673.5546875
+270.0968628 162338.8125
+283.1427307 63547.47265625
+287.1229858 138042.03125
+288.1070251 1922180.375
+289.1099548 261199.53125
+303.1423645 41865.171875
+305.1334839 3893909.25
+306.1186829 1371426.125
+307.1209717 216334.328125
+311.1342163 58584.71875
+312.1161499 72170.453125
+321.1535645 400801.46875
+322.1572266 75534.8359375
+323.1439514 1442498.5
+323.20755 31815.6953125
+324.145752 225671.03125
+325.149353 30490.384765625
+329.1428833 73144.8046875
+338.1417847 57098.3046875
+338.1801758 478330.21875
+338.6416016 23145.787109375
+339.1825867 95098.8046875
+347.1516418 22363.583984375
+347.6491089 29614.6484375
+348.1597595 24092.55859375
+349.8910828 19896.634765625
+351.1322937 24762.146484375
+359.1418762 60991.72265625
+366.040741 22479.00390625
+366.1853943 170221.34375
+376.1699219 138451.953125
+377.1563416 100110.7890625
+386.1635742 30910.7734375
+394.1800842 890640.1875
+395.1812439 158405.75
+396.1893921 33528.296875
+398.1709595 26275.03125
+412.1864929 33878.1796875
+420.6845703 23909.646484375
+468.2186584 70574.8515625
+483.7157288 25842.68359375
+485.2467041 268962.75
+486.2506104 63305.34765625
+488.1850586 46887.69921875
+489.190918 29384.58984375
+492.2287292 209236.515625
+492.7306824 115172.640625
+493.2282715 35045.29296875
+495.2255249 69035.6640625
+503.2243958 31218.271484375
+505.2113037 86165.234375
+506.2093811 36368.49609375
+512.2283936 45268.46875
+512.7250366 50229.0390625
+521.2334595 48133.72265625
+523.2209473 545329.6875
+524.2236328 154068.671875
+558.7403564 30532.763671875
+571.75177 71391.1875
+572.2752686 360004.375
+573.2799683 118152.5390625
+574.2765503 31814.46484375
+576.263916 40403.77734375
+577.2625122 32696.37890625
+580.260498 74471.3671875
+580.7540283 2700445.75
+581.255249 2206745.0
+581.336853 36850.66015625
+581.7564697 745414.8125
+582.2595215 141701.34375
+589.2677002 174665.890625
+589.7662354 162586.21875
+598.2720337 107481.3046875
+599.7759399 36397.32421875
+606.2613525 32940.08203125
+624.2683716 67938.203125
+673.3223877 498687.03125
+674.3252563 165007.515625
+748.5142212 24589.54296875
+802.3625488 144395.703125
+803.3641357 74611.8984375
+873.3981934 168491.296875
+874.4030762 55541.65234375
+1001.460876 38645.671875
+1002.455627 31320.642578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.133.133.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=133"
+RTINSECONDS=14.26917002
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52616119 49509.03125
+64.53042603 36408.546875
+64.58201599 32827.515625
+64.58623505 22158.755859375
+64.63804626 18469.384765625
+64.64143372 14750.62109375
+74.81186676 15504.9853515625
+76.28528595 10715.28125
+82.05393219 14587.544921875
+110.0735092 10157.63671875
+127.1113815 10604.7568359375
+149.5727997 43274.9921875
+153.6990204 10947.1162109375
+167.0916901 42308.8359375
+169.0592957 36162.7421875
+175.1003418 13140.03125
+175.117691 276705.5
+176.1208649 16233.04296875
+177.0757904 58297.19140625
+178.059967 334359.59375
+178.3425293 70470.7109375
+179.063858 21555.96875
+179.0914459 19402.865234375
+182.0900421 13429.240234375
+183.0757446 20555.986328125
+186.0859985 97321.125
+190.0585785 12630.244140625
+194.1022491 38952.12890625
+195.0863037 3768283.25
+195.1278992 28921.58984375
+196.089035 405853.03125
+197.0917511 14985.6865234375
+200.1008148 41754.875
+201.0843658 11855.5751953125
+206.0909882 154904.515625
+207.0929718 16054.505859375
+212.1012115 17084.203125
+215.0917206 13204.8994140625
+218.1017456 56977.7109375
+221.2917175 10673.099609375
+222.0859985 21148.74609375
+234.0982819 14977.853515625
+239.1148376 11617.8583984375
+240.0956879 17918.65625
+243.0855865 28974.77734375
+246.0968323 666720.4375
+247.0995026 85876.53125
+249.0961609 22390.0390625
+256.4185486 10699.8642578125
+257.1225281 109359.5078125
+258.1255188 14275.2265625
+260.1122742 109355.3203125
+261.1187439 13054.5107421875
+267.1090088 11099.8388671875
+270.0965576 162338.328125
+271.0992126 15391.8681640625
+278.1181335 19016.599609375
+278.1492615 24379.28515625
+283.1426697 51001.46484375
+287.1232605 155215.265625
+288.1072388 1621112.375
+289.1101379 254449.140625
+295.1490479 29125.439453125
+302.1302185 18331.0
+303.1419067 29122.666015625
+304.125885 16836.822265625
+305.1337585 3031967.25
+306.118866 1126735.875
+307.1211853 186922.65625
+308.1212158 30632.259765625
+311.1344604 47163.21484375
+312.1171875 48706.33203125
+321.1536865 335763.625
+322.1568604 52713.58984375
+323.0984802 12767.68359375
+323.144165 1034124.9375
+324.146698 165311.671875
+325.1479492 14879.2431640625
+329.1425476 50280.79296875
+338.1427917 38933.39453125
+338.1803284 386481.1875
+338.6454163 15227.248046875
+339.1828613 70884.375
+347.1488647 22836.1328125
+347.6505127 12781.193359375
+349.1604614 18746.4609375
+351.1303711 21617.591796875
+359.1439819 64293.44921875
+360.1495361 11557.5244140625
+366.1864624 150199.0625
+367.1872864 25636.228515625
+369.1397705 30487.732421875
+376.1700134 125240.7578125
+377.156189 86986.6953125
+385.102478 13785.5869140625
+385.1587524 12917.76171875
+386.1651917 26341.994140625
+394.1806335 653929.75
+394.2410583 20495.77734375
+395.182373 138447.453125
+396.18573 15361.47265625
+412.1878357 40967.1015625
+413.1658325 18490.169921875
+420.6841125 16505.365234375
+434.1758728 16082.2060546875
+450.210022 11268.572265625
+460.1914673 32666.322265625
+464.1768494 14765.5703125
+468.2229919 54907.4140625
+469.2135315 12390.880859375
+477.2170105 16450.447265625
+485.2469482 199537.375
+486.2504272 54320.58203125
+488.18573 54546.38671875
+489.1932983 16495.25
+492.2290649 168231.875
+492.7308655 97602.21875
+493.2324219 29087.6953125
+494.7144165 13367.12890625
+495.2263184 70751.78125
+503.7200317 21854.875
+505.2124329 53995.41796875
+506.2014465 47898.67578125
+512.2263794 34751.59765625
+512.7255859 15319.94140625
+513.2279053 16668.4453125
+521.2337646 35119.92578125
+523.2215576 436131.90625
+524.2249146 124412.7734375
+525.2278442 20431.107421875
+530.2423706 11113.3095703125
+554.2768555 14859.9423828125
+558.7455444 21063.568359375
+559.2507324 17949.74609375
+571.7490234 60872.69921875
+572.2744141 273534.375
+572.7520752 15813.080078125
+573.2796631 94391.625
+576.2597046 44507.1171875
+576.7661743 25814.0625
+577.2575684 27445.54296875
+580.262146 75509.7578125
+580.7546997 1923619.25
+581.2559204 1299893.75
+581.7575073 483741.03125
+582.2581787 68215.4140625
+589.2651367 14426.91796875
+598.2744751 36309.3984375
+598.7781372 24753.833984375
+599.2730103 46408.3203125
+599.7767944 66738.8125
+606.2597046 29246.638671875
+607.2620239 19327.326171875
+624.2704468 46603.875
+625.2686157 15547.28125
+655.3152466 15524.58203125
+673.3236694 384610.90625
+674.3275757 111044.5703125
+675.3220825 24387.775390625
+693.2839966 15817.21875
+711.295166 14040.7373046875
+784.3591919 17346.142578125
+802.3639526 79755.1328125
+803.3734741 29607.708984375
+873.3983154 91128.15625
+874.4017334 32175.298828125
+875.3894043 12624.5341796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.134.134.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=134"
+RTINSECONDS=14.38156776
+PEPMASS=598.27001953125
+CHARGE=2+
+50.75059509 14807.080078125
+64.52624512 81143.90625
+64.53043365 54309.12890625
+64.58197021 56326.39453125
+64.58616638 38427.03125
+64.63808441 25281.654296875
+64.64134216 18950.783203125
+74.81158447 22681.837890625
+74.81607819 16976.271484375
+148.328949 17955.6953125
+149.570755 62279.33203125
+160.1348877 15707.697265625
+167.0917053 46246.66015625
+169.059845 31202.681640625
+175.1021729 29349.09375
+175.1176758 337553.65625
+176.120697 29614.142578125
+177.0759277 81004.9375
+178.059845 369719.875
+178.3466644 110547.6640625
+179.0635681 22233.736328125
+183.0746307 21841.30078125
+186.0856476 101108.4921875
+194.1026611 39203.03125
+195.0862427 4662507.5
+195.1286774 29809.984375
+196.0891418 426161.46875
+197.0911407 37371.55859375
+200.1018677 35483.34765625
+201.0852051 32672.0234375
+206.0909576 149927.375
+207.0935822 19726.939453125
+209.1002045 19756.28125
+217.1269379 23369.337890625
+218.1025238 62350.16015625
+234.0966034 28135.5546875
+239.1127472 23154.44140625
+246.0967255 690261.5
+246.1255493 33937.8125
+247.0991669 93547.96875
+249.0970001 28951.498046875
+257.122467 123918.515625
+258.1255493 23557.537109375
+260.1123352 103357.7890625
+262.1271057 20424.388671875
+270.0967102 148200.890625
+278.149231 22677.76171875
+283.1420898 45056.17578125
+287.1228638 162522.8125
+288.1071167 1668923.125
+289.1098938 231211.328125
+290.1116028 32085.732421875
+295.147583 26780.05859375
+303.1444702 21279.087890625
+304.127533 37065.6875
+305.1335449 3478365.0
+306.1187134 1264808.75
+307.1211243 188538.359375
+308.1197815 22842.75
+311.1333313 60662.43359375
+312.1184387 46701.796875
+318.1393127 23979.70703125
+321.1534424 372700.0
+322.1567078 68405.1640625
+323.0986633 18838.177734375
+323.1441345 1159010.125
+323.1882629 37823.3828125
+324.1460266 196755.15625
+329.144104 69126.578125
+338.1414185 59272.50390625
+338.1803589 455755.90625
+338.6469116 17697.9765625
+339.1826477 78554.390625
+349.1634216 22894.654296875
+351.1275635 21855.171875
+359.1438599 60182.3828125
+366.1854553 148455.75
+367.1851807 36020.82421875
+369.1408386 20401.189453125
+376.1697693 119907.6484375
+377.1592712 86808.609375
+378.1506958 20572.6171875
+386.165863 35584.83203125
+394.1804504 791384.9375
+395.1815491 152854.234375
+412.1871033 33761.94921875
+420.6845398 28511.751953125
+428.1968079 30698.369140625
+468.2201538 60860.765625
+477.2166443 20602.34375
+478.197876 19993.279296875
+485.2458191 193640.796875
+486.2497253 77997.421875
+488.1825562 49770.84765625
+492.2287598 186992.0
+492.7268677 71208.90625
+493.2319641 34815.3828125
+495.2282104 44414.34375
+505.2120972 56583.90234375
+506.2071838 35063.328125
+512.229126 36297.609375
+512.7263794 40096.94140625
+513.2226562 21876.599609375
+520.7406616 24440.724609375
+521.2319336 53790.7578125
+521.7333374 22806.48046875
+523.2211914 467073.6875
+524.223938 120606.5546875
+525.2277832 27150.49609375
+559.2366943 32752.7578125
+571.7490234 103777.6484375
+572.2739258 339882.28125
+573.2799683 89436.9453125
+574.2932129 20394.06640625
+576.2634277 55110.46875
+576.7578735 32650.3828125
+577.2670288 29317.451171875
+580.2627563 98644.9453125
+580.7542725 2815118.0
+581.2555542 1786853.0
+581.335022 34722.67578125
+581.757019 618806.3125
+581.8627319 20697.205078125
+582.2583008 134334.34375
+589.2659912 119808.578125
+589.7633057 62005.12109375
+598.2704468 66143.328125
+598.7745972 22406.802734375
+599.7750854 75907.6015625
+606.2565308 40666.4375
+624.2653809 54115.4765625
+655.3118896 21972.001953125
+673.3231812 436228.78125
+674.3256226 179891.5625
+675.3323975 39729.234375
+784.3546143 25922.751953125
+802.3630981 133823.046875
+803.3718262 36581.41015625
+873.3996582 100187.8671875
+874.4043579 61888.28515625
+1058.484985 21041.32421875
+1207.370972 20917.27734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.135.135.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=135"
+RTINSECONDS=14.48796986
+PEPMASS=598.27001953125
+CHARGE=2+
+57.36868668 10583.6171875
+58.13718033 13108.0615234375
+61.5715065 10831.3603515625
+64.52623749 58758.78125
+64.53072357 43229.1484375
+64.58200073 40421.25390625
+64.58614349 28561.91015625
+64.63835144 14363.4697265625
+64.64170837 15434.1416015625
+74.81164551 11116.2099609375
+74.81623077 11378.9267578125
+76.28083038 16716.92578125
+82.05426788 17305.669921875
+84.08237457 11511.5654296875
+90.8944397 13084.224609375
+109.3481979 11332.2802734375
+149.5739746 38437.4375
+167.0918274 38505.6953125
+169.0600433 35390.87109375
+175.1178589 277795.5625
+177.0758209 78770.859375
+178.0598755 338476.53125
+178.0780792 15156.1572265625
+178.3496094 68041.9296875
+179.0635223 25105.154296875
+179.0914307 26545.63671875
+182.091629 18654.51953125
+183.0745544 27522.869140625
+186.0861511 105063.40625
+190.059845 15276.849609375
+194.1028595 41902.40625
+195.0863495 3827552.75
+195.1277008 31739.3515625
+196.0891418 398528.90625
+197.0915527 20750.56640625
+200.1001282 23114.5078125
+201.0854492 25918.623046875
+206.0909119 167403.65625
+208.070816 11302.654296875
+215.0901794 21493.57421875
+217.1288757 11744.6630859375
+218.1025085 72061.234375
+221.0989838 13222.29296875
+232.1179199 16067.283203125
+234.0979614 21299.69140625
+239.1120148 14531.259765625
+240.0971375 31723.689453125
+243.0846405 21496.123046875
+244.1169434 13708.0693359375
+246.0968323 634774.875
+247.0994263 91243.6875
+251.4690247 14457.412109375
+257.1223755 88572.1171875
+260.1123047 121829.375
+267.1096802 18192.5
+270.0967407 131964.203125
+270.3095398 13199.9384765625
+271.1018677 16000.7646484375
+278.1178894 13896.703125
+278.1508484 24188.947265625
+283.1432495 42860.75
+287.1236267 148689.53125
+288.1072693 1619088.75
+289.1099854 282867.71875
+290.1115112 25195.51171875
+294.1157227 13054.2607421875
+295.1491394 27073.8984375
+303.1400452 23725.73046875
+304.1270752 16990.98046875
+305.133728 3060041.0
+305.2156982 17311.2421875
+306.118988 1076263.625
+307.1210022 200403.21875
+308.1239014 20746.87890625
+311.1342468 54774.40234375
+312.1159668 32521.01171875
+321.1538696 347755.5
+322.1567993 60565.515625
+323.1442261 1097969.5
+324.1465759 179889.921875
+325.1523132 17191.22265625
+329.14328 47754.515625
+338.1417236 54588.73828125
+338.1804199 382196.4375
+338.645752 25525.56640625
+339.1828613 66095.8359375
+346.1700134 13972.96484375
+349.1618347 24699.798828125
+351.1329956 16977.87109375
+358.1574097 25512.4296875
+359.1433411 62194.94921875
+366.1855164 103852.8203125
+369.1386414 21153.080078125
+376.1705322 131642.828125
+377.1545715 82386.8828125
+386.1611938 26213.087890625
+394.0917358 17066.896484375
+394.1806335 671564.125
+394.2406311 26221.533203125
+395.1825867 135623.375
+396.1875 16174.9658203125
+398.1753845 15115.7978515625
+412.1881409 28962.962890625
+421.1917114 14870.001953125
+424.1734924 11519.1728515625
+428.20047 15467.232421875
+460.1901855 27384.93359375
+468.2212219 61897.26953125
+469.2183228 12237.966796875
+477.2185364 22495.841796875
+483.7186279 15880.2490234375
+484.2168579 18828.0625
+485.2468262 196859.953125
+486.25177 52502.96484375
+488.1856384 47677.08984375
+492.2285767 138365.84375
+492.7306824 96727.1640625
+493.22995 30270.509765625
+495.2272034 54140.81640625
+496.2273254 17897.482421875
+503.71521 19585.380859375
+505.2105103 67338.4453125
+506.2034302 40622.1640625
+507.1972351 16940.794921875
+512.2251587 38223.81640625
+512.7282715 26209.13671875
+521.2341919 38313.1484375
+521.7376099 21115.2109375
+523.2211304 462292.34375
+524.2235718 125089.6796875
+525.2293701 22711.349609375
+552.2547607 15771.5107421875
+555.2554932 19013.544921875
+558.7484741 18641.447265625
+571.7502441 81991.96875
+572.274231 324217.84375
+572.7504272 17439.328125
+573.2808838 94870.734375
+574.2811279 30034.341796875
+576.2590942 41972.08984375
+576.7636108 26136.51953125
+577.2626343 28995.208984375
+580.2630615 49364.82421875
+580.7543945 2264931.75
+581.2556763 1509744.625
+581.3352051 27980.3203125
+581.649292 18376.056640625
+581.7572021 552046.0625
+582.2592163 120371.375
+589.2572021 17228.904296875
+598.2701416 56138.76171875
+598.772522 27328.224609375
+599.2764893 67731.359375
+599.7754517 87037.625
+606.2583008 40245.984375
+607.2564697 20559.732421875
+624.2666626 55779.51171875
+655.3158569 22616.5078125
+673.322876 380805.09375
+674.3267212 155401.046875
+675.3262329 32344.818359375
+693.2888184 18368.013671875
+711.3068848 20150.466796875
+802.3624268 83885.4609375
+803.3626099 36931.70703125
+826.1296387 13271.236328125
+873.3968506 81028.890625
+874.4005127 32840.6796875
+875.3999634 17396.869140625
+1001.449768 19200.763671875
+1058.469604 14733.5625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.136.136.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=136"
+RTINSECONDS=14.59939139
+PEPMASS=598.27001953125
+CHARGE=2+
+51.83165359 16269.9638671875
+54.63810349 16125.583984375
+64.52635956 75111.78125
+64.53044891 52357.69140625
+64.58224487 40255.921875
+64.58618927 36296.7265625
+138.4821167 16200.3291015625
+149.575882 45271.38671875
+157.1159973 18427.603515625
+166.64151 18495.671875
+167.0927582 43677.84375
+169.0592957 30590.3671875
+175.1177673 347574.0625
+176.12117 17321.755859375
+177.0762024 81021.703125
+178.059967 318682.96875
+178.3432159 119537.2578125
+179.062912 23293.53515625
+179.0917206 25837.63671875
+183.0749512 23633.80859375
+186.0860901 131432.359375
+187.0913544 22292.1328125
+190.0591431 18994.29296875
+194.1016235 33300.9765625
+195.0863953 4853804.5
+196.0891724 465214.09375
+197.091629 19336.662109375
+200.1009827 25141.0390625
+206.0910187 189506.03125
+215.0927277 17771.44140625
+215.5734558 19863.37109375
+218.1022034 67024.984375
+233.1278076 21282.763671875
+239.1105804 19032.45703125
+240.0950165 27702.935546875
+246.0969696 745797.625
+247.0998077 106476.9609375
+257.1229553 88163.1015625
+260.1123657 117555.984375
+270.0971069 151018.9375
+278.1487732 32984.5625
+283.1434937 44611.65625
+287.1235046 153119.625
+288.1073608 1703122.75
+289.1101074 233719.84375
+295.1487427 42241.859375
+303.1437683 36958.2421875
+305.1339111 3580600.25
+306.1188354 1336480.5
+307.1214294 222138.859375
+308.1254578 29181.935546875
+311.1347656 73428.484375
+312.1166992 30538.365234375
+321.1541443 368195.8125
+322.1569214 58924.0703125
+323.0996094 29841.328125
+323.1444397 1332820.375
+324.1464539 169172.328125
+325.1506958 17803.130859375
+329.1442871 70710.09375
+338.141571 50561.8359375
+338.1807556 412892.875
+339.1825256 77561.609375
+359.1435242 68553.6640625
+366.18573 132766.171875
+367.1863403 24043.923828125
+369.1384583 49218.9765625
+376.1704712 161521.671875
+377.1578369 82263.5625
+386.1641541 30455.529296875
+394.1809998 835940.5625
+395.1817627 158569.515625
+412.1851196 41634.00390625
+467.2468872 23369.779296875
+468.2202759 66956.703125
+469.2200928 32720.671875
+470.1878662 18823.880859375
+472.1359558 25509.236328125
+478.2003174 20996.52734375
+485.2476501 245152.453125
+486.2510071 58390.8046875
+488.1887512 56123.7109375
+492.2294617 195928.46875
+492.7306519 117366.328125
+493.2305603 28142.021484375
+495.2277527 57249.50390625
+503.718689 25788.720703125
+505.2122192 58933.875
+506.2003174 42119.01953125
+512.2259521 59834.83203125
+521.2261353 22771.341796875
+521.7321777 22793.88671875
+523.2219849 515259.875
+524.2248535 156485.0
+525.2290039 21533.64453125
+555.258606 26731.85546875
+571.7494507 69268.234375
+572.2745972 351627.1875
+572.7528687 22412.73828125
+573.277771 95534.640625
+575.2666016 19190.55859375
+576.2598267 51787.75390625
+576.7592773 34898.3046875
+577.2611694 27594.09765625
+580.2615967 97912.828125
+580.7549438 2640730.75
+581.2562256 1783799.625
+581.7578125 583244.125
+582.2600708 148290.671875
+589.2659912 121185.921875
+589.7672729 96643.6171875
+598.272522 74542.359375
+598.776123 41817.9921875
+599.2684937 31391.041015625
+599.7719116 26017.9453125
+606.256897 29894.62109375
+624.2665405 63670.265625
+673.3239746 473778.4375
+674.3274536 156849.828125
+675.3196411 27190.19921875
+711.2929688 24903.158203125
+802.3627319 81764.9453125
+803.3735352 43773.72265625
+873.3978271 128639.71875
+874.4098511 45079.4375
+875.404541 21586.36328125
+1001.447083 18663.3359375
+1002.500427 25202.240234375
+1089.52124 20907.306640625
+1265.496704 25759.546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.137.137.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=137"
+RTINSECONDS=14.70517419
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430405 16331.3662109375
+64.51766205 20207.74609375
+64.52632141 63335.26171875
+64.53052521 47646.625
+64.58203125 48173.31640625
+64.58622742 33295.2734375
+64.63822174 18262.53125
+99.08590698 14111.443359375
+123.2793274 14165.70703125
+131.3060303 13805.1767578125
+149.5680847 65713.921875
+167.0913696 36551.88671875
+169.0600281 37249.390625
+175.1180878 351342.84375
+177.0760651 63704.1953125
+178.0600739 353476.65625
+178.3511963 78854.1328125
+179.0637817 33349.81640625
+179.0913849 23911.759765625
+183.0746307 15440.3759765625
+186.0863953 110169.1015625
+194.1030273 42234.2421875
+195.0865631 4444572.5
+196.0893707 431861.28125
+197.0919495 24224.654296875
+200.1026154 30896.185546875
+201.0870209 28713.3046875
+206.091217 160798.109375
+209.1015778 18876.69140625
+212.1009369 15276.927734375
+218.1026154 59280.14453125
+222.0871887 20990.09375
+232.1175995 18984.9609375
+243.0859222 27987.447265625
+246.0971832 648114.1875
+246.1257172 35774.75390625
+247.0996399 87726.4375
+257.1231384 144064.421875
+260.1127014 84363.3125
+267.1123657 17903.130859375
+270.0971985 160715.046875
+278.1499634 34759.359375
+283.1432495 57667.890625
+287.1238098 169640.734375
+288.0779114 20067.576171875
+288.1076965 1689657.5
+289.1105957 294645.5625
+290.1140442 25133.53515625
+294.1210022 17080.501953125
+295.1517334 27210.630859375
+303.1452637 31239.38671875
+305.1043701 65422.7265625
+305.1343079 3442782.75
+306.1196594 1160149.75
+307.121582 203951.953125
+311.1338806 66300.6875
+312.1164246 33536.76953125
+318.1420593 17806.837890625
+321.1542053 354192.53125
+322.1577759 70977.3515625
+323.1119995 15760.744140625
+323.1447449 1178417.125
+324.146759 212146.25
+329.1438904 42029.75390625
+331.1498108 20704.384765625
+338.1418457 46328.22265625
+338.1809082 445955.125
+339.1826172 70555.9609375
+349.1564331 26032.40625
+351.1308289 17085.50390625
+359.1447754 65352.90234375
+366.1861877 127081.7421875
+367.190033 25965.865234375
+369.1407166 36726.0234375
+376.1715088 125092.2890625
+377.156189 96320.3046875
+386.1662292 36618.4453125
+394.1812439 750355.3125
+394.2398376 29949.3046875
+395.1829224 155853.59375
+396.1826782 24112.63671875
+412.1882019 43109.4453125
+460.1889343 20992.634765625
+468.2201233 59025.81640625
+485.2477722 223690.703125
+486.2507935 75158.9296875
+488.1860657 54464.30859375
+492.2296143 169829.59375
+492.7308655 96548.203125
+493.2279358 26394.865234375
+495.2265015 83204.890625
+505.2103577 57684.59765625
+506.2010803 59087.81640625
+512.2263794 49039.4375
+512.7317505 38444.02734375
+520.7380371 24771.791015625
+521.2382202 30011.634765625
+521.7331543 25920.734375
+523.2228394 513970.71875
+524.2260742 155329.296875
+525.2312622 34296.890625
+558.7445679 20303.666015625
+571.7506104 99799.765625
+572.2752686 317852.84375
+572.748291 22961.6328125
+573.2810059 111788.28125
+574.284668 21716.568359375
+575.2697754 19067.685546875
+576.2603149 41751.17578125
+576.7662354 49004.63671875
+577.2637329 46881.80859375
+580.2640381 100925.7265625
+580.7557983 2532019.5
+581.256958 1656692.375
+581.758667 618346.5
+582.2587891 130682.71875
+589.2695312 71326.15625
+589.7697144 49879.63671875
+598.2780762 49524.4609375
+598.7763062 41093.34375
+599.2766113 30450.978515625
+599.777832 77644.546875
+606.260376 44864.65625
+624.270813 60762.7890625
+625.269043 29836.796875
+673.3253174 454986.65625
+674.3290405 181834.921875
+675.3292236 24472.318359375
+802.3634644 118011.6640625
+803.3674316 55758.7734375
+873.4009399 114197.28125
+874.4060059 74034.15625
+1001.459167 27658.662109375
+1002.478088 18862.787109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.138.138.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=138"
+RTINSECONDS=14.81240266
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13439178 15989.9580078125
+64.52628326 56256.25390625
+64.53047943 44112.7265625
+64.58224487 37232.9140625
+64.58627319 26775.888671875
+64.63824463 25752.26171875
+64.64154053 19649.091796875
+74.8117981 15496.7958984375
+75.43544769 15626.9482421875
+75.44712067 14424.47265625
+82.05446625 20751.98828125
+85.37492371 17386.525390625
+90.79672241 16454.720703125
+149.5709839 59755.53515625
+167.0914001 30887.177734375
+169.0598602 46204.69140625
+175.1022797 21680.791015625
+175.1177673 311064.40625
+176.1214142 20998.94921875
+177.0759125 70828.34375
+178.0597687 336089.78125
+178.341629 91858.609375
+179.063446 34168.98828125
+179.0916595 24359.380859375
+183.0753326 25122.4765625
+186.0858612 118024.84375
+190.1070404 17245.751953125
+194.102417 50400.68359375
+195.0862274 4482565.0
+195.1279602 20746.62890625
+196.0890808 454031.5
+197.0908203 36098.984375
+200.1013489 18523.65234375
+201.088974 15729.455078125
+206.0908203 157302.125
+207.0935059 18324.380859375
+212.1127167 21580.1328125
+215.08992 17523.45703125
+218.1018219 68154.3046875
+222.0863037 16194.69140625
+240.0945587 22909.99609375
+243.0856476 22940.537109375
+246.0967102 717108.1875
+247.0986176 72406.578125
+249.0966644 15972.4306640625
+257.122345 100086.421875
+260.1119385 116056.03125
+267.1072693 19578.39453125
+270.0964355 158333.328125
+278.1487732 30956.6171875
+283.1433716 41926.58984375
+287.1228943 175457.8125
+288.1071167 1644965.625
+289.1095886 236249.25
+290.1104126 20183.43359375
+294.1180115 18682.0703125
+303.144928 34691.61328125
+304.1256714 20085.638671875
+305.1335144 3316123.25
+306.1187134 1241781.75
+307.1206665 196711.6875
+311.1348267 41772.22265625
+312.1170044 45534.859375
+318.1420288 17665.486328125
+321.153595 327235.75
+322.1568604 54097.59765625
+323.0995789 32997.4921875
+323.1439514 1218799.25
+323.1888733 35311.7421875
+324.1460571 174466.859375
+325.148407 25236.923828125
+329.1429443 71515.9140625
+331.1452637 20187.78515625
+338.1419983 45362.94140625
+338.1799927 401687.65625
+338.2255554 28872.33984375
+339.183197 63785.3046875
+349.1572266 18832.416015625
+359.1430054 67733.578125
+366.1853027 136341.9375
+369.1373291 32551.59765625
+376.1699219 142252.0625
+377.1550903 94125.8984375
+386.1639404 33179.98046875
+394.1801758 744792.5
+394.2402039 25413.330078125
+395.1815796 166763.0625
+396.1850281 29019.228515625
+412.190033 44470.41015625
+413.1705627 18157.6640625
+420.6853943 25645.416015625
+452.1831665 15959.69921875
+460.1898499 31289.630859375
+468.2217102 50813.015625
+477.2156982 17422.794921875
+478.2011719 21530.775390625
+483.719574 31382.2421875
+485.2469482 205820.578125
+486.250061 71714.3671875
+488.1856995 57382.1171875
+489.1844177 25124.138671875
+492.2278137 174888.09375
+492.7303162 83087.1640625
+493.2306824 36172.3671875
+495.2272644 57721.60546875
+503.7159424 21223.84375
+505.2130432 50795.98828125
+506.2058105 43193.47265625
+512.2266846 60667.03515625
+512.7225342 26781.552734375
+513.2327881 18523.0390625
+523.2210083 484437.84375
+524.2235718 118946.21875
+525.2306519 25221.0234375
+571.7495117 87414.984375
+572.2741699 294845.21875
+573.2790527 82543.484375
+576.2591553 47400.1015625
+576.7625122 26726.365234375
+577.2570801 22642.353515625
+580.2622681 79732.7421875
+580.7539673 2254189.5
+581.2554321 1537069.125
+581.3355103 23989.384765625
+581.3664551 19947.865234375
+581.756897 582446.25
+582.2578735 122940.953125
+589.2666626 70474.53125
+598.2713623 64284.75390625
+598.7753296 24099.412109375
+599.2783813 25047.4921875
+599.7753296 61016.23046875
+606.257019 32674.232421875
+624.269165 61930.8125
+673.3226929 392002.71875
+674.3252563 153800.96875
+675.3290405 40557.71484375
+693.2827759 19204.02734375
+711.2960205 17684.888671875
+802.3619995 100824.9921875
+803.3710327 31031.37890625
+873.3950806 86878.4453125
+874.3979492 50083.6484375
+1001.450684 19665.904296875
+1058.480225 20670.42578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.139.139.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=139"
+RTINSECONDS=14.9201701
+PEPMASS=598.27001953125
+CHARGE=2+
+50.15493393 12648.001953125
+55.52120972 11703.1806640625
+63.02648544 12505.169921875
+64.52619171 59344.73046875
+64.53065491 42081.87890625
+64.58222961 27901.587890625
+64.5861969 25124.88671875
+64.63805389 14588.10546875
+64.64135742 12272.990234375
+74.81190491 15274.5517578125
+121.0410461 13926.6923828125
+149.5681763 48879.6328125
+167.0918274 50073.171875
+169.0597687 37025.5546875
+175.1179962 309177.28125
+177.0755005 66350.1328125
+178.045929 11325.4111328125
+178.0600281 352680.75
+178.0779724 26955.826171875
+178.3315582 19708.720703125
+178.3509521 62324.50390625
+179.0631561 35503.7734375
+179.0916443 26166.970703125
+183.0752716 19011.9140625
+186.0860443 105726.421875
+194.1029358 44932.265625
+195.0649872 36871.15234375
+195.0864716 3968900.75
+196.089325 434474.4375
+197.0917664 33426.421875
+200.1022949 38264.35546875
+201.0862274 16856.5390625
+206.0912628 156222.03125
+207.0926056 15591.8720703125
+209.1026459 18236.669921875
+215.0911102 18577.048828125
+218.1017609 40649.24609375
+234.0983734 15952.5458984375
+237.1120605 16333.0419921875
+239.1125031 23858.669921875
+240.0948181 28541.37109375
+240.4160767 14716.765625
+243.085495 18380.90234375
+244.1174011 16494.4609375
+246.0970764 655441.5
+247.0999146 83561.8984375
+257.1230469 111765.2578125
+258.1254883 23405.779296875
+260.1125488 126615.140625
+262.1304626 17522.107421875
+270.0968323 130393.8671875
+278.1481628 27457.71484375
+283.1427002 39418.76953125
+287.1236877 139966.484375
+288.1075134 1597103.75
+289.1103516 239519.125
+290.1135254 24776.048828125
+294.1138 15887.931640625
+295.1499329 22468.224609375
+303.1421204 21605.046875
+304.1290588 20433.8515625
+305.1340942 3078248.25
+306.1192932 1135971.625
+307.1219177 207799.640625
+311.1348267 61467.48046875
+312.1168213 21919.201171875
+318.1419373 14745.3466796875
+321.1543884 301184.65625
+322.1567383 59897.73046875
+323.0986023 24936.13671875
+323.1446533 1151302.25
+324.1465759 175908.28125
+325.1495056 24982.900390625
+329.1435852 60466.7890625
+338.1427002 41921.45703125
+338.180603 388525.875
+338.6466675 27110.765625
+339.1828613 65528.203125
+347.1481934 15061.7353515625
+347.6520081 15667.099609375
+349.1584473 19767.767578125
+351.1294556 16816.845703125
+359.1442261 63055.0234375
+366.1864624 119950.1953125
+367.1869812 13328.5712890625
+368.1528931 16528.46875
+369.1405945 26554.875
+376.1707764 97352.3203125
+377.1564636 87591.6171875
+378.1559448 13172.5703125
+386.1644287 29651.4921875
+394.1811829 672170.625
+394.2406006 21338.392578125
+395.1830139 129805.7109375
+412.1922302 39155.51171875
+420.6812439 22184.861328125
+421.1847534 16788.953125
+421.5648804 14500.2998046875
+451.1960754 14971.9091796875
+460.1911011 18707.17578125
+468.222229 44478.94921875
+469.2190857 14627.0224609375
+483.72229 22498.22265625
+484.2080688 14476.296875
+485.2476807 181148.59375
+486.2511902 46231.94140625
+488.1848145 48603.5859375
+492.2290649 175129.984375
+492.7309875 84715.171875
+493.2272949 26765.609375
+495.2268372 59834.375
+503.2190552 15145.345703125
+505.2107544 64641.37890625
+506.2009277 35068.13671875
+506.7301025 22559.7578125
+512.2293701 43924.359375
+512.7293701 16122.083984375
+520.7415771 15532.2568359375
+521.2321777 36942.05859375
+523.2225342 457604.71875
+524.223938 128440.9765625
+525.2258301 28949.45703125
+530.2485352 27052.755859375
+554.2662964 14598.9697265625
+558.7443848 24960.849609375
+571.7520142 70818.4453125
+572.2763672 314027.9375
+572.7531128 20823.1328125
+573.2817383 104283.5546875
+576.2619629 71543.8671875
+576.7651978 28620.376953125
+577.2647705 31794.603515625
+580.2635498 54440.69140625
+580.7554321 2185901.5
+581.2567749 1352953.0
+581.7579956 534898.0
+582.2593384 139018.03125
+589.2643433 17465.98828125
+598.2724609 54622.95703125
+598.777771 39553.50390625
+599.2788696 42480.3515625
+599.7785034 59992.9453125
+606.260498 40387.421875
+624.265564 58384.2578125
+625.277832 17844.009765625
+673.3251343 370037.09375
+674.3267822 138886.703125
+675.3276978 27466.84765625
+693.2950439 17093.72265625
+802.364624 83875.2265625
+803.3668823 28570.70703125
+873.4012451 105829.7890625
+874.3981934 35267.046875
+1001.46991 23678.591796875
+1058.477661 18996.994140625
+1087.521606 15830.2421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.140.140.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=140"
+RTINSECONDS=15.03041242
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13429642 15548.4482421875
+64.52628326 60701.50390625
+64.53050995 46384.9765625
+64.58198547 49272.75
+64.58621979 34594.8515625
+64.64167023 21602.1328125
+69.43078613 16584.546875
+71.58504486 15253.748046875
+74.16906738 16180.91015625
+74.81192017 20668.701171875
+78.80342865 15260.740234375
+100.8155823 14182.3427734375
+106.6562271 15007.2275390625
+149.5760651 39161.3671875
+167.0916595 50882.5859375
+175.1179504 347041.53125
+177.0762634 74276.8125
+178.0601654 353592.15625
+178.3444824 107157.609375
+179.0635376 27945.171875
+179.091507 22039.353515625
+186.0862274 121114.71875
+190.0592804 23954.568359375
+194.102356 27125.2734375
+195.0865173 4691293.0
+196.0894012 460167.125
+197.0904694 31178.701171875
+200.1021729 37025.91796875
+201.0842743 24996.46875
+206.0913239 137605.734375
+209.0774841 21496.21875
+212.1143188 24414.763671875
+215.0911865 22638.01171875
+217.1283264 18803.466796875
+218.1025696 60807.38671875
+240.0968018 18301.1875
+246.0971222 708525.5
+246.1256714 32903.37890625
+247.0998688 84842.65625
+253.138382 18912.4140625
+257.1228333 125251.4296875
+258.1242981 25277.810546875
+260.1128235 139635.78125
+262.124939 22445.59765625
+270.0971375 135411.484375
+276.5411682 16099.787109375
+277.1396179 17937.4765625
+283.1439209 50733.2421875
+287.1234741 177248.953125
+288.107605 1645478.375
+289.1102295 220610.265625
+294.1164246 21190.388671875
+295.1128845 21946.46484375
+295.1485291 23828.767578125
+303.1426697 37992.484375
+305.1341553 3535068.75
+306.1193848 1234368.75
+307.1213989 220456.46875
+308.1233521 28551.73046875
+311.1355286 50657.75
+312.118103 36952.91796875
+320.131958 16627.822265625
+321.1541748 344006.15625
+322.1584167 72230.515625
+323.1446838 1177370.0
+324.1469116 197537.140625
+329.144043 63162.39453125
+331.1464844 23888.779296875
+338.1421204 69539.1875
+338.1810303 442243.875
+339.1418152 25170.91796875
+339.1842651 92876.125
+341.1450195 27842.587890625
+347.1502686 35305.0625
+349.1602173 18238.224609375
+358.1652527 22998.83203125
+359.1434326 62513.8671875
+360.0172424 19816.408203125
+366.1872253 129898.5703125
+367.1908875 30171.697265625
+369.1423035 27837.9140625
+376.170929 135820.453125
+377.1569824 100530.6953125
+386.1654968 45520.19140625
+394.1355896 15090.0634765625
+394.1812134 807103.625
+394.2401428 26432.806640625
+395.1820984 154264.15625
+406.4171753 17018.205078125
+412.1883545 45169.53515625
+420.6828003 20026.60546875
+421.1836853 24864.748046875
+468.2204895 59158.91015625
+485.247406 181994.0
+486.2515259 52778.2421875
+488.187561 52331.28125
+492.2296143 212654.59375
+492.7316284 100985.609375
+493.2321472 28113.521484375
+495.2269287 66012.734375
+503.716156 22530.384765625
+505.2125244 61822.5234375
+506.2090454 73691.5859375
+512.2266846 47975.8203125
+521.230835 43025.1953125
+523.2227173 478085.03125
+524.2242432 158073.09375
+525.2281494 33395.7578125
+529.7454834 21146.958984375
+554.2682495 21422.365234375
+559.255188 23049.02734375
+571.7504272 69842.9765625
+572.2751465 332598.875
+573.2811279 97324.609375
+576.2626953 57215.921875
+576.765625 29263.072265625
+577.2617798 27273.78125
+580.2648926 94439.5625
+580.7556152 2376487.0
+581.2567749 1715832.125
+581.7584839 650670.8125
+582.2599487 114847.0703125
+589.2683716 84787.40625
+589.7657471 38400.515625
+598.2711792 59586.4765625
+598.7785645 34072.9765625
+599.7767944 54452.90625
+606.2554932 40712.5625
+624.2687378 50565.796875
+625.272522 30580.447265625
+673.3248291 426661.53125
+674.329834 196077.921875
+675.3278198 36785.21875
+693.2884521 26301.3125
+802.3656006 121963.265625
+803.3670044 43896.96484375
+873.4006348 114498.4453125
+874.4037476 67284.2421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.141.141.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=141"
+RTINSECONDS=15.13740685
+PEPMASS=598.27001953125
+CHARGE=2+
+50.67178726 13594.703125
+55.87461472 12995.841796875
+58.13428879 19898.083984375
+64.5262146 69754.4375
+64.53066254 55320.96484375
+64.5819931 47197.3515625
+64.5861969 30933.72265625
+64.63787079 24130.921875
+64.64113617 18422.556640625
+79.74909973 12710.2080078125
+79.876297 15509.1884765625
+84.18179321 18200.728515625
+94.93724823 14752.67578125
+132.7378693 15265.470703125
+149.5654144 36678.00390625
+167.0914459 45722.9609375
+169.0598297 33469.1953125
+175.1177216 330776.125
+177.0757294 63197.37109375
+178.059967 362790.8125
+178.344635 90098.1171875
+179.0638885 24259.94921875
+179.0917511 22723.685546875
+182.0915527 26054.54296875
+183.0755768 23339.15625
+186.0862427 120028.6171875
+188.5407867 14267.931640625
+194.1017761 49867.02734375
+195.0863342 4469956.0
+195.1283264 21489.87109375
+196.0890503 441946.28125
+197.0922089 25809.416015625
+201.0849762 17514.955078125
+206.0910187 146593.21875
+207.094162 34911.296875
+212.112915 33762.3828125
+212.8891907 13261.1591796875
+218.1019897 54281.1171875
+222.085968 16401.6640625
+230.7642975 16047.8515625
+239.1106415 16138.7451171875
+240.0958862 23259.013671875
+243.0864868 20257.22265625
+246.0968933 714112.3125
+247.0992737 92234.7265625
+257.1225281 118207.25
+260.1124878 129268.828125
+270.0966797 136651.984375
+276.1333313 17874.220703125
+277.1399536 15183.830078125
+278.1486511 27957.212890625
+280.9209595 13623.1982421875
+283.1439514 50489.75390625
+287.12323 161311.390625
+288.1072693 1651520.625
+289.1103516 268588.6875
+303.1422729 24330.087890625
+305.1337891 3285657.25
+306.1188354 1237577.75
+307.1212158 224200.609375
+308.1216431 25519.681640625
+311.1345215 71269.6796875
+312.1164856 39172.3828125
+318.1432495 24921.228515625
+321.1538391 338375.90625
+322.1563416 59519.84375
+323.1442871 1201517.875
+324.1465759 223399.390625
+325.1492615 22914.5703125
+329.1439514 51619.50390625
+338.1421204 54634.61328125
+338.1803589 421126.53125
+339.183075 95155.84375
+341.1436462 14615.4033203125
+358.1660767 16890.763671875
+359.14505 84113.0703125
+360.1471558 19821.931640625
+366.1862183 119569.2265625
+367.1904907 22852.28125
+369.1386108 39162.0703125
+376.1695862 126680.625
+377.1586304 72155.8984375
+386.1653137 34852.76953125
+394.1807251 778654.0
+394.2402039 24149.05859375
+395.1829834 171493.46875
+396.1818848 17470.8359375
+412.1869812 19328.62890625
+420.6796875 25744.146484375
+428.1985779 22752.958984375
+460.1926575 16405.48046875
+468.22229 60761.1640625
+469.227356 19916.720703125
+485.2469177 232583.921875
+486.2503357 74432.2890625
+488.1852112 56399.70703125
+492.229187 190434.234375
+492.7315979 83648.265625
+493.2325134 37513.671875
+495.2247925 54723.01171875
+505.2107239 59103.609375
+506.2080383 61784.68359375
+512.2271729 50765.3984375
+512.7269897 40791.0234375
+521.230957 35073.51953125
+521.7371216 29161.93359375
+523.2218628 496555.46875
+524.2242432 140900.125
+525.2288818 21586.23046875
+527.2667236 16136.173828125
+555.2498169 22626.640625
+558.7459717 28877.861328125
+567.2559204 25288.052734375
+571.7526245 70026.875
+572.2749023 365135.125
+572.7488403 21821.28515625
+573.2786865 99305.1953125
+576.2633057 68868.3671875
+576.7617798 19777.078125
+577.2614136 40032.4453125
+580.2630615 118294.9140625
+580.7546997 2526133.75
+581.2560425 1706748.375
+581.7578735 687163.375
+582.2583618 148909.359375
+589.2651367 53037.5546875
+589.765686 19975.240234375
+598.2740479 97199.703125
+598.7749023 37766.32421875
+599.2796631 35396.9296875
+599.7758789 90467.0234375
+606.2572632 34785.86328125
+624.2681885 66600.6015625
+655.3182373 27653.193359375
+673.3236084 447452.625
+674.3261108 186968.765625
+675.331665 23836.171875
+693.2971802 18815.197265625
+802.3638306 88272.2734375
+803.3617554 39284.328125
+873.3951416 99113.5078125
+874.4030151 44653.203125
+1001.455444 35778.26953125
+1002.461731 18997.341796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.142.142.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=142"
+RTINSECONDS=15.24592312
+PEPMASS=598.27001953125
+CHARGE=2+
+51.69346237 14932.0986328125
+52.81599426 12635.755859375
+58.1345253 16258.5810546875
+58.13732529 16003.927734375
+58.88356018 14872.5380859375
+64.52619171 57110.6171875
+64.5304718 46254.84375
+64.58217621 28586.50390625
+64.58612823 35358.8203125
+64.63811493 23989.75
+64.64151764 22509.900390625
+72.56291962 13243.5234375
+131.9006805 13313.4296875
+131.959137 14766.2451171875
+141.8388062 15046.3359375
+149.5627289 28838.427734375
+149.5764771 28482.37890625
+167.0920868 45667.26953125
+169.0593567 26549.220703125
+175.1018677 27029.44921875
+175.1178589 316952.875
+176.1209869 19381.52734375
+177.0755768 53726.30078125
+178.0599365 346734.15625
+178.3394928 77185.859375
+179.0640869 22538.982421875
+179.0913391 14572.513671875
+182.0919342 22215.98828125
+183.0746307 20163.337890625
+186.0858765 94454.125
+190.0599518 18495.61328125
+194.102356 47834.78125
+195.0863647 4257680.5
+195.1281128 20310.564453125
+195.868103 14446.849609375
+196.0892487 379043.15625
+197.0917664 33291.12890625
+200.1018372 25518.857421875
+201.0856018 26767.07421875
+206.0910339 162484.265625
+213.085907 16067.7490234375
+215.0922089 17187.560546875
+217.1268921 18390.998046875
+218.1020966 48057.640625
+230.1381226 15242.7607421875
+239.1140442 16022.0927734375
+240.0953827 24651.427734375
+243.0866241 17744.87109375
+246.0969696 602045.5625
+247.1000824 92911.390625
+257.1227417 76514.6328125
+258.1254578 22990.365234375
+260.1123962 133408.671875
+270.0967712 116119.34375
+271.1009521 29300.134765625
+278.1173706 16417.470703125
+278.1494141 25859.619140625
+283.1428833 59251.87109375
+287.1235962 132384.234375
+288.1073608 1593151.625
+289.1101379 270892.3125
+290.1124878 21268.13671875
+295.150177 19696.869140625
+303.1425781 22857.513671875
+304.1274719 24764.263671875
+305.1339111 3244561.25
+306.1189575 1209127.75
+307.1210938 184863.9375
+308.1217651 30990.59375
+311.1348877 46067.6796875
+312.117157 34010.6015625
+321.1539307 366174.65625
+322.1575012 50602.08984375
+323.0989075 19294.775390625
+323.1444092 1130310.125
+324.1461182 180578.296875
+325.149353 27686.3203125
+328.1580811 18272.421875
+329.1437988 43555.6171875
+338.1430054 36991.4296875
+338.1805725 426776.125
+338.6441345 20812.703125
+339.1830139 73796.625
+346.1661072 15936.0888671875
+347.1499939 25610.294921875
+351.1332092 21271.2734375
+358.1680298 20198.130859375
+359.1453552 59766.34375
+366.1857605 127548.6640625
+367.1890259 27758.107421875
+369.1375427 26841.826171875
+376.1706848 116361.7890625
+377.1567993 96267.8984375
+386.1635132 19573.142578125
+394.1808777 787688.3125
+394.2409973 26535.9609375
+395.1818848 129771.4296875
+396.1861267 19412.443359375
+412.1876526 41977.3828125
+413.1670227 16094.2548828125
+460.1918335 26979.947265625
+468.2220764 49024.4921875
+482.1870728 18151.62890625
+485.2471008 201685.828125
+486.2492981 56965.984375
+488.1856079 51868.9375
+489.18927 25732.1953125
+492.2289124 118159.9375
+492.7302856 101236.4921875
+493.2299805 18045.45703125
+495.2286072 58587.17578125
+503.7171326 20472.990234375
+505.2134094 54825.31640625
+506.2024231 31928.056640625
+512.2266235 56339.07421875
+521.2380371 39208.26171875
+522.227478 18764.642578125
+523.2225952 502259.6875
+524.2242432 119874.765625
+525.2272949 26049.548828125
+529.7403564 25440.576171875
+554.2724609 19314.1484375
+559.753479 19265.90625
+567.2566528 23255.296875
+567.7498779 26187.05859375
+571.7515869 59471.5859375
+572.2761841 302570.90625
+572.7545776 22563.3125
+573.2799072 88394.84375
+574.2817383 25338.521484375
+575.7734375 20674.708984375
+576.2592773 47819.71875
+576.7595215 32727.78515625
+577.2668457 18794.251953125
+580.2640381 75623.0390625
+580.755249 2327493.25
+581.2562256 1600881.25
+581.3654785 19249.62890625
+581.7578125 562701.375
+582.2592163 125442.8046875
+589.2657471 73847.6171875
+589.7640991 40930.30859375
+598.2728271 56619.49609375
+598.7729492 34385.30078125
+599.2747803 52589.98046875
+599.7769165 81144.203125
+606.2612305 20877.38671875
+607.2574463 17064.71484375
+624.2696533 36264.08203125
+625.274231 18512.583984375
+656.3014526 22936.701171875
+673.3237915 407570.5
+674.3265381 140512.6875
+675.3239136 22737.0859375
+713.258728 15746.3525390625
+802.364624 94400.5625
+803.3653564 41287.29296875
+804.3807373 18147.26953125
+873.4023438 108557.296875
+874.4000244 56851.046875
+875.4083862 23931.455078125
+1001.455078 18334.876953125
+1058.466431 19536.669921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.143.143.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=143"
+RTINSECONDS=15.35442442
+PEPMASS=598.27001953125
+CHARGE=2+
+63.48944473 12525.642578125
+64.52622986 65680.1953125
+64.53050232 36732.9296875
+64.58200073 41796.75390625
+64.58621979 32778.06640625
+64.63817596 19375.5625
+64.64176941 15088.9580078125
+82.05387115 21529.0078125
+100.4234772 13163.4091796875
+128.2572784 13418.734375
+149.5637207 28386.005859375
+167.0919495 48075.08984375
+169.0601196 28624.5078125
+175.1003418 14136.59765625
+175.1177673 339155.4375
+176.1214294 16499.01953125
+177.0759888 69633.890625
+178.0600433 358407.0625
+178.338623 65094.8125
+179.0638275 28044.552734375
+179.0921478 29977.302734375
+182.0918274 28784.7265625
+183.0746155 24570.2109375
+186.085968 103360.3671875
+194.1016846 41803.7421875
+195.0863953 4175207.25
+195.1278534 31862.7734375
+196.0892639 430559.875
+197.0924072 20817.8828125
+199.1178436 14956.2646484375
+200.1023712 26375.568359375
+201.0843201 18856.650390625
+206.0910492 161496.96875
+207.0949097 18246.568359375
+212.1141815 15493.447265625
+215.0899963 14709.6689453125
+218.1026611 60774.234375
+221.1015015 15925.017578125
+234.0974731 24557.978515625
+235.1055908 15497.6650390625
+239.1141815 18446.73828125
+240.0957184 21399.4765625
+246.0969086 699195.125
+247.0998077 71426.1328125
+249.0954742 23815.40625
+257.1226501 100832.234375
+258.1233826 20029.255859375
+260.1123962 136056.6875
+270.0967407 115497.90625
+277.140564 19231.015625
+283.1433105 43214.99609375
+287.1234741 163778.65625
+288.1072693 1588032.625
+289.1099854 243927.484375
+290.1122437 33214.51171875
+303.1439209 20839.1328125
+305.1338501 3248867.75
+305.2167664 20103.720703125
+306.118988 1186210.0
+307.1210632 172167.984375
+308.1231689 18218.744140625
+311.1338806 43903.9140625
+312.1168213 32048.234375
+321.1539917 378043.5625
+322.1569214 50177.89453125
+323.0993958 18388.134765625
+323.1443481 1131005.25
+324.1462402 179032.25
+325.146759 15043.890625
+329.1438293 48162.4609375
+338.141571 71226.78125
+338.180542 407806.84375
+339.1824646 76659.28125
+347.1489868 26466.482421875
+347.6485901 18115.919921875
+349.1589661 19631.1796875
+351.1314087 18094.658203125
+359.1451721 54494.234375
+366.1857605 134338.3125
+367.1868896 17994.728515625
+369.1397095 30871.767578125
+376.1705322 131481.421875
+377.1563416 85391.03125
+386.164917 36697.87109375
+394.1808167 716864.125
+395.1829224 150770.6875
+412.1850891 21583.173828125
+413.162262 16154.96484375
+421.1842346 19817.169921875
+460.1899719 26180.232421875
+468.2203369 41805.42578125
+484.2206726 17056.65234375
+485.2471619 220449.421875
+486.2499695 49360.4140625
+488.183136 37047.0390625
+489.1874695 20927.14453125
+492.2289124 136326.0
+492.7301331 66764.046875
+495.227478 49694.953125
+503.2210388 14339.0400390625
+505.2102966 47564.96875
+506.2071533 49249.859375
+512.2258301 43024.73046875
+512.725769 25371.8203125
+513.2334595 16853.068359375
+523.2218628 420539.40625
+524.2243652 131417.390625
+525.2228394 18897.669921875
+552.2418213 15611.59375
+558.7458496 30039.306640625
+559.2449951 21105.10546875
+571.7493286 116520.6484375
+572.2747192 342035.8125
+572.7536011 18305.388671875
+573.2775269 101943.3125
+574.2789917 28720.162109375
+576.2623901 40880.65234375
+576.7649536 18427.7421875
+580.2626343 88164.578125
+580.7545776 2353981.75
+581.2561035 1620605.75
+581.3659058 23382.078125
+581.7572632 484421.0625
+582.2574463 122551.734375
+589.2672729 52126.1640625
+589.7695923 25783.7734375
+598.272522 49972.66015625
+598.7759399 34544.36328125
+599.2756348 57117.9296875
+599.7770386 78907.40625
+606.2593994 36597.7109375
+624.2689209 60764.59765625
+625.2694702 20436.98828125
+655.3084717 28075.56640625
+673.3234253 424215.78125
+674.3264771 156780.390625
+675.3217773 27547.703125
+711.2959595 15130.4482421875
+802.3618164 118680.1796875
+803.3642578 42060.0703125
+804.3724976 16304.623046875
+873.4019165 78518.2109375
+874.4060669 44959.6171875
+1001.453308 21758.888671875
+1058.478882 23041.15625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.144.144.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=144"
+RTINSECONDS=15.46363955
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13431931 15443.96875
+58.13714981 13739.259765625
+64.52635956 61675.9375
+64.53050232 43168.50390625
+64.58202362 43455.48046875
+64.58616638 29736.30859375
+64.63820648 17677.6484375
+82.05383301 13525.298828125
+88.88549042 14132.5126953125
+94.79120636 13102.1806640625
+107.0086288 13898.06640625
+135.0961761 13261.8740234375
+149.5707397 57126.84765625
+167.0921478 41234.70703125
+169.0592499 26151.15625
+175.1180115 298193.0
+176.1210175 19028.6171875
+177.075943 58247.80859375
+178.0601654 301436.53125
+178.339386 64239.7265625
+179.0917664 20099.7734375
+182.091217 17657.79296875
+183.0758972 22809.75
+186.0864716 92523.6015625
+190.0605774 20443.814453125
+194.10289 40340.6640625
+195.0649567 39405.06640625
+195.0864868 4071571.25
+196.0893555 403970.625
+197.0910187 28387.23828125
+200.1020355 33137.5234375
+206.0912323 171427.390625
+218.1026764 46626.54296875
+240.0978699 19198.2109375
+244.1168671 19535.787109375
+246.0970612 613376.75
+247.0993195 77114.8828125
+249.0974579 15954.3623046875
+257.1231384 118310.5859375
+260.1128845 121981.1796875
+267.1100769 15551.32421875
+270.0971375 137462.28125
+276.1048889 20614.076171875
+278.1203918 24211.810546875
+278.1507568 22860.1640625
+279.1313782 15528.330078125
+283.1435242 33705.94140625
+287.1236877 156312.875
+288.1075439 1557947.5
+289.11026 234059.0
+290.1126404 24808.900390625
+294.1166077 21776.478515625
+295.1504822 23136.7578125
+302.1294556 19433.998046875
+303.1435852 26417.404296875
+305.1340637 3217315.5
+306.1193237 1099149.0
+307.12146 172717.921875
+308.1231384 16978.7734375
+311.1347351 42341.73828125
+312.1186523 45717.9296875
+321.1544189 306691.4375
+322.1567993 67212.03125
+323.0976257 23622.771484375
+323.1446533 1129506.375
+324.1466675 166008.765625
+325.149353 14565.2744140625
+329.1432495 40969.3125
+338.1430969 41482.14453125
+338.1806335 416935.875
+338.6464233 25983.30078125
+339.1827393 70026.15625
+349.1588135 17330.400390625
+358.1634827 17469.3828125
+359.1447144 78451.484375
+366.1863098 109158.3125
+367.188446 20832.61328125
+369.1393738 28887.111328125
+376.1707764 123292.640625
+377.1578674 77454.1796875
+386.1627808 26349.861328125
+394.1812134 662518.4375
+395.1823425 141834.8125
+412.186554 22996.953125
+468.2210083 42488.421875
+478.2104187 16572.033203125
+483.7230835 29653.005859375
+485.2473755 197857.828125
+486.249115 76756.046875
+488.1870117 49090.05078125
+492.2301636 134439.65625
+492.7318115 90318.453125
+493.2297974 22479.169921875
+495.2284241 64566.37109375
+496.2279663 23341.255859375
+503.2225342 17203.994140625
+505.2115173 61537.76953125
+506.2052002 48979.6171875
+512.2275391 29803.716796875
+512.7268066 36256.86328125
+513.2202759 18100.03125
+521.2372437 22108.240234375
+521.7396851 27287.6953125
+523.2224121 415174.9375
+524.2248535 118792.6796875
+525.234436 20833.298828125
+529.746582 18239.4921875
+555.2484131 16702.0625
+559.7398682 15534.0244140625
+567.2606201 19679.11328125
+568.2622681 19020.107421875
+571.7509766 73921.2265625
+572.2741089 273439.9375
+572.7630005 22496.373046875
+573.2796631 100049.7578125
+575.2724609 21207.216796875
+576.2595215 39942.4609375
+576.7598267 38106.828125
+580.2630005 84681.0
+580.7554321 2307193.5
+581.2565918 1504466.625
+581.7584229 533921.625
+582.2600098 100250.2109375
+589.2706909 49502.22265625
+589.7662354 23419.751953125
+598.2732544 53216.078125
+598.7807007 26785.697265625
+599.2732544 37506.50390625
+599.7785645 70949.921875
+606.2592163 36514.0078125
+624.2675171 63007.09765625
+625.2689819 20229.041015625
+655.3117676 24500.123046875
+673.3249512 392101.0625
+674.3272095 165146.15625
+675.3220215 39679.93359375
+693.2874146 18894.05078125
+802.366394 96974.7578125
+803.3655396 43895.765625
+873.4018555 100525.4765625
+874.4039307 59424.71875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.145.145.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=145"
+RTINSECONDS=15.5728072
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91535187 15613.228515625
+64.52628326 70302.6484375
+64.5307312 49553.54296875
+64.58202362 49380.73046875
+64.58620453 35150.1953125
+64.63815308 20915.8828125
+64.64148712 22205.22265625
+68.95597076 14875.96484375
+74.81628418 16190.736328125
+88.49501801 13791.16796875
+88.57804871 13549.64453125
+119.5054321 11534.1904296875
+120.1752396 13793.7265625
+149.5682983 60366.44140625
+167.092041 53283.0234375
+169.0591278 31567.177734375
+169.1585999 14011.3701171875
+175.1177521 297949.71875
+176.1207123 18807.779296875
+177.075943 81783.875
+178.059845 320255.0625
+178.0752258 10025.755859375
+178.335434 47627.078125
+178.3553619 48734.43359375
+179.0637817 26612.853515625
+183.07547 22748.994140625
+186.0860138 131320.328125
+187.0916443 22233.689453125
+190.1081238 19441.841796875
+194.1025085 46355.9296875
+195.086319 4535923.5
+195.1277924 21166.072265625
+196.0890656 429537.84375
+197.0920563 30144.13671875
+200.1017914 33496.484375
+201.0856171 20226.02734375
+206.091095 128129.921875
+207.0933075 23318.708984375
+212.1117706 17068.279296875
+213.0857239 19134.66796875
+215.0886993 23576.42578125
+218.1022491 55445.390625
+222.0858765 16768.578125
+234.0978241 17521.0625
+240.0951691 25653.990234375
+243.0860748 31917.72265625
+246.0967712 700054.9375
+247.0993652 74396.2265625
+249.096344 19177.787109375
+257.1225586 108335.0
+258.1234131 15773.814453125
+260.1121826 116614.75
+270.0968628 127395.2578125
+271.1018982 19272.84765625
+278.1201477 24218.267578125
+278.1505432 24157.8046875
+283.1421814 38503.35546875
+287.1232605 159053.96875
+288.1071777 1616205.25
+289.11026 223636.015625
+290.114624 18174.021484375
+294.1184082 24583.64453125
+295.1486511 24961.951171875
+303.1438293 33359.72265625
+304.1275635 21832.240234375
+305.133667 3301087.5
+306.118927 1210317.625
+307.121521 182320.015625
+311.1347961 44589.59765625
+312.1179504 26848.017578125
+321.153656 312040.0
+322.1560669 65376.87109375
+323.1441956 1155093.375
+324.1467285 196276.875
+325.1496582 20930.998046875
+329.144104 63291.984375
+331.151886 19217.67578125
+338.1425476 37369.00390625
+338.1799927 422864.5625
+338.6427002 25001.73046875
+339.1824646 90013.484375
+339.2234192 15717.078125
+347.1485901 31275.279296875
+349.1569824 21429.87890625
+353.1477966 21911.28515625
+359.1442261 48728.00390625
+360.1461792 24085.244140625
+366.1854858 132737.53125
+367.1843567 23580.287109375
+369.1363831 31543.82421875
+376.1705322 131736.515625
+377.1547852 82061.890625
+386.1660461 25832.556640625
+394.1803589 764285.3125
+394.2406616 24044.912109375
+395.1822815 162647.640625
+396.1902466 22749.171875
+412.1854248 32451.26953125
+420.6843567 28560.087890625
+464.1739502 17731.78125
+468.2214966 39668.93359375
+469.2255859 16322.9794921875
+483.2196045 22555.04296875
+483.7193298 25043.27734375
+484.2172852 17133.244140625
+485.2468567 220680.34375
+486.2503662 76720.09375
+487.2054749 17545.263671875
+488.1853638 54018.03125
+492.2287598 186950.140625
+492.7285461 95347.4453125
+493.2330627 22645.052734375
+495.2264404 65029.73828125
+503.7193604 24278.041015625
+505.2108765 55928.45703125
+506.2008667 47039.82421875
+506.7277222 15450.0654296875
+512.2264404 35182.0
+512.7305298 31603.02734375
+521.2322998 43570.57421875
+523.2212524 476121.25
+524.2241211 142775.21875
+525.2282104 28253.98046875
+529.7459717 17435.7421875
+541.2374268 17964.63671875
+558.7453003 31671.587890625
+559.249939 18247.185546875
+568.2513428 17022.830078125
+571.7478638 100390.375
+572.2728882 327595.5625
+572.7476807 21201.857421875
+573.2786255 87830.078125
+576.2573242 54660.44921875
+576.7606812 41746.5234375
+577.2614746 40477.37890625
+580.2614136 94613.421875
+580.7541504 2547620.0
+581.2554932 1747007.875
+581.3387451 30155.384765625
+581.757019 612165.25
+582.2584839 141852.78125
+589.2669067 75909.6640625
+589.7658691 51188.6953125
+598.2710571 68437.0859375
+598.7787476 36260.26953125
+599.2768555 23302.263671875
+599.7756348 107781.5546875
+606.2615356 24481.240234375
+624.2659302 57766.96484375
+673.3225708 485086.875
+674.3251343 173843.453125
+675.3301392 39067.80859375
+676.279541 16772.611328125
+711.2911377 18834.5546875
+767.4622192 16274.9716796875
+802.362793 114642.5625
+803.3709106 36422.8515625
+873.3994751 91765.9765625
+874.3994141 48983.703125
+875.4207153 19128.55859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.146.146.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=146"
+RTINSECONDS=15.68085728
+PEPMASS=598.27001953125
+CHARGE=2+
+63.69955826 15417.4658203125
+64.52629089 74572.3203125
+64.53063965 50722.7890625
+64.58203125 56121.91015625
+64.58625031 29346.724609375
+64.63812256 27682.056640625
+74.81155396 17310.69921875
+77.60005188 16253.34765625
+93.90107727 15496.32421875
+95.42462921 16368.5380859375
+96.37765503 16771.87890625
+149.5704956 69414.421875
+150.4958344 14730.10546875
+167.0920105 43770.42578125
+169.0600281 18814.50390625
+175.1178741 319715.59375
+176.1210632 24106.43359375
+176.5686035 15769.7724609375
+177.0759277 52372.37109375
+178.0600281 353001.21875
+178.3482666 88586.5859375
+179.0620728 23833.380859375
+179.0911255 27099.947265625
+182.0915833 33349.5625
+183.0744019 21829.521484375
+186.0861206 113438.171875
+194.1030884 37959.7890625
+195.0863953 4531522.0
+195.1276703 24009.703125
+196.0891876 409411.875
+197.090683 40752.609375
+200.1011353 20275.193359375
+201.0861664 16935.607421875
+205.1822815 17242.494140625
+206.0909729 178110.546875
+215.0912933 24947.96484375
+217.1286316 16221.947265625
+218.1019287 51950.421875
+233.1266937 21351.046875
+240.0950317 19022.12890625
+243.0869751 25551.2578125
+246.0968933 691800.625
+246.1257172 35113.65234375
+247.1004333 80751.5078125
+257.1226807 88961.859375
+260.1123962 130547.1171875
+261.1169739 25904.79296875
+262.1219177 17470.17578125
+270.0970154 157567.328125
+271.1021118 24485.994140625
+279.1304626 16950.7109375
+283.1420898 50307.99609375
+287.1236572 162204.984375
+288.1073303 1659196.25
+289.1096191 263671.125
+290.1164551 17910.912109375
+294.1176453 24523.759765625
+295.1142273 17238.80078125
+295.1499634 25087.359375
+303.1438599 25425.6015625
+305.1338806 3283517.0
+306.1189575 1196156.125
+307.1216431 199099.40625
+308.1228638 29699.048828125
+311.1341858 56286.4765625
+312.1174927 53366.08203125
+321.1540527 343367.875
+322.1558838 57080.359375
+323.1443481 1186960.375
+323.1887817 34627.3359375
+324.1470947 187951.1875
+325.151886 16095.8544921875
+329.1444092 52260.05859375
+337.1633606 22544.736328125
+338.1418457 42045.78515625
+338.1807251 390402.5
+338.6441345 21039.0625
+339.1420593 22937.9765625
+339.183136 84387.09375
+347.148468 21411.251953125
+349.1610718 20481.212890625
+350.7500305 16181.7421875
+358.17099 17229.69921875
+359.14505 50380.49609375
+366.1858521 113246.640625
+367.1864929 21390.15625
+368.1619263 17345.94140625
+369.1377258 32697.06640625
+372.3288879 17494.34765625
+376.1709595 127426.96875
+377.156311 78423.5234375
+394.1195679 24879.95703125
+394.1809082 786936.5
+394.2398987 24078.3359375
+395.1822205 145812.71875
+412.1891785 30458.73828125
+413.1564636 17871.609375
+420.6820679 19604.46875
+421.1864319 21243.794921875
+434.1750183 19205.533203125
+460.1907043 30472.423828125
+464.1776123 20663.19921875
+468.2198181 60721.234375
+485.2468872 204680.234375
+486.2503967 70461.4453125
+488.1875305 48532.6640625
+492.2285461 166622.359375
+492.7304077 88071.5703125
+493.2334595 24585.216796875
+495.2280884 50874.1796875
+496.2261963 23562.509765625
+503.7216797 19615.416015625
+505.2119141 73846.0859375
+506.2011414 66076.9921875
+512.2260132 36507.2421875
+512.7330322 39949.16796875
+520.7375488 28626.892578125
+523.2220459 462842.3125
+524.2243042 150683.328125
+558.2457886 20165.71875
+558.7428589 32644.3515625
+571.7507935 64321.9609375
+572.2741699 346330.75
+572.755188 21916.537109375
+573.2789307 90000.8046875
+574.2857666 26495.310546875
+576.2581787 76132.71875
+576.7636719 26787.05859375
+580.2616577 97687.703125
+580.7546387 2652638.75
+581.2560425 1860485.875
+581.3650513 28860.333984375
+581.7578125 709190.625
+582.2595215 136970.953125
+589.2677002 112965.53125
+589.7671509 74450.3125
+598.2750244 44672.0390625
+598.7765503 38237.12109375
+599.2813721 24762.5390625
+599.7765503 69528.9296875
+606.2570801 52703.3984375
+624.2672729 68565.171875
+657.3101807 18621.876953125
+673.3241577 497485.53125
+674.324707 150238.0
+675.3220215 47348.1484375
+693.2929688 26601.93359375
+712.3019409 19009.615234375
+802.3621826 97789.4921875
+803.3641968 37498.6796875
+873.4030762 107863.9375
+874.3956299 45844.96484375
+1001.446106 25419.11328125
+1059.469971 19315.61328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.147.147.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=147"
+RTINSECONDS=15.78790296
+PEPMASS=598.27001953125
+CHARGE=2+
+51.98707199 12089.7802734375
+54.16340637 11662.525390625
+54.77538681 12196.328125
+58.1373291 17850.55078125
+64.15727997 13017.126953125
+64.52620697 54925.93359375
+64.5304718 38653.125
+64.58195496 39682.60546875
+64.5861969 30187.572265625
+64.6416626 15039.7529296875
+74.81190491 16989.3515625
+82.05419922 18403.845703125
+92.53015137 11756.2763671875
+102.470932 12749.794921875
+128.5371094 12045.6640625
+136.0811157 13760.890625
+149.5647736 39502.53125
+167.0917816 35501.26953125
+169.0595703 27047.24609375
+175.1177063 322870.53125
+176.1208038 18561.806640625
+177.076004 76277.8125
+178.0599365 360691.6875
+178.0782166 17672.974609375
+178.3426666 83265.4453125
+179.0631714 32910.13671875
+182.0909424 13045.4580078125
+182.2453308 13338.3828125
+183.0751648 31769.904296875
+186.0858307 106404.8828125
+188.5684662 12125.5126953125
+194.1040192 24143.318359375
+195.0863342 3968350.75
+195.1278839 21882.9921875
+196.0891724 413551.03125
+197.0899506 29881.091796875
+200.1028595 28324.814453125
+206.0911255 143302.890625
+207.0949707 14681.0751953125
+212.1136017 19793.12109375
+215.0921478 13280.3955078125
+218.1021423 69083.9296875
+240.0958405 21446.93359375
+243.0861359 19021.052734375
+246.0968628 633410.75
+247.0995483 68243.5546875
+249.0971985 25121.984375
+257.1223755 111636.7421875
+260.1127319 106353.171875
+267.1097412 16981.48828125
+270.0968933 149103.703125
+271.1012878 17576.4375
+278.1161194 21541.748046875
+278.1481323 31530.896484375
+283.0691528 14953.6123046875
+283.1437073 67271.3828125
+287.1234436 155961.203125
+288.1072388 1668221.625
+289.1098938 243711.265625
+290.1141663 22558.00390625
+295.1505127 17649.09765625
+303.1430054 23371.712890625
+304.1271973 24131.2578125
+305.1338196 3219609.5
+306.1189575 1154629.75
+307.1214294 186524.40625
+308.124176 26350.302734375
+311.1343079 52561.19921875
+312.1179199 39628.75
+321.1537476 350755.40625
+322.1562195 50076.3203125
+323.0978699 18827.986328125
+323.1442566 1104514.875
+324.1465149 184655.25
+329.1453857 34607.29296875
+338.1422729 49730.92578125
+338.1801453 407468.03125
+338.6450806 18744.982421875
+339.1824036 80873.84375
+341.1517639 12395.5390625
+347.1499023 24685.6171875
+348.296051 14220.9033203125
+349.1582336 23709.669921875
+351.1295471 17203.9921875
+358.1661377 19464.619140625
+359.1440125 49065.91796875
+366.1859741 118415.1953125
+367.1884766 25671.833984375
+369.1402283 18154.318359375
+374.6857605 14911.6796875
+376.1702271 128306.7890625
+377.1551819 86296.9921875
+386.1637573 29690.068359375
+394.1807251 704024.5
+394.2404785 24733.513671875
+395.1825562 157196.28125
+396.1798401 17274.580078125
+412.186615 21858.228515625
+413.1631165 15403.5849609375
+420.685791 20247.279296875
+460.1933899 29033.650390625
+468.2235718 42788.94921875
+478.2022705 17293.123046875
+483.721344 22752.88671875
+485.2470093 206196.625
+486.2499084 52798.26953125
+488.1830444 45337.84375
+492.2292786 156740.375
+492.7301941 98814.8203125
+493.2321777 26038.466796875
+495.2266541 47192.6875
+503.7181396 18417.310546875
+505.2128296 54803.328125
+506.2074585 48865.84375
+512.2284546 35317.31640625
+512.7299805 19147.00390625
+521.2344971 29971.88671875
+523.2219849 448369.4375
+524.2242432 110103.0234375
+525.2289429 21531.0625
+559.2475586 20839.736328125
+571.7490845 102004.3515625
+572.2752686 286835.5
+573.2796021 101869.953125
+576.2588501 24650.689453125
+576.7592773 19496.69140625
+577.2650146 43017.734375
+580.262146 79120.3828125
+580.7547607 2082926.75
+581.2557373 1451596.25
+581.3657227 19503.73828125
+581.7572632 509369.4375
+582.2617188 102094.9296875
+589.2644043 36173.625
+598.2719116 58157.44140625
+598.7776489 31799.546875
+599.2761841 30092.126953125
+599.7775269 90656.4453125
+606.2571411 35818.8671875
+624.2685547 45510.25
+673.3233643 374863.34375
+674.326416 139058.921875
+675.3269043 30603.115234375
+802.3648071 98073.671875
+803.3666992 31964.322265625
+873.4023438 92152.65625
+874.3990479 45833.23828125
+1001.458557 25280.9609375
+1059.481323 15258.0498046875
+1109.848877 15146.5576171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.148.148.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=148"
+RTINSECONDS=15.89784453
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13447189 19828.87109375
+59.37521362 15367.9521484375
+62.46845245 14335.5966796875
+62.80874252 16005.52734375
+64.27883911 16471.63671875
+64.52622986 78640.6015625
+64.5306778 54784.73046875
+64.58202362 49192.359375
+64.58615875 35308.7890625
+65.5462265 14302.068359375
+83.43112183 14298.998046875
+93.42809296 13825.013671875
+103.7261658 17720.375
+107.9879684 16435.744140625
+149.5759888 36430.22265625
+167.0914154 42634.85546875
+169.0599518 26089.01953125
+175.1175995 294233.875
+177.0758057 62246.109375
+178.0597839 368604.3125
+178.0777435 19115.47265625
+178.3477631 94723.7421875
+179.0630188 41796.2890625
+182.0922394 17074.423828125
+183.0733032 18837.7421875
+186.0858459 108332.1875
+194.1023407 60885.26171875
+195.0862885 4532121.5
+196.0890961 450378.25
+197.0921478 19464.99609375
+200.1024017 33239.953125
+201.0849915 16329.2666015625
+206.0909882 163039.703125
+212.1129456 20868.33203125
+217.3565063 16681.2890625
+218.1018524 49092.76171875
+240.095993 23467.80078125
+246.096756 692473.6875
+246.1256866 32187.01171875
+247.0996094 100248.7734375
+257.122406 96886.40625
+258.124054 18448.38671875
+260.1122742 112824.4609375
+261.117218 22853.3984375
+270.097168 112449.203125
+278.1193848 20389.24609375
+278.1500244 27240.5859375
+283.1422424 59019.98046875
+284.1214905 18334.740234375
+287.1227722 144524.671875
+287.9185486 17320.150390625
+288.1071167 1725553.125
+289.1097107 245323.5625
+295.1502991 35021.59375
+303.1429443 32183.673828125
+304.129364 23068.529296875
+305.1336365 3366701.75
+306.1187744 1218766.375
+307.1209412 206878.828125
+308.1243896 29554.0859375
+311.1351318 58763.31640625
+312.1166687 44793.796875
+320.1321411 17708.873046875
+321.1535645 341365.03125
+322.156311 45275.80078125
+323.144165 1147773.375
+324.1461182 180139.828125
+329.1445923 48404.015625
+338.14151 72194.0859375
+338.1803284 387215.46875
+338.6429443 26654.87890625
+339.182312 86747.765625
+347.1492004 28450.60546875
+349.1576843 23211.91796875
+359.1437988 63295.4921875
+366.1851807 127158.40625
+367.1839905 17366.232421875
+368.1508484 22401.015625
+369.138092 42590.90234375
+376.1697388 144841.453125
+377.1560059 75816.75
+385.1367188 17126.857421875
+386.1636047 32058.98046875
+394.1803589 792168.5
+394.2398376 19469.96875
+395.1828613 162379.328125
+396.1873169 36367.89453125
+412.185791 34275.578125
+420.6782532 25353.736328125
+460.1973877 23269.744140625
+468.2203674 59142.69140625
+477.2211609 29429.875
+483.2225037 19295.33984375
+483.7195129 21777.87109375
+485.246582 238122.21875
+486.2507019 68114.0
+488.184906 45075.03125
+492.2290039 173102.890625
+492.7292786 77048.0625
+493.2292175 45353.72265625
+495.2265015 62377.96875
+496.223053 22618.990234375
+497.2296143 17521.310546875
+505.210144 46714.48046875
+506.2001343 56647.56640625
+512.2238159 43920.078125
+512.7249756 25629.921875
+521.2305298 48941.640625
+521.7329102 32849.2734375
+523.2211304 538392.8125
+524.2236938 127584.0078125
+525.2263184 35502.1015625
+529.7463379 24364.55078125
+558.7432251 31955.84765625
+571.7489014 81170.140625
+572.2747192 381921.96875
+573.2796631 109580.453125
+576.2598267 72917.3359375
+576.7668457 41426.3984375
+577.2626343 30571.224609375
+580.2609253 92960.3515625
+580.7542725 2940431.0
+580.8389282 39120.75
+581.2553101 1797980.0
+581.3393555 25220.91015625
+581.3672485 30749.416015625
+581.7571411 619453.375
+582.2576294 175985.09375
+589.2660522 90384.4609375
+589.7650146 68792.046875
+598.2711182 73684.9375
+598.772644 20379.01953125
+599.2776489 27465.974609375
+599.774353 55258.16015625
+606.257019 38500.65625
+624.2665405 67158.140625
+673.3226318 475420.84375
+674.3247681 194264.71875
+675.3305054 36892.0390625
+802.3610229 113857.7578125
+803.3643799 61610.11328125
+873.4030762 126734.734375
+874.4085083 51950.5546875
+1001.453369 23442.990234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.149.149.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=149"
+RTINSECONDS=16.00502789
+PEPMASS=598.27001953125
+CHARGE=2+
+56.13697815 13121.8515625
+57.14688492 14831.7939453125
+64.52620697 76328.234375
+64.53066254 61127.609375
+64.58200073 53923.5234375
+64.58617401 33683.74609375
+64.63816833 25385.052734375
+149.5737762 52406.09765625
+167.0914154 47792.34375
+169.0604095 37698.8046875
+175.1178741 311475.6875
+176.1213074 17246.734375
+177.076004 61677.47265625
+178.0600433 343231.6875
+178.346756 107026.828125
+179.0632019 27714.587890625
+183.0745697 15440.9208984375
+186.086319 112112.7890625
+194.1035919 27701.607421875
+195.0864563 4306933.5
+195.1281128 22050.55078125
+196.0892639 438357.9375
+197.0919495 20188.91796875
+199.4163818 13456.701171875
+200.1015015 17263.845703125
+206.0913849 154093.3125
+209.1052246 14901.248046875
+212.1131744 20953.6171875
+218.1020355 63290.53125
+234.0969696 15455.7275390625
+240.0975189 23219.17578125
+244.1160736 22575.0625
+246.0970306 620786.25
+247.0998077 88913.7421875
+249.0965729 23854.38671875
+257.1228027 111712.96875
+260.112793 110604.9140625
+270.0973816 149528.78125
+278.1178589 22174.984375
+278.1489868 24171.6171875
+283.1443787 41196.015625
+287.1235962 167347.296875
+288.1074829 1607977.25
+289.1103516 238942.203125
+290.1137085 17574.65625
+295.1495972 20295.1796875
+303.1438293 33221.42578125
+304.1292419 26789.55078125
+305.1340637 3258516.25
+306.1192627 1195238.125
+307.1216431 185409.171875
+308.122345 20167.7421875
+311.1343994 68247.7265625
+312.1170044 45120.98828125
+321.1542969 366412.09375
+322.1563721 59105.609375
+323.1445312 1157111.0
+323.1885376 35297.19140625
+324.1464539 185487.015625
+325.1504211 16339.3662109375
+329.1437683 43870.65234375
+338.1428833 37631.8828125
+338.1807556 392238.21875
+339.1829224 59329.22265625
+347.1487732 30968.3515625
+349.1583557 19999.841796875
+358.1636047 15313.349609375
+359.1441345 57865.171875
+366.1860962 123568.7890625
+367.1872559 37269.26953125
+369.1400452 31739.8125
+376.171051 116786.8125
+377.1565247 67453.4375
+394.1811218 727330.4375
+395.1824036 154337.75
+412.1875 34167.125
+460.1892395 21580.0390625
+468.22052 73497.0859375
+477.2184448 20604.044921875
+483.7199707 30912.46484375
+485.2474976 223550.0625
+486.2503662 65984.984375
+488.1864624 64478.640625
+492.2299194 173775.84375
+492.7305908 80712.4921875
+493.2306213 36515.2109375
+495.2260132 59427.2890625
+503.2136536 20556.40625
+505.2111206 76210.0625
+506.2072144 57363.7734375
+507.2029419 18795.001953125
+512.225708 50914.96484375
+512.7241211 27949.146484375
+521.2330933 53770.625
+523.2227173 527843.875
+524.2244263 129368.6640625
+558.7476196 19048.0
+559.2574463 19507.169921875
+571.7516479 122569.0625
+572.2752686 347436.375
+572.7536011 27610.662109375
+573.2799072 105764.890625
+576.265625 33978.4140625
+576.763855 52623.0703125
+577.2597656 31145.310546875
+577.767395 25435.451171875
+578.2717285 19892.73828125
+580.2619019 95442.8671875
+580.7553711 2749998.75
+581.2565918 1795457.875
+581.7584229 696058.625
+582.2595825 151170.28125
+589.267395 75053.6015625
+589.7692871 62076.5078125
+598.2728271 73803.2421875
+598.7770386 56109.79296875
+599.7757568 59086.578125
+606.2608032 28797.33203125
+607.2489014 31285.048828125
+624.2680664 70967.453125
+625.2679443 25591.873046875
+673.3243408 486467.25
+674.326355 166516.03125
+675.3239746 31197.142578125
+693.2838745 26067.787109375
+711.302063 25758.58203125
+802.3613892 89423.421875
+803.3701172 31848.177734375
+873.3981323 112910.9609375
+874.4053345 58673.07421875
+1001.460144 31195.201171875
+1058.482666 24403.455078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.150.150.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=150"
+RTINSECONDS=16.11340402
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13426971 12135.45703125
+64.52624512 49968.89453125
+64.53058624 35855.5234375
+64.58200836 35611.83203125
+64.58623505 22568.9375
+64.63814545 11747.76171875
+82.05415344 20627.44140625
+149.5638275 29272.583984375
+149.5774384 20850.974609375
+167.0917053 44161.25
+169.0599365 24674.671875
+175.1178741 260851.796875
+176.1210632 19261.390625
+177.0760193 65500.12890625
+178.0600739 319906.0625
+178.0780487 18005.68359375
+178.3486938 64565.328125
+179.0636597 21950.62109375
+179.0917206 19006.56640625
+182.0909882 21859.26171875
+183.0751495 27629.546875
+186.0859985 94303.09375
+194.1029816 34289.69921875
+195.0864716 3742915.25
+195.1281891 25301.115234375
+196.0892792 442746.375
+197.0914001 25968.857421875
+200.1021576 18995.560546875
+201.0851746 13608.7841796875
+201.3809967 12003.259765625
+206.0910797 149047.125
+209.1002808 13519.7177734375
+212.112381 16218.38671875
+215.0919647 14053.9912109375
+218.1025238 54315.92578125
+233.1278076 15814.0
+234.0980682 19644.69921875
+239.11409 14002.45703125
+240.0952911 17058.009765625
+242.1040039 16789.28125
+243.0853882 17907.09765625
+244.1191711 13732.8408203125
+246.073822 12306.6103515625
+246.0970459 641362.5
+247.0997467 71578.75
+249.0991821 19439.75
+257.1224365 109687.65625
+258.123291 16172.89453125
+260.1128235 124009.390625
+266.3747864 12811.640625
+270.0969543 114156.5546875
+271.1017761 17589.2890625
+276.1331482 19313.955078125
+277.1402588 15950.7392578125
+278.1485596 28102.318359375
+283.1424561 47029.1953125
+287.1235352 139903.671875
+288.1074829 1582672.125
+289.110321 231900.765625
+290.1115723 19913.21875
+294.1171265 20747.77734375
+295.1511841 13227.4931640625
+303.1422424 25189.978515625
+304.1288147 18401.134765625
+305.1340637 2872664.5
+306.1191711 1055165.5
+307.1213074 201245.609375
+308.1231689 24399.201171875
+311.134552 46240.96875
+312.117981 35139.9296875
+318.1428223 13385.052734375
+321.1539917 365972.90625
+322.1563721 51423.04296875
+323.0985413 15218.71875
+323.1445007 993055.125
+324.1467896 150035.421875
+325.1514893 14909.7587890625
+329.1435242 47928.28515625
+331.1481628 21825.029296875
+338.1426697 44926.82421875
+338.1807861 410681.625
+338.6452026 19659.41796875
+339.1831055 69629.8671875
+339.5792847 12311.4599609375
+346.1706848 15052.798828125
+347.1473694 26214.873046875
+349.1611938 18763.0546875
+351.1322937 14154.3232421875
+358.1641541 26603.611328125
+359.1459656 64773.03515625
+366.1861877 126340.8984375
+367.1871948 18510.447265625
+369.138092 22042.044921875
+376.1707153 95893.1640625
+377.1579285 80057.7265625
+378.1571655 13887.4150390625
+386.1644592 31833.30078125
+394.1810913 656929.25
+395.1830139 149383.375
+396.184967 33334.84765625
+412.1905823 27748.376953125
+420.6821289 29989.435546875
+460.1956482 24176.419921875
+468.2203064 53007.328125
+469.2262878 14017.90625
+477.2208557 16405.88671875
+478.1989441 17929.162109375
+479.2035217 13411.6962890625
+483.7219238 21641.244140625
+485.247467 201215.25
+486.249176 64371.4140625
+488.1868591 44984.56640625
+489.1914673 18001.3046875
+492.2295227 135064.84375
+492.7310486 78691.7578125
+493.2289429 23490.416015625
+495.2261658 50043.84765625
+497.2304382 16234.0166015625
+505.211853 49638.59375
+506.2088623 37533.8203125
+512.227417 29193.779296875
+512.7279053 19711.708984375
+521.2305908 20616.275390625
+523.222229 405363.65625
+524.2247925 94535.8125
+525.2345581 29382.1328125
+555.2650146 16663.3984375
+571.7516479 89444.328125
+572.274292 266243.71875
+572.7549438 29701.35546875
+573.2819824 92915.3359375
+576.2606201 43628.97265625
+576.7654419 18400.44921875
+577.2657471 16670.884765625
+580.2637329 60223.54296875
+580.755249 1889911.125
+581.2565308 1350555.125
+581.3651733 16543.404296875
+581.7578735 451150.25
+582.2589111 90618.8515625
+598.2733765 31651.78515625
+598.77771 31851.951171875
+599.2730713 60588.47265625
+599.7772827 88024.9453125
+606.2579346 37183.77734375
+624.2703247 52307.71875
+655.3058472 15414.2822265625
+656.3081055 13081.5791015625
+673.324707 357963.0
+674.3264771 134327.953125
+675.3261108 25488.51171875
+693.2874756 19183.13671875
+711.3007812 15966.408203125
+802.3633423 89114.546875
+803.3666992 24910.55859375
+873.3970947 79862.609375
+874.4136353 28003.99609375
+1001.462036 15975.29296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.151.151.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=151"
+RTINSECONDS=16.22544144
+PEPMASS=598.27001953125
+CHARGE=2+
+51.30921173 15837.2109375
+53.15004349 16670.673828125
+58.13406372 18349.177734375
+61.52291489 18535.427734375
+64.52631378 76454.6796875
+64.53048706 47521.46484375
+64.58197784 48335.6953125
+64.58614349 38691.078125
+64.63806915 16822.88671875
+92.67441559 17785.123046875
+119.6202621 18203.58203125
+149.5684509 69241.171875
+158.2804718 17661.1171875
+167.0915375 49958.37890625
+169.0590973 41993.71875
+175.1177521 309952.625
+175.1335907 24472.662109375
+176.1221161 20333.2578125
+177.0760345 68710.203125
+178.0599213 334711.0625
+178.3456116 110871.0546875
+179.0637665 25880.845703125
+179.0914917 23398.171875
+182.090744 25669.021484375
+186.0860291 98617.9609375
+194.1031342 40885.0078125
+195.0863647 4617417.0
+195.1283112 28198.083984375
+196.0890808 409956.4375
+197.0919342 31743.255859375
+200.1020355 20671.5390625
+201.08638 19956.2265625
+206.0911865 150419.921875
+207.0927429 21003.55859375
+218.1030121 61473.44921875
+240.0960236 22950.263671875
+243.0861969 27270.037109375
+244.1173096 18693.025390625
+246.0970001 643228.5
+247.0993805 55417.01171875
+249.0954742 17927.763671875
+257.122467 106336.921875
+258.1278381 22798.8203125
+260.1125488 117130.890625
+270.0968323 136962.046875
+277.1404419 25647.8203125
+278.149353 33383.0703125
+283.1427612 42895.484375
+287.1234131 184125.921875
+288.1073608 1598606.25
+289.1100769 245012.84375
+290.1118774 17660.62890625
+294.1199646 30984.298828125
+295.1497498 26792.40625
+303.1408691 24523.056640625
+305.1338501 3451057.25
+306.1188049 1321804.25
+307.1217346 198182.5625
+308.125824 23303.599609375
+311.134491 57241.32421875
+312.1157227 37748.60546875
+321.1541748 371246.8125
+322.1553345 47980.55859375
+323.0982056 24275.017578125
+323.1442261 1214090.0
+324.1464539 194996.703125
+329.1438293 49978.390625
+337.4596252 19674.849609375
+338.1419678 65159.3828125
+338.180542 432212.6875
+339.1835632 81953.4921875
+341.1445007 26969.12890625
+347.1484985 36098.8671875
+349.1596375 28169.775390625
+351.1257019 18310.0625
+359.1453857 51346.46875
+366.1855164 137525.546875
+367.1898499 26482.998046875
+369.1369934 23111.552734375
+376.1698914 118891.125
+377.1570129 88343.0
+386.1634827 47579.77734375
+394.1807861 842131.1875
+394.2404785 34341.45703125
+395.1820679 168607.546875
+412.1842651 30884.802734375
+420.6870422 27777.9140625
+460.1882324 23414.02734375
+468.2192383 43872.6484375
+469.2155151 26683.46875
+477.2217407 32074.3125
+485.2467651 220270.4375
+486.2504883 65783.953125
+488.1844788 43173.203125
+489.1864929 27722.64453125
+492.2289429 164846.09375
+492.7327271 87019.4296875
+495.2277527 60912.80859375
+505.2107239 51438.55078125
+506.1997681 52336.4375
+512.2250977 49367.453125
+520.7373047 26360.6796875
+521.2316895 35487.73828125
+521.7297363 25991.39453125
+523.2225342 483448.15625
+524.2247925 132657.640625
+571.7520752 63909.2734375
+572.2766113 320770.90625
+573.2781372 97081.0390625
+574.272522 26609.265625
+576.2597046 49131.86328125
+580.2619629 84405.390625
+580.7550049 2577693.5
+581.2560425 1760661.125
+581.7577515 625177.75
+582.2598267 117708.875
+589.2664795 123604.6484375
+589.7657471 112662.796875
+598.2732544 75562.84375
+598.7665405 36752.16015625
+599.2734375 30888.638671875
+599.7769775 48321.2109375
+606.2581787 31949.765625
+624.2736816 51467.37109375
+673.3247681 422510.8125
+674.3289795 157370.65625
+675.3325806 34294.50390625
+802.3632812 113386.6875
+803.3731079 55355.67578125
+873.3996582 134253.59375
+874.4036255 46901.4375
+1001.459045 36344.0390625
+1003.453552 21228.861328125
+1058.48584 55822.0390625
+1229.956543 26475.392578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.152.152.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=152"
+RTINSECONDS=16.33139099
+PEPMASS=598.27001953125
+CHARGE=2+
+63.13764191 15760.1923828125
+64.52629089 64464.12890625
+64.53047943 42710.66796875
+64.58196259 36989.58203125
+64.58612061 32699.98828125
+73.05402374 13973.8203125
+74.81182098 18520.1171875
+74.8159256 18764.3984375
+76.2811203 14820.6298828125
+77.63698578 12914.7294921875
+82.05383301 20253.91796875
+121.4038162 13151.634765625
+149.5760345 42166.98046875
+167.0913239 21559.77734375
+169.0601654 27498.00390625
+175.1177979 305733.78125
+176.1220398 28666.603515625
+177.075943 78756.515625
+178.0599518 347516.375
+178.0748444 10518.5908203125
+178.3490295 80814.8046875
+179.0619507 17470.33203125
+183.0771179 18563.837890625
+186.0859375 100990.2890625
+194.1023865 40632.48046875
+195.0863647 4297107.5
+195.1281281 31264.1484375
+196.0891571 434369.71875
+197.0905762 35759.1875
+200.1016541 27401.091796875
+201.086441 21229.82421875
+206.0911713 158195.625
+209.10289 18371.392578125
+212.1134186 19260.06640625
+218.1025391 39628.1640625
+222.0844116 20642.24609375
+234.0956116 17122.533203125
+239.1127625 16333.2724609375
+240.0957794 27266.169921875
+243.0851898 22847.091796875
+244.119278 22395.744140625
+246.096817 638955.5
+246.1256561 27920.4140625
+247.0995941 69376.7109375
+257.122345 98269.2734375
+260.1127319 121339.875
+270.0966797 136220.015625
+271.0993347 21232.41796875
+278.1508484 27489.41015625
+283.1437073 48800.40234375
+287.1234741 173577.953125
+288.1073303 1718440.375
+289.1100769 274111.15625
+290.111084 15840.634765625
+294.1159668 23695.38671875
+295.1490173 18843.37890625
+303.1455994 21851.091796875
+304.1255493 22158.369140625
+305.1338501 3163910.25
+306.1190796 1159547.25
+307.1214294 198420.859375
+308.1220398 20128.337890625
+308.8903198 16006.4892578125
+311.1354065 39833.109375
+312.1163635 40710.9609375
+321.1539612 345044.25
+322.1551208 33944.1328125
+323.1443176 1106602.875
+324.1465149 183431.40625
+325.1506958 25314.94921875
+329.145813 52452.52734375
+338.1428528 56662.61328125
+338.180481 407844.28125
+338.6425171 27259.5390625
+339.1423645 16959.30078125
+339.1835632 71764.1875
+347.1478271 16836.080078125
+349.15802 27255.125
+351.1291809 17848.75
+359.1451111 61535.24609375
+366.1855164 122937.3125
+367.1919556 18543.9296875
+369.1378479 30962.09375
+376.1699219 105696.1171875
+377.157135 66555.15625
+386.1637573 20544.619140625
+394.1807251 747107.25
+394.2397156 23186.845703125
+395.1816101 138778.8125
+398.1692505 15687.787109375
+412.1894531 32695.484375
+460.1921082 18361.876953125
+468.2208252 49862.9609375
+469.2202454 23334.05078125
+477.2185059 16324.8720703125
+483.7131348 17520.302734375
+485.2463989 194409.703125
+486.2507629 60530.66015625
+488.1835632 33027.0078125
+492.2287292 158719.984375
+492.727356 67732.796875
+493.2327881 19726.51953125
+495.2263794 60467.92578125
+505.2115479 67534.6015625
+506.2002563 57912.8671875
+507.1946716 16531.0546875
+512.2266235 39347.77734375
+512.727478 21645.494140625
+520.7393188 27187.8515625
+521.2385254 28535.162109375
+523.2218628 413393.90625
+524.2259521 140759.859375
+567.2600098 20100.75
+568.2532959 16746.208984375
+571.7509766 79611.859375
+572.2747192 304046.84375
+573.2799072 98434.4609375
+576.2671509 31892.73828125
+576.7631226 44309.26171875
+577.2589722 23472.41015625
+580.263855 93865.8671875
+580.7548828 2415137.25
+581.2559814 1593861.0
+581.3710938 28019.283203125
+581.7579956 580222.9375
+581.8631592 19061.236328125
+582.2593384 142666.96875
+589.2652588 78059.1328125
+598.2718506 58485.3515625
+598.77771 28719.765625
+599.2698364 22299.845703125
+599.7775269 95568.359375
+606.2578735 50854.796875
+624.2694702 41829.8046875
+673.3239136 502586.25
+674.3266602 189228.53125
+675.326355 31149.833984375
+693.286499 19698.2421875
+711.3032837 21191.55078125
+795.3400879 17620.15234375
+802.3635864 109322.5390625
+803.3619385 38355.6640625
+873.3981323 118117.71875
+874.4074707 54920.9921875
+1001.453979 34024.64453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.153.153.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=153"
+RTINSECONDS=16.43980294
+PEPMASS=598.27001953125
+CHARGE=2+
+54.61756516 13559.99609375
+58.13402176 16895.5625
+58.13702011 12913.7978515625
+59.60324478 11454.3759765625
+64.52623749 55625.89453125
+64.53045654 32815.03515625
+64.58198547 34740.578125
+64.58617401 28278.5703125
+64.63825226 18089.337890625
+64.64133453 12776.3818359375
+71.61829376 10960.2373046875
+82.05421448 14769.3544921875
+93.52246857 11591.6552734375
+149.5687256 48312.03125
+167.0918121 41421.28515625
+169.0601044 36973.2890625
+175.1178284 285437.3125
+176.1199799 22758.53125
+177.0758362 67062.8984375
+178.0600281 354014.40625
+178.3512268 59198.36328125
+179.0638885 28507.123046875
+179.0915833 27088.357421875
+180.9050598 12146.546875
+182.0925598 27317.0078125
+183.0739899 14795.0146484375
+186.0859985 118010.6484375
+194.1021576 43306.8046875
+195.08638 3925969.5
+195.1278839 20229.015625
+196.0892334 428943.0
+197.0913696 39750.84375
+200.1023254 22045.935546875
+201.0856628 18396.25390625
+206.0911102 140896.640625
+207.0954742 15911.978515625
+209.1013641 16601.416015625
+212.1121979 14230.0537109375
+218.1021118 63894.5546875
+222.0870361 20322.02734375
+232.1217957 12686.8134765625
+234.0989838 15453.736328125
+240.0953827 26066.6875
+243.0868683 12637.087890625
+244.1160126 19247.3984375
+246.0969086 612365.0
+247.0995483 85068.265625
+249.0959015 20426.087890625
+257.1223145 88110.203125
+258.1257629 13236.400390625
+260.1126099 110361.953125
+261.1186829 20082.83203125
+267.108429 11396.662109375
+270.0970154 114298.703125
+277.1405029 13078.8369140625
+278.1488647 19112.701171875
+283.1430664 51302.83203125
+287.1236267 162157.46875
+288.1073303 1648234.875
+289.110321 243023.0625
+290.112793 22511.830078125
+294.1176453 27482.244140625
+295.1481018 32424.76953125
+303.1428528 37041.40625
+304.1273193 14745.517578125
+305.1338806 3228966.0
+305.215332 19246.705078125
+306.1189575 1116171.625
+307.1209717 168456.109375
+308.1242065 24985.30859375
+311.1357422 40249.78125
+312.1157837 23791.59375
+318.1424866 21305.171875
+320.171936 16413.796875
+321.1538391 332900.71875
+322.1579285 65821.78125
+323.0982971 20126.466796875
+323.1444092 1119392.25
+324.1466064 184437.125
+325.151825 20224.416015625
+329.1436462 51235.6640625
+331.1454773 15478.046875
+338.1431885 36080.08984375
+338.180603 403975.34375
+338.6444092 16600.1015625
+339.1830444 67521.890625
+346.1684265 22799.36328125
+347.1489563 25306.90625
+349.157196 15895.802734375
+351.1282349 18182.15234375
+358.1654053 17870.70703125
+359.1436157 46508.6171875
+366.1863708 112769.1875
+367.1890259 20322.720703125
+369.1392822 23528.640625
+376.1698914 137762.0
+377.1556091 85575.453125
+377.6585999 14441.01171875
+386.1660767 36286.08203125
+394.1809082 729568.125
+394.2400513 26326.560546875
+395.182312 145353.765625
+396.1899109 15400.05859375
+412.1878357 37499.0546875
+420.6822205 33021.453125
+434.1741943 14475.4619140625
+460.1933289 21813.900390625
+464.1783142 19577.705078125
+468.2215881 63433.76953125
+469.2237549 23469.626953125
+477.219696 18351.560546875
+478.2026367 13750.4619140625
+483.2256775 14648.173828125
+483.7201538 23427.298828125
+484.2172546 16708.90625
+485.247406 204908.515625
+486.2492065 50501.87890625
+488.1877747 58344.375
+489.1858215 14091.8544921875
+492.229187 129756.1015625
+492.730896 70175.96875
+493.2286987 34174.796875
+495.2273865 71232.875
+503.7153015 25979.57421875
+505.2128601 45749.43359375
+506.2024841 59316.8515625
+512.2259521 27673.751953125
+512.7246094 28587.060546875
+513.2316895 13229.3828125
+521.2337036 33060.91015625
+521.7324829 25497.09375
+523.2219849 451937.96875
+524.2248535 133740.65625
+525.2261353 24147.576171875
+529.7476196 19644.318359375
+555.2593384 17702.30859375
+558.7416992 24473.72265625
+571.7479858 62453.5078125
+572.2738037 313425.4375
+573.2800293 83392.734375
+575.2650146 16280.95703125
+576.2613525 32990.31640625
+576.7675171 27732.48046875
+580.2623291 75213.09375
+580.7548828 2018716.75
+581.2561035 1373423.5
+581.3656006 19704.705078125
+581.7578735 525855.8125
+581.8634644 18180.38671875
+582.2595825 75358.109375
+589.2678223 27936.447265625
+598.2699585 60448.54296875
+598.7733154 32734.595703125
+599.277771 56914.8515625
+599.7773438 76592.4140625
+606.2564087 35054.62890625
+624.2684326 37522.265625
+673.3241577 382397.40625
+674.3255615 136131.578125
+675.3271484 29859.408203125
+693.2975464 29085.41015625
+711.300415 19404.1875
+802.3638916 73179.765625
+803.3605347 34616.41015625
+873.4033813 77805.3046875
+874.3956299 48216.2109375
+921.5935669 13798.1884765625
+1001.454468 15449.103515625
+1237.700439 19699.443359375
+1266.31311 14614.583984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.154.154.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=154"
+RTINSECONDS=16.55066307
+PEPMASS=598.27001953125
+CHARGE=2+
+60.35709763 16615.328125
+64.52626801 76604.4140625
+64.53052521 41019.7421875
+64.58204651 52983.21484375
+64.58623505 32982.390625
+64.63832855 25069.12109375
+64.64167786 24191.75
+77.85630035 15873.82421875
+101.3000259 16799.775390625
+102.5434494 20207.158203125
+130.6593323 17146.029296875
+149.5660095 60236.0859375
+149.5778961 22244.84375
+167.0921478 23415.798828125
+169.0597839 40188.26171875
+175.1178741 322300.875
+176.1221466 21111.15234375
+177.0763397 65140.3203125
+178.0435333 28631.111328125
+178.0600739 324344.0
+178.3452454 115431.203125
+179.0626221 36781.76953125
+179.0912018 25157.416015625
+183.0750275 17504.0390625
+186.0861511 120920.5859375
+194.102005 28205.349609375
+195.0864258 4512034.5
+196.0891876 457795.5625
+197.0906067 21661.162109375
+200.1021271 37216.921875
+206.0911255 167552.234375
+218.102005 61872.7890625
+223.5116577 21024.900390625
+234.1002045 19785.44921875
+240.0958099 29097.33984375
+243.0849762 20621.203125
+246.0969543 664162.125
+247.1002045 79498.1953125
+249.0947266 24860.833984375
+257.1226807 116741.5546875
+260.1125488 107754.546875
+261.118103 31149.44921875
+270.0966492 126584.34375
+278.1503601 22263.787109375
+278.865448 21437.619140625
+283.144104 60559.34765625
+287.1233215 149888.59375
+288.1073914 1644589.875
+289.1101685 260798.078125
+290.1125793 20603.12109375
+303.144104 40499.1328125
+305.1339417 3351327.5
+306.05896 23603.197265625
+306.1192322 1191867.75
+307.1212769 190856.25
+311.1350098 65193.796875
+312.1158447 39132.0
+321.1541443 335187.5
+322.1571045 58751.94921875
+323.0995789 18447.47265625
+323.1444397 1193772.0
+323.1890259 30496.255859375
+324.1468201 225850.53125
+325.1468811 26178.033203125
+329.1427002 50205.24609375
+338.1425781 53689.96484375
+338.1806946 463000.625
+339.1820374 66759.4609375
+347.149292 27163.865234375
+349.1578064 31945.93359375
+359.1446228 70641.9921875
+366.1864014 137124.015625
+367.1910706 30121.21484375
+368.1516418 19842.7734375
+369.1388855 33814.87890625
+376.1702881 127236.7890625
+377.1578674 76261.25
+394.1808777 790267.0625
+395.1821289 154311.140625
+412.1898804 29700.33203125
+460.1910095 29210.0546875
+465.9822693 20158.19921875
+468.2220154 60509.82421875
+483.7201233 27376.33984375
+485.2475281 207397.265625
+486.2497864 73388.6484375
+488.1847534 50019.19921875
+492.230072 150600.875
+492.7308655 87766.8046875
+493.235199 23794.005859375
+495.2299805 49417.23046875
+496.2321777 19448.9296875
+503.2169189 26606.40625
+503.718811 26439.869140625
+505.2111816 55564.7109375
+506.1978149 41141.296875
+512.2268066 79036.3046875
+512.7264404 35083.51953125
+521.2341309 35589.8828125
+523.2216797 533106.0625
+524.2234497 140555.171875
+529.7441406 27545.09765625
+571.7513428 98379.3984375
+572.2750854 380712.03125
+572.7526245 24077.533203125
+573.2770386 94580.0859375
+576.2573242 45579.08984375
+576.7624512 27077.59765625
+577.2678223 24004.88671875
+577.769043 23353.904296875
+580.2628784 80524.9921875
+580.755127 2712674.75
+581.2562866 1844965.5
+581.6502075 23607.919921875
+581.7580566 821902.6875
+582.2588501 154513.109375
+589.2677002 122552.1640625
+589.7675781 88766.4375
+590.2669067 26856.033203125
+598.2730103 74394.0
+598.7746582 46342.3984375
+599.2780762 33437.015625
+599.7782593 73019.171875
+606.2562866 34348.13671875
+624.2647095 47175.73828125
+625.2753296 22643.423828125
+673.324585 528432.8125
+674.3274536 159934.625
+675.3341064 40599.640625
+693.289856 33487.4140625
+711.2910767 33084.609375
+802.3644409 98989.8125
+803.3647461 37332.26953125
+873.399353 125277.0078125
+874.4008179 54753.5859375
+1001.465759 27507.337890625
+1002.468933 30515.482421875
+1058.457764 22482.244140625
+1099.809692 26201.498046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.155.155.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=155"
+RTINSECONDS=16.65655315
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52633667 62583.17578125
+64.53071594 46456.2578125
+64.58224487 33111.88671875
+64.58617401 32510.830078125
+64.63818359 18444.68359375
+64.64149475 17870.388671875
+74.81163788 18805.87890625
+76.66717529 14756.1640625
+149.5746155 44117.3515625
+167.0914459 54359.40625
+169.0606384 19978.734375
+175.1003113 15333.1455078125
+175.1178284 309957.875
+176.121933 23838.970703125
+177.0760498 87095.5234375
+178.0599823 357488.75
+178.3392487 72117.7578125
+179.0632629 25832.83203125
+179.0918427 33623.4453125
+183.0748901 22211.95703125
+186.0862122 109622.265625
+187.0899048 13014.46484375
+190.0596313 14836.482421875
+194.1042328 28542.93359375
+195.0864105 4153992.25
+195.1279907 32271.685546875
+196.0892792 407518.71875
+197.0919647 27813.736328125
+199.1178131 13480.80078125
+200.1023102 37857.51953125
+201.0856323 16021.0576171875
+206.091095 171960.78125
+207.0935516 19363.689453125
+212.1138916 15416.0703125
+218.102005 52966.578125
+232.1179047 14980.3525390625
+234.0939331 13907.8544921875
+240.0964508 25208.662109375
+242.9893799 14249.826171875
+243.0860443 25482.64453125
+244.1177521 19115.765625
+246.0969086 664974.75
+247.1000519 74274.6875
+249.0961151 24932.814453125
+255.3141022 18974.62109375
+257.1223755 100295.1796875
+257.4266357 14675.3798828125
+258.982605 14009.630859375
+260.1124573 108943.953125
+270.0965881 127572.125
+271.1016235 18058.529296875
+276.1348877 18296.82421875
+283.1427307 45996.109375
+287.1231079 153986.640625
+288.1073914 1587445.625
+289.1101074 223379.40625
+290.1124573 24404.841796875
+295.1505127 30304.171875
+303.1428223 35574.0390625
+304.1289978 17518.791015625
+305.1339111 3156145.0
+306.118988 1125574.25
+307.1210632 201415.0625
+311.1343689 40868.96875
+312.1178894 38492.109375
+321.1538391 344896.75
+322.1560669 48822.90234375
+323.1443787 1054541.5
+324.1467285 173859.453125
+325.150177 21979.3671875
+329.1428833 43446.78125
+338.1422119 58393.5546875
+338.180603 407519.8125
+339.183075 65604.0546875
+347.147644 19203.125
+359.1434631 85429.6796875
+360.1421509 16787.2421875
+366.1864319 108623.703125
+367.1882019 18670.75
+369.1371765 29448.130859375
+376.1694946 100810.734375
+377.156189 75582.4921875
+386.1649475 21587.45703125
+394.1807861 725739.6875
+394.2401428 23211.634765625
+394.644928 14912.6865234375
+395.1829224 153407.109375
+396.1925659 16892.5234375
+397.6811218 24249.486328125
+407.1589661 16090.404296875
+412.1902161 29297.740234375
+420.6822205 20934.69921875
+421.1833496 16863.58984375
+460.1909485 19354.521484375
+468.2220459 48751.8125
+477.2169495 19605.6015625
+478.1994629 19106.611328125
+483.7185974 25279.810546875
+485.2477112 244515.640625
+486.2507019 53580.40234375
+488.1847534 52219.125
+492.2289429 169027.375
+492.7315979 90489.421875
+493.2304382 33700.38671875
+495.224762 46501.57421875
+503.7166748 26767.82421875
+505.2103271 55111.734375
+506.2037354 43556.1171875
+512.2283936 33088.84375
+518.2223511 15530.1865234375
+520.7407227 19534.787109375
+521.234314 42445.53515625
+521.7382812 22314.90625
+523.2219849 411771.4375
+524.2241821 115527.0
+525.2307739 22949.41796875
+555.2671509 16922.0625
+571.7501221 80289.984375
+572.2731934 309512.90625
+572.7473145 26333.8671875
+573.2814331 72364.5234375
+574.2723389 26233.025390625
+576.2596436 47884.1484375
+576.7651978 18881.2734375
+577.2671509 21874.525390625
+580.2623901 64092.1015625
+580.7548828 2205389.0
+581.2562256 1446655.875
+581.7579956 530220.625
+582.2593384 122568.875
+589.2652588 59947.19921875
+598.2744141 58977.703125
+598.7750244 19629.90625
+599.2753296 56514.03515625
+599.7750244 88053.1171875
+606.2571411 29974.130859375
+624.2659912 54500.21875
+673.3234253 395138.84375
+674.3266602 162869.25
+675.3292236 24134.234375
+693.2896118 31559.1953125
+802.3671875 103802.78125
+803.3693237 33778.7578125
+873.4005127 116357.9296875
+874.4022217 53235.81640625
+875.4153442 17653.435546875
+1001.448486 24240.69921875
+1002.447998 15468.4931640625
+1276.04126 14627.2373046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.156.156.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=156"
+RTINSECONDS=16.76556776
+PEPMASS=598.27001953125
+CHARGE=2+
+54.11476135 11922.7490234375
+58.13420868 14881.544921875
+64.52617645 56363.31640625
+64.53047943 36004.30078125
+64.5820694 41034.03515625
+64.58624268 25764.552734375
+64.63825226 21737.171875
+64.64144897 15415.951171875
+76.28590393 12221.595703125
+105.3902206 13238.21875
+116.2042847 13308.9990234375
+149.5756531 38915.29296875
+167.0917664 35622.24609375
+169.0596924 38981.2734375
+175.1177063 290008.84375
+176.1203308 20268.26953125
+177.0755615 73852.609375
+178.0599976 340391.46875
+178.078125 21073.66015625
+178.3469849 81695.484375
+179.0632172 23497.416015625
+179.0920868 30944.244140625
+183.0754395 20311.59765625
+186.0859222 121440.1640625
+187.090271 14996.908203125
+194.1020508 45488.7578125
+195.0862732 4071633.25
+195.1281586 20895.599609375
+196.0890808 376020.71875
+197.0910187 29452.6796875
+200.1008911 37280.81640625
+201.0869904 18408.478515625
+206.0910034 150726.546875
+207.0924072 18291.109375
+212.1131897 24766.501953125
+218.1022797 62884.3125
+222.0850067 20898.314453125
+234.0973663 17114.658203125
+240.0965729 31391.6953125
+240.4326935 12984.751953125
+243.086792 25217.2890625
+244.1199951 13434.984375
+246.096756 641024.875
+247.0995331 76645.8046875
+257.1224976 98581.9375
+260.1123047 108867.9453125
+261.1155396 15455.4609375
+270.0966187 131956.5625
+271.0944519 12308.912109375
+278.1194458 23463.337890625
+283.1426392 41093.5234375
+287.12323 137134.40625
+288.1071472 1635411.75
+289.1100769 232209.515625
+290.113739 21334.97265625
+294.1188965 22588.9921875
+295.1498718 19557.05859375
+303.1430359 21543.345703125
+305.1336365 3230178.5
+306.1186218 1200967.25
+307.1207886 177300.875
+308.1260986 13706.388671875
+311.1346741 39018.08984375
+312.1171875 20474.357421875
+321.1536255 321507.78125
+322.1572571 53354.734375
+323.0984497 22523.275390625
+323.144104 1098906.25
+324.1461792 191544.921875
+329.1431274 57137.05859375
+338.1421814 42514.33984375
+338.1802063 380722.75
+338.6444397 21056.66796875
+339.1841125 63736.04296875
+347.1469727 21456.2421875
+347.6550293 14987.4580078125
+358.1631165 16218.0966796875
+359.143158 55829.125
+360.1473389 24321.30859375
+366.1850891 122474.875
+367.18927 15502.1630859375
+369.1400452 28333.947265625
+376.1699829 117076.5390625
+377.1550293 103260.3046875
+386.1643982 33570.67578125
+394.1804199 769572.625
+395.1820068 127453.46875
+396.1816711 14688.638671875
+412.1903992 27364.09765625
+421.1779785 18548.837890625
+460.186676 23950.333984375
+464.1696167 16607.9140625
+468.2187805 47734.52734375
+478.2025757 18943.703125
+485.2469177 203590.84375
+486.2488403 60866.51171875
+488.1856079 47456.2265625
+489.1838074 17708.259765625
+492.2286072 127976.515625
+492.7296753 111265.421875
+493.2309875 34982.609375
+495.2261963 73010.2734375
+503.7133789 19128.302734375
+505.2077942 47362.94921875
+506.2018127 69172.8671875
+512.2228394 30471.431640625
+512.7216187 15043.2080078125
+521.2333374 30462.787109375
+521.7345581 30947.66015625
+523.2214355 431148.90625
+524.2232666 123200.0859375
+525.225708 25751.111328125
+554.2783813 15836.2802734375
+555.25354 18309.830078125
+558.744812 26516.609375
+571.7485962 106801.6015625
+572.2738647 302132.0625
+572.7601929 18148.099609375
+573.2775879 111312.40625
+574.2750244 21660.75
+576.2615967 54836.51953125
+576.769043 20563.0859375
+577.2635498 25154.6875
+580.2584839 99757.5703125
+580.7540894 2125906.5
+580.840332 30024.369140625
+581.2555542 1444689.875
+581.3358154 21513.916015625
+581.3678589 19117.732421875
+581.6505127 21914.22265625
+581.756958 592275.6875
+582.2589722 84458.796875
+589.2702026 27990.751953125
+589.7627563 21080.470703125
+598.2747803 40868.28515625
+598.7738037 31384.681640625
+599.276123 41805.0390625
+599.7769165 68280.2890625
+624.2672729 55327.234375
+673.3226318 368543.3125
+674.3256226 138372.21875
+675.329895 30046.76953125
+693.2889404 25730.271484375
+711.2945557 15675.7109375
+802.3635254 84248.6171875
+803.3658447 27807.71484375
+873.3986816 102451.1640625
+874.404541 26611.294921875
+1058.490356 18984.6953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.157.157.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=157"
+RTINSECONDS=16.87526096
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52630615 70714.7734375
+64.53048706 47135.34765625
+64.58203125 49442.74609375
+64.58626556 35210.2578125
+64.638237 16355.0322265625
+74.81179047 18497.0546875
+76.28084564 14972.82421875
+79.5176239 15644.201171875
+82.0546875 16832.748046875
+149.5622253 22514.7890625
+149.5761108 41000.12890625
+158.6043854 18807.431640625
+164.6055298 15404.5390625
+167.0919342 46617.61328125
+169.0592194 26945.7265625
+175.1176147 297633.46875
+176.1219177 20853.14453125
+177.0760193 97606.375
+178.0597839 323375.21875
+178.0760651 31134.38671875
+178.3349152 49463.83203125
+178.3540955 53204.5390625
+179.0628204 24010.712890625
+179.0920563 20655.90234375
+183.0753784 32622.693359375
+186.0859222 117046.4140625
+190.0583496 20707.765625
+194.1021118 42628.6640625
+195.0862579 4346252.0
+195.1285248 25157.330078125
+196.0891571 467801.28125
+197.0914001 34698.81640625
+200.1016541 19130.70703125
+201.0846558 19651.3515625
+206.0908203 164225.515625
+207.0938263 22948.728515625
+209.0778046 23298.169921875
+209.1012268 23776.134765625
+215.0919647 21045.564453125
+218.1025238 44857.87890625
+232.1166382 20597.052734375
+233.1264801 19154.640625
+243.0860443 20293.21484375
+246.0967255 701301.5
+247.099823 73975.09375
+249.1002045 15997.1298828125
+257.1225586 128067.453125
+260.1124268 105696.171875
+270.0964966 145432.65625
+278.1487732 24510.177734375
+283.1434937 52939.6796875
+287.1228943 158076.515625
+288.1070862 1701145.5
+289.1099854 221470.109375
+290.1117249 18600.26953125
+295.1484375 18523.123046875
+303.1430359 36466.87109375
+305.1335754 3175890.0
+306.1186218 1225209.125
+307.1206055 194706.53125
+311.1348572 62992.19140625
+312.1164856 25571.109375
+321.153595 318779.75
+322.1569214 56923.6796875
+323.0986023 22582.076171875
+323.1439819 1182946.0
+324.1465149 164333.0625
+329.1438599 60474.78515625
+338.1424866 51600.9765625
+338.1800842 451411.6875
+338.6453552 17892.396484375
+339.1821289 71242.3671875
+347.1496582 21383.357421875
+349.1578979 19173.916015625
+359.1439514 65158.96484375
+366.18573 142271.859375
+367.1830444 17207.869140625
+369.1419373 17310.310546875
+376.1698303 100087.640625
+377.1556091 73868.2890625
+386.165802 36732.28125
+394.1802979 769285.3125
+394.2408142 28445.75
+395.1828003 170935.171875
+412.1889954 33995.85546875
+420.6836853 23256.63671875
+421.1802368 18846.72265625
+450.2107239 21548.20703125
+460.188324 25444.548828125
+468.2219543 58794.74609375
+478.2036438 22599.203125
+484.2121887 20112.900390625
+485.2458496 201981.78125
+486.2496643 49942.07421875
+488.184845 36285.65625
+492.228302 169371.828125
+492.730072 119170.6328125
+493.2314148 28924.7890625
+495.2265015 57271.1640625
+503.2210693 22522.63671875
+503.7157288 23583.92578125
+505.2107239 40194.08203125
+506.2102356 32863.30859375
+512.2323608 36752.19140625
+512.7244263 32183.6484375
+521.2317505 40380.77734375
+521.734375 24616.28515625
+523.2208862 420974.28125
+524.222229 119702.9609375
+530.2451782 19296.263671875
+533.5900269 18131.845703125
+555.2453613 19485.638671875
+571.7503052 80165.125
+572.2738647 325257.71875
+573.2802734 90205.6328125
+576.2565918 43397.12890625
+576.7645874 18629.98046875
+577.2628174 23636.947265625
+577.7593384 20410.638671875
+580.2623291 64107.5703125
+580.7539673 2455821.5
+580.8407593 34550.5390625
+581.2553101 1580746.25
+581.3369751 23352.8984375
+581.3669434 24076.041015625
+581.7568359 601095.5
+582.257019 142031.484375
+589.2659912 107474.21875
+589.7672729 67005.7578125
+598.2687988 48647.328125
+598.7669678 18458.79296875
+599.2728271 21096.052734375
+599.7750244 43865.39453125
+606.2596436 26367.783203125
+624.2644043 54079.58203125
+625.2649536 31756.240234375
+655.3069458 20166.8671875
+673.1972656 31603.21875
+673.3223267 415498.90625
+674.324707 150724.4375
+675.3175659 23610.640625
+789.1213379 18553.404296875
+802.3626709 110053.0625
+803.3656006 32247.451171875
+873.3983154 104733.4296875
+874.3961792 59401.171875
+888.7147217 16778.447265625
+1001.450378 27928.982421875
+1020.175903 17720.603515625
+1265.281982 17709.763671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.158.158.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=158"
+RTINSECONDS=16.98251565
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13431168 15149.353515625
+64.52622223 71646.8203125
+64.53065491 48432.890625
+64.58197021 43380.51953125
+64.58618164 36199.2421875
+64.63829041 20931.95703125
+64.64155579 15959.767578125
+74.81200409 18014.796875
+87.87683105 18024.119140625
+130.3409729 12473.759765625
+143.3378296 13900.2109375
+149.5700684 61730.40234375
+167.0921783 38935.484375
+169.0596619 25369.57421875
+175.1020203 27088.447265625
+175.117981 293192.59375
+176.1199646 23846.0859375
+177.0762939 58801.7578125
+178.0600128 361338.4375
+178.3426514 92812.0234375
+179.0627594 24079.947265625
+179.0913086 21181.154296875
+182.0916595 22886.78515625
+183.075592 21943.37890625
+186.0862732 137119.859375
+194.1025238 31479.671875
+195.0864258 4304047.5
+196.0892181 440698.25
+197.0917511 16293.7470703125
+200.1016388 46899.5078125
+201.0854187 23311.583984375
+204.5716705 14952.6904296875
+206.0910645 170861.75
+209.1029663 15982.7265625
+215.0915527 18631.486328125
+218.1025085 57322.7265625
+222.0868225 17300.158203125
+240.0959778 20715.419921875
+243.0864563 24100.16796875
+246.0969849 676013.5625
+247.0992584 83033.7578125
+257.1228027 113718.34375
+260.112793 126581.765625
+261.118103 20451.330078125
+262.1253052 15682.4013671875
+270.0969543 127078.984375
+278.1486816 31910.203125
+283.1428223 37531.1484375
+287.1234741 145127.8125
+288.1074524 1647300.125
+289.1100159 241446.375
+290.1123047 24552.8984375
+294.1175842 16468.1328125
+295.1493835 30834.69140625
+303.1430969 35055.10546875
+305.1340332 3238245.25
+306.1192627 1139002.5
+307.1213684 189886.25
+311.1351013 48605.16796875
+311.9173889 14290.6337890625
+312.1148071 28608.81640625
+318.1403809 22012.6796875
+321.1542053 354045.375
+322.1563721 70456.8046875
+323.098877 13644.3623046875
+323.1445618 1189997.0
+324.146637 187099.21875
+325.151947 22337.87890625
+329.1452942 41600.4296875
+338.143219 41569.40625
+338.1806946 421226.0625
+338.645752 23230.154296875
+339.1828613 84499.0625
+347.1500854 24210.720703125
+349.1596069 16999.001953125
+351.1312561 17381.333984375
+359.1439209 68245.921875
+366.1864624 130467.4296875
+369.1429443 30625.265625
+376.1705017 112966.3125
+377.1551514 85361.0859375
+386.1646423 34490.74609375
+394.1810303 757752.375
+394.2405396 31496.77734375
+395.1832275 144793.0625
+398.1721802 16610.92578125
+412.1897583 30923.474609375
+420.6820068 26233.00390625
+421.1838074 22264.125
+434.1707458 18168.9296875
+460.1901855 21309.1640625
+468.2241211 51969.01953125
+477.2188721 20865.306640625
+478.2060547 24547.412109375
+483.717804 38136.125
+485.2480469 251585.359375
+486.2510376 63075.30859375
+488.1851196 68198.8046875
+492.22995 191184.65625
+492.7304688 92479.09375
+493.2309875 31360.806640625
+495.2279663 39487.51171875
+503.2202759 25588.755859375
+503.7211914 27073.384765625
+504.2056885 20151.41015625
+505.2122192 63393.2265625
+506.2039185 34033.27734375
+512.227356 61671.59375
+512.7302856 29526.8984375
+520.7365723 21501.787109375
+521.2298584 22108.4765625
+523.22229 491776.59375
+524.2244263 147002.515625
+525.2281494 27138.35546875
+555.2557373 20732.171875
+558.7488403 19372.70703125
+559.7419434 19211.966796875
+567.258606 24002.6484375
+571.750061 77668.75
+572.2755127 329987.15625
+572.7497559 20086.646484375
+573.2827148 98779.734375
+576.2617188 37626.23828125
+580.2636719 79782.25
+580.7553711 2421810.25
+581.2566528 1714070.125
+581.3694458 25195.26953125
+581.7583618 613702.0625
+582.258728 117157.796875
+589.2676392 38645.7109375
+589.765625 27962.251953125
+598.2744141 58118.0625
+598.7768555 33069.796875
+599.27771 18476.44140625
+599.7764893 70512.046875
+606.2606201 40659.01953125
+624.2654419 47931.73828125
+625.2770996 19514.40234375
+655.312561 20558.7109375
+673.3242798 413581.75
+674.3284912 155136.75
+675.3282471 43042.40234375
+711.296814 34049.35546875
+802.3666992 96103.640625
+803.3688354 36519.38671875
+858.3658447 18010.916015625
+873.4013672 88958.3046875
+874.3990479 46363.484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.159.159.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=159"
+RTINSECONDS=17.0911752
+PEPMASS=598.27001953125
+CHARGE=2+
+50.38390732 14382.3681640625
+64.52626038 62541.34375
+64.53050995 42989.5
+64.58200073 48317.5234375
+64.58621979 33319.26953125
+64.63801575 21825.41796875
+64.64137268 16456.85546875
+76.2809906 21197.623046875
+86.94048309 14334.41796875
+89.59619904 13988.36328125
+140.2697601 15408.6083984375
+142.0335693 14665.42578125
+149.57341 54387.796875
+167.0918121 22824.001953125
+169.0598145 36841.234375
+173.0934448 19423.734375
+175.1178589 280350.125
+177.0759735 60303.85546875
+178.0598145 336712.90625
+178.3408813 93566.234375
+179.0631561 24351.640625
+179.0915375 22020.6875
+183.0750732 25668.068359375
+183.0924988 15015.9091796875
+186.085968 104983.1484375
+194.1027832 41878.51953125
+195.08638 4408316.5
+195.1281281 38096.12890625
+196.0891418 429950.4375
+197.092392 21337.1953125
+200.1022949 25735.677734375
+201.0860443 16217.044921875
+206.0910187 175815.5
+209.1023865 21759.400390625
+215.0911407 25857.6484375
+218.1022949 56807.84375
+234.0955048 20602.59375
+239.1138153 17955.634765625
+240.0961151 20494.501953125
+243.0862274 25256.607421875
+244.1199341 17092.62109375
+246.0968323 630302.625
+247.0996857 83706.640625
+257.1225586 107236.359375
+260.1120911 106087.3203125
+270.0968628 170803.109375
+271.1030579 17884.55859375
+278.1178284 16183.9072265625
+278.1494751 31485.724609375
+283.144104 31360.6875
+287.1235657 144705.15625
+288.1072388 1596275.125
+289.1101379 219298.625
+290.1133118 18926.32421875
+295.1485901 26955.138671875
+303.1424255 25479.19921875
+305.133667 3346973.75
+306.1188965 1244151.625
+307.1210938 190940.296875
+308.1217957 23433.732421875
+311.1343689 50022.6875
+314.3078918 16122.9111328125
+321.1534729 376596.90625
+322.1556702 56379.84375
+323.1441956 1181581.125
+324.1465759 199356.171875
+325.1450195 17626.04296875
+329.1438599 54439.29296875
+334.9194641 15521.5771484375
+338.1802063 395614.8125
+338.6442566 27643.685546875
+339.1826477 80463.75
+347.1489563 28208.08203125
+359.1438599 56050.828125
+366.185791 124976.359375
+367.1862488 19814.71875
+369.1397095 43338.8046875
+376.1696167 128091.1171875
+377.1582336 73627.71875
+386.166748 33786.0234375
+394.1806335 737770.625
+395.181427 147601.40625
+398.1716919 27139.6484375
+412.1875916 26404.984375
+420.6817627 25192.96875
+435.3303833 17049.2109375
+450.206604 23330.568359375
+468.2211609 41846.8203125
+478.2048035 21244.734375
+483.71875 20865.62890625
+485.2467651 225251.9375
+486.2481384 47013.6015625
+488.1818542 58184.9453125
+492.2286987 157146.96875
+492.7288818 75625.7421875
+493.2310791 37273.234375
+495.2260437 58454.9140625
+505.2106018 63314.14453125
+506.200531 46352.078125
+512.2276001 45880.54296875
+514.293457 15608.779296875
+521.2310181 43626.38671875
+521.7299194 24026.34375
+523.22052 473252.90625
+524.2230835 117879.3359375
+525.2280273 20820.08984375
+529.7481689 24361.806640625
+554.2652588 17726.875
+558.7368774 19820.068359375
+559.2442017 18030.421875
+571.75 73450.1328125
+572.2722778 296489.71875
+572.7495728 29330.19140625
+573.2786865 97425.8046875
+576.2612305 69459.7578125
+577.7550659 24224.740234375
+580.2622681 75487.875
+580.7540894 2310273.25
+580.8408203 31235.212890625
+581.2553711 1667219.875
+581.3384399 21067.60546875
+581.3688354 26352.03515625
+581.7566528 591207.5625
+582.2583008 115466.2109375
+589.2653198 83350.4453125
+589.7659912 78243.625
+598.272644 64305.3203125
+598.7771606 25831.919921875
+599.277832 31551.095703125
+599.7747192 74825.1796875
+606.2599487 32837.95703125
+624.2684326 49843.5390625
+673.3223267 436977.34375
+674.3245239 184666.0
+675.3186646 37383.5
+693.2857056 21965.265625
+802.3643188 110915.875
+803.3684082 36168.3359375
+804.355835 20070.087890625
+873.3967285 116374.65625
+874.4044189 41330.28515625
+875.4160156 19643.814453125
+1001.462219 24069.7734375
+1058.459106 20746.259765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.160.160.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=160"
+RTINSECONDS=17.19866701
+PEPMASS=598.27001953125
+CHARGE=2+
+54.84285736 12930.263671875
+55.60588455 12734.71484375
+58.13433456 16037.615234375
+58.13697815 14529.3740234375
+64.52619171 65284.91796875
+64.53044891 42005.37109375
+64.58200073 40914.75
+64.58616638 32419.681640625
+71.51933289 14118.7158203125
+89.91988373 14557.234375
+90.99428558 12684.7919921875
+103.3957214 12960.1044921875
+106.1502914 14266.1962890625
+149.5677338 52507.28515625
+161.4175873 12795.6416015625
+167.0919037 50353.49609375
+169.0599365 26560.888671875
+175.1177673 274452.28125
+176.1200867 17662.810546875
+177.0760498 73584.109375
+178.0600128 371526.09375
+178.3415833 82140.9765625
+179.0637207 18160.509765625
+179.0905609 20731.087890625
+180.1419525 16148.47265625
+182.0917053 21163.615234375
+183.0753174 24485.19140625
+186.0860138 112396.2578125
+194.1032562 29160.88671875
+195.0864105 4295838.0
+195.1276703 20565.080078125
+196.0893555 440217.09375
+197.0907135 18957.75
+200.1017761 24947.681640625
+201.0852051 18241.669921875
+206.0911102 154433.71875
+212.1134338 24888.248046875
+215.0903015 14629.3359375
+218.1026154 50571.92578125
+233.1252441 15051.7080078125
+240.0957031 26608.36328125
+243.0866852 19270.494140625
+243.8790741 12708.576171875
+246.0970154 667325.9375
+247.099472 84101.8515625
+257.1225891 98610.8046875
+258.1255798 18208.94140625
+260.1125183 113239.4453125
+270.0969543 133824.875
+278.1489258 27945.078125
+283.1436768 46009.91015625
+284.1202698 20245.751953125
+287.1235657 140534.109375
+288.1073914 1697670.875
+289.1103516 280062.0625
+290.1104126 21060.3125
+295.1500854 22677.98046875
+303.1424866 22779.984375
+305.1340027 3241949.5
+306.1191101 1236112.0
+307.1213379 198168.296875
+311.1356201 52078.48046875
+312.1165771 30309.771484375
+313.1148071 14429.9580078125
+320.1324158 16905.869140625
+321.1538391 314312.03125
+322.1560669 63586.1640625
+323.1444397 1139280.625
+323.2076416 20654.373046875
+324.1466675 192798.0
+329.1447144 49146.765625
+338.1419678 46021.375
+338.1806335 417084.625
+338.6446228 23616.68359375
+339.1824646 74920.265625
+341.1497498 27721.181640625
+347.1476746 22313.298828125
+349.1596375 29057.94140625
+351.1341553 19624.494140625
+359.1450806 59099.359375
+366.1860657 144426.109375
+367.1917725 27799.61328125
+368.1534119 21363.9453125
+369.1417236 33013.61328125
+376.1706848 118038.4609375
+377.1581116 79402.875
+386.1635742 27943.09765625
+389.1598511 15281.4931640625
+394.1207581 14331.5556640625
+394.1809387 784878.4375
+394.2402344 26738.869140625
+395.1832275 162401.046875
+412.1864624 24542.748046875
+413.1685181 16903.294921875
+420.6816711 23769.25390625
+460.1894226 24255.263671875
+461.214325 19722.32421875
+468.2189331 41532.5859375
+469.2216797 18641.134765625
+474.7167664 16786.220703125
+478.2064514 19455.994140625
+483.7173767 23454.4453125
+485.247467 248105.890625
+486.2506104 64622.42578125
+488.1861267 53296.265625
+492.2297668 185071.78125
+492.7297974 115817.40625
+493.2307739 34951.71484375
+495.2264099 52861.6953125
+503.717041 20848.427734375
+505.2106934 72855.6953125
+506.2061157 57423.7109375
+506.730072 14098.443359375
+512.225647 62165.8046875
+512.7271118 38558.953125
+513.2333984 20551.7109375
+520.7398682 16846.5078125
+521.2348022 45698.6875
+523.2221069 472842.71875
+523.309082 29488.822265625
+524.2263184 144557.171875
+525.2313843 33062.40625
+554.2686768 17087.6484375
+555.2561035 19854.53125
+558.746521 21434.279296875
+567.746521 17539.005859375
+571.7490234 84930.90625
+572.2744141 308609.375
+572.7519531 30563.734375
+573.2803955 85032.8515625
+576.2630005 29695.072265625
+576.7631836 19308.423828125
+577.2647095 26822.912109375
+580.2598877 70269.3671875
+580.755188 2454095.25
+581.2561646 1623576.25
+581.6508179 23379.7265625
+581.6807251 13245.580078125
+581.7578735 610792.0625
+582.2583618 112984.1875
+589.2693481 80296.296875
+589.7711182 20570.126953125
+598.2753296 64937.828125
+598.7769165 34262.41796875
+599.2759399 49580.5703125
+599.7762451 68095.9296875
+606.2589722 59931.1640625
+607.2595215 18085.169921875
+624.2661133 71213.203125
+625.2711792 17521.4375
+673.3236694 398506.8125
+674.3268433 148852.984375
+707.3115845 17119.724609375
+711.3060913 20571.01953125
+802.3642578 89010.6796875
+803.3724365 25376.861328125
+873.3986816 90248.7734375
+874.4032593 53731.6640625
+1001.462219 26444.728515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.161.161.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=161"
+RTINSECONDS=17.30785757
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436508 14763.015625
+64.52629852 53710.49609375
+64.53044891 43771.296875
+64.58198547 46257.44921875
+64.58618164 28831.28125
+64.63805389 18476.783203125
+64.64138031 15304.7158203125
+74.81178284 15567.76171875
+126.3657227 12698.177734375
+147.9913635 13174.984375
+149.5601349 20432.482421875
+149.5735016 45729.71484375
+167.0917358 40877.70703125
+169.0593719 28695.392578125
+175.1021423 21640.09375
+175.1179352 285657.25
+176.1199188 18436.54296875
+177.075882 79898.65625
+178.0599976 353487.84375
+178.3516541 60605.671875
+179.0629883 25161.96484375
+179.0915527 20137.77734375
+183.0757141 22062.21875
+186.0861053 127715.390625
+194.1017303 46596.6875
+195.086441 4254279.0
+196.0893097 424917.96875
+197.0904846 31148.63671875
+200.1016693 25068.646484375
+201.0849915 17840.927734375
+206.0912018 145545.921875
+207.0926819 18711.1640625
+212.1126099 18983.892578125
+215.0896301 18064.716796875
+218.1027679 49018.34765625
+240.0958862 33667.234375
+246.0969696 665510.4375
+246.1208954 12615.9189453125
+247.0997772 67413.3046875
+248.1122894 14244.708984375
+253.5116272 16182.8935546875
+257.1226501 98966.140625
+258.1255188 18499.736328125
+260.1127014 112586.4609375
+261.1178284 18625.8984375
+267.1138916 21307.64453125
+270.0968933 132174.484375
+276.1346741 17454.708984375
+278.1492615 23420.4453125
+283.144043 43127.453125
+287.1232605 144639.671875
+288.1074219 1600207.0
+289.1099243 218914.875
+294.1131897 19788.392578125
+295.1490173 21357.357421875
+303.1450195 23364.54296875
+305.1339417 3182273.25
+306.118988 1177023.5
+307.1220093 191953.21875
+308.1236572 21930.181640625
+311.1347961 51316.0
+312.1159668 25324.669921875
+320.1302185 18630.7578125
+321.1541443 318555.34375
+322.1568298 44192.6015625
+323.0987854 18244.748046875
+323.1444092 1165044.625
+324.1471252 186681.203125
+329.1445923 45786.35546875
+338.1420288 53551.359375
+338.1806335 434024.34375
+338.6456299 29166.484375
+339.1829224 89586.0625
+341.1445007 16067.150390625
+347.1483154 20551.7578125
+349.1582336 31087.681640625
+359.1447449 57377.76171875
+366.1868286 125374.65625
+367.1872559 22736.998046875
+369.1375732 32188.70703125
+376.1705322 149848.03125
+377.1575928 75018.7421875
+378.1551819 20505.158203125
+386.1628723 35243.8671875
+394.1809387 728878.4375
+394.2404175 26725.94140625
+395.1828613 126756.4453125
+396.1879578 23900.81640625
+412.1846313 27480.41015625
+420.6809082 18133.705078125
+428.2009277 17616.189453125
+460.1928101 22453.46875
+468.2214355 51167.91796875
+469.2250061 15533.671875
+478.2024536 16464.671875
+485.2472839 213276.9375
+486.2496033 54996.02734375
+488.1869202 52229.9609375
+489.1885376 17576.072265625
+492.2298279 172483.6875
+492.7305298 98457.09375
+493.2295837 35606.96875
+495.2278748 50048.234375
+505.2122803 48928.1484375
+506.2055359 60426.7265625
+507.2086487 15981.6064453125
+512.2282104 46379.8125
+512.7285156 23708.935546875
+521.2369385 20452.728515625
+521.7329102 19050.431640625
+523.2220459 433492.25
+524.2254639 127447.6640625
+525.2261353 37678.30078125
+559.2527466 20987.9921875
+571.7490234 80332.234375
+572.2752686 303597.40625
+573.2824707 82609.1796875
+576.2639771 44274.77734375
+576.7630005 29578.419921875
+577.2556763 17861.89453125
+580.2634277 44256.8046875
+580.7550049 2205913.25
+581.2562866 1453519.0
+581.3353271 31229.8203125
+581.7575073 578054.4375
+582.2590332 114875.109375
+589.2677612 63871.75390625
+589.7663574 33653.27734375
+598.2719116 32771.88671875
+599.2775879 27095.791015625
+599.77771 53182.5625
+606.2547607 36914.765625
+624.2677002 53858.828125
+625.2736816 17308.6953125
+655.3183594 17384.58203125
+673.3233032 374868.28125
+674.326355 155823.703125
+675.3305664 39714.078125
+802.3631592 90346.9609375
+803.3691406 44250.95703125
+873.4002075 111225.4921875
+874.402832 55353.73046875
+966.0894775 17993.013671875
+1001.45282 25384.080078125
+1058.510132 15375.494140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.162.162.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=162"
+RTINSECONDS=17.41667267
+PEPMASS=598.27001953125
+CHARGE=2+
+57.4794693 12365.232421875
+58.13723755 15728.33984375
+60.63498688 14710.37890625
+64.52624512 72968.7109375
+64.53047943 45011.50390625
+64.58197021 39163.84375
+64.58612823 34328.50390625
+100.931839 15392.9443359375
+103.1465607 15917.06640625
+115.2871628 13611.615234375
+130.4328766 13804.0341796875
+145.1269836 14751.2119140625
+149.5651398 38104.875
+149.5789948 31392.951171875
+167.0917206 42591.55859375
+169.0598602 26660.439453125
+175.1179504 281292.5625
+176.1217041 27092.78125
+177.0758972 58699.0859375
+178.0601349 313297.09375
+178.3327484 33804.4921875
+178.3513336 70837.5546875
+179.0638885 30436.375
+183.0754089 31277.720703125
+186.0861053 103110.1015625
+190.1070251 18429.333984375
+194.1026611 46056.1171875
+195.0864868 4327553.0
+195.1280975 20157.0625
+196.0895233 442046.65625
+197.0917664 26769.9765625
+200.1007385 31297.8515625
+201.0853729 34286.63671875
+206.0909576 138904.765625
+212.1124268 28211.357421875
+218.1025696 59230.4765625
+222.0863342 18615.931640625
+240.0957794 23021.572265625
+243.08638 29122.869140625
+246.0970917 639392.375
+247.0995941 75117.8515625
+249.0978699 20348.72265625
+257.1229858 109605.8125
+260.112915 86737.5625
+270.0967407 131286.78125
+271.0992126 22295.978515625
+277.1391907 16704.59765625
+278.1211548 16768.03125
+283.1430359 43384.47265625
+287.1237793 143177.125
+288.0777588 23709.541015625
+288.1075134 1628229.125
+289.1104126 247326.703125
+294.1164246 22216.06640625
+295.1508179 28854.939453125
+303.1430969 32517.1484375
+304.1275024 22784.375
+305.1039429 67483.328125
+305.1341858 3244794.75
+306.1192627 1198930.875
+307.121582 199058.65625
+308.1242676 18130.10546875
+311.1347961 41784.5234375
+312.1177673 34525.4296875
+321.1543274 313954.71875
+322.1578369 72174.3984375
+323.1446228 1110634.0
+324.1469727 191112.546875
+325.1557922 22126.720703125
+328.165741 17174.19921875
+329.1455688 50020.03515625
+331.1509399 20065.91796875
+338.1421509 54457.80859375
+338.1807556 407770.40625
+339.183197 77379.0078125
+342.2011108 14498.0615234375
+347.1485901 17281.130859375
+359.1452026 74900.5625
+366.1859741 127587.0234375
+367.1871338 18217.935546875
+369.1387329 33958.78125
+376.1705017 117128.5
+377.1577759 77199.6484375
+378.156311 18442.974609375
+386.1654968 23900.8984375
+394.1356812 16998.494140625
+394.1811829 768069.0
+394.2405396 24868.4296875
+395.1828613 156594.5
+396.1856689 27176.41015625
+412.1859741 27048.2109375
+468.2225952 55452.5
+469.2220459 23162.666015625
+477.221344 21048.80859375
+483.7151184 17974.57421875
+484.2210083 17717.998046875
+485.2476807 238913.9375
+486.2512207 68896.6015625
+488.1867065 51556.60546875
+492.2295532 172618.921875
+492.7321167 99965.65625
+493.2323914 46907.5
+495.2275085 52868.8203125
+503.2276001 20744.275390625
+505.2110901 63887.5625
+506.2052002 49444.4765625
+512.2249756 38056.890625
+512.7267456 33915.52734375
+513.2367554 20001.73046875
+520.7394409 21507.87890625
+521.2324829 35142.7734375
+523.2226562 495314.40625
+524.2252197 144911.5625
+525.230896 41778.37890625
+555.2453613 18893.00390625
+558.7436523 26019.505859375
+571.7506714 86758.5
+572.2747803 362904.875
+572.7501831 29010.595703125
+573.2818604 87551.8203125
+574.2678223 23818.5625
+576.2588501 53823.74609375
+576.7614746 33250.4296875
+577.2681885 21899.193359375
+580.2608643 88819.203125
+580.7555542 2498042.0
+581.256958 1579514.5
+581.758667 635087.3125
+582.2593384 134824.25
+589.2689819 74866.0625
+589.7711182 33428.16796875
+598.2723389 46626.51171875
+598.7758179 22040.64453125
+599.2736206 27789.73828125
+599.7769165 67991.359375
+606.2567749 35027.53125
+624.269043 72752.171875
+673.324707 430438.9375
+674.3283691 145891.640625
+675.3275757 41561.83203125
+802.3664551 92574.921875
+803.3666382 51285.234375
+873.4003296 98989.703125
+874.4068604 42463.6875
+1001.455627 24574.689453125
+1059.484009 19509.015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.163.163.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=163"
+RTINSECONDS=17.52510928
+PEPMASS=598.27001953125
+CHARGE=2+
+51.89344406 14213.818359375
+54.33027267 12616.13671875
+58.13419724 19299.158203125
+58.13714218 15353.2353515625
+62.35334778 16064.1513671875
+64.52630615 63828.04296875
+64.53047943 37826.46484375
+64.58194733 44453.390625
+64.58620453 34316.015625
+149.5653229 41724.86328125
+167.0927277 25539.7578125
+169.0592651 24622.921875
+175.1002808 15893.43359375
+175.1177368 327970.84375
+176.1208344 20263.4140625
+177.0753937 65467.80859375
+178.0435944 29034.994140625
+178.0600586 354396.9375
+178.3386688 78284.4609375
+178.3575134 32543.748046875
+179.0634918 25798.08984375
+182.0910645 27326.125
+183.074234 34130.71484375
+186.0861816 116359.1640625
+190.0589447 19214.9140625
+190.1074219 17279.61328125
+194.1011047 42707.046875
+195.0863495 4442941.5
+195.128418 24764.052734375
+196.0890961 426045.3125
+197.0915833 19941.75
+200.1010742 31994.65625
+206.0909576 147487.65625
+218.1017761 56801.96484375
+222.0847931 21050.01171875
+234.0979614 16613.83984375
+243.0853271 22184.396484375
+246.0969238 688004.625
+247.0997009 64275.77734375
+257.1224365 121673.6171875
+260.112915 118370.796875
+270.0969849 143435.84375
+278.1182251 16917.2734375
+278.1482239 32648.5234375
+283.1435242 40847.14453125
+287.12323 158966.140625
+288.1072998 1650899.75
+289.1099243 269725.375
+290.112793 28371.8984375
+294.1154785 21419.158203125
+295.1492615 25492.517578125
+302.1316223 18192.671875
+303.142334 37309.08203125
+305.1337891 3367162.5
+306.1188965 1125103.625
+307.1213684 198853.6875
+308.1208191 19517.494140625
+311.1347351 66414.4140625
+312.1152039 31397.599609375
+321.1538391 361294.65625
+322.1553345 42318.76953125
+323.1443481 1129873.625
+323.1886292 35941.38671875
+323.2090454 19211.375
+324.146698 179430.46875
+325.1517334 20064.103515625
+329.1435242 53762.859375
+331.1494141 17901.28125
+338.141571 55681.79296875
+338.1805115 435978.5
+338.6457214 26847.2109375
+339.1828308 63248.05859375
+341.1481018 21764.533203125
+347.1496582 31967.435546875
+349.1598206 24456.46875
+358.1702881 17238.20703125
+359.1451416 66883.0546875
+360.1480713 16710.5
+366.1858521 138576.0625
+367.1875916 19820.673828125
+369.1369934 42020.9140625
+376.1706238 142245.296875
+377.1560669 97506.3125
+378.1582031 19693.177734375
+386.1644592 20610.70703125
+394.1806335 814076.4375
+395.1824646 150822.015625
+396.1856384 25504.580078125
+412.1888428 24556.9609375
+421.1835938 18199.5546875
+448.1832886 16756.21484375
+460.1925659 28003.4609375
+468.2214661 51655.1484375
+477.2201843 23066.763671875
+478.1973877 22028.298828125
+483.7212219 30249.693359375
+485.2471008 249247.609375
+486.2488708 46254.58984375
+488.1867371 45779.39453125
+492.2294312 164535.1875
+492.7305908 110147.921875
+493.2344666 21526.060546875
+495.2260742 76889.3984375
+496.2301941 18875.572265625
+505.211731 61005.328125
+506.2062683 62779.59765625
+512.2252197 58839.2265625
+512.7303467 29508.267578125
+513.5576782 15341.5126953125
+521.2280273 21637.7109375
+521.7300415 20786.53125
+523.2218628 474349.84375
+524.223999 132162.8125
+525.2258301 28401.970703125
+529.7427368 20172.908203125
+558.7449341 23142.82421875
+571.7506714 78874.6328125
+572.2738647 316668.96875
+573.2814941 114095.8828125
+576.2574463 34357.51171875
+576.7684326 39794.6171875
+577.2631836 21123.662109375
+580.2597656 79924.0078125
+580.7546997 2412009.25
+581.2559814 1648406.125
+581.3650513 30739.62109375
+581.7577515 574722.0625
+582.2566528 109399.171875
+589.2694702 91150.0390625
+589.7666626 44245.4375
+598.272522 61541.67578125
+598.774231 21432.6796875
+599.7747803 65213.47265625
+606.2539062 31740.087890625
+624.2695312 40961.171875
+673.3236694 398729.375
+674.3256836 138721.375
+675.3258057 37342.0625
+802.3660889 94328.4921875
+803.3639526 39725.8125
+873.4031982 97705.984375
+874.401123 63980.81640625
+1001.457153 30537.8359375
+1058.463379 21264.48046875
+1061.584717 17597.193359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.164.164.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=164"
+RTINSECONDS=17.63324592
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13451004 17000.2734375
+58.13735962 15308.8310546875
+64.52627563 70183.203125
+64.53048706 37823.4453125
+64.58204651 44559.125
+64.58615875 33425.5234375
+64.64128876 14412.37890625
+82.05382538 23659.9296875
+100.8437958 14197.095703125
+110.0741959 14728.0009765625
+149.5714111 54380.609375
+167.0918274 41763.5078125
+169.0601959 21151.6796875
+171.794281 13619.3369140625
+175.117981 290771.96875
+176.1214447 20589.013671875
+177.0761566 59014.859375
+178.0600739 369618.25
+178.0780182 24275.720703125
+178.3450623 88817.078125
+179.0635071 30693.46875
+179.0917816 30640.908203125
+182.0906067 16413.47265625
+183.0748901 19944.28515625
+186.0861969 112414.140625
+187.7979279 14684.138671875
+190.1072693 14739.4541015625
+194.1027679 44975.98828125
+195.0865173 4109615.75
+195.1283417 20396.369140625
+196.0894775 459796.4375
+197.0918579 21978.537109375
+200.1028595 24581.3984375
+201.0863037 18276.26171875
+205.0599823 19523.744140625
+206.0910645 182689.421875
+207.0947113 22064.9453125
+209.0765533 20672.498046875
+215.0913544 20941.486328125
+218.1021729 53960.078125
+222.0874023 21687.140625
+239.1113434 17245.427734375
+240.0947723 24050.275390625
+243.0872955 14278.7021484375
+244.1181335 22949.43359375
+245.6092224 13793.2509765625
+246.0744171 12901.14453125
+246.0970917 660080.5
+247.0997162 89694.59375
+257.1231079 90202.6796875
+258.1262512 19138.638671875
+260.1128235 101118.15625
+262.12854 18844.134765625
+270.0971985 136381.125
+271.1018982 20132.166015625
+278.1164551 14202.466796875
+278.1488342 29913.23046875
+283.1431274 29447.7890625
+287.1235657 169489.65625
+288.107605 1741903.0
+289.1105347 222062.765625
+290.1147156 23817.55078125
+293.6274109 16521.8359375
+295.1495667 22302.544921875
+303.142395 27545.35546875
+305.1341858 3179985.25
+306.1195679 1109765.625
+307.1216125 176397.125
+308.1223755 16899.599609375
+311.1356812 66401.6015625
+312.1176453 40442.52734375
+320.6298218 15370.2451171875
+321.1544189 309726.96875
+322.1575623 61174.4609375
+323.1446838 1133208.75
+324.1465454 173300.5
+329.1439514 42864.56640625
+338.1426392 51462.75
+338.1808472 375069.3125
+339.1831665 79007.2734375
+341.1421204 20910.099609375
+347.148468 40890.015625
+349.1591797 22841.92578125
+359.1444397 78807.5625
+366.186554 127843.671875
+367.1877136 21679.5546875
+369.1406555 31501.26171875
+376.1705017 114893.5859375
+377.1574097 89662.9609375
+378.1629333 14933.1533203125
+386.1620483 20940.865234375
+394.1810913 742443.25
+394.2399902 26570.43359375
+395.1831665 139491.046875
+396.1854858 31019.955078125
+412.1878052 37935.91796875
+413.1651001 14762.25390625
+420.6792908 18200.533203125
+421.054657 13593.8642578125
+421.1785889 16802.4375
+434.1738281 17476.849609375
+450.2063293 15383.8564453125
+460.1906738 33251.50390625
+468.221344 57533.859375
+477.2153625 22754.15625
+483.2282104 23939.0859375
+483.7183228 29168.607421875
+485.2473755 226887.03125
+486.2510986 59038.23046875
+488.1871948 48130.16015625
+492.2298279 174805.8125
+492.7314453 102909.140625
+493.2302246 50190.68359375
+494.7188416 16981.193359375
+495.2266541 69463.171875
+496.2265625 21016.677734375
+501.2325439 21743.580078125
+503.224823 28274.490234375
+503.7154846 19054.42578125
+505.2110596 52991.23828125
+506.2087402 31932.1015625
+512.2280273 32465.06640625
+512.7280273 32908.03515625
+520.736145 16501.333984375
+521.2360229 35475.18359375
+523.2225952 473103.6875
+524.2251587 133489.609375
+525.2283936 27973.6953125
+555.2531738 15684.435546875
+558.7427368 33522.3515625
+571.7508545 109675.3046875
+572.2734985 357212.5625
+572.7457886 21919.48046875
+573.281189 98292.84375
+574.2727661 25197.880859375
+576.2632446 35493.6875
+576.7588501 20801.26171875
+577.2645874 27553.23828125
+580.2600708 68227.3515625
+580.7556152 2462704.5
+581.2565308 1682052.125
+581.758606 590009.0
+582.2611694 121402.765625
+589.2698975 51781.3359375
+598.2769165 54038.0546875
+598.7772217 47649.39453125
+599.274353 31522.859375
+599.7763062 94864.9765625
+606.2579346 44211.31640625
+624.2666016 49300.13671875
+625.2745972 31468.37890625
+673.3242798 420187.6875
+674.3261108 169297.625
+675.3372803 36021.43359375
+693.2974854 17001.974609375
+802.3623047 96287.65625
+803.3652954 58996.54296875
+873.4016724 101848.3046875
+874.399231 40087.18359375
+875.3991699 22190.99609375
+1001.447205 15723.48046875
+1058.472168 17371.673828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.165.165.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=165"
+RTINSECONDS=17.74241375
+PEPMASS=598.27001953125
+CHARGE=2+
+61.35218811 16200.4208984375
+64.52629089 68295.609375
+64.53073883 51115.125
+64.58219147 32699.75390625
+64.58616638 36439.59375
+64.63821411 20490.15234375
+76.28580475 17970.564453125
+82.05426025 16506.873046875
+87.16440582 15038.8740234375
+136.1866302 13487.419921875
+149.5744019 45273.9140625
+167.092041 29182.09765625
+169.0590515 34528.16796875
+175.1008453 14187.5498046875
+175.1179199 299726.125
+176.121521 21553.89453125
+177.0757751 60641.7578125
+178.0600586 362754.5
+178.3494263 92789.8671875
+179.0634613 18117.130859375
+182.0914154 28364.279296875
+183.0755463 17471.126953125
+186.0861816 109817.3515625
+194.1024475 35233.1953125
+195.0864716 4374694.5
+196.0892487 452178.84375
+197.0919952 28577.28515625
+200.1007233 22555.05078125
+206.0909882 139121.171875
+207.0940857 21170.078125
+218.1023407 51838.328125
+222.0842743 15397.9599609375
+234.0973969 16316.037109375
+239.1128387 25257.828125
+240.0944977 25425.51171875
+243.0884857 29181.390625
+246.0970764 676045.125
+247.1002655 72842.1328125
+257.1228333 111422.359375
+260.1129456 115484.4375
+261.1190796 24930.455078125
+270.0968018 130458.5625
+276.135437 19808.33203125
+278.1500854 21506.833984375
+283.142334 48245.70703125
+287.1236572 150385.921875
+288.1074524 1650573.5
+289.1104431 257882.5625
+290.1134338 23684.861328125
+295.1504211 17081.46484375
+303.1439514 30781.376953125
+305.1340332 3285848.5
+306.0592957 20684.814453125
+306.1192322 1212084.125
+307.1213684 177882.375
+308.1245117 20148.02734375
+308.7568359 16965.7890625
+311.1353455 54749.15625
+312.117218 44289.1953125
+320.1704102 20319.169921875
+321.1537781 363365.4375
+322.1578979 68859.3671875
+323.0979309 22821.33203125
+323.1445007 1107513.5
+324.1468201 187336.828125
+329.1429749 59989.6796875
+338.180542 436826.15625
+338.6456909 28846.896484375
+339.182373 84116.4453125
+339.6201172 16338.83984375
+347.1515198 19011.84765625
+349.1621399 17774.5625
+351.1300354 16586.666015625
+358.1681519 20285.025390625
+359.1447449 60799.93359375
+366.1420898 21642.107421875
+366.1868286 138472.28125
+367.1851196 18365.20703125
+369.1392212 24732.005859375
+376.1697998 147272.125
+377.1554565 89173.8671875
+386.1653137 34004.4296875
+394.1810608 768679.5625
+394.2687378 19523.099609375
+395.1831055 172350.640625
+396.1850586 19048.625
+412.190979 42211.47265625
+413.1642761 19132.984375
+420.6836243 23192.373046875
+421.1875916 18467.96484375
+428.1976318 21988.24609375
+468.2195435 51772.609375
+469.2232056 20365.20703125
+477.2181702 19723.005859375
+484.2194824 19836.595703125
+485.2476196 224184.8125
+486.249939 59163.52734375
+487.2067566 16548.537109375
+488.184845 60061.6171875
+492.2293396 187554.359375
+492.7301941 103212.4453125
+493.2282104 30397.908203125
+495.2259827 44932.57421875
+503.7189636 19353.275390625
+504.2137146 18398.408203125
+505.2121277 72911.8359375
+506.2045593 50054.10546875
+512.2249756 40455.3125
+512.7280884 29930.2109375
+513.2283325 17647.06640625
+521.2393188 23155.150390625
+521.7299194 25989.927734375
+523.22229 480418.25
+524.2247314 113137.984375
+525.2334595 32539.818359375
+529.7468872 18303.603515625
+554.2578735 20781.447265625
+555.2580566 21331.83984375
+571.7507935 113287.875
+572.2754517 282013.9375
+573.2800293 96042.3046875
+576.2612305 61446.8828125
+576.7618408 40431.953125
+577.2622681 33548.4453125
+580.260376 78373.8046875
+580.7550659 2448470.0
+581.2562866 1647074.125
+581.7578735 589224.6875
+581.8640137 25482.427734375
+582.2585449 143044.59375
+589.2652588 103666.8828125
+589.7684937 52750.62109375
+598.2727051 55565.66015625
+598.7730713 27241.033203125
+599.2715454 29881.8984375
+599.7767944 56567.03515625
+606.2562866 29486.51171875
+624.2686768 68458.703125
+625.2744141 33429.1953125
+673.3241577 402837.1875
+674.3282471 151530.046875
+675.3302002 33696.30078125
+693.286499 23468.275390625
+694.3026733 20859.849609375
+711.2848511 18518.935546875
+802.3641357 85619.578125
+803.3626099 41575.1796875
+873.3959961 92230.1953125
+874.4018555 56028.73046875
+1001.460938 31805.021484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.166.166.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=166"
+RTINSECONDS=17.84992272
+PEPMASS=598.27001953125
+CHARGE=2+
+50.16246033 13773.53125
+58.13712692 14814.65625
+64.52615356 68669.46875
+64.53061676 57668.95703125
+64.58195496 46745.55859375
+64.58605957 32928.83203125
+64.63819122 16083.0595703125
+66.0319519 11864.431640625
+82.05415344 22393.43359375
+82.195961 14545.837890625
+149.5713196 56862.8359375
+167.0912933 57426.953125
+169.0598145 35808.28125
+175.1176605 312373.53125
+176.121109 15470.0126953125
+177.0756073 51925.7578125
+178.043808 23059.580078125
+178.0597534 327554.21875
+178.0780334 25970.97265625
+178.3410187 83643.5234375
+179.062149 26209.921875
+179.0916748 36739.09765625
+183.074707 22972.650390625
+186.0856628 107542.625
+190.0585938 16510.431640625
+194.1018524 56054.65234375
+195.0862122 4090027.25
+195.1031799 72784.390625
+196.0890503 420358.5
+197.0923615 28354.94140625
+200.1001892 23439.158203125
+201.0854492 21610.578125
+206.0909424 163834.140625
+207.0931244 17669.529296875
+217.128891 18174.16796875
+218.1014252 56373.3125
+221.1034851 17117.0390625
+222.0844116 18579.119140625
+223.0940857 18131.69921875
+234.0979156 25160.34765625
+237.4943542 14956.76171875
+239.2361603 14421.2109375
+243.086319 29401.197265625
+246.0967407 642562.6875
+247.098938 73536.2734375
+249.0975494 16456.291015625
+257.122406 114974.515625
+260.1126099 97196.84375
+261.1171875 17757.62890625
+270.0964966 136606.3125
+271.1000366 18906.193359375
+278.1473083 18351.033203125
+283.1439819 52505.34765625
+287.1230469 147127.390625
+288.1070862 1561989.125
+289.1095886 207969.453125
+290.1133423 21580.525390625
+294.1163635 21194.01171875
+295.149231 25905.138671875
+302.1278992 16008.30859375
+303.1447754 30273.775390625
+304.1289062 29191.728515625
+305.1335754 3222260.0
+305.2158508 19564.59375
+306.1187439 1125029.375
+307.1207581 151166.703125
+308.1228027 24406.076171875
+311.1343079 53861.83984375
+312.1165466 30464.28125
+321.153595 319489.78125
+322.155426 61754.65625
+323.0983582 23207.416015625
+323.1439819 1179385.5
+324.146637 181380.203125
+325.1513062 14836.5458984375
+328.1628418 15641.021484375
+329.1435852 50718.8359375
+338.141449 62020.84765625
+338.1799927 366020.21875
+338.6445923 22571.390625
+339.1817627 58457.5078125
+347.146759 27360.9140625
+349.1596069 20554.7890625
+351.1295776 21173.97265625
+358.1637878 15940.4228515625
+359.1430359 64721.71484375
+366.1855164 117415.0078125
+367.1869507 21447.41796875
+369.1382446 31199.3671875
+376.1696167 119722.8203125
+377.1560974 91890.4140625
+378.1613159 15991.1259765625
+386.1633301 33311.94140625
+394.1805115 731930.5625
+394.240509 19355.0625
+395.1825562 144741.078125
+412.1885681 38130.1875
+420.6819153 15899.2041015625
+460.1897583 22513.689453125
+468.2197266 40293.625
+477.2192688 20852.919921875
+483.2272644 16280.013671875
+485.2470398 226184.484375
+486.2516479 64433.03125
+488.1864929 49450.41015625
+492.2288513 163467.3125
+492.7289734 111016.9296875
+493.233551 28428.09765625
+495.2250366 58321.1953125
+505.2096558 65166.3203125
+506.210144 46757.46484375
+512.2244263 59992.9609375
+512.7225952 27909.126953125
+520.7365112 16988.796875
+521.2312622 31996.052734375
+523.2213135 469939.53125
+524.2241821 125590.2421875
+554.2642212 22085.5625
+555.2555542 25216.98046875
+558.7502441 31232.94140625
+567.2501221 18178.134765625
+571.7476807 69316.0859375
+572.2755737 355570.40625
+573.2766113 112021.078125
+574.2802734 23127.97265625
+576.2655029 47277.9453125
+576.7666016 30588.236328125
+577.2641602 39277.1796875
+580.2622681 91197.3203125
+580.7541504 2580840.25
+580.8389282 35619.80078125
+581.2556152 1659284.25
+581.3668213 19954.783203125
+581.7567139 620340.125
+581.8344116 12446.3701171875
+581.8633423 23057.9375
+582.2583008 123628.359375
+589.2666016 50891.91015625
+589.755249 32535.931640625
+598.2718506 53590.86328125
+598.7772217 32922.76953125
+599.2758789 39650.05078125
+599.7764282 65046.3671875
+606.2615356 33684.578125
+624.2693481 61250.34375
+625.2736816 16810.505859375
+656.3051147 15126.3583984375
+673.3233032 452637.78125
+674.3267212 151782.65625
+675.3343506 31970.576171875
+693.2835693 15577.52734375
+802.3643188 104580.328125
+803.3603516 36260.953125
+873.4007568 95910.5390625
+874.4033813 43217.21484375
+1058.473267 25714.654296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.167.167.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=167"
+RTINSECONDS=17.95879789
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52623749 69610.484375
+64.53063965 55810.28125
+64.58196259 51379.3671875
+64.58612061 32507.884765625
+64.6379776 24838.857421875
+71.91999817 16149.06640625
+73.36927795 12886.3232421875
+78.46633148 14226.7470703125
+140.0489807 14561.3154296875
+149.5627441 26170.458984375
+149.5767517 29453.26953125
+167.0917358 32689.662109375
+169.0605164 23971.240234375
+175.1177521 293779.25
+176.1208191 15737.7412109375
+177.0762177 50818.71484375
+178.0437317 24278.822265625
+178.0598602 339147.0
+178.3392487 80616.0390625
+179.0623932 31921.08203125
+183.0751038 24538.294921875
+186.0860596 124565.03125
+194.1023254 58913.96484375
+195.0863495 4382416.0
+195.1280975 28187.484375
+196.0891724 395795.3125
+197.0914154 34228.75
+200.1003418 23140.837890625
+201.0857239 16506.455078125
+206.0909882 160652.125
+207.0952148 16767.025390625
+212.1020966 13401.2861328125
+218.101944 57449.79296875
+232.841629 14763.84765625
+233.1259155 18335.275390625
+234.0969086 33571.86328125
+239.1104889 15976.3388671875
+240.0969238 41076.2734375
+243.0868378 22763.083984375
+246.0969543 632328.9375
+247.0995941 71077.796875
+248.1101074 16975.3203125
+257.122467 110045.1484375
+260.1124878 104536.734375
+261.1153564 28931.607421875
+270.0968323 118223.5703125
+278.1490784 32363.73046875
+283.1427917 39704.89453125
+287.1233826 170635.109375
+288.1073303 1637053.5
+289.1100769 257746.234375
+295.1484375 27697.8125
+303.1417236 19377.455078125
+305.1338501 3313416.5
+306.118988 1228775.375
+307.1212769 210444.140625
+311.133728 54575.921875
+312.1147461 32033.73828125
+319.1551819 16137.9423828125
+321.153717 341576.78125
+322.1560669 70368.28125
+323.1444092 1124393.5
+324.1461487 187989.0
+325.1502075 17316.728515625
+329.1441956 45272.61328125
+338.1418762 58590.2890625
+338.1806946 393845.4375
+339.1419067 20075.91015625
+339.1826782 85062.9765625
+346.1689453 15580.9619140625
+347.147583 18454.669921875
+359.1450195 58031.0234375
+366.1859741 120982.3203125
+367.1886292 31462.10546875
+369.1361694 19559.349609375
+376.1705322 114956.0546875
+377.1568909 82491.3203125
+386.1663208 34151.23046875
+394.1807556 689969.875
+395.1821289 169194.796875
+412.1870422 23976.986328125
+420.6829834 17766.23046875
+421.1849976 26516.8359375
+460.1878967 24692.826171875
+468.2217102 61372.6640625
+469.2305603 19236.802734375
+477.2168274 16789.19140625
+483.7200928 33570.69140625
+485.2476196 231531.71875
+486.2503967 59002.81640625
+488.1841736 53111.0234375
+492.2293091 153309.828125
+492.7313538 69655.5703125
+493.2305298 31803.74609375
+495.2276611 48319.015625
+496.2247314 19304.5859375
+503.225769 19803.2421875
+503.7233276 21835.95703125
+504.2194519 17755.66015625
+505.2142029 65623.1953125
+506.2039795 52982.82421875
+512.2268677 31185.78515625
+512.7263184 35091.98828125
+521.2333374 31640.806640625
+521.7333984 27907.58984375
+523.222168 452989.75
+524.2249146 127423.234375
+525.2276611 33722.484375
+555.2493286 27251.23046875
+567.2591553 18723.685546875
+571.7474365 66706.203125
+572.2745972 326767.59375
+572.7474976 39000.890625
+573.2782593 98759.90625
+576.2636719 40962.37109375
+576.7643433 18880.98046875
+577.2661133 27000.181640625
+577.758667 19050.748046875
+580.2610474 92374.390625
+580.7548828 2603319.25
+581.2561646 1760920.0
+581.6505127 18044.974609375
+581.7578125 704891.125
+582.258728 157195.046875
+589.2675171 80396.546875
+589.7695923 43858.44140625
+598.2738037 75697.21875
+598.7741089 27262.83203125
+599.2759399 21941.9140625
+599.7759399 108839.2265625
+606.2579956 39304.78515625
+624.2677002 68538.390625
+625.274292 30649.740234375
+673.3233032 416921.6875
+674.3259277 182180.46875
+675.3307495 22690.283203125
+693.2896118 22328.875
+711.2955933 26070.107421875
+802.3640747 110935.0
+803.3659668 65404.94921875
+818.8619385 20261.43359375
+873.4006348 112862.34375
+874.3982544 50069.26171875
+875.4130249 21536.42578125
+1002.464478 17729.330078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.168.168.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=168"
+RTINSECONDS=18.06682798
+PEPMASS=598.27001953125
+CHARGE=2+
+50.19737625 13784.1953125
+58.13424683 16072.529296875
+58.13710022 16645.435546875
+58.65273285 12364.4345703125
+64.52612305 72255.7578125
+64.53044891 48994.85546875
+64.58191681 40515.94140625
+64.58616638 36086.19921875
+64.63814545 16996.767578125
+64.64146423 14874.265625
+74.81194305 20608.447265625
+74.8609314 13565.90234375
+149.5742645 49909.1640625
+167.0916748 33093.88671875
+169.0596161 26571.466796875
+175.1177216 327318.5
+176.1206665 17239.599609375
+177.0758209 70084.6171875
+178.0599976 331650.1875
+178.3515778 62640.1015625
+179.0631561 33652.2265625
+183.0753937 27633.267578125
+186.0858307 113588.96875
+194.1017914 41739.1015625
+195.0863037 4338243.5
+195.1281281 21824.361328125
+196.0892029 415045.6875
+197.0922546 17962.640625
+200.1014709 24552.86328125
+206.0911407 149015.796875
+207.0914154 21901.259765625
+212.1147614 18399.44140625
+218.1026764 57426.32421875
+240.0965424 22570.333984375
+246.0968628 625615.0625
+247.0994263 97907.2890625
+249.0977936 17699.009765625
+257.1226196 108229.53125
+259.1270142 17638.859375
+260.1123047 101969.1953125
+261.1182251 18091.28515625
+270.0965271 123726.71875
+278.1491394 28446.44140625
+283.1434326 40999.4453125
+287.1232605 150636.9375
+288.1072388 1646907.875
+289.1099243 234301.375
+290.1139221 24565.732421875
+294.1179504 31502.82421875
+295.1485901 32723.326171875
+302.1328125 17526.251953125
+303.1424255 47833.73046875
+305.1337891 3195283.0
+305.2159119 19749.513671875
+306.1189575 1242674.625
+307.1213989 187759.84375
+308.1229553 24772.3046875
+311.1362 53288.29296875
+312.1174011 42333.55859375
+321.1539612 333520.3125
+322.1568298 57019.57421875
+323.1442261 1145816.25
+324.1464539 160417.140625
+325.1535339 23018.845703125
+328.1600037 19753.865234375
+329.1438293 61034.9765625
+338.1803589 450239.90625
+339.1410828 21046.205078125
+339.1831665 74322.7578125
+347.1540222 17288.08984375
+349.1601257 25783.7265625
+351.1373596 14985.6669921875
+358.161377 15464.197265625
+359.144043 54231.49609375
+366.1860046 152738.25
+367.1874695 18786.5390625
+369.1391907 30078.7109375
+376.1699829 135518.328125
+377.1573181 77639.875
+378.1584167 17186.12109375
+386.1629639 25499.478515625
+394.1804504 749572.9375
+395.1808472 132195.171875
+412.190979 26334.234375
+420.6842346 15497.1611328125
+447.6142883 15223.8671875
+460.1916199 22734.64453125
+464.1762085 16995.75390625
+468.2232666 47347.70703125
+478.2073669 18717.533203125
+483.7167664 22897.935546875
+485.2468262 235828.28125
+485.3245239 17043.201171875
+486.2506104 65936.4296875
+488.1870728 66218.4765625
+492.2286377 185770.390625
+492.7302246 113326.4140625
+493.2265625 33455.8515625
+495.2296143 39191.7109375
+496.2325745 16115.1962890625
+503.722168 25808.833984375
+505.2116394 60376.30078125
+506.2018738 61010.61328125
+512.2246094 37931.77734375
+512.7277222 52040.77734375
+521.2336426 41233.1328125
+523.2215576 522777.4375
+524.2245483 141518.78125
+525.2285156 21113.859375
+526.2348633 18832.109375
+530.2461548 21982.837890625
+558.7478638 27311.63671875
+571.7488403 72097.2890625
+572.274231 345896.8125
+572.7503052 39328.3515625
+573.2814941 118112.6796875
+574.2790527 19008.927734375
+576.2617798 55151.83984375
+576.762207 41423.4609375
+577.2539673 20912.6015625
+580.2634277 88041.125
+580.7547607 2603766.75
+581.2560425 1653228.25
+581.3693237 19254.65625
+581.7578125 597534.0625
+582.258728 134064.703125
+589.2679443 57633.578125
+589.7659912 19130.107421875
+598.2712402 69857.6796875
+598.7753906 21282.21875
+599.2763672 40435.44140625
+599.776001 91737.3984375
+624.2695312 49412.66015625
+655.31427 19118.853515625
+656.3027954 23502.47265625
+673.3235474 439073.09375
+674.3262329 169734.375
+675.3323975 40409.23828125
+693.2931519 21708.755859375
+712.3151855 21021.087890625
+802.3643799 109183.3125
+803.3647461 48547.78515625
+873.3980713 109244.96875
+874.3953857 42363.93359375
+1001.441223 35020.953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.169.169.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=169"
+RTINSECONDS=18.17534331
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 66165.703125
+64.53045654 42268.921875
+64.58201599 42063.53125
+64.58615112 30055.814453125
+64.63806152 17263.1328125
+76.28090668 14799.74609375
+82.05438995 14783.30859375
+82.31669617 12922.2001953125
+141.2922821 13696.630859375
+149.5727386 53742.16015625
+167.0914154 49546.5625
+169.0596313 15612.4462890625
+175.1020813 26290.775390625
+175.1177063 325102.65625
+177.0759277 48882.29296875
+178.0598907 334213.875
+178.3424988 88234.4375
+179.0633698 38005.05859375
+183.075119 28005.69921875
+186.0860443 116680.3828125
+192.0753937 14462.4638671875
+194.1022644 44172.28125
+195.0862732 4276021.0
+195.1276855 36983.046875
+196.0891113 425579.3125
+197.092865 27700.669921875
+200.1020966 28618.17578125
+206.0910187 179876.921875
+207.0926971 16861.044921875
+212.1128235 17825.23046875
+218.1021576 59485.85546875
+222.0849609 16795.55859375
+231.0961151 21469.173828125
+234.0982971 14460.2705078125
+239.1134186 16269.3486328125
+240.0960693 23793.08984375
+243.0877228 19845.51171875
+245.3082733 13895.685546875
+246.0967712 645027.25
+247.0997314 60041.3046875
+257.1225281 118225.8984375
+258.124115 19380.658203125
+260.1125488 115100.609375
+261.115509 17424.400390625
+267.108551 18097.54296875
+270.0966797 126194.5859375
+277.1393433 17004.744140625
+278.1499023 33381.89453125
+283.1427307 49946.20703125
+287.1230774 167193.21875
+288.1071472 1680545.5
+289.1100464 210198.625
+290.1130066 19157.3515625
+294.1133728 16948.50390625
+295.1492004 33004.6328125
+303.1433716 14255.3193359375
+305.133667 3147621.75
+306.1188965 1158490.125
+307.1210632 188397.859375
+308.1218872 24237.962890625
+311.1349487 60509.890625
+312.1174316 38234.79296875
+318.1435547 16911.37109375
+321.1536255 328685.75
+322.1565247 58923.36328125
+323.144104 1082466.625
+324.1465149 167517.609375
+325.1497192 15802.201171875
+329.1444092 51273.4921875
+338.1416931 50679.56640625
+338.1804199 396559.09375
+339.1824341 79737.0703125
+346.170929 19343.92578125
+347.1483459 15740.49609375
+347.6506958 17261.396484375
+349.158844 28833.05859375
+351.1306763 16536.234375
+359.1433716 57147.19140625
+366.1861877 122527.4453125
+367.1891174 15629.1904296875
+369.1384583 26776.48828125
+376.1698303 120184.2109375
+377.1578674 76987.3359375
+386.1638794 29814.703125
+394.1805115 683150.0
+394.2409363 25411.271484375
+395.1820984 130797.828125
+396.1835022 20343.828125
+412.191925 32164.548828125
+420.6882324 17094.625
+468.2194824 43018.2890625
+481.5535889 14368.5029296875
+483.2268982 23173.6015625
+484.2182922 22886.0234375
+485.2466736 211771.625
+486.2500305 56606.3125
+488.1853027 44805.68359375
+492.2289124 177160.875
+492.7303772 116663.796875
+493.2308655 22418.109375
+495.226532 60579.76171875
+505.2098999 45948.34375
+506.2053528 55314.33203125
+512.2254639 48633.0
+512.7243042 28609.462890625
+521.2348022 23133.248046875
+521.7396851 17202.359375
+523.2214966 396473.8125
+524.2237549 126438.7421875
+525.2279053 24094.169921875
+555.25177 25178.83203125
+567.2531128 30737.43359375
+571.74823 80016.6015625
+572.2737427 289133.75
+572.7472534 19184.248046875
+573.2763062 89561.9921875
+575.2705688 24498.287109375
+576.2637329 35962.4921875
+577.2661743 29075.6015625
+580.262207 66100.4921875
+580.7543945 2419952.5
+581.2557983 1640876.5
+581.3355103 28511.533203125
+581.7577515 609693.5625
+581.8646851 20823.314453125
+582.2592163 106398.7734375
+589.2655029 63778.23828125
+589.7689819 20181.33203125
+598.2722168 54309.203125
+598.7756958 36800.7421875
+599.2728271 28640.35546875
+599.7765503 81898.1953125
+606.2554932 20868.376953125
+624.267395 45918.95703125
+673.3233032 455372.78125
+674.3250122 174450.59375
+675.3319092 39685.89453125
+693.2861938 19896.61328125
+802.3609619 85069.625
+803.3677368 41406.234375
+873.4003296 87224.9375
+874.4021606 36087.609375
+1058.472412 16679.6484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.170.170.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=170"
+RTINSECONDS=18.28441293
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13425064 15109.138671875
+64.52636719 63885.09765625
+64.53052521 40678.33203125
+64.58222198 33736.8359375
+64.58624268 31015.5078125
+64.63821411 21533.828125
+64.64151764 18516.537109375
+138.3997955 17075.150390625
+149.5671539 63725.578125
+167.0920715 52569.73828125
+169.0595551 38457.375
+175.118042 294529.75
+176.1220551 19039.0859375
+177.0761108 68931.8671875
+178.0601959 364248.84375
+178.0779724 16527.810546875
+178.338028 73309.734375
+179.0652771 17469.064453125
+179.0909729 29281.158203125
+182.0916595 22235.08984375
+183.0758362 27169.197265625
+186.0861511 133007.9375
+194.102417 39096.56640625
+195.0865479 4670899.5
+196.0893555 459339.4375
+197.0921631 30039.998046875
+200.1022339 38328.83984375
+201.0865631 16973.357421875
+206.0910645 165742.21875
+212.1142731 20724.384765625
+215.0909271 25396.27734375
+217.1278839 17955.728515625
+218.102478 53978.09765625
+233.1275787 18497.322265625
+234.0985565 20789.9140625
+240.0959778 19063.5625
+243.0855408 24712.54296875
+244.1173859 26254.3125
+245.4078217 17330.611328125
+246.0971832 700768.5625
+246.1257172 33791.03125
+247.0996857 65558.4609375
+251.0932312 16430.26171875
+257.1230469 89042.671875
+260.1129456 114874.8515625
+267.4285583 18088.744140625
+270.0969849 143691.34375
+277.1399841 21045.537109375
+278.1487122 42621.63671875
+280.2586975 17376.826171875
+283.1448975 38452.00390625
+287.1235046 156689.421875
+288.0769958 26537.134765625
+288.107666 1646120.25
+289.1104431 216142.25
+290.1131592 28947.82421875
+295.1490784 23883.404296875
+303.1414185 30081.900390625
+304.1288147 20148.794921875
+305.1342163 3405647.25
+305.2172546 27853.75
+306.0591431 24399.474609375
+306.1195984 1172364.625
+307.1213074 233045.1875
+311.1352844 62715.3984375
+312.1176453 38041.859375
+321.1541443 364146.0625
+322.1564026 73586.0546875
+323.1448059 1244817.25
+323.1891174 35263.51171875
+323.2084045 23998.66015625
+324.1472778 219561.15625
+325.1513977 22334.080078125
+329.1444092 51955.43359375
+331.1481323 21430.828125
+338.139801 28441.330078125
+338.1807251 440116.84375
+338.6440735 25472.4609375
+339.1834106 79640.90625
+349.1593628 24887.509765625
+353.5739746 17114.0
+359.1441345 72379.796875
+366.1865845 130996.2265625
+369.1381836 34460.63671875
+376.1707458 138785.859375
+377.1578674 98536.7578125
+386.1711426 22117.716796875
+394.1373291 13030.21484375
+394.1813049 768369.3125
+394.2395935 25163.44140625
+395.1833801 166348.921875
+396.1860657 19490.33203125
+412.1871643 45796.078125
+421.1846313 20500.11328125
+460.1912231 25942.412109375
+468.2229004 60679.3515625
+469.2155151 20468.228515625
+477.215332 19893.998046875
+483.7178955 23345.958984375
+485.2475281 218088.6875
+486.2484131 67711.078125
+488.1858215 47602.23046875
+492.2296448 149557.5
+492.7297058 82145.2890625
+493.2313232 53059.8828125
+495.2298889 43574.30859375
+505.2116089 47699.98046875
+506.2018127 52621.15234375
+507.2059326 19530.421875
+512.2272949 49405.1640625
+512.729126 35320.20703125
+520.737915 32822.6875
+521.2233276 24085.560546875
+521.7354736 19474.33984375
+523.2226562 512357.90625
+524.2250366 105674.6328125
+525.2275391 27341.76171875
+555.2623291 21656.154296875
+567.2520752 31090.166015625
+571.7497559 83626.0390625
+572.2759399 358842.0625
+573.279541 84549.296875
+576.2645264 31925.79296875
+576.7659912 23660.91015625
+577.2616577 39682.46875
+580.2599487 81254.6796875
+580.7558594 2518171.75
+581.2571411 1669654.75
+581.7589722 678906.8125
+582.2593994 146651.4375
+589.2674561 96666.1953125
+589.7657471 76548.0078125
+598.272644 52364.77734375
+598.7768555 48241.48828125
+599.7797852 68025.40625
+606.2564697 25469.71484375
+624.2667236 68972.0859375
+673.3244629 418714.375
+674.3289795 143273.046875
+711.2977295 18916.083984375
+802.3639526 103496.0390625
+803.3670654 55091.86328125
+873.4005127 131082.328125
+874.4040527 60954.45703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.171.171.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=171"
+RTINSECONDS=18.39104178
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13739395 14462.8037109375
+63.42478561 10901.720703125
+64.52617645 57709.41015625
+64.53047943 39287.62890625
+64.58200073 38620.91015625
+64.58612061 29378.8359375
+64.63819122 18749.5859375
+64.64147949 18151.03125
+68.00830841 11553.9111328125
+74.81229401 12300.6748046875
+74.81647491 12143.7529296875
+76.28107452 12858.736328125
+82.05386353 18962.44921875
+93.12513733 12214.18359375
+101.4586639 11743.111328125
+149.5644226 21457.521484375
+167.0914154 40396.890625
+169.0596619 36354.796875
+175.1177826 288056.21875
+177.0759735 66675.9296875
+178.059967 310046.5625
+178.3454132 77885.8046875
+179.0626678 24082.609375
+179.0918884 15534.93359375
+183.0753174 19007.923828125
+186.0861969 99273.1875
+194.1019897 47153.2890625
+195.0863953 3925372.75
+195.1281586 22019.376953125
+196.0892792 416229.875
+197.0918427 20632.189453125
+200.1018829 30362.5390625
+201.0868683 14698.9599609375
+206.0911713 157556.25
+209.0782013 12298.009765625
+212.1131439 19266.705078125
+218.1025696 60104.94921875
+233.1273956 12914.67578125
+234.0982513 21866.392578125
+240.0960083 26013.767578125
+243.0868378 28919.380859375
+244.1179962 14369.63671875
+246.0969696 583553.375
+247.1003418 76157.34375
+249.0971222 18796.83984375
+257.1228638 99084.1953125
+260.1123352 114251.0
+261.116333 22428.98046875
+270.0967102 127635.6796875
+271.1032715 11955.4658203125
+278.1494141 28056.271484375
+283.143219 37364.953125
+287.1235962 149283.75
+288.1074219 1542443.625
+289.11026 226079.46875
+290.1128235 24269.615234375
+294.117218 21917.76171875
+295.1500549 20147.052734375
+302.1313782 13388.216796875
+303.1429138 22878.982421875
+304.1277771 19501.578125
+305.1340027 3057640.0
+306.1192322 1071750.625
+307.1217041 169787.109375
+308.1224976 28243.8125
+311.1341248 53135.6015625
+312.1174622 39004.265625
+318.1428528 13517.7822265625
+321.1539917 281374.0
+322.1558228 43994.2890625
+323.1445618 986297.3125
+323.2079163 17533.84375
+324.1468811 148959.90625
+325.1448364 19697.22265625
+329.1019287 13356.99609375
+329.144043 57534.046875
+331.1456299 18996.525390625
+337.1594849 14094.1123046875
+338.1429138 52019.45703125
+338.1805725 376315.21875
+338.6434631 22784.34765625
+339.140625 16036.564453125
+339.1833801 53323.80859375
+341.1463623 19673.970703125
+347.1466675 28201.921875
+349.1575928 32311.5546875
+358.1619873 16484.064453125
+359.1445618 74969.6953125
+366.1864624 112681.6953125
+367.1882019 22502.486328125
+369.1367798 25453.921875
+376.1700439 114671.34375
+377.1569824 75016.0703125
+378.1580811 19488.380859375
+386.1637268 26085.9765625
+394.1810303 662847.3125
+394.2407227 25154.40625
+395.1834106 135660.40625
+396.1854248 14400.1171875
+397.6807251 16968.861328125
+398.1722717 16128.2578125
+412.1889954 35224.87109375
+413.1663818 28134.0234375
+420.6816711 16669.087890625
+452.1975403 15173.0908203125
+460.193512 13604.2060546875
+468.2212524 64235.80859375
+469.2147522 12840.6669921875
+477.2203064 15526.4619140625
+478.2026978 17252.697265625
+485.2470093 195853.609375
+486.2513123 48832.30078125
+488.1879272 56236.484375
+492.2290039 177111.0625
+492.7316284 84334.7734375
+493.2296448 24133.3046875
+495.2274475 58342.6171875
+503.7162781 23256.888671875
+505.2146606 39534.671875
+506.205719 60801.328125
+512.2250366 47297.578125
+512.7234497 16516.447265625
+521.2362671 35764.8125
+523.222168 408918.3125
+524.2247925 120389.453125
+525.2293091 26234.81640625
+529.7471313 13914.9619140625
+568.753418 17947.119140625
+571.7507324 74155.828125
+572.2761841 296941.71875
+573.2810059 100851.1796875
+574.2804565 19118.36328125
+576.258667 43626.66796875
+577.2641602 20181.57421875
+580.2625122 81361.375
+580.7554321 2174139.25
+581.2566528 1498640.0
+581.7583618 536439.6875
+582.2600708 115554.2734375
+589.2666016 20226.841796875
+598.2740479 37686.00390625
+598.7759399 33397.2578125
+599.2733154 43697.7734375
+599.7780762 83398.234375
+606.2568359 45298.05078125
+624.2698364 42521.0
+625.2750854 22912.0625
+655.3148804 15391.271484375
+656.3065186 18805.91796875
+673.3244019 399149.21875
+674.3275146 141401.28125
+675.3300171 26945.03515625
+693.2954102 20232.099609375
+802.3641357 84010.5859375
+803.3652344 38529.87109375
+873.3996582 90510.0625
+874.4019775 36376.63671875
+1001.438232 17537.279296875
+1058.478516 19211.52734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.172.172.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=172"
+RTINSECONDS=18.50225735
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52623749 71002.96875
+64.53063965 51527.6796875
+64.5819931 47326.5
+64.58615112 39749.8359375
+64.6379776 25984.833984375
+128.4351959 16551.580078125
+135.7443542 17229.41015625
+149.5732269 54075.3203125
+167.0910797 45101.390625
+169.0596771 21284.123046875
+175.1179047 299774.4375
+177.0762634 68724.3671875
+178.0600739 319579.0
+178.0769958 10766.7158203125
+178.3353271 60582.3671875
+178.3553619 52746.10546875
+179.0639191 40615.8671875
+179.0920715 20316.962890625
+183.0760345 24589.3203125
+186.0861969 116217.8359375
+194.1033173 43346.25390625
+195.0650482 29087.580078125
+195.0865021 4571520.5
+196.0893707 444591.96875
+197.0918884 20519.5234375
+200.1014252 23567.267578125
+206.0912781 149548.6875
+207.0925446 17530.359375
+212.111969 20963.87109375
+213.0853729 24065.564453125
+215.0912933 19904.73828125
+218.1022186 55215.875
+221.1027527 19974.984375
+240.0958252 31572.8203125
+243.0844269 18662.748046875
+246.0970764 632175.625
+247.0999298 90081.6328125
+249.0979309 22191.251953125
+257.1224976 85869.71875
+260.1127014 118560.484375
+270.0971069 138555.40625
+279.1313171 17277.455078125
+283.1429138 43735.640625
+287.1235352 146104.296875
+288.0777893 26863.345703125
+288.1075745 1667154.625
+289.1105652 226422.953125
+290.1126099 20219.857421875
+295.1502686 27187.861328125
+303.1426086 27182.02734375
+305.1341248 3306092.75
+306.1192932 1190269.875
+307.1211548 212013.859375
+308.1262817 22088.5625
+311.1347046 48190.34375
+312.1139221 27569.46875
+321.1539001 344857.90625
+322.1571655 52009.25
+323.1446228 1230360.125
+324.1463928 204799.765625
+325.1539612 23322.478515625
+329.1454468 50284.4375
+338.1424561 50482.62109375
+338.1808167 400431.5625
+338.6455383 31946.943359375
+339.1832581 76739.9921875
+347.1505127 27088.185546875
+359.1459961 79008.109375
+366.1869812 136321.703125
+367.1904297 23598.529296875
+367.2574463 18070.005859375
+369.1385498 36246.64453125
+376.1708679 147923.890625
+377.1580505 68633.8671875
+378.1557922 17805.04296875
+386.1647949 36769.96484375
+394.1812439 764515.25
+394.2401428 23435.052734375
+395.1831665 144529.140625
+396.1827698 19792.26953125
+412.183136 23049.001953125
+420.6836548 25984.349609375
+434.183197 24708.919921875
+461.1907349 17712.111328125
+468.221283 57688.53125
+483.717926 19385.845703125
+485.2479553 192914.390625
+486.2511292 48317.14453125
+488.1861267 48845.33984375
+492.2294006 169616.53125
+492.3029785 23862.587890625
+492.7325439 106775.6328125
+493.2281189 29034.873046875
+495.2280273 46311.21484375
+503.7272339 21017.6171875
+505.2124634 58389.0703125
+506.2059937 65128.71875
+512.2248535 32688.240234375
+512.7283936 20208.703125
+520.2530518 15917.0205078125
+521.2307129 42230.88671875
+523.222229 433581.21875
+524.2260132 146079.875
+541.2330933 18513.3671875
+555.2572632 20524.91015625
+558.7474365 46901.16796875
+571.7508545 60908.6328125
+572.2756348 286552.375
+572.7564087 21950.728515625
+573.2828979 86124.234375
+574.2734375 19118.998046875
+576.2639771 30843.837890625
+576.7642212 44006.0625
+577.2631836 28508.28125
+580.2629395 82370.96875
+580.755249 2662189.5
+581.2565918 1858442.0
+581.7584839 678053.9375
+582.258667 154374.265625
+589.267395 96699.53125
+589.7692261 53606.02734375
+598.2736816 70007.390625
+598.7753906 39983.9609375
+599.7750244 69841.4765625
+606.2612915 23641.1484375
+624.2678223 45404.86328125
+625.2722778 20921.671875
+655.3155518 21212.541015625
+656.3087158 19480.541015625
+673.3249512 430562.34375
+674.3272095 193723.03125
+675.3214111 31208.03125
+693.293335 26039.12109375
+711.2991333 29439.59765625
+784.3547974 23804.08984375
+802.3643799 103887.3203125
+803.3687134 59078.2109375
+873.3990479 107642.859375
+874.397644 39711.3125
+1058.486572 23642.498046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.173.173.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=173"
+RTINSECONDS=18.60919983
+PEPMASS=598.27001953125
+CHARGE=2+
+53.13665771 12973.37890625
+60.70110703 12869.021484375
+61.43375778 12592.49609375
+62.66498184 12671.9072265625
+63.58511734 12660.423828125
+63.58839798 12300.71484375
+64.52626801 60413.0546875
+64.53075409 40105.49609375
+64.58200836 40772.046875
+64.58622742 28860.673828125
+64.63827515 17927.521484375
+64.64172363 17452.546875
+69.75392151 12519.486328125
+70.85108948 13691.052734375
+82.05436707 14893.056640625
+88.70357513 12138.6171875
+104.1298828 12516.0380859375
+110.0660019 13964.892578125
+139.1019135 12590.3935546875
+149.5752411 23605.10546875
+167.091629 44461.66015625
+169.0594177 27886.6484375
+174.5799255 13742.5546875
+175.117981 298385.5625
+177.0759277 56655.13671875
+178.0601349 329058.75
+178.3367157 48341.86328125
+179.0628815 17149.078125
+179.0899353 15953.013671875
+183.0759125 24319.71484375
+186.0862579 86085.8125
+190.1085815 15801.8955078125
+194.1026306 46880.6171875
+195.0865021 4003038.5
+195.1278534 19237.611328125
+196.0893707 429350.09375
+197.0913849 21585.931640625
+200.1013184 22062.0625
+201.0857544 21573.310546875
+206.091095 144860.765625
+207.1122589 16845.63671875
+212.1136475 22660.306640625
+218.1024017 52587.36328125
+221.1003418 13607.5146484375
+222.0861511 18432.12109375
+234.0970764 13458.158203125
+240.0961914 18744.626953125
+243.0871735 17124.861328125
+244.1174316 21440.7265625
+246.0971222 614025.875
+247.0996094 90422.6015625
+257.1225281 113917.2421875
+258.1228027 16100.2822265625
+260.1129761 110716.546875
+261.1160889 13021.0986328125
+270.0976257 113921.109375
+276.1337585 16908.21484375
+277.1384583 15653.912109375
+278.148407 20148.236328125
+283.1426086 53401.40625
+287.1235962 116523.421875
+288.1075745 1513314.25
+289.1101074 208761.9375
+290.1120605 28874.1875
+294.1202698 28395.248046875
+295.1514282 29330.689453125
+303.1445618 24267.052734375
+304.1261902 15020.36328125
+305.1341553 3056757.5
+306.1192627 1114742.5
+307.1213379 187385.046875
+308.1244812 17479.9765625
+311.1346436 40686.4765625
+312.1171265 38492.88671875
+321.1542358 320868.1875
+322.1559143 62812.06640625
+323.1445923 1100774.25
+324.146637 150608.59375
+325.151886 17220.708984375
+329.1437683 67354.890625
+338.1425171 38713.79296875
+338.1807861 389585.71875
+338.644989 15512.8662109375
+339.1424255 15255.533203125
+339.1832581 74599.515625
+341.1413879 17108.462890625
+346.1699219 14550.7216796875
+347.151062 23825.66015625
+349.1588135 16759.81640625
+358.1673279 17014.822265625
+359.1452332 52177.171875
+366.1868591 106526.796875
+367.1854858 19668.94921875
+369.1372681 35102.9375
+376.1703186 125405.328125
+377.1567383 76742.265625
+378.1530762 19981.41796875
+386.1652527 24950.814453125
+389.1530762 21977.109375
+394.1810913 719875.0625
+394.2406311 22389.767578125
+395.1821594 139346.328125
+412.1872864 37906.23046875
+413.1672974 19497.66015625
+420.6842957 15784.4931640625
+421.1869202 18896.4453125
+461.1983643 17786.669921875
+468.2200623 53375.546875
+478.2079773 21945.513671875
+483.7165833 27783.765625
+485.2473755 228233.9375
+486.2512512 52829.75
+488.1868286 59160.8984375
+489.1836853 19673.439453125
+492.2292175 175052.21875
+492.7290344 96441.1171875
+493.2290649 22639.990234375
+495.2277527 56074.3203125
+505.2118835 56384.09375
+506.2045288 67779.296875
+507.2057495 14417.59765625
+512.229126 39128.45703125
+512.7265625 25290.078125
+521.2289429 30742.75
+521.737793 19139.171875
+523.2225342 434042.28125
+523.3098145 27025.025390625
+524.2243042 147172.078125
+525.2319946 37022.65234375
+529.7441406 14423.4599609375
+541.2380981 15254.8662109375
+558.7438965 33339.3828125
+559.2515869 17485.400390625
+571.7511597 72436.7265625
+572.2757568 333044.90625
+573.2801514 92719.140625
+574.2871704 18519.48828125
+576.2608643 28934.8984375
+576.7675171 30294.509765625
+577.2658691 29566.4296875
+580.2635498 87410.5
+580.755188 2247033.75
+581.2565918 1530635.375
+581.6751099 12831.02734375
+581.7582397 565497.625
+582.2600098 125558.3046875
+589.2664795 36161.5390625
+589.7645264 23461.203125
+598.2727661 42965.09375
+598.7714844 19723.30078125
+599.2761841 29121.322265625
+599.7767944 88760.40625
+606.2611694 28104.197265625
+624.2705688 49794.14453125
+625.2683105 20943.30078125
+673.3242188 382765.53125
+674.2102661 18172.478515625
+674.3272705 170697.78125
+675.3250122 31604.048828125
+693.2849121 20388.83203125
+802.3652954 76989.28125
+803.3626709 39036.04296875
+873.4007568 106704.8125
+874.4089355 42954.94140625
+1001.457825 21626.431640625
+1059.491943 17235.279296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.174.174.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=174"
+RTINSECONDS=18.71908053
+PEPMASS=598.27001953125
+CHARGE=2+
+50.38379669 12761.220703125
+51.79442215 13833.203125
+55.31776047 13591.0361328125
+55.32139206 14325.9833984375
+64.52619171 67683.671875
+64.53060913 50357.1796875
+64.58201599 43211.62890625
+64.58609772 35721.98828125
+64.63799286 19125.08203125
+64.64131165 17339.1953125
+74.81190491 18677.724609375
+74.81624603 14144.478515625
+94.05369568 12948.4873046875
+141.984436 14233.40625
+149.5743713 40904.6171875
+167.0917969 36985.22265625
+169.0595245 38347.97265625
+175.1178131 320814.875
+175.1354523 13661.3251953125
+176.1208344 16294.919921875
+177.0760956 60610.05859375
+178.0599213 343261.0
+178.0780945 22074.712890625
+178.3343353 34550.87109375
+178.3534546 56652.5390625
+179.062561 16971.900390625
+182.0913544 21087.626953125
+183.0758972 42793.76953125
+186.0863647 116763.90625
+187.089386 21410.138671875
+194.1028137 43834.59375
+195.0863647 4348161.5
+195.1280212 29913.435546875
+196.0891571 431459.90625
+200.101593 39754.17578125
+205.0606079 17774.564453125
+206.0910339 159038.90625
+212.1122589 20524.783203125
+218.1018066 58990.234375
+222.0847626 21940.20703125
+234.096405 18598.419921875
+239.1117706 18547.216796875
+240.094635 26799.69921875
+243.0855408 31223.189453125
+246.0969086 630330.5
+247.0996399 76641.75
+257.1223755 96472.953125
+260.1127014 104886.359375
+261.1168213 16584.134765625
+266.1254272 17672.70703125
+270.0969543 129903.9296875
+278.1499939 23424.90234375
+283.1420288 41395.75390625
+287.1234131 159069.296875
+288.1073608 1669512.125
+289.1104126 234810.109375
+290.1143494 18575.365234375
+294.117981 24698.2890625
+303.1442871 32021.599609375
+304.1260376 19168.232421875
+305.1338806 3222821.75
+306.1191101 1196227.0
+307.121582 189529.734375
+308.122345 22924.662109375
+311.1352234 56838.13671875
+312.1168213 38065.7109375
+321.1540833 358317.28125
+322.156189 68021.796875
+323.1443481 1167674.5
+324.1460876 191088.859375
+325.1489258 17863.82421875
+329.1439514 43559.1171875
+338.1429443 45463.39453125
+338.1803589 446774.09375
+338.6442566 33509.94140625
+339.1827698 68245.234375
+347.1485596 21373.375
+349.1571045 17980.837890625
+351.1374817 16019.1953125
+358.1627808 26397.32421875
+359.1453247 74093.40625
+360.1502991 19608.982421875
+366.18573 137099.453125
+367.1891785 24484.150390625
+369.1370239 31380.494140625
+376.1702576 116021.5703125
+377.1551819 87104.46875
+386.1642151 26265.857421875
+394.1807251 721421.6875
+394.2396851 28276.177734375
+395.1817932 145239.21875
+412.1903687 29233.18359375
+460.1911926 19458.80859375
+468.223053 52960.8203125
+469.2253723 26638.76953125
+485.2468567 225410.390625
+486.2503357 63080.4375
+488.1853333 52629.390625
+492.229248 177656.453125
+492.730896 95652.5859375
+493.2321167 40602.47265625
+495.2289124 64899.296875
+496.2259827 17112.607421875
+503.7206116 18410.365234375
+505.2131958 54232.73046875
+506.2055664 57897.9375
+506.7297668 16166.1015625
+507.2043457 21908.78125
+512.2232666 34032.18359375
+512.7266846 26492.59765625
+520.7351074 16936.453125
+521.2330933 51391.5546875
+521.7356567 21032.73046875
+522.2316284 15728.2880859375
+523.2214966 505643.4375
+524.2253418 140995.140625
+525.2264404 38236.38671875
+529.7427368 20139.125
+554.2677612 21843.654296875
+555.2590332 17437.275390625
+558.7404175 32720.71875
+568.2526855 19846.666015625
+571.7511597 101586.6171875
+572.2752075 352197.65625
+573.2817383 126474.7578125
+574.2706909 20730.025390625
+576.2601318 47487.71875
+576.7633057 21026.76171875
+577.7648315 18292.373046875
+580.2653809 54655.3984375
+580.7550049 2577048.0
+581.2561035 1596797.375
+581.3662109 23098.505859375
+581.7577515 615219.0625
+581.8632202 20395.615234375
+582.2581787 105795.59375
+583.2702026 21998.0703125
+589.2644043 51924.84375
+589.7700195 21166.626953125
+598.2732544 54432.60546875
+598.7724609 39013.828125
+599.2770996 43746.5390625
+599.7768555 75501.6953125
+606.2556152 40344.11328125
+624.2662964 49688.23046875
+673.3244019 400239.84375
+674.3269043 143783.171875
+675.3284912 29354.29296875
+693.2844238 22742.41796875
+711.3210449 19283.982421875
+802.3644409 85357.5703125
+803.3622437 32838.4375
+873.4017944 111076.6015625
+874.3977661 39795.87890625
+1001.4552 29341.458984375
+1058.473633 16597.390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.175.175.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=175"
+RTINSECONDS=18.82747822
+PEPMASS=598.27001953125
+CHARGE=2+
+53.96287918 14727.294921875
+59.68182373 16751.9140625
+64.52628326 69909.609375
+64.53052521 47131.515625
+64.58208466 53733.453125
+64.58623505 27860.763671875
+64.63816071 19357.40625
+64.64147949 18935.798828125
+66.94987488 17248.203125
+74.81203461 18902.33203125
+76.28608704 17611.01953125
+79.26437378 15172.92578125
+91.66400909 17482.70703125
+149.5729065 55731.1875
+167.0916901 44101.75390625
+169.0593872 39892.84375
+175.1017456 29854.587890625
+175.1178894 287509.96875
+177.0760193 64261.8359375
+178.0601044 355468.4375
+178.3352814 60943.15625
+178.3543701 47636.62109375
+179.0629578 32955.8984375
+179.091217 19791.1484375
+186.0862732 124903.8515625
+194.1020966 34438.828125
+195.0447845 27912.171875
+195.0865173 4490270.5
+196.0345154 16835.056640625
+196.0893707 479357.0625
+197.0909271 28656.6015625
+200.1027679 20155.630859375
+201.0858917 26984.96875
+206.0909729 163761.4375
+218.1024017 55283.26953125
+234.0975342 22769.400390625
+238.538147 18239.119140625
+242.1026459 17364.576171875
+246.0970612 679393.0
+247.1000977 69949.8359375
+249.0957336 26146.412109375
+257.1227112 95367.25
+260.1126404 122271.953125
+270.0974426 127034.8984375
+278.1199951 23296.01171875
+278.1509399 22375.494140625
+283.1459045 41778.73046875
+287.1235962 148771.84375
+288.0544434 23796.73828125
+288.1075745 1589098.25
+289.1101074 231036.328125
+290.1107483 25228.640625
+294.1185303 18644.025390625
+295.1482239 17837.521484375
+303.1420288 43635.21484375
+305.1341248 3329742.0
+306.1193848 1221287.5
+307.1217957 188200.515625
+308.1237183 19018.05859375
+311.1360168 45808.25390625
+312.1159668 35662.35546875
+320.1296997 20815.45703125
+321.1542969 364026.4375
+322.1571655 68294.546875
+323.1105652 24884.439453125
+323.1447144 1227349.0
+324.1470337 166534.328125
+329.144043 49330.6875
+331.1501465 28171.357421875
+338.1418762 72668.0859375
+338.1809082 448237.0
+339.1832275 58871.77734375
+349.1590576 36095.81640625
+358.1662598 22782.283203125
+359.1458435 80292.21875
+366.1861877 123623.171875
+369.1407166 26108.775390625
+376.1703796 117963.0859375
+377.1585999 76867.796875
+386.1650085 20217.548828125
+394.1368408 15959.4072265625
+394.1811829 755133.0
+395.1827087 170996.875
+396.184082 21442.40234375
+412.194397 41047.48828125
+452.1812439 22670.71484375
+460.1859131 20924.59375
+468.2201233 42699.9140625
+469.2184448 21849.666015625
+477.218689 21054.046875
+483.7147522 18770.5546875
+485.2469177 198275.703125
+486.2509766 65515.390625
+488.1877747 44487.25390625
+492.2298584 173182.71875
+492.7323914 74747.7265625
+493.2335815 31793.515625
+495.2286377 54758.7421875
+496.229187 18782.734375
+503.7191467 25817.00390625
+505.211792 47859.25390625
+506.2110596 34125.046875
+507.2053528 19115.01171875
+512.2254028 48977.0
+521.2314453 37910.2109375
+523.2224121 477372.25
+524.2248535 137469.25
+525.2286987 28132.09765625
+529.7421265 20468.931640625
+555.2479858 18045.09375
+558.7399292 26228.23828125
+571.7518921 87018.421875
+572.2749023 374883.4375
+572.7462158 20447.583984375
+573.2824707 122190.296875
+574.2838135 23297.529296875
+576.2626953 42046.203125
+576.767395 23022.25390625
+577.2664795 27640.21484375
+580.2637329 97176.234375
+580.7554932 2703327.25
+581.2565308 1916772.25
+581.3656006 40882.07421875
+581.7582397 684638.8125
+582.2581177 111380.2890625
+589.2681274 95288.453125
+589.767395 74211.515625
+598.274231 87683.3671875
+598.7736206 33010.87109375
+599.7797852 51138.765625
+606.257019 48292.1484375
+624.2692261 61833.34375
+625.2775879 25061.41796875
+655.3126221 24521.7421875
+673.3251343 485818.375
+674.3267822 167474.203125
+675.3273315 25206.3515625
+693.2897949 29009.3046875
+802.3658447 123552.9375
+803.3679199 48546.93359375
+873.4008789 124714.0390625
+874.4049683 47973.76953125
+990.5216675 17298.94921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.176.176.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=176"
+RTINSECONDS=18.93443856
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13422012 16188.736328125
+64.52629852 69028.5703125
+64.53046417 38837.40234375
+64.58203888 48408.78515625
+64.5861969 34414.015625
+149.5738678 48535.578125
+167.0915375 46052.328125
+169.0593109 26509.5390625
+175.1177979 293523.15625
+176.1199036 16330.1572265625
+177.0758209 67373.1015625
+178.0599213 342495.875
+178.3332367 22470.951171875
+178.3520966 54335.82421875
+179.0912781 21056.375
+182.0922241 24710.220703125
+186.0864105 108782.9375
+194.1032562 38610.26953125
+195.0863495 4146115.75
+195.1278839 32513.8515625
+196.0891418 422523.40625
+197.0915527 34205.50390625
+200.1018982 20748.654296875
+206.0909729 170170.96875
+207.094101 17497.791015625
+213.0822906 17763.203125
+218.1018219 62897.71484375
+218.9526367 14384.6923828125
+222.0868378 20163.779296875
+240.0966797 29329.71484375
+243.0853882 18109.5234375
+246.0968475 637701.875
+247.0995789 80628.3984375
+249.0953369 16994.54296875
+257.1229248 101298.140625
+260.1127319 118138.6796875
+261.1151428 16936.720703125
+270.0967102 124774.6953125
+278.149231 28388.3125
+283.1438599 40904.10546875
+287.1236877 157861.9375
+288.1073303 1602768.875
+289.1101685 219298.671875
+290.1126404 17656.623046875
+295.1494446 26221.173828125
+302.1335144 16010.99609375
+303.1436157 30845.423828125
+303.6315308 13386.109375
+305.1338806 3252507.5
+306.1190186 1165674.875
+307.1210632 206895.640625
+308.1230774 29385.900390625
+311.1352234 40433.20703125
+312.1167908 31453.4140625
+319.161377 14182.78515625
+321.1539001 343409.46875
+322.1578369 58193.34375
+323.1442871 1140082.0
+324.146698 177507.53125
+325.1504517 23071.474609375
+329.1437378 41545.68359375
+338.1421814 60512.859375
+338.180603 392560.65625
+339.1825562 50429.6171875
+347.1496887 21926.1328125
+349.1598816 28333.1328125
+351.131897 19653.845703125
+358.1645203 17374.923828125
+359.1438599 66924.2265625
+366.1861267 121450.578125
+367.1879578 28051.419921875
+369.138031 18901.912109375
+376.1703796 120176.90625
+377.1564331 90659.8671875
+378.1634827 15753.6806640625
+386.1631165 32671.955078125
+394.1807861 736579.375
+394.2402344 23036.962890625
+395.1824646 135287.78125
+396.1882324 16997.857421875
+412.1904602 27946.47265625
+420.6822815 24476.630859375
+468.2208252 55426.828125
+469.2172852 18298.599609375
+477.2146912 27902.583984375
+482.1907959 17957.96875
+484.2190552 15460.65234375
+485.2469788 212594.78125
+486.2500305 55009.109375
+488.1859131 60762.20703125
+492.2290039 170811.953125
+492.7298889 107471.0703125
+493.2276917 37642.8359375
+495.225769 60000.94140625
+503.2217407 15713.8232421875
+503.7196045 21356.685546875
+505.2121887 57620.109375
+506.2039185 61321.9375
+512.2293091 49971.9140625
+512.7272949 19370.3203125
+520.7407227 23115.25
+521.2289429 38460.87109375
+521.7348633 16589.3125
+523.2217407 516837.1875
+524.223999 147320.875
+525.2366333 30366.171875
+541.2358398 26104.259765625
+555.2522583 20083.05078125
+558.7487793 37321.50390625
+571.7515869 95355.2109375
+572.2739258 333849.53125
+572.7590332 18378.34765625
+573.2802124 102061.625
+574.2783813 28657.025390625
+576.262207 44482.30078125
+576.7634888 36681.046875
+580.2635498 93341.875
+580.7549438 2495530.5
+581.2562256 1690499.125
+581.6500244 16960.431640625
+581.7578735 624827.3125
+581.864502 19925.30859375
+582.258667 139611.5625
+589.2661133 47771.14453125
+589.7645874 19900.873046875
+598.2723389 69596.5703125
+598.7745972 31525.802734375
+599.2764282 48707.32421875
+599.777771 89900.8671875
+606.2553711 44394.71875
+607.2601929 26114.220703125
+624.2653198 42674.29296875
+625.2711182 27624.349609375
+655.3103638 24345.595703125
+656.3052368 17668.05859375
+673.3242798 448188.65625
+674.3261719 144400.953125
+675.3325806 31685.791015625
+693.2914429 20489.0234375
+711.3023682 23728.458984375
+784.361084 18251.869140625
+802.3627319 105818.90625
+803.3708496 54153.421875
+873.2230225 14897.1279296875
+873.399353 81072.125
+874.3947144 42314.5546875
+1001.455261 29183.83984375
+1058.474121 17480.697265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.177.177.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=177"
+RTINSECONDS=19.04379135
+PEPMASS=598.27001953125
+CHARGE=2+
+61.79163361 15788.1806640625
+64.52623749 67970.578125
+64.53045654 45689.94921875
+64.58197021 56823.53515625
+64.58614349 37473.390625
+64.63828278 17454.396484375
+64.64150238 21558.072265625
+74.8119812 16378.2421875
+74.81595612 17497.744140625
+82.05438995 25928.1875
+95.89861298 14461.3662109375
+133.5730743 16675.728515625
+135.0401611 15883.6982421875
+135.4214783 13981.3408203125
+149.5648804 48410.98828125
+149.5776825 27276.140625
+152.9465179 17803.302734375
+160.2238007 16197.4912109375
+167.0920105 31656.26171875
+169.0600281 22870.939453125
+175.101944 28716.310546875
+175.1177063 331542.09375
+176.1213837 23559.560546875
+177.0755463 70231.5078125
+178.0599518 363002.875
+178.3337708 26999.232421875
+178.3527069 63944.05859375
+179.062851 31303.013671875
+179.0912781 20461.904296875
+182.0909271 24998.0703125
+183.0740356 25461.1796875
+186.0862122 92801.140625
+191.3350525 17042.919921875
+194.1022491 35319.609375
+195.0863037 4456400.0
+196.0892334 419915.25
+197.0920563 37226.16015625
+200.1022339 23546.70703125
+206.0910339 149673.6875
+207.0933533 19956.787109375
+212.1100769 22582.208984375
+213.0848694 15647.1416015625
+218.1019592 67139.5
+234.0962372 19311.994140625
+239.1126099 20394.921875
+240.094574 23585.009765625
+243.0871124 25715.64453125
+244.1184692 28854.169921875
+246.073761 9833.8076171875
+246.0968781 638397.5625
+247.0997772 77729.234375
+249.0961304 21939.541015625
+250.8100433 14960.7529296875
+257.1228333 107099.8515625
+260.1126404 132001.921875
+267.1074524 19707.197265625
+270.0964966 119857.3359375
+277.137146 19792.67578125
+278.1190491 22556.74609375
+278.1507568 28587.62890625
+283.1431885 50573.19921875
+287.1235352 153502.28125
+288.1071777 1613102.375
+289.1100159 249530.890625
+295.1497498 35263.44140625
+303.1425476 53009.875
+304.1263733 21291.19921875
+305.1336975 3361105.75
+305.2161255 24856.126953125
+306.118927 1165396.75
+307.1212158 190870.921875
+308.1236572 29574.06640625
+311.1359558 50805.875
+312.1177063 39770.6015625
+321.1540222 352242.15625
+322.1558228 56109.1796875
+323.0993958 28517.0859375
+323.1442566 1235705.5
+324.1459351 201544.765625
+325.1469727 20409.08984375
+328.1585083 19776.416015625
+329.144104 53246.5390625
+338.142334 48051.12890625
+338.1803589 434962.96875
+338.6453247 28203.75390625
+339.182373 72669.515625
+347.1469727 23398.666015625
+349.15802 23948.912109375
+359.1439209 73774.5546875
+366.1854248 145846.515625
+367.1880493 34480.42578125
+369.1347961 20981.169921875
+376.170166 153518.765625
+377.1554565 80225.046875
+386.1634216 27843.671875
+389.1545715 25353.07421875
+394.1806335 750149.375
+395.1828308 157386.203125
+396.1825562 22683.06640625
+397.6743774 23263.1015625
+412.1921692 38099.640625
+413.1624756 17820.86328125
+420.6836853 24324.6796875
+428.1933899 17324.822265625
+430.1875916 21785.458984375
+460.1891785 30253.90234375
+468.2235107 34962.58984375
+477.2122498 26191.458984375
+478.2077637 19286.2890625
+483.7185364 17658.876953125
+485.2471008 203504.734375
+486.2480774 69528.7421875
+488.1842346 42339.11328125
+489.1867676 19031.845703125
+492.2296753 168898.359375
+492.7307739 111727.0703125
+493.2340088 26781.521484375
+495.2263489 57332.765625
+496.2225952 19279.83984375
+503.7160339 16985.150390625
+505.2112427 61318.95703125
+506.2044067 49634.55078125
+512.2272949 55457.00390625
+512.7250977 25907.837890625
+521.2336426 51808.484375
+521.7358398 34923.80859375
+523.2214966 442746.90625
+524.2242432 138672.546875
+531.1601562 19762.7578125
+571.7510376 97107.90625
+572.2749023 338199.46875
+572.7556152 22994.4765625
+573.2805786 113205.671875
+574.2792358 20496.4765625
+576.2597046 65648.125
+576.7678833 22611.291015625
+577.2630615 33544.21875
+580.2617188 91598.859375
+580.7546997 2504286.75
+581.2559204 1848503.75
+581.3652344 29531.05078125
+581.7572632 669496.625
+581.8639526 23934.513671875
+582.258667 124390.0859375
+589.2670288 70701.703125
+589.7650757 24842.94140625
+598.2719116 59066.59375
+598.7781982 41737.15625
+599.7771606 80823.90625
+606.2602539 41002.22265625
+624.2704468 67948.515625
+673.3240356 464410.0625
+674.328125 171606.859375
+675.3270264 43568.23046875
+802.3613281 111055.3203125
+803.3649902 41398.9375
+873.3989258 102931.9921875
+874.4019775 47378.703125
+1001.451416 22426.462890625
+1058.483276 19847.138671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.178.178.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=178"
+RTINSECONDS=19.15143912
+PEPMASS=598.27001953125
+CHARGE=2+
+55.4916687 13046.0380859375
+58.13722992 18508.671875
+64.52622986 72260.78125
+64.53070068 50319.23046875
+64.58196259 55157.234375
+64.58618164 28329.228515625
+64.63796234 22279.349609375
+73.05436707 14013.259765625
+149.5655518 43327.05859375
+154.6229401 17714.892578125
+167.0915527 39255.87109375
+169.0605011 20150.951171875
+175.1036224 10616.33203125
+175.1178436 314373.15625
+176.1219482 15851.1728515625
+177.0759277 65589.9375
+178.0435791 25640.869140625
+178.0600586 307676.6875
+178.078064 17350.32421875
+178.3359375 50708.95703125
+178.3551178 35195.4296875
+179.0634613 21354.5546875
+183.0751648 24980.671875
+186.0859375 106210.5234375
+194.1027679 53992.88671875
+195.0864258 4369817.0
+196.0892487 405396.90625
+197.0919037 32939.75
+200.102356 25907.9375
+206.0911713 166712.09375
+218.1018066 55207.125
+221.1005859 15618.912109375
+234.097702 29511.697265625
+240.0959015 25546.740234375
+243.0852661 20870.173828125
+246.0970001 666523.8125
+247.0990143 71631.6875
+248.1118774 14824.7939453125
+249.097229 29116.62890625
+257.1230164 102891.078125
+260.1125793 133226.828125
+270.0968018 135151.21875
+271.1020508 22903.392578125
+277.1382141 18271.05859375
+283.1427917 48827.57421875
+287.1236267 168586.03125
+288.1074829 1611117.0
+289.1104126 217682.921875
+290.112854 28205.52734375
+294.1167297 25304.900390625
+303.144043 32394.48046875
+304.1297607 18153.5
+305.1340637 3297086.25
+306.1193542 1161321.25
+307.1215515 199809.984375
+308.1229553 22243.306640625
+311.1341248 37523.6328125
+312.1181335 41273.75
+321.1542053 371948.96875
+322.1565857 57834.28125
+323.1445618 1153828.0
+324.1470642 195850.953125
+325.1495972 17793.87890625
+329.1445923 52747.1640625
+338.1446228 31782.333984375
+338.1808167 420715.125
+338.644104 19096.5078125
+339.182373 72703.203125
+340.1846008 17699.958984375
+346.1694031 17201.900390625
+347.1462097 23667.1484375
+349.1602783 18389.89453125
+358.164093 18221.837890625
+359.1448669 76359.40625
+366.1864624 124060.3203125
+367.1902161 20419.44921875
+369.1417236 30241.787109375
+376.1705933 122236.1328125
+377.1570129 69244.703125
+378.1560059 14969.7841796875
+386.1642761 29191.609375
+394.1810913 715302.6875
+395.183075 142989.453125
+396.1856995 34428.1171875
+412.1877747 21463.14453125
+413.1756897 15861.9990234375
+468.2217407 53111.9453125
+478.2081604 20396.37109375
+485.2478638 234961.4375
+486.2504272 61936.70703125
+488.1859741 58231.10546875
+492.2297058 193248.828125
+492.7317505 117489.2734375
+493.2324829 20133.498046875
+495.2284851 56425.44921875
+496.2304382 23610.369140625
+503.7209473 23327.77734375
+505.2114868 54150.8203125
+506.2026062 51125.26953125
+507.1981812 20609.75
+512.2283325 32745.66015625
+512.7294312 26416.236328125
+520.7399292 23271.90625
+521.2333984 35429.171875
+523.2225342 477184.625
+524.2248535 144013.40625
+525.2341919 18882.857421875
+530.2457275 17283.990234375
+554.2687988 16980.98046875
+555.2520142 19249.376953125
+558.7520752 27578.939453125
+559.2462158 17648.20703125
+571.7508545 112575.5390625
+572.2756958 336337.5
+572.7475586 35439.59765625
+573.2796021 116187.5390625
+574.2819214 27943.166015625
+576.2642822 32253.7734375
+576.7675781 31523.6953125
+577.2671509 21500.775390625
+580.262207 82305.4609375
+580.7557373 2659903.0
+581.2567749 1810676.0
+581.3651123 22967.1796875
+581.7584839 586278.125
+582.2615967 133982.234375
+589.2711182 66631.6484375
+589.7646484 45682.90234375
+598.2724609 60217.25390625
+598.7734375 48569.0390625
+599.2766113 26317.86328125
+599.77948 70466.25
+606.2576904 50230.7890625
+624.2680054 66636.3828125
+625.2817383 19638.630859375
+673.3252563 465735.8125
+674.3269043 181493.8125
+675.3287964 39258.23828125
+693.2932739 19250.990234375
+802.3652954 112458.5
+803.3678589 35406.19140625
+873.4001465 126960.2265625
+874.3974609 45614.86328125
+1001.462219 18869.6640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.179.179.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=179"
+RTINSECONDS=19.25973358
+PEPMASS=598.27001953125
+CHARGE=2+
+55.71576309 14427.4560546875
+56.45726395 13508.5615234375
+58.13428879 13292.45703125
+64.52619171 73260.96875
+64.53063965 58732.90234375
+64.58196259 54964.75390625
+64.58618164 32650.71875
+64.63816833 21733.740234375
+74.81668091 15664.501953125
+87.8238678 15784.94921875
+144.7523804 16346.7529296875
+149.5631409 34640.765625
+149.576828 29371.541015625
+167.0918121 41227.03515625
+169.0602264 31850.908203125
+175.1176453 304894.1875
+176.1201477 15206.3642578125
+177.0757294 74225.390625
+178.0598602 370062.5625
+178.0728607 8176.7670898438
+178.3471527 91905.359375
+179.0635986 18733.138671875
+179.091095 14828.4501953125
+182.0909119 17429.478515625
+183.0756073 29210.85546875
+186.0859222 117867.703125
+187.0708313 17113.28515625
+194.1033173 29383.939453125
+195.0863342 4588976.0
+195.1283722 26605.095703125
+196.0890808 469477.71875
+197.092453 28886.2578125
+200.1019592 30371.810546875
+201.0853424 28126.193359375
+206.0910645 185878.921875
+207.0921631 25316.873046875
+218.1024628 59874.26953125
+221.1016083 19437.45703125
+222.0868225 20120.37890625
+240.0953979 25924.70703125
+243.085907 26536.13671875
+246.0968475 682093.0625
+247.0993805 104420.296875
+249.0984955 20047.673828125
+257.1227722 99707.5546875
+260.1121826 127867.328125
+270.0965576 143989.46875
+271.0991516 19603.28515625
+276.0694275 17751.466796875
+283.1436462 46264.18359375
+287.1230774 189386.53125
+288.1072388 1740302.75
+289.1097107 219212.5625
+290.1116638 17930.0390625
+294.1160583 24790.21484375
+295.1486816 35152.84375
+303.1419983 25243.0703125
+304.12677 19707.599609375
+305.133728 3454000.25
+306.1188965 1304711.125
+307.1209106 207635.15625
+308.1205139 16664.525390625
+311.1343689 49527.9453125
+312.1161499 35017.703125
+321.1542053 364997.09375
+322.1568604 67385.6796875
+323.0982971 18607.7890625
+323.1442261 1180019.375
+324.146759 183857.375
+329.1436462 62599.6875
+331.1485291 16782.919921875
+338.14151 71999.4921875
+338.1803589 439245.5625
+338.6484985 17643.47265625
+339.1832886 90821.9453125
+341.1431885 19161.375
+347.1487122 24246.791015625
+351.1303711 20534.0390625
+359.1439514 69551.953125
+366.1860962 163409.640625
+369.1361084 24287.453125
+376.1699219 118002.1015625
+377.1569824 67865.2109375
+378.1592712 19019.306640625
+386.1653137 36530.84765625
+394.1206665 16194.9033203125
+394.180603 768899.8125
+394.2398376 27735.095703125
+395.1824951 169411.5625
+396.1871948 26458.005859375
+412.1875916 44054.84765625
+450.2098083 18412.197265625
+468.2210388 57673.24609375
+477.2199097 30140.982421875
+483.2281799 24998.6640625
+483.7191162 23292.232421875
+485.2470093 243116.859375
+486.2500916 69119.5390625
+488.1856079 61396.47265625
+489.1905518 24931.224609375
+492.2290039 195542.578125
+492.72995 113534.90625
+493.2303467 48446.27734375
+495.2265015 68542.4375
+496.2348633 23525.8046875
+503.2248535 25572.81640625
+503.7135925 21009.54296875
+505.2127075 73074.8671875
+506.199707 34830.02734375
+512.2260132 45843.15234375
+512.7265625 32075.896484375
+520.7435913 20035.49609375
+521.2329102 28177.650390625
+523.2214355 562267.75
+524.223999 126768.671875
+525.2328491 29215.591796875
+554.2608032 20137.525390625
+558.7398071 25095.33203125
+568.2603149 21283.1953125
+571.7485962 67641.7734375
+572.2745361 361002.53125
+572.7456665 21584.26953125
+573.2814331 110289.796875
+576.2592773 41385.8671875
+577.2623291 22756.984375
+580.2625122 99033.4375
+580.7543945 2655169.5
+581.2557373 1766036.625
+581.3379517 29205.45703125
+581.366272 39031.22265625
+581.7574463 614683.8125
+582.2575073 136913.484375
+589.2682495 86089.796875
+598.2703247 51540.375
+598.7741089 36092.36328125
+599.2749023 36519.80859375
+599.7763672 56004.72265625
+624.2684326 63920.13671875
+655.3079224 27359.837890625
+656.3004761 26301.66796875
+673.322876 445825.15625
+674.3269043 157569.796875
+675.3304443 28359.15234375
+693.2927246 24904.2421875
+802.3624878 99355.3046875
+803.3634033 36970.296875
+873.3998413 94316.0390625
+874.3968506 43552.48828125
+875.4204102 25061.66015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.180.180.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=180"
+RTINSECONDS=19.36748165
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52617645 47864.53125
+64.53046417 37424.65625
+64.58198547 31751.88671875
+64.58618164 22942.529296875
+64.63808441 15625.53515625
+67.68249512 11238.5146484375
+69.74759674 10698.6748046875
+82.0539093 12956.6171875
+86.13004303 12404.4296875
+86.20803833 12472.4189453125
+105.2194977 12183.5458984375
+113.3922195 11318.5576171875
+149.5717316 46975.3203125
+167.0913544 43531.7265625
+169.0604401 27887.423828125
+175.1177979 288117.78125
+176.0486145 12208.8662109375
+176.1220703 14374.517578125
+177.0759583 70557.3203125
+178.059967 348454.9375
+178.0963287 15240.51953125
+178.3503113 65228.41796875
+179.0630493 33246.01953125
+179.0921326 23854.0546875
+182.0901031 19378.994140625
+183.0752869 28944.783203125
+186.0861816 105405.265625
+190.0589447 12266.1396484375
+194.102417 30208.681640625
+195.0863647 3824358.0
+195.1279449 30232.8671875
+196.0892029 390879.46875
+197.0904388 33682.77734375
+200.103714 25298.771484375
+201.086853 14688.7470703125
+206.0911407 165663.703125
+218.1027374 74542.7109375
+222.0858002 16480.01171875
+239.1125031 14018.4345703125
+240.0953674 19168.404296875
+243.0860748 21880.904296875
+244.1173706 16604.283203125
+246.0968628 626235.0
+247.0996399 82381.9140625
+257.1227417 100764.9921875
+258.9727783 11904.4677734375
+260.1125793 108009.921875
+270.097229 131066.25
+277.1380005 23767.166015625
+278.1481628 21109.5078125
+283.1435852 49814.46484375
+287.1239929 144194.75
+288.1073914 1562688.625
+289.11026 249944.53125
+290.1130371 17754.083984375
+294.1182556 15597.62109375
+295.1481323 20365.15625
+303.1435547 37773.44921875
+304.1261597 19177.15234375
+305.1338806 3073237.5
+306.118927 1119264.875
+307.1215515 205439.9375
+308.1234131 18980.11328125
+311.1356201 54870.11328125
+312.1170959 35818.5390625
+321.1538086 317270.25
+322.1555786 54862.859375
+323.0983887 18404.970703125
+323.1443176 1069082.5
+324.1470337 164241.21875
+329.1438904 42551.17578125
+331.1470337 22632.25390625
+338.1437683 28521.365234375
+338.180603 392149.1875
+338.6474915 18147.982421875
+339.1824646 67329.3515625
+347.1453247 21633.6953125
+349.1577148 24080.6796875
+351.1331787 16122.0341796875
+358.1681213 13777.396484375
+359.1444702 53932.82421875
+366.1855774 122851.2890625
+369.1378479 27009.310546875
+376.1704712 107212.6796875
+377.1551514 89106.75
+386.1635437 30241.384765625
+394.1808167 672602.0
+394.2396545 25424.453125
+395.1828308 123265.8828125
+398.1730652 13451.5283203125
+412.1882019 38261.0625
+434.1763916 17596.904296875
+460.1893005 27618.830078125
+468.221344 48730.1015625
+469.2129822 13575.720703125
+477.2210083 16384.99609375
+478.1982727 19403.294921875
+481.5983887 12549.5087890625
+485.2470703 210611.59375
+486.2502747 72876.46875
+488.186676 42139.51171875
+492.2288818 138512.578125
+492.7305908 104765.671875
+493.2294006 23160.7890625
+495.2255554 65364.21875
+503.7160034 14143.232421875
+505.2108459 38080.66796875
+506.2045593 54366.7734375
+506.7260742 14784.0478515625
+512.2253418 56951.2890625
+512.7246094 26096.98046875
+521.2329712 45719.82421875
+523.222229 393109.3125
+524.2249146 133488.15625
+525.2338867 22947.119140625
+529.7419434 17261.59765625
+558.7462769 13890.7939453125
+559.2487183 16755.3671875
+567.2577515 16129.8701171875
+571.7480469 78419.125
+572.2739868 300166.59375
+572.7462158 20209.6328125
+573.2802124 104918.65625
+574.2822876 21616.25
+576.2619629 47702.72265625
+576.7689209 19686.1640625
+577.258606 15681.73046875
+580.2614746 79434.8359375
+580.7548828 1961202.125
+581.2562256 1305334.5
+581.7577515 497654.8125
+582.2589111 95296.2265625
+589.2667236 22431.1875
+598.2735596 47316.453125
+598.7740479 31728.361328125
+599.2755127 53180.8359375
+599.7772217 50732.5546875
+606.2581787 29602.05078125
+624.265686 49044.06640625
+625.2683716 23282.76953125
+673.3235474 313138.875
+674.3259888 134699.625
+675.3265991 28612.3125
+711.3001709 18458.00390625
+802.3652954 78593.6328125
+803.3607178 33551.73828125
+804.3709717 15241.521484375
+873.4003906 90499.828125
+874.4071045 44661.30859375
+1001.458862 18864.859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.181.181.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=181"
+RTINSECONDS=19.47864619
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13425064 21804.517578125
+61.57142258 18499.580078125
+64.52619171 77172.2578125
+64.53045654 46569.140625
+64.58226013 43868.625
+64.58614349 42525.93359375
+67.44591522 18495.724609375
+74.81584167 22852.25
+76.28538513 17561.599609375
+82.05413818 24386.849609375
+149.5691833 70585.5546875
+167.0905609 47014.0859375
+169.0596313 47641.1484375
+175.1177063 308838.75
+177.0753784 75624.28125
+178.0599365 363324.6875
+178.3355255 65271.35546875
+178.3547211 46977.8984375
+178.4059143 17025.9140625
+179.0911102 30599.236328125
+183.0754242 35123.60546875
+186.0860443 115305.7734375
+194.1018219 78433.578125
+195.0862427 4934021.5
+195.1286163 27662.25
+196.089035 475673.1875
+197.090744 22076.443359375
+205.0588074 21830.78125
+206.0910797 149276.796875
+218.1018829 28211.25
+240.0954895 31124.62109375
+243.0843964 19995.77734375
+246.0966949 748908.625
+246.1256104 42328.21484375
+247.0990143 76135.875
+257.1221008 111636.375
+260.1123962 114921.4921875
+266.7703247 18650.40234375
+270.0966797 130388.2109375
+278.1504211 22811.74609375
+279.1058044 18939.9609375
+283.1417236 48667.5
+286.1465454 20509.841796875
+287.1230469 187039.421875
+288.1070557 1748859.875
+288.1602478 27584.5703125
+289.1094055 253013.203125
+290.1134644 27583.587890625
+294.1170654 20972.326171875
+295.1493835 29731.72265625
+303.1418457 33514.41796875
+304.131958 21013.240234375
+305.1335449 3604153.5
+306.1188049 1293102.75
+307.1210938 216741.109375
+311.1326294 52901.36328125
+312.1159058 25889.419921875
+321.153595 364914.8125
+322.1579895 65720.5078125
+323.0982361 35652.546875
+323.1439819 1258172.875
+324.1460876 205991.984375
+325.1526794 29594.630859375
+329.1435242 53989.3984375
+338.14151 73092.5
+338.1802368 437349.5625
+339.1816711 68677.4375
+349.1555786 20542.138671875
+359.1431274 82801.53125
+366.1856689 143793.6875
+368.1494141 26992.666015625
+369.1368103 41858.60546875
+376.1695251 119987.8828125
+377.1552734 96375.125
+386.1630859 39596.375
+394.1802673 867979.9375
+394.2399597 32602.29296875
+395.1819763 175887.8125
+396.18573 23513.783203125
+412.1893616 53500.13671875
+420.684021 18443.099609375
+468.2201538 62250.4453125
+471.0566101 21552.205078125
+478.2006226 28706.310546875
+485.2462769 259468.359375
+486.249939 54633.70703125
+488.1852417 66684.828125
+492.2279968 193853.359375
+492.7307434 121286.1328125
+493.2286682 26055.36328125
+495.2277832 42483.91796875
+503.713562 27797.72265625
+505.2133179 57864.1875
+506.20047 53436.1953125
+512.2244873 63432.65625
+512.7286987 39354.23828125
+521.2364502 50957.01953125
+523.2209473 556474.875
+524.2232056 161324.625
+525.230835 47006.6171875
+529.7469482 20696.982421875
+558.7409058 26678.412109375
+571.7528076 60207.64453125
+572.2749023 336803.0625
+573.2827759 99317.71875
+576.257019 50325.5703125
+576.7647095 22670.2578125
+580.2606812 110029.609375
+580.7540283 2654008.5
+581.255188 1786343.0
+581.3375854 24430.91796875
+581.3657837 21102.724609375
+581.7565308 643206.0625
+581.8409424 12270.0654296875
+581.8634033 24111.748046875
+582.2576294 154367.125
+589.2670898 157206.140625
+589.7646484 94389.1640625
+598.2739868 92925.7109375
+598.7731934 35739.6015625
+599.7805176 37800.23046875
+606.2524414 36470.1640625
+607.2593994 25482.71875
+624.2670288 54166.01953125
+655.3099976 29284.80859375
+673.3225708 470760.3125
+674.3260498 176874.28125
+675.3228149 53104.9765625
+802.3630981 90287.40625
+803.3674927 42030.2734375
+873.3985596 120751.4453125
+874.4035645 73766.53125
+922.7095947 20700.759765625
+1001.460815 29756.47265625
+1002.463562 23459.087890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.182.182.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=182"
+RTINSECONDS=19.58407237
+PEPMASS=598.27001953125
+CHARGE=2+
+51.08203506 11648.4287109375
+64.52624512 76746.078125
+64.53046417 44444.29296875
+64.58197021 42734.65625
+64.58616638 34304.5078125
+64.63820648 16867.35546875
+64.64164734 16290.25390625
+74.81192017 15929.8466796875
+82.054245 15229.490234375
+149.5666809 47582.9453125
+160.4330444 13630.2548828125
+167.0922546 28843.048828125
+169.0599976 34448.640625
+175.1178284 285702.5
+176.1213074 14209.7734375
+177.0758362 69369.359375
+178.0600281 348072.46875
+178.34198 89650.375
+179.0643768 22413.560546875
+179.0905457 21002.369140625
+182.0910492 15043.1787109375
+183.075531 30958.416015625
+186.0864868 95765.7734375
+190.059082 16431.939453125
+190.1077118 15411.189453125
+194.1024475 41816.53515625
+195.086441 4261700.5
+196.0892029 452420.40625
+197.0924072 32170.4140625
+200.1009369 34761.890625
+201.0847321 21084.96875
+206.0910797 151261.84375
+207.0937042 26261.294921875
+212.1130829 13733.1083984375
+218.1023102 65351.03515625
+234.0975342 20893.232421875
+239.1126862 13569.384765625
+240.0960083 21322.36328125
+243.0869904 23321.84375
+246.0970154 661471.6875
+247.099762 69354.546875
+257.1228638 109884.8046875
+260.1127625 123172.046875
+261.1213989 21652.783203125
+262.1269226 17367.130859375
+267.1125793 15458.615234375
+270.0968628 124456.171875
+277.138031 18802.43359375
+278.1495361 22991.830078125
+283.1425781 31304.142578125
+287.1234741 144240.59375
+288.1075134 1635663.625
+289.1102295 229109.734375
+290.1111755 23387.92578125
+294.1165466 29003.955078125
+295.1499634 31957.986328125
+303.1435852 28254.0
+304.1294861 18590.5859375
+305.1341248 3195693.75
+306.1191101 1164520.75
+307.1215515 178935.703125
+308.1223755 26459.7890625
+311.1351013 58380.85546875
+312.1152954 27219.17578125
+321.1540222 336193.5
+322.1578064 66869.8828125
+323.1445923 1108174.0
+324.1466675 193438.859375
+325.1517029 29548.78125
+329.1447144 60578.92578125
+331.151062 17691.34375
+338.1806946 412023.28125
+339.1829834 65968.0078125
+341.1438904 17832.076171875
+346.1676025 18391.029296875
+347.1492004 25415.5859375
+351.1310425 14362.2529296875
+358.1628113 27543.322265625
+359.1450195 46747.25390625
+366.1864624 131012.84375
+369.1401978 28567.90625
+376.171051 102793.2109375
+377.1559143 74071.90625
+378.1581116 24892.296875
+386.1665344 21961.203125
+389.1578674 14408.857421875
+394.1811523 782566.9375
+394.2402039 29901.474609375
+395.1836243 159578.296875
+396.1880798 17837.0546875
+412.1887817 33117.22265625
+413.1722717 16772.298828125
+460.192749 19283.921875
+468.2213135 58316.58984375
+469.2203674 16812.5703125
+477.212738 15330.00390625
+478.2079773 18274.53125
+485.2479553 227247.046875
+486.2525635 59068.703125
+488.186676 56586.04296875
+489.1894531 19672.15234375
+492.2298584 176197.9375
+492.7308044 136867.140625
+493.2316284 40740.8671875
+495.2289429 65643.453125
+496.2320251 17062.28515625
+503.2163391 21842.38671875
+503.7150269 18910.78515625
+505.2131958 55214.69921875
+506.2062378 58290.15234375
+512.2280884 59107.78125
+512.7283936 27420.990234375
+520.7335815 16418.365234375
+521.232605 36700.484375
+521.7368774 16539.3203125
+523.2225342 487737.3125
+524.2252808 128474.4765625
+525.2263184 23829.646484375
+529.7459106 18685.953125
+530.2509155 16972.787109375
+555.2601929 23559.916015625
+571.7522583 74209.8984375
+572.2746582 324608.09375
+572.7481689 19220.431640625
+573.2809448 101468.484375
+574.2770996 25514.591796875
+576.2595215 52458.18359375
+576.7645264 35536.5859375
+577.2612305 27562.5703125
+580.2634277 81903.125
+580.7556763 2528758.5
+581.2568359 1599843.5
+581.7583008 608921.5
+581.8643188 28541.76953125
+582.2609863 103438.0703125
+589.2723999 64237.4765625
+589.7709961 29688.404296875
+598.2749023 45251.39453125
+598.7762451 32215.115234375
+599.2762451 33293.33203125
+599.7781372 90785.1171875
+606.260376 44603.4609375
+624.2681274 42450.24609375
+656.3076782 20690.078125
+673.3244629 445116.34375
+674.3284912 167004.625
+675.3323364 29306.091796875
+676.2769165 16232.87109375
+773.0179443 15193.2490234375
+802.3653564 109057.0546875
+803.3657227 29125.263671875
+873.3997803 86924.96875
+874.4041748 54664.86328125
+1001.460571 31785.548828125
+1058.437134 15531.9013671875
+1166.74939 16020.5771484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.183.183.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=183"
+RTINSECONDS=19.69316094
+PEPMASS=598.27001953125
+CHARGE=2+
+50.262146 13586.798828125
+58.13710785 13443.55859375
+64.52617645 69495.1875
+64.53064728 55723.0078125
+64.5819931 47708.62890625
+64.58611298 34375.93359375
+64.63822937 16777.251953125
+64.64138794 17781.701171875
+67.33721161 13436.55078125
+74.81154633 16795.11328125
+76.28626251 16836.599609375
+82.05442047 14934.77734375
+86.52664948 13331.6708984375
+149.5654449 41868.46484375
+167.0917206 28928.22265625
+169.0590363 35040.44140625
+175.1177216 279827.15625
+176.1211548 20453.1953125
+177.0753784 71585.140625
+178.0598145 378930.09375
+178.076355 11453.96484375
+178.3447723 102953.21875
+179.0626526 28763.177734375
+179.0921326 26615.65625
+182.0904388 21712.423828125
+183.0747986 23098.048828125
+186.0859833 92837.796875
+194.1032104 27157.982421875
+195.0862427 4450922.5
+196.089035 439069.71875
+197.0914764 23574.546875
+200.1013184 28338.84765625
+201.0846252 18106.640625
+206.0909729 180801.4375
+209.1012268 24063.935546875
+215.0908966 17738.7421875
+217.457962 16503.955078125
+218.1018219 58176.8046875
+234.0970001 19478.041015625
+240.0968323 26195.005859375
+244.1172943 18839.013671875
+246.0966949 658068.125
+247.0987701 73343.078125
+257.1227112 99587.21875
+258.1234436 22284.60546875
+260.1123962 112896.09375
+267.1094666 14449.359375
+270.0966187 135814.125
+276.1064758 19584.244140625
+278.1507263 15862.55859375
+283.1437378 48456.1953125
+287.1234436 149564.515625
+288.1070862 1654583.25
+289.1099854 239610.296875
+290.1097717 26855.5234375
+294.1167297 20404.57421875
+295.1483154 27584.716796875
+303.1427612 42147.25390625
+304.1269531 20065.974609375
+305.133606 3314425.75
+306.1185303 1222293.875
+307.1209717 191756.296875
+308.1240845 25047.521484375
+311.1333313 42241.43359375
+312.1163025 47008.578125
+321.153656 331008.6875
+322.1566162 63605.76953125
+323.1440125 1132644.625
+324.146637 166709.0
+329.1430664 57663.4375
+338.1430054 47732.2265625
+338.1802979 447063.21875
+339.1820984 60057.36328125
+347.1497192 20204.76171875
+349.1592102 25506.748046875
+359.144104 61403.36328125
+366.1851501 116814.3515625
+367.1833191 15970.1513671875
+369.1380615 28984.29296875
+376.170105 122911.4296875
+377.1555481 87576.4375
+386.1630249 25627.224609375
+387.1618958 16707.4375
+389.1513062 16996.37890625
+394.1205139 16216.4111328125
+394.1805115 800683.75
+394.2401428 36012.80078125
+395.1824341 144240.125
+412.190155 27373.3359375
+434.1746826 18607.33984375
+468.2221069 51527.49609375
+469.2188416 17941.21484375
+483.7175903 16886.306640625
+485.2467346 223765.8125
+486.2504883 65990.1171875
+488.1845703 73970.1171875
+492.2284241 153891.375
+492.7308044 123919.125
+493.2273865 29572.5390625
+495.2270813 62012.98046875
+505.2121582 52427.3359375
+506.2054138 56454.390625
+512.2264404 45003.1328125
+512.7272339 30678.53515625
+521.2314453 30193.658203125
+521.730896 29751.14453125
+523.2214966 521454.3125
+524.2243652 144255.796875
+525.2297363 31316.259765625
+529.7452393 16341.5966796875
+558.7504272 24228.634765625
+571.7491455 78995.453125
+572.2738647 362927.0625
+572.7515869 36805.34375
+573.2807617 118436.4296875
+576.2600708 58517.28125
+576.7617798 32794.328125
+580.2599487 97349.4765625
+580.7542725 2623079.25
+581.2554321 1837866.75
+581.3677368 22521.6953125
+581.7573853 661420.0625
+582.2575073 131467.1875
+589.2657471 73942.8828125
+589.7686768 40461.67578125
+598.2709351 73279.578125
+598.7753296 39997.05859375
+599.2773438 26108.7890625
+599.7772217 83427.65625
+606.2565918 30593.130859375
+607.2640991 20628.43359375
+624.2675781 60615.08984375
+625.2677002 24622.29296875
+673.3225708 440551.5
+674.3261719 137203.453125
+675.3305664 24487.0234375
+693.2857666 32120.7109375
+802.3652954 98706.546875
+803.3675537 45782.64453125
+873.397522 110736.6484375
+874.4012451 53742.69140625
+875.4014282 18881.400390625
+1001.463928 25246.4921875
+1059.486328 21443.962890625
+1196.605225 17800.841796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.184.184.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=184"
+RTINSECONDS=19.80129179
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 73122.6953125
+64.5304718 42931.484375
+64.58208466 45203.51953125
+64.58618164 29031.681640625
+64.63794708 15179.671875
+64.64147186 15738.67578125
+76.28107452 14530.060546875
+82.05415344 20651.009765625
+82.51937866 13256.5546875
+115.4586639 14642.4052734375
+130.2960358 14301.7412109375
+149.5752411 25504.48828125
+162.7306976 13252.322265625
+167.0918121 48198.6328125
+169.0595398 37678.29296875
+175.1178894 342566.875
+176.1212463 24044.970703125
+177.0761108 65553.5390625
+178.0600281 327008.71875
+178.3494568 76167.921875
+178.764328 14752.0849609375
+179.0628052 24905.349609375
+179.0915222 33460.3984375
+182.0904083 17975.01171875
+183.0759735 26867.38671875
+186.0863495 103260.046875
+194.1025391 39722.69921875
+195.0864716 4223494.5
+195.1280975 20053.681640625
+196.0891876 453122.96875
+197.0918884 25784.333984375
+200.1024017 30004.634765625
+201.0859222 24673.03125
+206.0912018 159513.328125
+207.0956573 23131.96875
+212.1138306 13800.27734375
+218.1021271 56756.2265625
+222.0865173 18649.603515625
+223.0914917 16703.693359375
+234.0967407 20324.123046875
+240.0969696 25734.56640625
+243.0866852 24176.208984375
+246.0970306 668218.0
+247.0989532 71478.21875
+249.09729 20885.71484375
+257.1228333 115275.671875
+260.1130066 118670.4921875
+261.1203308 15318.146484375
+265.7679443 15196.1064453125
+267.1123962 13924.8984375
+270.0965271 129023.3203125
+276.1064148 20105.06640625
+278.1495361 31368.796875
+283.1422119 43806.640625
+287.1234436 183538.140625
+288.1074524 1591131.0
+289.1104126 231935.0
+295.1497192 25540.013671875
+303.1445923 29823.701171875
+304.1329346 15550.953125
+305.0279846 16849.6796875
+305.1340637 3354235.75
+306.1192017 1166822.375
+307.1213074 196254.359375
+308.124115 28683.23046875
+311.1341858 52620.6953125
+312.1176453 42260.3515625
+320.1322327 16041.583984375
+321.1542664 383759.3125
+322.156189 62296.95703125
+323.1445923 1171010.5
+324.1465759 166503.71875
+325.1500854 29960.240234375
+329.1446228 41812.24609375
+331.149353 22205.349609375
+338.1430054 42874.0625
+338.180603 375545.71875
+339.1827393 70886.3515625
+347.1507874 28243.068359375
+359.1442566 62458.99609375
+366.1869202 136349.828125
+369.1401367 30964.1015625
+376.1705933 120228.6875
+377.1556091 74906.3359375
+386.1640015 36546.59375
+394.1808777 741334.8125
+394.2398376 25482.81640625
+395.1825256 179678.234375
+396.1870117 24456.43359375
+412.1846924 34725.91796875
+415.9173889 15017.6982421875
+428.1965027 16524.1015625
+431.0900574 15040.33984375
+460.1887817 26286.4375
+468.2220764 50566.25
+477.2197571 19743.126953125
+478.2037964 16506.365234375
+483.7242737 22793.763671875
+485.2475891 228803.125
+486.2499695 67388.5703125
+488.1860657 73601.8828125
+492.2294617 160206.390625
+492.7294922 82241.7890625
+493.2315369 32008.625
+495.2273865 62720.73828125
+503.2352295 16442.841796875
+503.717865 25652.90234375
+505.211731 64003.09375
+506.20401 55859.35546875
+506.72995 14889.947265625
+512.2293091 47132.03125
+513.2304688 21644.9453125
+521.2352295 33556.4921875
+523.222229 518422.8125
+524.2252197 127088.1640625
+525.2311401 32381.08984375
+529.7460327 19597.45703125
+531.4740601 15597.3173828125
+555.2502441 19876.6953125
+558.7434692 41187.83984375
+568.2509155 19958.625
+571.7494507 91757.6328125
+572.2752686 334959.59375
+572.7532959 24528.771484375
+573.27948 92451.4609375
+576.260376 63132.97265625
+576.7601929 26237.896484375
+577.2730103 17743.390625
+580.2640381 87746.1171875
+580.755188 2502174.25
+581.2563477 1555023.125
+581.7579956 637724.9375
+582.2581787 110434.59375
+583.2631226 19574.560546875
+589.265564 52785.265625
+589.765564 25178.705078125
+598.272644 78676.1328125
+598.7738037 40696.83203125
+599.277771 53455.2578125
+599.7785034 94212.078125
+606.2568359 31543.556640625
+624.269043 81553.234375
+673.3247681 444673.3125
+674.3266602 166798.96875
+693.2857056 25687.009765625
+795.0975952 15983.9970703125
+802.3656616 79352.796875
+803.3709106 42046.16796875
+873.4005737 117226.6796875
+874.3967896 29777.330078125
+1001.470154 20323.197265625
+1002.461487 18360.638671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.185.185.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=185"
+RTINSECONDS=19.91000987
+PEPMASS=598.27001953125
+CHARGE=2+
+64.5262146 65552.3125
+64.53047943 46855.2578125
+64.58203125 50564.87890625
+64.58626556 31638.361328125
+64.63805389 19016.646484375
+64.6414566 19785.609375
+80.86513519 15346.3984375
+90.28744507 14189.5380859375
+105.1726456 16123.5927734375
+149.5629883 35097.671875
+149.576889 34150.1796875
+167.0914917 37846.1796875
+169.059494 27210.447265625
+175.1179504 313063.59375
+176.1218567 28245.76953125
+177.0759888 83431.9765625
+178.059967 354670.96875
+178.3401489 87540.21875
+179.0641632 30321.689453125
+179.0920563 23312.0546875
+182.0916138 19314.19140625
+183.0751495 32971.484375
+186.0861664 98211.375
+194.1023865 44982.359375
+195.0863953 4417453.0
+196.0892487 434294.5625
+197.0913086 30746.025390625
+200.1013794 23944.333984375
+201.5889587 16708.888671875
+206.0910492 159252.21875
+218.1028442 52934.375
+234.0989838 18425.00390625
+240.0959015 37112.80078125
+243.0867004 28151.91015625
+244.1172485 21336.578125
+246.0969543 628036.375
+247.0999908 81221.0
+257.122406 102344.1875
+258.1272583 19364.318359375
+260.1128235 146095.640625
+261.1189575 24345.921875
+270.0967102 136066.8125
+278.1487122 36697.94140625
+283.1437988 35216.63671875
+287.1235352 152078.15625
+288.1073303 1646572.25
+289.1102295 246701.203125
+289.1426392 20804.6640625
+290.1128845 28925.205078125
+294.1151428 21599.24609375
+295.1499634 34684.65625
+303.1440125 38222.6328125
+304.1275635 17814.205078125
+305.1338806 3429663.75
+306.1192322 1213311.875
+307.1213989 205212.796875
+311.1344604 46881.94140625
+312.1182861 46279.4765625
+321.1539307 371324.78125
+322.1557922 52822.5078125
+323.1444092 1201635.0
+324.1462402 179467.125
+325.1507263 25347.513671875
+329.1441345 50372.41015625
+331.1532593 21730.451171875
+338.142334 53534.0859375
+338.180481 432086.1875
+339.1832275 83971.8515625
+359.1454773 60542.39453125
+366.186676 123642.203125
+367.1869507 27639.841796875
+369.1401672 32893.140625
+376.1707458 149721.5
+377.1560974 84710.2890625
+386.1638489 27926.44921875
+394.1808777 762218.25
+395.1824036 175546.28125
+412.1888733 36891.3046875
+420.6773682 19410.74609375
+468.2193604 48105.87109375
+477.2178955 19888.93359375
+485.2468567 237748.28125
+486.2480774 56677.05078125
+488.1873474 43906.4140625
+492.2292786 196088.84375
+492.7315674 104497.8828125
+493.2278442 17312.904296875
+495.2262268 60068.62109375
+501.2339172 23256.173828125
+505.2113037 53478.9375
+506.2077942 64084.63671875
+512.2279663 42314.8515625
+512.7296753 18731.609375
+523.2218018 426030.25
+524.2241821 126746.453125
+525.2288818 32047.390625
+529.7446899 17834.119140625
+571.749939 68851.7734375
+572.2752686 306192.5625
+573.2819824 93349.2421875
+576.2677002 34324.234375
+577.260498 25141.3203125
+580.2608643 88065.1328125
+580.7549438 2413208.25
+581.2561035 1737601.625
+581.7575073 584919.75
+582.2589722 113564.2109375
+589.2681274 96644.8671875
+589.7662964 61528.12890625
+598.2737427 56566.80078125
+599.2842407 23522.107421875
+599.7769165 89078.46875
+606.2599487 21985.421875
+624.2635498 53013.65234375
+625.2694702 18818.048828125
+655.3115234 17950.3203125
+673.3239746 417035.90625
+674.3270264 164712.5
+675.3348389 31368.236328125
+711.3032227 19859.224609375
+802.3619385 104942.828125
+803.3686523 55985.12109375
+873.3989868 111855.640625
+874.397583 58267.19140625
+1001.453796 26302.2734375
+1135.89624 17969.107421875
+1279.655884 21846.810546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.186.186.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=186"
+RTINSECONDS=20.01703165
+PEPMASS=598.27001953125
+CHARGE=2+
+50.03229523 12395.0302734375
+54.74631882 14384.8095703125
+58.13421249 15077.9921875
+64.52622986 57844.04296875
+64.53065491 48541.8125
+64.58195496 33115.15625
+64.58614349 25067.306640625
+64.63800049 15656.82421875
+64.64128113 12771.375
+66.70528412 11728.7861328125
+74.81191254 14197.880859375
+82.05415344 16936.744140625
+82.80165863 10751.1669921875
+124.8815842 11345.19921875
+127.2819748 11653.55078125
+149.5687561 45582.4296875
+167.0914307 48398.84375
+169.0590668 32474.115234375
+175.1023712 17135.150390625
+175.1177063 250680.15625
+176.1212463 17251.080078125
+177.075943 63194.0234375
+178.059845 366070.0625
+178.0783081 19240.26953125
+178.3426971 76704.7890625
+179.0636749 23485.740234375
+179.0910797 14490.9794921875
+182.0904388 17867.728515625
+183.0751038 26136.548828125
+186.0859375 93063.921875
+190.0613403 15093.9716796875
+194.1017303 36043.05078125
+195.0862885 3809317.25
+195.1277313 30637.8984375
+196.089035 414741.6875
+197.0906372 38463.8046875
+199.1181946 13530.650390625
+200.1003571 23366.3125
+201.0852051 22592.0546875
+206.0909119 150036.703125
+209.0769958 17357.158203125
+209.1006775 16622.771484375
+215.0906982 24671.462890625
+218.1024933 52234.69140625
+222.0855255 21172.150390625
+234.0977325 14557.8583984375
+240.0950623 15813.318359375
+243.085022 17101.556640625
+246.0968018 619870.625
+247.0991058 79014.4921875
+248.1108856 15348.984375
+257.1224976 104849.0546875
+258.1264954 16366.205078125
+260.1126404 93080.75
+270.0968018 109778.421875
+277.1394043 15950.015625
+278.118103 15916.91796875
+278.149292 23781.19921875
+279.128479 15551.6376953125
+283.143219 56187.65625
+286.1139526 13682.033203125
+287.1231079 141878.1875
+288.1071777 1544614.75
+289.110199 247637.296875
+290.1116638 23606.498046875
+294.1167908 23986.138671875
+295.1497192 18684.3203125
+303.1427612 35576.234375
+304.1280212 27339.56640625
+305.1337585 2975590.0
+306.1188965 1103010.25
+307.1209412 181784.4375
+308.119751 19678.662109375
+311.1345215 44405.93359375
+312.1169128 36582.97265625
+321.153717 338434.71875
+322.1556702 50092.56640625
+323.0982666 19716.869140625
+323.1441956 1026720.4375
+324.1463928 160935.03125
+325.1541748 18740.533203125
+329.1434631 36210.66796875
+338.1421509 55137.89453125
+338.1804199 389353.875
+339.1827393 53201.83984375
+341.1455994 16500.017578125
+346.1689148 17774.515625
+347.1470337 28515.46484375
+349.1584167 25483.27734375
+358.1660461 14425.443359375
+359.1435547 64320.4140625
+360.1444702 17069.0859375
+366.1858215 114456.2578125
+367.1824341 16500.17578125
+369.1390076 27639.923828125
+376.1705627 127668.5
+377.1556091 83613.7578125
+378.1539612 21554.943359375
+386.1637573 36355.6171875
+393.1380615 15598.1865234375
+394.1806335 679081.625
+394.2396545 25666.533203125
+395.1825256 123810.75
+412.1873779 27356.224609375
+416.0529785 13019.1337890625
+460.1893921 16845.255859375
+468.2207642 50003.50390625
+483.7191467 23337.396484375
+485.2471619 197342.359375
+486.2490845 46389.609375
+488.1862793 52364.84375
+492.2286377 125880.15625
+492.7298279 98259.28125
+493.2312927 25929.447265625
+495.225708 62458.34375
+496.2314758 21134.09765625
+503.2201843 17548.783203125
+503.7176208 31221.125
+505.2113953 50939.69921875
+506.2039185 45167.16796875
+512.2263184 34307.15234375
+512.7228394 20350.12109375
+521.2355957 13467.3095703125
+523.2218628 398176.59375
+524.2252197 111357.7421875
+525.2363892 24039.947265625
+555.2559204 25663.634765625
+558.7445068 26696.48046875
+567.258606 17645.00390625
+571.7475586 69739.6015625
+572.2736206 297622.9375
+572.7498779 18563.822265625
+573.2805786 93344.3125
+574.2877197 26264.130859375
+576.2626343 34812.578125
+576.7648926 20536.779296875
+577.7567139 18568.171875
+580.2631226 73264.6171875
+580.7547607 2270171.5
+581.2561035 1368892.375
+581.7575684 504317.0625
+582.2583618 105259.7109375
+589.2644653 31811.7421875
+598.2711792 64154.16015625
+598.7739258 22248.654296875
+599.276001 52493.28125
+599.7772827 93452.453125
+606.2563477 33097.5859375
+624.2653198 56752.5390625
+625.2702026 20521.208984375
+655.3149414 21175.599609375
+673.3234253 402302.09375
+674.3258667 159719.921875
+675.3287354 26836.818359375
+693.2846069 20238.5546875
+802.3653564 78581.1640625
+803.3658447 37038.04296875
+873.3963013 81416.71875
+874.3968506 31922.50390625
+1001.455078 13558.64453125
+1127.194092 13262.8466796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.187.187.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=187"
+RTINSECONDS=20.12840079
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13707352 15647.0029296875
+63.58498001 18904.111328125
+64.52619934 78541.171875
+64.53045654 47952.5234375
+64.58197784 49212.62890625
+64.58609009 35181.171875
+87.86842346 16490.671875
+104.1383514 18553.1953125
+115.3393707 15388.5703125
+140.0364075 15925.7763671875
+142.3647919 15706.12109375
+149.5628815 33942.39453125
+149.5765381 39586.76171875
+167.0917816 39888.34765625
+169.0595703 34625.171875
+174.5706787 15352.771484375
+175.1177368 332686.34375
+175.1338196 32654.283203125
+176.1217957 22351.298828125
+177.0760345 69126.640625
+178.0598907 341124.21875
+178.331955 30103.53515625
+178.3513489 75507.984375
+179.0627289 41159.0078125
+179.0917511 27651.837890625
+182.0919495 19112.404296875
+183.0744476 30675.904296875
+186.08638 119278.828125
+194.1025543 46002.03515625
+195.0863342 4625217.5
+196.0890961 484493.78125
+200.1019287 18657.408203125
+205.0587311 18681.84375
+206.0909576 134118.765625
+207.0947418 17851.0625
+209.1012573 17095.935546875
+212.1109924 16682.466796875
+215.0912323 21618.248046875
+218.1020203 59697.4765625
+222.0858154 16418.638671875
+240.0959015 19402.0703125
+244.1186218 18587.994140625
+246.0968018 684874.0625
+246.1256104 36208.47265625
+247.098465 66409.5390625
+257.1223145 105446.703125
+260.1123657 110315.1015625
+270.0966187 132327.1875
+271.1034241 22764.5703125
+277.1395264 18788.51953125
+283.1423645 35128.16796875
+287.1236572 151873.8125
+288.1071777 1648945.875
+289.1100769 280301.46875
+295.1498108 32157.98828125
+302.1313477 21313.791015625
+303.1433716 27961.732421875
+305.133728 3417032.25
+306.1189575 1198916.5
+307.1209106 228124.921875
+308.1260681 20598.783203125
+311.1343689 57742.5859375
+312.1186829 22401.234375
+321.1537476 362271.46875
+322.158783 45698.83203125
+323.0993958 21505.83984375
+323.1441956 1191275.875
+324.1465759 222450.9375
+325.1518555 19163.958984375
+329.1438904 45164.5625
+338.1426392 39985.14453125
+338.1801453 427269.5625
+338.6431274 26469.529296875
+339.183136 74517.53125
+347.1493835 28269.37109375
+349.1614685 20695.6953125
+351.1280212 27806.728515625
+359.1451416 53978.56640625
+366.184967 152319.625
+376.1694946 142211.359375
+377.1556702 74051.78125
+386.1670227 33858.46484375
+394.1803894 789681.125
+394.2387695 23808.21484375
+395.1821899 181261.453125
+412.1889648 32174.478515625
+434.1567078 17615.4375
+468.2219849 66556.34375
+469.2149048 20108.890625
+478.203949 16925.314453125
+483.2279053 21699.97265625
+483.7160339 30367.919921875
+484.2210999 22346.705078125
+485.2465515 266736.875
+486.2492065 66120.609375
+488.1860962 51229.87890625
+489.1866455 20848.3125
+492.2283325 145102.6875
+492.7313843 108986.0390625
+493.2310486 31949.732421875
+495.2259216 67816.7734375
+496.4113464 18990.345703125
+503.7127991 26105.767578125
+505.2124634 67104.765625
+506.2048035 54664.359375
+512.2249756 46680.0703125
+521.2304077 28569.646484375
+521.7306519 24454.533203125
+523.2210083 495121.75
+524.2254028 146757.890625
+525.2236938 24234.490234375
+541.2323608 24322.666015625
+555.2564087 19160.8203125
+558.7421265 31377.517578125
+571.7473755 99922.484375
+572.2749023 383613.5625
+572.7446289 27824.90625
+573.2793579 119254.359375
+574.2739868 22968.1328125
+576.2612305 57307.984375
+576.7614136 38384.88671875
+577.2672729 40221.94140625
+580.2615356 105438.7265625
+580.7542114 2789497.0
+581.2555542 1955062.375
+581.7574463 686812.875
+582.2573242 126310.8828125
+589.2669067 147684.203125
+589.7663574 73104.4140625
+598.270874 59283.00390625
+598.7770996 30392.84765625
+599.2769775 24069.328125
+599.7769165 54449.18359375
+606.2584229 36080.90234375
+607.2599487 18039.771484375
+624.2697144 61329.796875
+673.3225098 466401.84375
+674.3267822 179467.5
+675.3264771 25646.296875
+693.2952881 18351.181640625
+711.3012085 20357.75390625
+802.3614502 98529.7734375
+803.3634644 36796.5234375
+812.8032837 18682.72265625
+873.3970337 119397.6015625
+874.3948975 54145.8359375
+922.7055054 19654.748046875
+1001.441345 22054.931640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.188.188.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=188"
+RTINSECONDS=20.23494341
+PEPMASS=598.27001953125
+CHARGE=2+
+56.48716736 11624.529296875
+58.13432312 19868.998046875
+64.42167664 11851.0927734375
+64.52629852 63344.99609375
+64.53047943 40137.00390625
+64.58203125 47016.69140625
+64.58618927 27828.85546875
+64.63804626 16446.90625
+73.17671204 14190.28515625
+82.05407715 15752.03125
+134.2773285 11683.1171875
+134.7295074 11580.1630859375
+138.6472473 13734.69140625
+148.0805664 11893.333984375
+149.571167 49933.97265625
+149.8363953 11255.2236328125
+167.0917816 34898.359375
+169.0601196 27027.580078125
+173.0922546 12278.798828125
+175.1178284 302076.125
+177.0759277 66171.1953125
+178.0600586 333237.5625
+178.3388214 58869.30859375
+179.0631409 26662.115234375
+179.0913239 20461.40625
+182.0920715 16111.498046875
+183.0757599 25616.865234375
+186.0861053 109254.859375
+188.0920563 13086.9052734375
+194.1029816 44272.30078125
+194.9730835 12004.7919921875
+195.0864105 3922561.0
+195.1278076 18082.720703125
+196.0892181 419679.4375
+197.0908356 29030.62109375
+200.1022186 33831.21875
+201.0853271 19716.435546875
+206.0910797 149321.703125
+218.1019897 48033.140625
+222.0857086 21204.478515625
+232.1183777 14208.015625
+237.1096039 11836.908203125
+239.1132355 15516.2392578125
+240.0970917 26104.31640625
+246.0969849 640589.875
+247.0995636 76525.8046875
+248.1106873 17391.123046875
+257.1229858 95380.375
+260.1120911 101602.8125
+260.1398926 15662.73828125
+270.0970764 130255.890625
+271.1013184 17286.720703125
+277.1381531 14313.029296875
+278.148407 34015.29296875
+283.1423645 44095.83984375
+287.1232605 123658.765625
+288.1074219 1528005.625
+289.110321 228610.09375
+290.1113281 19165.25
+295.1497498 23240.95703125
+303.1421509 33691.48046875
+304.1299744 22735.52734375
+305.1339417 3002390.25
+306.1191101 1148846.5
+307.1210938 207773.546875
+308.1233215 17809.79296875
+311.1337891 47142.1171875
+312.1166077 34107.6953125
+319.1449585 16309.6513671875
+321.1539001 325474.625
+322.1569824 67275.9140625
+323.0983887 18527.888671875
+323.1444397 1113447.25
+324.1471863 157842.453125
+325.1552734 14916.33203125
+329.1434631 46126.42578125
+338.1420288 48476.19921875
+338.1807861 357608.375
+338.6442871 19141.21484375
+339.1829224 76087.5
+347.1494751 34038.9453125
+349.1612854 18796.9296875
+351.1322937 22451.212890625
+359.1428223 66933.3515625
+360.1470032 15970.3125
+366.185791 113460.3046875
+367.1898193 12524.6923828125
+368.1564941 19303.01953125
+369.1380615 27389.482421875
+376.1708679 99636.7890625
+377.1564331 69474.5
+378.1584778 21010.34765625
+386.1635132 23284.123046875
+394.1808167 651139.625
+394.2395325 26738.568359375
+395.1829834 115414.0390625
+412.1881104 32644.72265625
+420.6841736 28874.814453125
+460.1917114 19386.384765625
+463.1976318 14073.83984375
+464.1694946 15321.4150390625
+468.2214966 48352.37890625
+469.223114 17097.453125
+478.2024536 27581.349609375
+483.7217102 17772.65625
+485.2471619 197540.9375
+486.2505798 49997.05078125
+488.1872864 40988.49609375
+489.1849976 14571.0126953125
+492.2284851 137684.4375
+492.7289124 105369.703125
+493.2289429 28238.009765625
+493.7170715 15004.4580078125
+495.2259216 70565.5
+496.224823 26648.44140625
+503.720459 30661.8828125
+505.2112732 59168.75
+506.2019653 43751.09375
+512.2263794 38801.0
+512.7280273 36568.2734375
+521.2365723 32236.1640625
+521.7316284 15783.1953125
+523.2227783 432688.4375
+524.2246094 106733.7109375
+525.2330322 27891.05859375
+558.7424316 24431.287109375
+571.7509766 66304.78125
+572.2745972 322356.21875
+572.7496338 30333.7890625
+573.2814331 101443.8828125
+576.260376 42113.984375
+576.7640991 24837.185546875
+577.2652588 34682.82421875
+580.2639771 59352.75390625
+580.755127 2318789.0
+581.2563477 1581296.0
+581.7582397 566518.0
+582.2597046 132462.453125
+589.2662964 35056.37109375
+589.7676392 25121.8203125
+598.2732544 49652.72265625
+598.7752075 44798.359375
+599.2817993 21789.193359375
+599.777771 65074.6328125
+606.2572632 36973.734375
+607.2572632 24496.31640625
+624.2702637 53787.47265625
+655.3154297 22043.666015625
+673.3234253 387448.0625
+674.3270874 171742.828125
+675.326355 31378.32421875
+693.2861938 17835.552734375
+711.2999878 18564.5390625
+765.9439087 14133.513671875
+802.3664551 97874.984375
+803.3695068 39187.53125
+873.3991089 67030.21875
+874.3995972 52790.3203125
+1001.46759 17203.05078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.189.189.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=189"
+RTINSECONDS=20.34527578
+PEPMASS=598.27001953125
+CHARGE=2+
+50.65761948 16385.68359375
+51.15021133 16398.10546875
+64.52633667 70304.9765625
+64.53052521 41491.07421875
+64.58203125 56231.58203125
+64.5860672 34511.6640625
+64.63814545 25239.525390625
+74.81175995 17994.310546875
+74.81652069 15671.4462890625
+76.28572845 20927.322265625
+93.48819733 15515.962890625
+136.1432343 17690.701171875
+149.5713043 66130.140625
+163.1212921 17405.666015625
+167.0918579 36348.453125
+169.0600891 28672.080078125
+175.1177063 312045.75
+177.0759125 67828.984375
+178.0599365 344761.5
+178.3428192 106385.8828125
+179.0641785 18789.0859375
+179.0915985 19315.4140625
+186.0858307 109968.703125
+193.3906708 16593.697265625
+194.1028748 33992.0234375
+195.0863342 4530716.0
+195.1275635 24992.568359375
+196.0891724 436857.65625
+197.0915222 30594.443359375
+200.1004944 21608.12109375
+201.0851135 22356.529296875
+206.0908356 160388.953125
+209.1018829 24023.388671875
+217.1273651 18883.84765625
+218.101944 48096.0703125
+231.0852509 16811.748046875
+234.0978851 22039.78515625
+240.0953217 29332.240234375
+244.1156311 26234.115234375
+246.0967865 621932.25
+247.0994568 79371.5
+257.1222534 99462.6484375
+260.1123352 129558.296875
+270.0969849 112988.9921875
+277.1395874 21996.66796875
+278.1489563 28054.4921875
+283.1430359 54024.9765625
+287.1232605 161713.484375
+288.1072693 1687991.5
+289.1104431 225426.515625
+290.1102905 28613.001953125
+295.1491089 39587.9296875
+302.1304321 16794.447265625
+303.1416321 24644.859375
+304.1292114 22199.171875
+305.1337585 3416322.0
+306.0595703 23270.474609375
+306.118988 1254316.875
+307.1213379 204411.8125
+308.1253357 21709.927734375
+311.1338501 34336.07421875
+312.1176147 47183.7109375
+321.1537476 377507.25
+322.155426 86616.0859375
+323.0992737 24138.287109375
+323.144165 1220754.625
+324.1456299 165552.328125
+329.142395 61806.51171875
+331.1497803 30003.171875
+338.1427917 59885.46484375
+338.1803589 436724.5
+339.1816101 85021.546875
+359.1448669 55257.15234375
+366.1863098 131079.859375
+369.1407166 35980.578125
+376.170166 145338.234375
+377.1582031 67370.0078125
+378.1629333 19637.83984375
+386.1646118 31991.130859375
+389.1571045 18889.220703125
+394.1805115 809869.75
+395.1819458 178276.453125
+396.1843567 34070.48828125
+412.1876221 31232.064453125
+420.6854553 18548.50390625
+468.2208252 67900.7734375
+484.2178345 19263.5625
+485.2471619 240830.75
+486.2498474 78609.5
+488.1856995 28178.275390625
+492.2291565 236546.90625
+492.7294617 111825.5
+493.2299805 20177.234375
+495.2264709 55488.45703125
+503.7167664 25744.853515625
+505.2147827 73150.890625
+506.1983948 38718.82421875
+507.2079773 20252.134765625
+512.2276001 47027.73046875
+512.7232666 43729.6171875
+521.2348022 22567.806640625
+523.2211304 514359.125
+524.2232666 155035.875
+525.230835 38247.0859375
+529.7424927 28282.255859375
+555.2572021 21446.353515625
+558.7449341 24466.21484375
+571.7506104 74098.8046875
+572.2750244 365745.875
+573.2789307 99480.328125
+574.2828979 32983.27734375
+576.2623291 33159.66796875
+576.7633057 34473.2734375
+577.2642822 36005.609375
+580.2601318 96532.0625
+580.7544556 2680435.5
+581.2557983 1828715.75
+581.3670654 23054.46875
+581.7573242 674145.125
+581.8651733 25656.35546875
+582.2567749 119869.6875
+589.2672119 125280.640625
+589.7661133 70504.484375
+598.2747803 67189.15625
+598.7748413 59765.03515625
+599.2818604 21400.732421875
+599.7761841 72813.1328125
+606.2546387 41958.0234375
+607.2555542 25698.46875
+624.270813 43991.1875
+625.2672119 34398.4375
+673.3236084 488653.53125
+674.3259888 162629.734375
+675.3245239 34617.56640625
+711.3018188 19261.3203125
+783.3897705 17162.654296875
+802.3634033 113771.984375
+803.3616333 50521.6328125
+873.3972168 115774.0390625
+874.3959961 57002.69140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.190.190.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=190"
+RTINSECONDS=20.45216032
+PEPMASS=598.27001953125
+CHARGE=2+
+51.3088913 12051.94140625
+58.13431168 15085.5439453125
+58.13722229 17397.546875
+61.25881195 13534.9921875
+64.52623749 55530.90234375
+64.53064728 39871.51171875
+64.5819397 38292.4296875
+64.58595276 27741.279296875
+64.63811493 13616.5859375
+77.28821564 12918.224609375
+106.6983337 11900.4873046875
+143.8606262 12600.49609375
+149.5763702 27892.595703125
+167.0918884 37309.98046875
+169.0593872 30426.66015625
+175.1177216 285595.28125
+177.0759277 60633.01171875
+178.0597839 306496.4375
+178.3513489 52676.234375
+179.0635529 18784.6640625
+179.0917511 19402.47265625
+182.0916748 13941.078125
+183.0752106 26094.3828125
+186.0861053 114090.0625
+191.0914917 14628.4873046875
+194.102005 45742.1953125
+195.086319 4001513.25
+195.1277771 19342.37890625
+196.0891571 419036.9375
+197.0920563 28084.90234375
+200.1009369 25630.455078125
+201.085495 17889.466796875
+205.059082 14945.8251953125
+206.0911407 159847.640625
+218.1027985 46896.53125
+239.1124725 14581.3505859375
+240.0950775 19575.978515625
+246.0969238 606720.4375
+247.0990601 78299.671875
+257.1230774 96800.6328125
+258.1271362 15770.6923828125
+260.1119995 108105.1484375
+270.096405 101458.25
+272.1183777 13658.3486328125
+278.116333 14045.931640625
+278.1481628 29304.431640625
+283.1426697 45663.6328125
+287.1233215 151412.046875
+288.1072388 1583325.5
+289.1099243 224680.109375
+290.1134644 25250.65625
+294.1208496 15283.529296875
+295.1509705 16128.9052734375
+302.1292725 21895.86328125
+303.1434631 22533.3984375
+304.1268921 23972.388671875
+305.1337585 3097872.75
+306.118927 1111745.75
+307.1211853 184953.203125
+308.1214905 22247.82421875
+308.8894653 12250.84375
+311.1363831 46409.48046875
+312.1174316 24877.890625
+321.153656 329263.15625
+322.1561584 59251.54296875
+323.0986938 23122.734375
+323.1442566 1075702.5
+324.145752 178926.875
+329.14328 52316.35546875
+338.1413879 48019.52734375
+338.1804504 379428.6875
+339.1833496 60906.7890625
+347.1476135 23295.3203125
+349.1567993 18299.791015625
+351.1299438 14863.99609375
+359.144043 58567.35546875
+366.1856384 100161.53125
+367.188385 24569.19140625
+369.1392212 28086.34765625
+376.1700439 109707.984375
+377.1551208 79725.1640625
+386.1629639 26913.16796875
+394.1806946 735650.4375
+394.2403564 30453.291015625
+395.1826477 164022.734375
+396.1849976 24577.96484375
+412.18927 36158.63671875
+413.1643982 29148.341796875
+420.683197 21748.697265625
+468.2225647 45409.99609375
+477.2182617 18079.7109375
+485.2473755 176785.765625
+486.2500916 66008.625
+488.1856689 50978.890625
+492.2294617 148472.21875
+492.7317505 98398.546875
+493.2232971 17905.06640625
+495.228363 46607.45703125
+505.2119446 50421.20703125
+506.2043152 54594.34375
+512.2230225 39873.74609375
+512.7268066 37440.9296875
+521.2371826 31052.34765625
+523.2215576 396384.125
+524.2247314 95880.1640625
+525.2319946 24790.6328125
+555.2496338 14095.5009765625
+558.737915 19678.328125
+568.2459717 19170.17578125
+571.7512817 89991.375
+572.2741699 285445.0
+572.7512207 22355.2578125
+573.2807007 80658.09375
+576.260376 33283.72265625
+577.2659912 32680.625
+580.2640991 77043.15625
+580.7545776 2074952.25
+581.2559814 1444710.125
+581.3678589 25162.89453125
+581.7578125 489602.625
+582.258667 132519.734375
+589.2693481 25315.337890625
+589.770874 16915.98828125
+598.274353 44598.89453125
+599.272644 29211.44140625
+599.7773438 69563.3671875
+606.260437 34337.02734375
+624.2684326 41169.390625
+625.2767334 19660.458984375
+655.3109741 19427.439453125
+656.2936401 19190.63671875
+673.324707 364656.875
+674.3276367 135339.015625
+675.333374 26001.1953125
+693.2944336 19975.0859375
+711.2991943 21163.525390625
+802.3629761 70382.421875
+803.3659668 35593.88671875
+804.3658447 15379.001953125
+838.6877441 13518.7021484375
+840.3688965 17892.5703125
+867.4108276 15225.0205078125
+873.3996582 73554.1875
+874.4067993 39485.2734375
+1001.462585 19407.6875
+1053.680298 15659.076171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.191.191.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=191"
+RTINSECONDS=20.56254773
+PEPMASS=598.27001953125
+CHARGE=2+
+51.03556824 13698.205078125
+58.13434219 17085.421875
+63.10996628 15741.8857421875
+64.36009216 13138.1953125
+64.52622223 66874.4296875
+64.53047943 40003.28515625
+64.5819931 45845.4765625
+64.58616638 33682.94140625
+64.63814545 16873.15625
+64.64137268 14656.23828125
+74.81175232 16631.087890625
+74.81580353 14258.4033203125
+76.28105927 12702.236328125
+81.8125 15692.2822265625
+99.92932129 13488.4375
+110.0745239 16276.2734375
+119.8493118 14497.2431640625
+130.1325226 15173.4208984375
+146.9376068 13588.671875
+149.564743 32239.62890625
+149.5775299 29502.21875
+169.0594482 34097.234375
+175.1176147 291641.375
+176.1209412 24166.28125
+177.075943 61459.1328125
+178.0437164 24266.939453125
+178.0598602 344932.1875
+178.3343353 24712.9609375
+178.3534393 60908.83203125
+179.0632019 21320.369140625
+179.0918732 21248.59765625
+183.0754395 28021.353515625
+186.0859833 111740.3828125
+194.1021576 55191.12890625
+195.0861816 4278708.5
+195.1278992 36621.984375
+196.0889435 432747.3125
+197.0922394 27147.669921875
+200.1009674 33399.296875
+201.0852661 23148.48046875
+206.0909424 157561.078125
+209.0782928 15541.97265625
+218.1019592 67486.796875
+222.0858154 24133.470703125
+234.0971375 15383.8837890625
+240.0953522 19877.72265625
+243.0868073 22958.119140625
+246.0967102 653412.5
+247.0990295 71410.5859375
+257.1221619 108123.0859375
+258.1250916 16790.97265625
+260.111969 124779.7421875
+262.124115 15449.013671875
+270.0966797 127998.4453125
+277.1377869 17798.59765625
+278.1483154 20498.208984375
+283.1427307 46036.07421875
+287.1231079 163675.5
+288.106842 1678857.25
+289.1096802 252289.953125
+290.1119995 22020.337890625
+294.1176758 22041.701171875
+295.1509399 26769.990234375
+303.1438904 32891.37890625
+305.1333618 3357735.25
+306.1184692 1163866.5
+307.1210327 220444.796875
+308.1199646 19922.046875
+311.1339111 46739.36328125
+312.1170654 29918.97265625
+321.1533508 390847.28125
+322.157196 61999.05859375
+323.1438599 1155638.875
+323.1810608 25248.921875
+324.1456299 179800.609375
+325.1536865 29752.23828125
+329.1423035 38581.234375
+338.1429749 47877.95703125
+338.1798401 435762.71875
+338.6462402 17922.544921875
+339.1825256 81399.5625
+347.1489258 17910.515625
+349.152832 17265.138671875
+351.1370544 21365.05859375
+358.162323 20998.89453125
+359.1434631 68211.6484375
+366.1855774 129406.078125
+367.1889648 40552.65234375
+369.1340637 29845.763671875
+376.169281 123909.140625
+377.1567993 72996.9140625
+386.1645813 40828.30859375
+394.1797791 730771.9375
+394.2396545 19504.357421875
+395.1827393 153540.765625
+412.1907349 44923.31640625
+420.6800842 20340.068359375
+452.1841125 15097.248046875
+460.1921387 17500.6171875
+468.218689 51939.484375
+469.8374329 15347.1982421875
+478.2016602 22492.740234375
+483.2236328 28604.26953125
+485.2463074 252106.25
+486.2480164 71277.28125
+488.1871643 50634.37890625
+492.2277222 150634.421875
+492.729248 114796.78125
+493.2268372 20439.876953125
+495.223938 53452.31640625
+496.2320862 16872.12109375
+503.7099915 22086.822265625
+505.210083 55123.90234375
+506.2036133 60853.39453125
+512.2294922 40021.71484375
+512.7264404 33857.76171875
+521.2303467 49351.7421875
+523.1403198 13284.369140625
+523.2210083 487746.0
+524.2233276 144328.9375
+525.2293091 26517.58984375
+555.2625122 24340.439453125
+558.7415771 20775.40234375
+559.2455444 23157.84765625
+571.7471313 67572.4375
+572.2733154 326459.84375
+573.2764893 105050.5078125
+576.2609253 48060.82421875
+576.7579346 23076.05859375
+577.2623291 20481.625
+580.2598877 82812.4140625
+580.7536011 2390573.75
+580.8425903 28440.216796875
+581.2550049 1705148.375
+581.3374023 23827.373046875
+581.3652954 18710.482421875
+581.7560425 582988.6875
+582.2583008 99935.328125
+589.2666626 69720.390625
+589.7592773 33163.20703125
+598.2721558 72971.296875
+598.769104 23905.40234375
+599.2807617 21165.8515625
+599.7762451 80769.0
+606.2576294 27034.810546875
+607.2581177 24822.333984375
+624.265625 61544.9765625
+655.3165894 26439.052734375
+673.3215942 399394.875
+674.3239136 136851.75
+675.3297729 23335.828125
+693.2866211 21445.359375
+711.2988281 21168.576171875
+802.3635254 81572.859375
+803.3662109 53155.13671875
+873.3969116 77784.2265625
+874.3983154 65717.8671875
+1001.461487 19650.1875
+1017.846985 15547.005859375
+1059.48291 18484.41015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.192.192.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=192"
+RTINSECONDS=20.67084512
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13434219 15465.388671875
+64.52632141 70173.7421875
+64.53076172 51046.015625
+64.58202362 51552.140625
+64.58616638 36798.15625
+64.63800812 23632.1015625
+90.0255661 18405.79296875
+106.3173752 13573.0966796875
+127.7987289 14291.560546875
+149.5761261 37844.78125
+156.5007782 15258.3125
+167.0914459 57281.7109375
+169.0593567 31673.173828125
+175.1178131 282328.3125
+176.1216736 21096.20703125
+177.0761108 61309.91796875
+178.0599518 348885.84375
+178.3496246 85925.78125
+178.4292603 16324.287109375
+179.0634003 23392.056640625
+179.0924835 30623.283203125
+182.091217 25175.171875
+183.075119 25226.978515625
+186.0863342 97307.3046875
+194.1027374 47087.5546875
+195.0863495 4449898.5
+195.1284332 26450.416015625
+196.0892487 428781.53125
+197.0904236 22115.5234375
+206.0910034 169770.953125
+212.1150513 23377.615234375
+215.0924377 22513.09765625
+218.1026154 56166.484375
+240.0968323 30286.072265625
+243.0844269 23277.818359375
+246.0968018 594368.625
+247.0993195 91408.859375
+257.1226196 124248.4765625
+260.1122437 103182.0546875
+270.0965271 120045.109375
+277.1398315 18221.568359375
+278.1498108 21166.87109375
+283.143158 43776.17578125
+287.1235962 151372.828125
+288.1072693 1605492.625
+289.110199 236346.0
+290.1109009 21685.052734375
+295.1490479 22153.572265625
+303.1422424 23908.939453125
+304.1271362 19524.671875
+305.1337891 3243521.0
+306.1191101 1124577.125
+307.1212158 197938.984375
+311.1343994 52499.984375
+312.1161804 26263.853515625
+321.1534729 347885.65625
+322.1571045 76770.8984375
+323.1442566 1096613.0
+323.1888123 34677.91796875
+324.1464844 208176.59375
+325.1529541 19788.072265625
+329.1446838 48583.2578125
+338.1422424 45954.74609375
+338.1804199 372932.09375
+338.6431885 18531.044921875
+339.1828613 73461.3828125
+347.1477966 17133.05078125
+351.1316528 16103.2294921875
+359.1451721 59554.69140625
+366.1865234 145421.546875
+369.1384888 41010.00390625
+376.1702576 136545.921875
+377.1551208 105604.8046875
+386.1630859 18121.580078125
+389.1518555 16259.26953125
+394.180542 762338.5
+394.2400513 25415.708984375
+395.1825256 149471.40625
+412.1875 38214.82421875
+420.6844177 20202.09765625
+460.1903687 27642.041015625
+468.2223816 58907.265625
+477.2122498 20635.361328125
+485.2470398 204354.40625
+486.24823 54564.2109375
+488.1842957 46661.41796875
+492.2287598 187457.890625
+492.72995 98770.515625
+493.2262268 22097.08984375
+495.2275085 46418.6953125
+503.2177124 18873.642578125
+503.7204285 24317.34375
+505.2115479 66221.53125
+506.2014465 60750.16015625
+512.2251587 53896.13671875
+521.2329102 46991.390625
+521.7365723 28245.15234375
+523.222168 495887.375
+524.2236328 117708.1953125
+525.225769 21706.658203125
+530.2466431 18371.17578125
+571.749939 91690.4765625
+572.2745972 349196.625
+573.2800903 117709.1328125
+576.2606812 68905.5703125
+576.767334 42560.69921875
+580.2626343 86662.1484375
+580.7546387 2547498.0
+581.2559204 1768678.125
+581.3672485 20356.5234375
+581.7575073 756790.1875
+582.2590942 130113.6875
+589.2648315 88322.0703125
+589.7672729 66300.5078125
+598.272522 80437.25
+598.7731323 43090.8125
+599.2731323 20462.646484375
+599.7776489 56657.22265625
+606.2592773 35600.83203125
+624.2692261 62676.84375
+655.3126831 18186.68359375
+673.3230591 457826.0
+674.3256836 184872.171875
+675.3295288 28420.939453125
+693.2868042 21722.705078125
+711.2943115 31278.0703125
+802.3618164 92131.5546875
+803.3651123 47788.73046875
+873.3978271 119827.2578125
+874.402832 55214.73046875
+894.7225952 17689.59375
+1001.450012 37371.546875
+1058.47644 16558.7265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.193.193.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=193"
+RTINSECONDS=20.77850349
+PEPMASS=598.27001953125
+CHARGE=2+
+54.61480713 12980.283203125
+64.52614594 60624.671875
+64.53063202 48773.7578125
+64.58198547 34285.3046875
+64.58605957 32286.0703125
+64.6379776 22820.107421875
+64.64130402 19127.626953125
+82.05414581 22162.85546875
+90.57174683 12455.0322265625
+124.1016693 13382.9033203125
+149.5635223 30438.34375
+149.5773926 19992.48046875
+167.0915222 51856.53125
+167.7645874 12008.0146484375
+169.0594025 30856.068359375
+175.1178131 304904.1875
+176.1203613 22617.470703125
+177.0758667 63866.60546875
+178.0600128 318651.65625
+178.3345337 33182.73046875
+178.3535004 47778.4453125
+179.0622101 26298.10546875
+179.0914764 26012.1796875
+182.0913696 18513.482421875
+183.075119 20235.771484375
+186.0860291 125948.140625
+194.1019897 28836.794921875
+195.0863342 4051598.75
+196.0892334 424517.375
+197.0919037 23012.7109375
+200.1011505 33921.125
+201.0849915 21170.603515625
+206.0911865 149330.921875
+215.0907135 15130.728515625
+218.1017761 53243.91796875
+222.0849915 17209.783203125
+234.0972443 23974.58203125
+239.1126404 16214.3271484375
+240.0962219 23383.03125
+243.085556 15890.0703125
+244.1176453 19079.49609375
+246.0968781 644351.0
+247.0995789 76221.859375
+249.0973053 17140.03515625
+257.1221924 90073.3359375
+258.1234741 20719.576171875
+259.1281433 16212.333984375
+260.1126709 137602.421875
+261.1177979 20264.98046875
+270.0966797 115393.171875
+276.105072 17222.859375
+277.1405029 19450.017578125
+278.149292 29009.01953125
+283.1425781 57900.44140625
+287.1233826 158094.59375
+288.1072693 1543336.625
+289.1101379 246619.4375
+290.1139221 16295.8466796875
+294.1173706 18631.47265625
+295.1479797 28228.298828125
+303.1442566 28853.703125
+305.1337891 3157049.5
+306.118927 1173131.5
+306.3193665 14728.4658203125
+307.1207581 203817.515625
+308.1277771 22682.1875
+311.1342468 52205.515625
+312.1156921 21934.451171875
+321.1537476 337139.125
+322.156189 70854.703125
+323.1443176 1113859.625
+324.1466064 181457.03125
+325.1526794 20762.154296875
+329.1429443 55981.69140625
+338.1422424 52047.46484375
+338.1803894 384121.15625
+339.1828918 92887.140625
+341.1454163 16100.7529296875
+347.1459045 27530.158203125
+349.1583252 27091.826171875
+351.1323547 23269.158203125
+359.1434631 65863.4921875
+366.1862488 144232.03125
+367.1903687 21914.23046875
+369.1385498 20959.947265625
+376.1705322 113415.9296875
+377.154541 92190.34375
+378.1618958 16061.544921875
+386.1627808 19122.443359375
+394.1806946 712145.8125
+395.1826477 143966.390625
+396.1852417 27438.57421875
+412.191925 31615.37109375
+420.6864319 13295.78125
+428.1977539 18600.291015625
+452.1840515 15019.83203125
+460.1928406 18410.703125
+468.2211304 49035.8828125
+469.2157593 12216.62890625
+477.2172546 15117.62890625
+478.1992188 16827.69921875
+485.247345 180207.4375
+486.2503662 62909.84375
+488.1860046 47313.03515625
+489.1888428 18909.427734375
+492.2298889 148674.015625
+492.7305908 98417.4296875
+493.2315674 25182.255859375
+495.2277832 61593.01953125
+505.2107239 48170.35546875
+506.2075806 52097.88671875
+512.2254028 43972.63671875
+512.7235107 41943.30859375
+520.7416382 17130.322265625
+521.2327271 24397.103515625
+523.2224121 418654.375
+524.2235718 132127.890625
+525.2280273 21690.3046875
+530.2480469 18988.896484375
+559.2425537 20631.80859375
+571.7481689 82388.9453125
+572.274353 327177.375
+572.7542114 20195.9609375
+573.2811279 80935.828125
+574.277771 18285.01171875
+576.2598877 33811.19921875
+576.7615356 32608.080078125
+577.262085 20537.513671875
+580.2615356 67474.9453125
+580.7545776 2259071.75
+581.2557983 1353261.25
+581.3679199 17521.427734375
+581.7576904 509024.46875
+582.2584229 97110.8125
+589.265564 30182.162109375
+598.2764893 44379.5078125
+598.7758179 38529.1484375
+599.2727661 50408.4609375
+599.7766724 81992.546875
+606.255127 36073.98046875
+607.2584229 24151.76171875
+624.265564 30933.06640625
+655.3165283 21914.171875
+673.3234253 353936.34375
+674.3274536 139397.078125
+675.331604 28255.548828125
+711.302124 16839.44921875
+802.3636475 92080.921875
+803.3712769 43775.734375
+873.4003296 93400.8125
+874.4017944 41425.1953125
+1001.443726 16248.2822265625
+1059.469849 17129.861328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.194.194.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=194"
+RTINSECONDS=20.88855739
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13433075 14701.697265625
+64.33802795 13687.4443359375
+64.52629852 70214.7109375
+64.53044891 50066.703125
+64.58203125 42424.0546875
+64.58618927 31554.53125
+70.59880829 14630.8759765625
+88.26193237 14560.8955078125
+101.59935 12965.642578125
+118.6866837 13011.6689453125
+132.1052704 15735.564453125
+149.5734863 50416.76953125
+167.0927734 24408.28125
+169.0603333 26259.3984375
+175.1020813 25985.19921875
+175.118042 304186.5
+176.1211395 29938.15234375
+177.075882 75009.34375
+178.0601349 330788.53125
+178.33815 70727.4296875
+178.3569489 35279.57421875
+179.0636597 22636.421875
+179.092804 30765.310546875
+183.075119 22256.140625
+186.0865326 93976.1953125
+194.1017303 30046.169921875
+195.0865021 4248759.5
+196.0894012 438250.5
+197.0910034 30426.91796875
+198.4407959 14112.255859375
+200.1023407 31381.541015625
+201.0845947 24758.59765625
+206.0911713 142604.4375
+207.0941772 26041.7421875
+212.8884125 14405.5107421875
+213.0850372 17682.9453125
+218.1021423 64183.484375
+222.087326 22916.060546875
+234.0983734 16526.576171875
+237.1062927 15649.08984375
+239.1131592 15559.40234375
+240.0955505 24236.771484375
+243.0842133 15220.6357421875
+246.0970917 669178.625
+247.0991821 73852.34375
+249.095932 16235.396484375
+255.0362396 16490.123046875
+257.1231995 107123.46875
+260.1124268 125110.2734375
+261.1162415 21005.0
+270.097168 122895.5859375
+271.0997925 21729.771484375
+278.1159668 20686.8671875
+278.1477356 32997.53515625
+283.1444397 54162.1953125
+284.1211548 16199.3544921875
+287.1233215 159202.25
+288.1075134 1707197.25
+289.1104736 230027.21875
+295.1499329 27705.205078125
+303.142395 36916.09375
+305.1341248 3265688.75
+306.1192932 1166201.25
+307.1213379 189411.421875
+308.1216125 25081.916015625
+311.1350403 49021.00390625
+312.1173096 40885.65234375
+321.1542969 359105.6875
+322.1561279 71769.9921875
+323.1445923 1166138.0
+324.1469116 188212.890625
+325.1456604 20872.998046875
+329.1445618 74603.59375
+338.1445007 37054.24609375
+338.1806946 402869.875
+338.6473694 25985.580078125
+339.1824646 62597.5703125
+347.1480103 23126.123046875
+349.1631775 28090.302734375
+358.1656189 19694.087890625
+359.1452026 77541.7421875
+366.1868286 123065.6640625
+367.1890564 24436.642578125
+369.1386719 21006.236328125
+376.1702271 106924.0625
+377.1574097 74107.5234375
+378.1557007 17459.337890625
+386.1629333 23675.51953125
+394.1207275 15778.513671875
+394.1810913 757865.1875
+394.2396851 29131.3828125
+395.1830139 141415.71875
+412.1885986 33567.359375
+420.6741028 18796.28125
+460.1901245 22893.189453125
+461.1885681 15372.7724609375
+468.2211914 47345.3515625
+483.7170715 22957.7265625
+485.2477112 170650.265625
+486.250885 58821.98046875
+488.1860046 60093.9140625
+492.2296448 142076.4375
+492.7297974 83255.9296875
+493.2333374 22290.37109375
+495.227417 52633.59765625
+503.7084351 23565.689453125
+505.2104187 46478.39453125
+506.2092285 51028.23046875
+506.7305298 17726.23828125
+512.2280884 39311.8359375
+512.7341919 18396.50390625
+513.2332764 17471.779296875
+520.7380981 20245.275390625
+521.2329712 51393.7265625
+521.7398071 25752.328125
+523.2224731 450644.8125
+524.2258911 130950.359375
+529.7463989 22013.0546875
+541.2232056 16206.392578125
+559.2422485 31304.0234375
+571.7478027 73639.1640625
+572.2739258 284871.53125
+572.758667 18591.6171875
+573.2816772 123048.1171875
+576.2601929 45036.140625
+576.7616577 19353.3984375
+577.265564 37139.23046875
+577.7620239 16587.548828125
+580.2630615 94754.625
+580.7553101 2556753.5
+581.2567139 1762097.5
+581.3655396 22553.9453125
+581.7584839 563002.5625
+582.2583008 119712.390625
+589.2670288 65520.59375
+589.7637329 34537.3359375
+598.2738037 33613.3046875
+598.7736206 43731.66015625
+599.2750244 51790.0078125
+599.7776489 101899.4140625
+606.2572632 24405.408203125
+624.2658081 48289.51171875
+625.2782593 21929.666015625
+655.3129883 26016.60546875
+673.3242798 424046.15625
+674.3283081 152342.703125
+675.3265991 30513.484375
+711.2976685 22663.125
+802.3631592 106266.0390625
+803.3711548 47593.1953125
+873.3999023 99595.5625
+874.4057007 43646.859375
+1001.463684 17886.091796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.195.195.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=195"
+RTINSECONDS=20.99720085
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629852 69255.7890625
+64.5304718 44911.51953125
+64.58226013 37599.875
+64.58630371 27592.265625
+64.63813782 22905.162109375
+64.64138031 19004.56640625
+74.81108856 13779.103515625
+83.96099854 17460.962890625
+121.9902954 15716.447265625
+149.5632019 35016.31640625
+149.5770874 25677.7421875
+167.0919952 46205.38671875
+169.0593719 24809.970703125
+175.1179352 314141.96875
+176.1220093 18492.048828125
+177.0759583 85433.3984375
+178.0435181 32697.408203125
+178.0601807 334433.0
+178.3344727 38896.0703125
+178.3536682 65217.60546875
+179.0630341 21674.451171875
+179.0920258 25681.65625
+182.0924683 18324.56640625
+186.086441 107553.046875
+192.7301025 16011.2431640625
+194.1029053 33269.9453125
+194.8043518 15806.6025390625
+195.0455322 26105.458984375
+195.0865479 4574728.5
+196.089325 439611.0625
+197.0906982 31249.513671875
+200.1005707 17198.296875
+201.0857697 24657.6796875
+206.0912781 163897.484375
+212.1132202 18924.453125
+215.090271 19775.935546875
+217.128418 19651.390625
+218.1018219 44094.22265625
+232.1176758 18486.578125
+234.0983124 22450.158203125
+240.0952454 18984.212890625
+241.9514771 17887.068359375
+243.0879974 21692.833984375
+246.0970917 662756.125
+247.099884 96619.7109375
+249.0963745 24503.26953125
+257.1226196 96670.4921875
+260.1127625 101223.8828125
+261.1173706 23327.97265625
+269.1396484 15018.9755859375
+270.0969849 105052.8671875
+278.1190796 24513.849609375
+283.1419983 43842.14453125
+287.1238403 187855.421875
+288.0768127 29523.359375
+288.1076355 1722008.5
+289.1105957 241087.125
+290.1130066 27419.509765625
+294.1187744 24026.716796875
+295.149353 29258.873046875
+303.1440735 39889.09375
+305.104248 65450.1171875
+305.1342163 3472942.5
+306.1194458 1204587.0
+307.1221008 216826.640625
+308.1235962 24358.900390625
+311.1351013 45733.578125
+312.1169434 25122.064453125
+318.1421204 17658.265625
+321.1542969 357686.40625
+322.1579285 59148.2890625
+323.1447754 1191721.625
+323.188324 38951.08203125
+324.1469727 220738.203125
+325.1502686 24136.162109375
+328.1610718 24579.9609375
+329.1433716 52183.41015625
+332.0899963 20201.634765625
+338.1424255 58754.1953125
+338.1808472 423234.34375
+339.1835938 75527.671875
+358.1605835 20767.865234375
+359.1458435 55865.51171875
+366.186676 143921.515625
+367.1893005 26457.443359375
+376.1704712 126491.875
+377.1577454 93789.1953125
+378.157196 21562.171875
+386.164978 29280.603515625
+394.119812 19110.669921875
+394.1811829 774599.4375
+394.2404785 32751.736328125
+395.1831055 206358.015625
+412.1860046 30196.81640625
+420.6825256 32550.908203125
+421.1827698 20683.009765625
+464.1737366 21247.474609375
+468.2216797 68903.3046875
+477.2179565 24462.091796875
+478.204895 21828.060546875
+483.7156067 22477.33203125
+485.2477112 221951.375
+486.2497253 59050.59375
+487.2138062 20276.212890625
+488.190033 50171.671875
+492.2294312 191479.4375
+492.7314148 101703.890625
+493.2315063 48049.10546875
+495.2274475 62367.83984375
+503.2256775 21154.068359375
+505.2117615 53515.234375
+506.2109985 46689.875
+512.2240601 44853.19921875
+512.7286377 38160.92578125
+521.2277222 23233.6796875
+521.7338867 19257.169921875
+523.2229004 442993.6875
+524.2246094 131791.03125
+525.2290039 25890.458984375
+558.744751 19267.857421875
+559.2411499 19731.013671875
+571.75 96157.1171875
+572.2750854 292597.34375
+572.7504883 33890.45703125
+573.2805176 68467.9453125
+576.2642212 41208.73046875
+576.7609253 26617.099609375
+577.2661133 24884.0703125
+580.2628784 74046.46875
+580.7556763 2588630.75
+581.2570801 1650533.375
+581.7585449 590091.8125
+582.2600708 108115.90625
+589.2674561 98279.859375
+589.7637329 52026.234375
+598.2733154 52038.08984375
+598.7728271 36132.93359375
+599.7774048 44788.96875
+606.2594604 27077.5078125
+624.2703857 52459.25390625
+673.3256226 456738.5
+674.3293457 143303.234375
+675.3291626 34745.19140625
+693.2952881 22307.404296875
+802.3646851 96627.6328125
+803.3675537 52529.4140625
+873.4003296 123486.7734375
+874.4039917 46867.40234375
+1001.462708 37501.83203125
+1058.483398 20264.380859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.196.196.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=196"
+RTINSECONDS=21.10425535
+PEPMASS=598.27001953125
+CHARGE=2+
+56.81678009 13343.248046875
+64.52629089 59749.80859375
+64.5304718 41828.1484375
+64.5819931 44303.765625
+64.58605194 33223.55859375
+64.63809967 17739.287109375
+74.81183624 16940.421875
+74.81582642 14897.2470703125
+76.28108978 16381.1435546875
+149.5632019 30072.720703125
+149.5769653 32452.73828125
+167.0915375 41704.05078125
+169.0601807 19906.84765625
+175.117691 283051.09375
+176.1212769 17995.751953125
+177.0754852 63936.26953125
+178.059845 352025.09375
+178.3434296 89154.7578125
+179.0635223 29868.904296875
+179.0911102 28176.109375
+183.0749969 23702.912109375
+186.0860291 89266.7578125
+194.1018982 40422.91796875
+195.0862579 4093299.0
+196.0891266 440400.1875
+197.0914154 26549.830078125
+200.102356 23089.40234375
+201.0850067 21150.541015625
+206.0908813 143126.53125
+207.0930481 17262.328125
+215.0903168 16680.0234375
+218.1021729 50849.8984375
+221.1016846 15176.28515625
+231.0941315 15061.884765625
+243.0857239 28910.408203125
+246.096756 670424.375
+247.0996399 86965.2109375
+249.0974426 18001.19921875
+253.1023254 15737.5927734375
+257.1228027 106867.078125
+260.1119995 118038.609375
+270.0968628 139884.890625
+271.1033325 17679.6953125
+277.1392822 25100.208984375
+278.1487732 24110.845703125
+283.1428528 49717.5625
+287.1230469 149443.9375
+288.1071472 1545507.75
+289.1100769 233322.453125
+294.1180725 18997.294921875
+295.1516113 16901.013671875
+303.1438293 33696.09375
+305.1335754 3053800.5
+305.2163086 19562.529296875
+306.1187439 1138096.625
+307.1213379 183476.046875
+308.1268616 17805.482421875
+311.1342163 48343.28125
+312.1144409 31895.005859375
+321.1535645 334776.28125
+322.1561279 47123.97265625
+323.144104 1103030.375
+324.1460571 180009.125
+329.1441345 49139.84765625
+338.1426392 48132.328125
+338.1802368 415927.34375
+338.6489868 21073.84375
+339.1828308 65218.4140625
+347.1468506 34061.53515625
+349.1575317 31101.166015625
+351.1349487 19475.900390625
+359.1443176 65547.1796875
+366.1859741 131025.6640625
+367.1882019 20494.00390625
+369.1386719 33618.921875
+376.16922 135073.765625
+377.1568298 100867.421875
+386.1636353 33004.29296875
+394.0915222 17027.677734375
+394.1802368 685555.375
+395.1811218 132231.1875
+396.1802063 17003.97265625
+412.1874695 33943.08203125
+413.1776733 13083.041015625
+420.6785583 19628.533203125
+460.1894226 21978.306640625
+468.2213745 54133.07421875
+469.221405 22980.939453125
+485.2467957 209120.953125
+486.2496033 69224.0078125
+488.184845 53499.16015625
+492.2286377 138692.828125
+492.729126 111875.9609375
+493.2313538 17453.087890625
+495.2252502 57121.45703125
+503.2213135 18723.375
+505.2115479 47846.30859375
+506.2068481 48016.55078125
+506.7282104 14823.1533203125
+512.2255859 46536.234375
+512.7232666 23228.546875
+521.2318726 37651.83984375
+523.2211304 457446.21875
+524.2237549 109586.578125
+525.2350464 15913.8203125
+529.7409058 20161.6171875
+541.2336426 18770.900390625
+558.7383423 19136.873046875
+567.7539062 19056.431640625
+571.7455444 72145.84375
+572.2719727 292719.71875
+573.2799072 67191.015625
+574.2808228 18226.888671875
+576.2608032 66302.65625
+577.262207 19923.75
+580.2614746 82237.46875
+580.7540894 2287714.0
+581.2554321 1542171.75
+581.3383789 24051.103515625
+581.7570801 643939.4375
+582.2579956 133798.8125
+589.2661133 69678.3046875
+589.7623291 28741.53125
+598.2684937 39113.59765625
+598.7709351 33041.08984375
+599.2794189 35003.94140625
+599.7764893 63804.99609375
+606.2595825 28454.576171875
+624.2643433 49856.50390625
+625.269104 23363.462890625
+647.1395874 19571.322265625
+673.3224487 419961.3125
+674.3260498 171350.28125
+675.3273926 36984.20703125
+693.2913208 29268.240234375
+711.2928467 18057.919921875
+802.362915 86614.921875
+803.3685913 41912.6171875
+873.3950195 95429.2109375
+874.3986816 65023.671875
+1001.459595 36976.390625
+1058.47168 18500.5
+1069.849365 15924.177734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.197.197.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=197"
+RTINSECONDS=21.21322662
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13428879 18682.19140625
+58.13713074 16100.7958984375
+64.52616119 61119.86328125
+64.53045654 46177.26953125
+64.58188629 46891.84375
+64.58615875 28518.69921875
+64.63813782 21561.30859375
+64.64134216 13548.9140625
+80.61377716 12829.548828125
+149.5632324 30987.8125
+149.5771027 31718.806640625
+152.8179626 15039.7529296875
+158.4897461 14927.2490234375
+167.0919647 41897.4296875
+169.0607758 30967.49609375
+175.117691 298023.5625
+177.0761719 69075.7109375
+178.0599518 328866.75
+178.335495 41793.1953125
+178.3546448 33034.24609375
+179.0630646 18196.201171875
+179.0918579 16257.9521484375
+182.091156 20294.73828125
+183.0752563 15828.1357421875
+186.0859528 97401.0546875
+194.1018524 41102.37890625
+195.0862732 4162607.5
+196.0891876 388102.03125
+197.0916901 22833.265625
+200.1017609 23819.537109375
+201.0856628 20448.48828125
+206.0910034 168455.390625
+218.1027222 35079.09375
+222.0864258 15186.4658203125
+234.0957031 22698.478515625
+240.0981445 18495.125
+243.0857697 20889.26953125
+246.096756 668785.1875
+247.0995026 81514.6953125
+257.1222839 95266.515625
+260.1127014 115152.0625
+270.0968628 132391.640625
+271.1022034 20542.75
+278.1169739 18825.689453125
+278.1493835 26196.4140625
+283.1434021 43580.0859375
+287.1231995 165055.1875
+288.1071777 1572931.0
+289.1099243 253479.78125
+290.1114807 17703.55859375
+294.1147766 13760.306640625
+295.1492004 31365.5234375
+303.1443176 19565.072265625
+305.1336365 3234882.25
+306.1187744 1143580.0
+307.1211548 184885.640625
+308.1226196 28875.173828125
+311.1349182 52928.96484375
+312.117981 40491.40234375
+321.153595 342028.4375
+322.1559143 43081.97265625
+323.0982666 17291.677734375
+323.1441956 1124043.125
+324.1465759 194135.796875
+325.1463013 14000.0068359375
+329.1428833 53560.98828125
+338.142395 41488.11328125
+338.1801758 439892.625
+338.6439819 24460.212890625
+339.1439209 16516.576171875
+339.1830139 77212.3203125
+341.1434937 18365.189453125
+346.1698608 15755.1103515625
+347.1506653 27332.560546875
+349.1605225 24938.751953125
+351.1308289 15022.2861328125
+359.1438904 70835.671875
+366.1855469 119031.1171875
+367.1882019 27721.75
+369.1401367 40965.359375
+376.1702576 97707.7109375
+377.1557007 84493.890625
+386.1602478 29224.2734375
+394.1804504 719603.4375
+394.2403564 20766.841796875
+395.1817932 152738.0
+398.1699524 14074.08984375
+412.1901855 38667.04296875
+460.1896973 26825.076171875
+468.2184143 52623.7265625
+477.2084656 17613.6328125
+478.202301 22170.220703125
+485.2471008 195626.890625
+486.24823 49738.421875
+488.1860046 53676.5390625
+492.229248 151269.984375
+492.7297974 81295.1484375
+493.2260132 22230.75
+495.2263794 54008.37890625
+503.7157898 32465.94140625
+505.2110291 50894.5625
+506.2071533 47569.48828125
+512.2252808 37847.078125
+512.7276001 27860.755859375
+521.2364502 25068.083984375
+523.2215576 433661.6875
+524.2236938 116722.7421875
+525.2261353 32045.81640625
+529.7456665 17055.228515625
+558.234436 16507.359375
+559.2481079 21389.283203125
+567.2589722 23766.65234375
+571.7503052 80361.515625
+572.2739258 350082.25
+572.7595215 15514.6123046875
+573.2826538 92172.90625
+574.2797241 29100.646484375
+576.2595215 47007.5625
+576.7617798 26205.392578125
+580.2632446 99006.265625
+580.7545166 2288057.5
+581.2557373 1576778.75
+581.3352661 28829.447265625
+581.7573853 565096.8125
+582.258728 98708.3359375
+589.2593384 37794.296875
+589.7615356 26749.17578125
+598.2732544 59644.140625
+598.7759399 30463.9921875
+599.2749634 25159.998046875
+599.7787476 70917.8984375
+606.260437 35447.93359375
+624.2687378 52668.15234375
+625.2678833 17693.474609375
+673.3233643 458533.625
+674.3251343 145421.609375
+675.3344727 21199.634765625
+693.2848511 30068.701171875
+711.3019409 20446.26953125
+802.3632812 100166.0859375
+803.3699341 46877.30078125
+873.4013672 84532.7421875
+874.3970337 40816.3203125
+1058.465454 21549.009765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.198.198.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=198"
+RTINSECONDS=21.32242675
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52628326 52900.59375
+64.53047943 35215.79296875
+64.5819931 38829.3359375
+64.58616638 27175.873046875
+64.63801575 19156.6171875
+64.64149475 15914.189453125
+70.61923218 12205.0341796875
+76.28569794 18141.80859375
+84.21513367 13548.33984375
+100.713829 12261.1064453125
+132.2088318 14021.2216796875
+141.3078308 12523.5166015625
+149.5630035 25016.251953125
+149.5769501 25226.373046875
+164.2952576 12110.87890625
+167.09198 40975.24609375
+169.0600739 27487.6875
+175.1180115 291664.625
+175.1337738 24043.9765625
+176.1212006 19178.4921875
+177.0763855 62697.85546875
+178.0601349 325055.09375
+178.0780029 15661.9677734375
+178.350769 66163.6015625
+179.0643005 26910.673828125
+179.0916443 24559.689453125
+182.0916443 23268.291015625
+183.0756073 18032.171875
+186.0865631 111840.3203125
+190.0604248 16164.7587890625
+190.3269196 11411.359375
+194.10289 26470.4375
+195.0650635 34621.5
+195.0865784 4091835.25
+195.1283417 28364.201171875
+196.0893707 423931.5625
+197.0914459 23084.083984375
+200.1019135 25437.19140625
+204.1035156 13136.923828125
+206.0913086 173249.40625
+207.0961304 16661.12109375
+209.0998993 19228.66796875
+210.0622406 13667.2451171875
+215.0903778 13251.3857421875
+218.1030731 51014.7734375
+222.0873566 14777.919921875
+234.0979004 25343.359375
+237.1091156 13768.9716796875
+240.0948792 28274.03125
+241.1002808 15239.5712890625
+243.0844421 14302.8759765625
+246.0972748 611211.875
+247.1001129 78303.7421875
+248.1135406 17240.236328125
+249.0956116 13906.080078125
+257.1227417 103460.671875
+258.1259155 22385.59765625
+260.1127014 122017.65625
+267.1140747 11925.1708984375
+270.0973511 109559.2421875
+271.1002808 14494.3759765625
+278.1170349 15318.599609375
+278.151062 26783.130859375
+278.1863708 11222.8701171875
+279.1516113 12576.5087890625
+283.143158 43665.32421875
+287.1236267 142277.125
+288.1076965 1694385.625
+289.1106873 250516.09375
+290.1121216 15973.8603515625
+295.1492615 31735.837890625
+302.1324158 13115.876953125
+303.1438293 38431.79296875
+305.1044922 54882.33203125
+305.1343079 3147501.75
+306.1195984 1095478.375
+307.1216431 175999.890625
+308.1233215 25771.455078125
+311.1347961 45946.8515625
+312.1183472 35555.48828125
+321.1546326 332779.28125
+322.1578674 55214.359375
+323.1448669 1128829.5
+324.1473694 184997.296875
+328.1602173 16554.263671875
+329.1435242 49503.296875
+338.1431885 47348.015625
+338.1809998 408867.46875
+339.1842041 81663.0234375
+349.163147 17832.587890625
+351.1343079 21682.70703125
+358.5717163 14441.0859375
+359.1452332 62912.765625
+366.1867371 124104.4375
+367.1903381 18321.44921875
+369.1386414 33829.6484375
+376.1708679 110734.1484375
+377.1567078 88893.6328125
+378.1601868 15290.5537109375
+386.1663208 35726.86328125
+394.1815186 737469.6875
+394.2405701 28429.333984375
+395.1835632 151297.65625
+396.1815186 15178.8935546875
+412.1896362 36208.453125
+420.6836853 20189.65234375
+421.1844788 13484.8134765625
+460.1897888 21844.880859375
+468.2220154 51836.328125
+469.2272339 12885.2880859375
+478.2093811 24107.087890625
+481.8830872 13019.873046875
+483.2270203 15635.0751953125
+483.7250671 14934.560546875
+485.2480774 224256.640625
+486.2507935 55505.5625
+488.1871338 55165.89453125
+492.2301941 165160.953125
+492.732605 84339.9921875
+493.2325134 25103.8203125
+495.2279358 51252.65625
+505.2129822 46479.20703125
+506.2068787 70424.671875
+512.2260132 44664.3515625
+512.7265015 25186.12109375
+521.2366943 34079.38671875
+521.7267456 16547.763671875
+523.2232666 439598.96875
+524.225769 118308.796875
+525.2365723 29278.9765625
+529.7481079 17430.41796875
+555.2564697 25193.474609375
+558.7509766 19165.509765625
+571.7520752 62221.828125
+572.2754517 306640.65625
+572.7510376 28063.1640625
+573.2831421 104926.3828125
+574.2766113 20930.779296875
+576.2620239 26072.54296875
+576.7637939 22960.73828125
+577.2640991 21984.23046875
+577.7594604 18264.962890625
+580.2615356 78026.390625
+580.7565918 2213392.5
+581.2573242 1399487.0
+581.3660278 18683.328125
+581.7590942 543173.0625
+582.2609863 106515.0625
+589.269104 30839.6875
+598.2694702 42341.58984375
+598.7774048 41871.3828125
+599.2796021 41863.8203125
+599.7785034 108279.3515625
+606.2601318 34363.1953125
+624.2681274 56098.9765625
+655.3114624 17142.646484375
+673.3259277 410960.4375
+674.3293457 137960.171875
+675.3282471 21334.51171875
+693.2913208 20494.380859375
+744.5766602 16411.080078125
+802.3657837 82949.7421875
+803.3623047 33191.109375
+873.4040527 86516.65625
+874.4037476 34239.78515625
+1001.463013 18508.5390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.199.199.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=199"
+RTINSECONDS=21.43261869
+PEPMASS=598.27001953125
+CHARGE=2+
+57.53357697 14742.0751953125
+64.52624512 68817.7109375
+64.53048706 45985.3984375
+64.58226776 35388.4765625
+64.58625031 33989.859375
+94.93184662 14468.236328125
+149.5745544 51435.1015625
+153.6936188 16680.34765625
+167.0921326 31675.103515625
+169.0600586 32147.9609375
+175.1179047 285746.9375
+175.1340485 29187.033203125
+177.0756531 75360.859375
+178.0601349 351951.46875
+178.0781555 18526.958984375
+178.3415375 95672.9921875
+186.0864563 114652.203125
+194.1029663 36151.34765625
+195.0865173 4361446.0
+195.12854 27226.517578125
+196.089325 409045.09375
+197.0910645 36307.88671875
+200.1021118 25148.669921875
+206.0912018 154624.59375
+207.0935822 18919.80859375
+218.1024323 51481.75390625
+231.7776184 16383.2646484375
+233.127182 19523.966796875
+237.109314 19083.25390625
+240.094162 23091.470703125
+246.0971832 595779.9375
+247.1000824 78753.0546875
+257.1230469 108075.078125
+260.1127625 131429.3125
+261.118103 19108.64453125
+270.09729 138472.625
+271.0997314 19195.931640625
+276.1342468 21430.7734375
+283.1428223 48635.16796875
+287.1236572 167012.84375
+288.107666 1600154.875
+289.1104736 241672.21875
+290.1134644 20418.822265625
+294.1182251 20601.427734375
+295.1477356 30291.376953125
+303.1435852 28249.919921875
+304.1272583 20771.162109375
+305.1341553 3296471.25
+306.1194763 1161086.875
+307.1213684 214880.390625
+311.1366272 41185.1875
+312.1163635 35650.30078125
+320.1714783 20318.083984375
+321.1544189 346175.15625
+322.15625 56102.65234375
+323.0987549 29736.05859375
+323.1447449 1170009.625
+324.146759 149742.0625
+325.1495972 41803.71875
+329.1437073 67094.65625
+331.149292 18879.51171875
+338.1422729 54775.8359375
+338.1809692 388341.65625
+338.6464233 43039.81640625
+339.1827087 83407.6796875
+347.1483459 27145.177734375
+351.1318665 17503.8671875
+359.1455078 54962.87890625
+360.150116 18634.5390625
+366.1869507 141033.1875
+369.1380615 29849.658203125
+376.1708374 120374.6328125
+377.1577759 86891.875
+386.1655273 37192.6484375
+394.1813354 723832.25
+395.1831055 163230.703125
+412.1836548 33124.65625
+420.6875 23890.318359375
+460.1913757 30931.5546875
+463.1927795 24672.056640625
+468.2218628 58569.5078125
+469.2102661 18603.73828125
+478.2064514 18085.150390625
+485.2478638 195215.75
+486.2501831 55629.95703125
+488.1852722 36003.1796875
+492.229126 158663.328125
+492.7318115 100048.328125
+493.234314 23545.26171875
+495.2266235 66412.40625
+505.2102661 60979.20703125
+506.2016907 50738.76171875
+512.2285156 46829.30078125
+512.723938 20477.0234375
+521.2345581 45387.44140625
+523.2228394 455672.15625
+524.2260742 123922.015625
+525.2280884 25910.212890625
+567.2521973 21667.751953125
+571.7515869 69540.4296875
+572.2758179 319510.5
+572.7489014 21549.857421875
+573.281189 92064.59375
+576.2597656 44852.0625
+576.7639771 23361.56640625
+577.2728271 27479.8984375
+580.2648926 92369.1328125
+580.7558594 2428431.0
+581.2571411 1591045.875
+581.6489258 20345.701171875
+581.6762085 10583.8466796875
+581.758667 657057.125
+582.2594604 120004.9921875
+589.2669678 98915.2734375
+589.7694092 62285.9296875
+598.2755127 57973.1015625
+598.7720337 28754.404296875
+599.7774658 67445.0703125
+606.2599487 36607.19921875
+624.269104 41420.08203125
+673.3255005 402492.125
+674.3278198 160488.953125
+675.3274536 35637.28125
+711.3041992 29364.6328125
+802.368042 97218.03125
+803.3703613 40329.0078125
+858.3765869 21148.025390625
+873.4046631 94921.515625
+874.4042358 48030.03515625
+1001.459717 27784.0546875
+1002.468079 30163.83984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.200.200.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=200"
+RTINSECONDS=21.54024592
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91151428 15996.9296875
+58.13454437 19646.59765625
+64.5262146 75570.59375
+64.53044891 50478.15234375
+64.58198547 49403.421875
+64.58618927 39915.69921875
+64.63814545 18011.81640625
+64.64135742 19194.94140625
+74.61739349 14618.1416015625
+81.04694366 20006.64453125
+103.7875366 16483.77734375
+124.4676208 16292.865234375
+149.5630646 38477.6953125
+149.5773315 25176.900390625
+167.0914917 32919.25390625
+169.0597687 27889.81640625
+173.1188202 15754.7138671875
+175.1021576 23757.607421875
+175.1177063 312792.5
+176.1195984 22273.390625
+177.0761566 47801.3515625
+178.0599518 319085.5
+178.349472 93456.6484375
+179.0631561 25898.279296875
+179.0914459 26979.267578125
+182.0924988 17514.775390625
+183.0748596 25837.806640625
+186.0861816 135570.3125
+194.1017303 40666.85546875
+195.0862732 4751755.5
+195.1282043 28552.927734375
+196.0890656 491522.4375
+197.0916901 27761.322265625
+200.1011505 19624.771484375
+206.0910187 183139.59375
+207.0946198 19021.607421875
+215.0913239 26112.50390625
+218.1022491 46842.2734375
+222.0850983 16486.4609375
+240.0940247 19718.78515625
+243.0862732 24087.673828125
+244.0911713 17245.412109375
+246.096817 645340.0
+247.0997772 78369.453125
+249.0970459 26641.916015625
+257.1225281 127182.59375
+260.111969 125157.265625
+270.0968628 138027.984375
+278.1479492 26050.671875
+283.1454163 47991.515625
+287.1228943 178656.546875
+288.1072388 1643302.875
+289.1103516 247706.59375
+292.6152344 18963.27734375
+295.1478577 26302.525390625
+303.1434021 30242.1484375
+304.1290894 22037.21875
+305.1337585 3548739.75
+306.1189575 1201579.125
+307.1214905 198429.265625
+308.1242676 22315.216796875
+311.1357727 61054.671875
+312.1163025 51518.6015625
+321.1538086 381430.65625
+322.1562805 75168.9140625
+323.0987244 18891.662109375
+323.144165 1176305.25
+324.1462708 191035.515625
+329.1434021 58207.9375
+338.1424866 47829.82421875
+338.1803284 472272.65625
+339.1826172 95062.828125
+347.1524658 22569.06640625
+358.1610107 19314.37109375
+359.1439514 60217.74609375
+366.1859131 135958.515625
+367.1877747 25257.453125
+369.1378479 30524.896484375
+371.7150879 20500.787109375
+376.1697388 151332.265625
+377.1567993 70361.3359375
+386.1626282 26876.888671875
+394.1807556 844265.0625
+394.2393188 30979.400390625
+395.1824036 160428.453125
+396.1841431 25091.701171875
+398.1682739 18810.9375
+412.1852112 41229.53515625
+413.8128052 18626.18359375
+420.6819763 32923.30859375
+434.1714783 22255.908203125
+468.2209778 56757.8125
+477.2197571 22409.080078125
+478.2069397 27440.73046875
+485.2471008 267554.78125
+486.2475281 59929.33984375
+488.1852112 65118.82421875
+492.2289124 214636.296875
+492.7306519 123520.109375
+493.231842 28076.015625
+495.2252197 50434.1171875
+496.227478 19917.27734375
+503.7135925 28155.501953125
+505.2107544 75092.0390625
+506.2076721 57386.3203125
+512.2224121 41541.98828125
+520.7229614 20669.71875
+521.2265625 26658.333984375
+523.2214966 560507.3125
+524.2241821 154243.375
+525.2294312 32471.869140625
+529.7443848 27909.283203125
+561.2355957 18182.830078125
+571.7506104 86227.484375
+572.2738647 411167.46875
+573.2800903 114756.6796875
+576.2631226 64321.41015625
+576.7683716 33510.80859375
+580.2624512 132681.296875
+580.7546387 2855089.5
+581.2559204 1895939.0
+581.3358154 39982.44140625
+581.7572632 705559.0625
+582.2572021 134141.546875
+589.2674561 149010.15625
+589.7667236 56952.98828125
+590.2642822 41746.7734375
+598.2727661 88339.8671875
+598.7692261 31150.80859375
+599.7755737 27619.275390625
+606.2557373 59379.84765625
+624.2679443 63772.1171875
+625.2716675 30081.255859375
+673.3234863 469507.28125
+674.3265381 181746.546875
+802.3643799 106554.1015625
+803.3688354 32294.51171875
+873.4019165 110647.890625
+874.4057617 51510.0
+1001.457153 23176.380859375
+1058.481567 23345.703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.201.201.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=201"
+RTINSECONDS=21.64664059
+PEPMASS=598.27001953125
+CHARGE=2+
+52.16412354 12281.4267578125
+54.59513855 11647.6181640625
+58.13426208 12253.6357421875
+58.13754654 15050.4345703125
+59.29454803 11960.7861328125
+64.52626038 65228.4296875
+64.53065491 45260.8671875
+64.58200073 51244.10546875
+64.5861969 38294.76953125
+64.63801575 18859.265625
+65.97141266 13618.6943359375
+67.16471863 13383.767578125
+76.28592682 14273.4189453125
+105.0527954 14280.3359375
+118.825119 12880.9833984375
+149.5740509 40239.58984375
+167.0918579 42698.625
+169.0600891 32654.66015625
+175.1179047 310472.65625
+176.1212006 18040.009765625
+177.0761108 56737.4140625
+178.0600739 347486.0625
+178.0777588 20113.724609375
+178.3365631 53865.40625
+178.356369 31172.869140625
+179.0631866 20153.376953125
+179.0916595 28080.96875
+183.0751953 30505.322265625
+186.0861359 109968.8984375
+190.0595856 17283.1328125
+194.1026917 41003.578125
+195.0864563 4216994.5
+195.1280518 25428.349609375
+196.0890808 446862.5625
+197.0918121 31555.25390625
+200.102478 19746.208984375
+201.0870667 14598.59375
+206.0911255 165479.734375
+213.0842285 15688.494140625
+217.1292725 19041.74609375
+218.1023407 49825.53125
+234.0993652 24889.4375
+240.0955353 32039.845703125
+244.1167603 15640.765625
+246.0970306 708399.8125
+247.0998688 82919.84375
+257.1232605 103299.0625
+258.125061 20072.255859375
+260.1127319 113940.609375
+262.1264343 15131.6748046875
+270.0970154 131851.296875
+276.1336975 20954.162109375
+278.1491089 32291.7578125
+283.1419373 49676.54296875
+287.123291 148255.546875
+288.1075134 1637235.375
+289.1103516 223519.296875
+290.1105957 19614.62890625
+294.1184692 21753.640625
+295.1489258 16963.54296875
+303.1434021 23131.625
+305.1341248 3160886.0
+305.2158813 22256.759765625
+306.1191101 1172052.875
+307.1213684 180653.875
+308.1219482 15785.3984375
+311.133667 39490.703125
+312.1184692 39265.26953125
+321.1539307 358509.125
+322.1566772 56367.03125
+323.1445923 1112895.25
+324.1469421 167874.921875
+325.1524048 17322.865234375
+329.1448364 50658.1875
+337.1601868 18465.236328125
+338.1430359 42224.03515625
+338.1807556 418717.0625
+338.644165 19525.607421875
+339.1835632 61185.37109375
+346.1701965 13405.701171875
+349.1618347 26708.6953125
+351.1312561 15215.9287109375
+359.1447449 69923.3515625
+366.1871643 127751.1796875
+367.1903381 22262.880859375
+369.139801 28062.623046875
+376.1699829 107505.3984375
+377.1558228 74806.359375
+386.1643066 36245.94140625
+387.712738 14199.40625
+394.1207886 17182.376953125
+394.1376343 13468.1162109375
+394.1811523 672463.625
+394.2402344 25802.21484375
+395.1832275 140329.84375
+396.1860962 19815.244140625
+397.6791687 15637.115234375
+398.1738586 22600.11328125
+412.1868591 41668.03125
+461.1923523 15715.9375
+468.2198181 39692.97265625
+469.2109375 18502.91796875
+485.2475891 194529.75
+486.2507324 61183.5546875
+488.1861572 51136.89453125
+492.2294922 141473.96875
+492.7307434 78473.0625
+493.2284546 24181.6796875
+495.2279358 56173.484375
+496.2271118 18539.640625
+505.2105713 54835.69921875
+506.2046814 52298.3828125
+512.2312622 23204.73828125
+512.727356 21925.69921875
+521.2363892 39957.15234375
+521.7313843 26052.779296875
+523.2223511 430332.125
+524.2255859 131425.84375
+525.2313843 33413.35546875
+530.2436523 20373.240234375
+554.2711182 16317.21484375
+559.2428589 29491.796875
+567.2478638 28302.15234375
+571.7497559 101336.8515625
+572.2747803 330541.15625
+572.7508545 22104.25
+573.2822876 102184.515625
+576.262146 38060.3125
+576.7617798 25747.384765625
+577.2628784 21292.32421875
+580.2630005 89116.625
+580.7554932 2391203.0
+581.2567139 1720581.0
+581.7584839 602711.25
+582.2589722 145370.953125
+589.2676392 38308.6015625
+598.2722778 67451.390625
+598.7758179 24688.333984375
+599.2768555 41582.5234375
+599.7767334 111426.875
+606.2583008 36670.40625
+624.2713013 57610.203125
+625.2771606 17805.96875
+655.3154297 19664.87109375
+673.3253784 406552.59375
+673.4522095 26352.376953125
+674.3275146 173143.796875
+675.3268433 40139.4921875
+693.2875366 18039.87890625
+711.2893677 17890.970703125
+712.2837524 17247.423828125
+802.3632202 88839.6953125
+803.3692627 41121.01953125
+873.4006348 103281.8203125
+874.4042358 41461.9921875
+1001.450562 26003.380859375
+1058.489624 16281.72265625
+1085.5979 14913.177734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.202.202.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=202"
+RTINSECONDS=21.7561153
+PEPMASS=598.27001953125
+CHARGE=2+
+60.85317612 16875.57421875
+64.52633667 75476.890625
+64.53051758 53272.44140625
+64.58196259 56713.8359375
+64.58609772 46062.52734375
+74.81134033 18873.318359375
+97.70407104 18336.515625
+149.5650482 59374.9296875
+167.0919189 50292.6875
+169.0592804 48538.0859375
+175.1177521 340170.90625
+177.0759125 81343.125
+178.0599365 381485.625
+178.0756531 15675.666015625
+178.3424988 113533.3984375
+179.0913086 27015.50390625
+186.0861206 120496.6171875
+194.1026764 52585.71484375
+195.08638 5089007.5
+195.128067 26556.978515625
+196.0892334 493830.40625
+206.0913239 146755.296875
+207.0942535 22985.18359375
+209.2513885 21535.181640625
+218.1020966 71596.453125
+222.0877686 19112.669921875
+232.1160889 22438.291015625
+233.1244965 19798.984375
+234.096283 26249.87890625
+240.0964813 34417.921875
+244.1170959 24541.44921875
+246.0969086 737526.9375
+247.1002808 64464.47265625
+257.1227722 120283.3515625
+260.1125793 111205.2578125
+261.1154175 28748.28125
+270.0965271 145635.25
+283.1427917 37751.65234375
+287.1234131 184789.203125
+288.1073608 1753561.5
+289.1099854 266709.34375
+303.1438293 23627.279296875
+305.1338196 3524454.0
+306.1192322 1243055.125
+307.1214294 210043.671875
+308.1222229 30120.15234375
+311.1346436 50537.55078125
+312.1145325 40534.70703125
+321.153717 388928.96875
+322.1557617 81402.03125
+323.1442566 1372999.625
+324.1468811 203280.265625
+329.1417236 61224.2421875
+331.1491394 24580.423828125
+338.1423035 51070.43359375
+338.1803894 499829.5
+339.183075 90096.78125
+341.1464233 23499.1015625
+346.1723328 28864.6796875
+347.1489868 36198.94921875
+358.1611328 24625.404296875
+359.1447754 75660.2421875
+366.185791 139774.078125
+369.1392212 33647.515625
+376.1700134 129684.703125
+377.1574707 86325.4453125
+386.1656494 24498.099609375
+386.7573242 22163.748046875
+394.0924377 23846.7421875
+394.1808472 875326.4375
+395.1828918 178060.515625
+396.1855774 30747.9921875
+412.1875916 54924.3125
+420.6849365 19645.86328125
+460.1973877 23649.666015625
+468.22052 41424.49609375
+477.2153931 38833.953125
+484.2209167 26465.32421875
+485.2468262 240500.71875
+486.2505493 68964.9921875
+488.1876831 53683.3125
+492.2294922 194140.125
+492.7302246 121782.578125
+493.2285767 45876.62890625
+495.2288208 60605.625
+503.2217407 32614.708984375
+505.2103882 70347.8046875
+506.2070923 60540.30859375
+512.2279053 55028.9765625
+512.7276611 33018.78125
+513.2281494 24119.00390625
+521.2325439 25855.7734375
+521.7346802 22337.677734375
+523.2219238 584354.75
+524.2249146 149517.625
+525.2254028 28475.884765625
+571.7493286 102153.765625
+572.2741699 343285.40625
+572.7509766 30618.0078125
+573.2803345 106931.8828125
+574.2819214 32552.783203125
+576.2599487 30435.091796875
+576.7619629 36850.3984375
+580.2623291 123699.5859375
+580.7550049 2848195.5
+581.2561035 1982558.375
+581.7576904 755204.5
+582.258667 122422.953125
+589.2672119 133325.6875
+589.7661133 127842.15625
+590.2590332 26122.134765625
+598.2713623 62771.2421875
+598.7778931 41677.640625
+599.7766113 68392.359375
+606.2625122 27995.220703125
+624.2689819 75424.875
+625.2780151 26335.130859375
+655.3088379 35146.12890625
+673.3242188 455456.78125
+674.3255005 163019.484375
+675.3221436 49871.61328125
+802.3637695 119433.3984375
+803.3737793 29270.677734375
+873.4000854 111211.7265625
+874.3963623 53194.1640625
+875.411377 25235.060546875
+1001.467896 30279.958984375
+1058.488281 29760.8515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.203.203.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=203"
+RTINSECONDS=21.86121069
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13425827 17849.265625
+64.52635193 64818.07421875
+64.53050995 49625.42578125
+64.58200073 61126.6484375
+64.58628082 35660.93359375
+76.28534698 17417.63671875
+76.53199005 18553.15625
+87.30077362 14735.40234375
+98.22937775 14706.970703125
+100.6161957 17394.7578125
+139.4314575 15775.0634765625
+149.5714722 55469.41015625
+167.0922089 50500.93359375
+169.0596466 30147.08984375
+175.1179352 323442.21875
+176.1207428 26101.712890625
+177.0755768 57933.3203125
+178.0600739 340300.0
+178.3441467 106800.703125
+179.0641327 24874.013671875
+179.0916138 21717.3359375
+182.0908966 22393.7578125
+186.0863495 119312.390625
+190.1071777 18715.509765625
+194.1028595 30831.609375
+195.0452423 30266.302734375
+195.0865173 4884731.0
+196.0894012 493002.0
+197.0901337 19917.318359375
+200.1034241 29621.111328125
+201.0854492 26467.58984375
+206.091095 156951.390625
+212.1135864 25750.97265625
+218.1030579 50255.21875
+222.0859833 20069.220703125
+231.5854492 18870.466796875
+234.0980072 25615.0546875
+240.0954437 24055.453125
+243.0860901 28011.01171875
+246.0972137 711701.5
+247.1002808 82957.6875
+249.0975647 24027.9765625
+257.12323 123590.5703125
+258.1246948 24091.2578125
+260.1127014 131423.125
+270.097229 141888.3125
+276.1071777 24315.275390625
+278.149231 38695.60546875
+283.1439819 46542.515625
+287.1237183 145767.46875
+288.0778198 24870.72265625
+288.1075745 1752937.125
+289.1105957 275671.59375
+290.1122131 32499.447265625
+294.1199036 20245.8125
+295.1504517 33538.06640625
+303.1421204 35481.65625
+305.1341553 3625113.75
+306.0592346 24179.228515625
+306.1194153 1291079.5
+307.1214905 229121.625
+308.1245422 26988.1875
+311.1355591 44287.01171875
+312.1163025 23468.36328125
+318.1453552 24099.095703125
+321.1542664 358382.0625
+322.1567688 79567.6171875
+323.098114 22293.30078125
+323.1447144 1342760.25
+323.2080994 23852.048828125
+324.1463623 206585.90625
+329.1441345 66995.03125
+338.1417542 50186.40234375
+338.1808167 468752.21875
+339.1831665 85395.6953125
+349.1610413 32427.830078125
+359.144165 77387.5234375
+366.1869812 149624.640625
+367.188446 37243.9296875
+369.1408997 23243.875
+376.1705322 134832.921875
+377.1559143 77396.7578125
+386.1636353 28570.74609375
+394.1812439 865910.5625
+394.2399902 35075.20703125
+395.1829529 176662.859375
+396.1852417 21629.580078125
+412.1882629 45537.90625
+413.1651306 20872.212890625
+460.1923523 23182.29296875
+464.1756897 23345.93359375
+468.2223511 58249.84765625
+478.2060852 32920.5234375
+483.7210388 20584.7734375
+485.247406 231970.984375
+486.2479248 55642.546875
+488.1885681 60969.1875
+492.2295227 169278.15625
+492.7297363 106375.6640625
+493.2283936 19197.84375
+495.2266235 64693.203125
+503.2241516 29552.35546875
+503.7210388 20402.3984375
+505.2120972 56640.89453125
+506.203949 42627.546875
+507.2033997 18085.7578125
+511.2348022 21346.8359375
+512.2286377 46907.27734375
+512.7258911 34442.46484375
+521.2370605 37809.6171875
+523.2229614 537292.875
+524.2238159 133832.3125
+525.2288208 24587.4609375
+554.2626343 25909.462890625
+555.2568359 28472.66015625
+558.7416382 28547.96875
+559.2356567 30249.189453125
+571.7509155 80984.0859375
+572.2740479 344753.125
+572.7495728 33955.16015625
+573.2814331 108069.921875
+576.2611694 40183.91796875
+577.2685547 30806.40625
+577.7663574 20764.0546875
+580.2632446 90903.4453125
+580.7556763 2508453.25
+581.257019 1852087.0
+581.3661499 37010.12890625
+581.7583008 652380.5
+582.258728 139700.6875
+589.2669067 82667.828125
+589.7684326 56664.59765625
+598.2764893 56158.2265625
+598.7740479 25168.55859375
+599.2781372 36862.984375
+599.7790527 80501.171875
+606.260498 30648.810546875
+607.2537231 26892.197265625
+624.2670898 61924.078125
+673.3245239 431009.90625
+674.3284912 130195.78125
+675.3182983 33295.7109375
+802.366272 110048.46875
+803.3661499 47921.9375
+858.374939 18808.994140625
+873.4020996 137991.640625
+874.4021606 67732.875
+1001.458496 23777.3828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.204.204.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=204"
+RTINSECONDS=21.96748343
+PEPMASS=598.27001953125
+CHARGE=2+
+51.27625275 9401.5546875
+58.13436127 12482.017578125
+58.13715363 14670.138671875
+64.5262146 54703.5078125
+64.53048706 28868.91015625
+64.58203888 37361.86328125
+64.58625031 23891.271484375
+64.63798523 18288.939453125
+68.45045471 8989.6669921875
+69.48061371 10296.4794921875
+74.8119278 14254.0654296875
+74.81604767 13608.5087890625
+97.91279602 10895.96875
+149.5746155 32021.5
+167.0920563 44827.328125
+169.0596771 31934.912109375
+175.1179352 272573.625
+176.1198273 15242.03515625
+177.0761108 64392.34765625
+178.0600891 349428.875
+178.0780792 19458.53125
+178.3505554 51148.8984375
+179.0640259 21381.318359375
+179.0917969 26577.1171875
+182.0908813 15580.7890625
+183.0751038 25963.64453125
+186.086319 101624.3828125
+194.1022186 32892.98046875
+195.0865021 3554158.5
+196.0893555 382239.0625
+197.0911865 31581.02734375
+200.1019745 26698.435546875
+201.0862122 21701.25
+206.0912476 142301.4375
+207.1125641 18070.38671875
+213.0873718 16371.4453125
+217.1282196 14372.416015625
+218.1023102 49569.78515625
+221.1018524 17289.013671875
+222.0862274 25940.392578125
+234.0975494 20880.087890625
+240.0965271 24293.1484375
+243.0863953 19682.962890625
+244.1184998 21826.7734375
+246.0970612 635413.3125
+247.099411 73341.046875
+249.0970306 14004.7958984375
+257.1229858 96142.8828125
+258.1251526 18578.064453125
+260.1129456 107862.4375
+261.1170654 18366.283203125
+262.1285706 11925.251953125
+267.1088257 11313.669921875
+270.0970154 138955.28125
+271.1003723 15590.193359375
+276.105957 12244.765625
+276.1347656 14505.3388671875
+277.13797 14786.830078125
+278.1181641 15175.9072265625
+278.1484375 28689.0390625
+279.1253967 13330.296875
+283.1427002 36829.69140625
+286.7786255 10745.814453125
+287.1235352 160073.34375
+288.1074524 1577398.75
+289.11026 250680.65625
+290.1137085 19727.134765625
+294.1171265 18593.78515625
+295.1498108 25066.439453125
+303.1448059 18395.32421875
+304.1278381 14548.1416015625
+305.1340027 2912853.0
+306.1190796 1119287.25
+307.1214294 197962.015625
+308.1235046 19422.671875
+311.1352234 48064.09375
+312.1161194 22121.564453125
+320.1308289 11657.779296875
+321.1540222 316450.90625
+322.1568298 55370.83984375
+323.1445923 987696.625
+324.1469421 167816.015625
+329.1437683 47245.6015625
+330.1486511 12807.12890625
+338.1426697 41038.26953125
+338.180481 351249.5625
+338.6436768 13435.5732421875
+339.1826782 78147.015625
+347.150116 24385.548828125
+347.6510925 13377.46484375
+349.1604004 22188.38671875
+351.1314697 20862.26953125
+352.127655 11750.296875
+359.1441345 72644.5234375
+360.1492615 11363.9912109375
+366.1863098 116025.5625
+367.1881409 15686.4228515625
+369.1396179 18730.6796875
+376.1702576 107090.125
+377.155365 79934.7109375
+386.1661682 22673.861328125
+394.1808472 648588.4375
+394.2397156 27030.142578125
+395.183075 129273.6015625
+398.1715698 10996.234375
+412.1850891 26403.37890625
+434.1739807 13769.26953125
+452.1889954 12960.515625
+460.1928101 19474.349609375
+464.1701965 12687.171875
+468.2201233 51285.04296875
+469.2233276 22052.900390625
+477.2120972 14669.416015625
+478.2046814 12917.1845703125
+483.7185974 21561.826171875
+485.2472229 173635.453125
+486.2506714 51410.9140625
+488.1859741 42487.4453125
+492.2293701 140233.328125
+492.7302246 79194.671875
+493.2321777 30459.21875
+495.2268982 50740.10546875
+503.2187195 16846.912109375
+505.2111206 46712.6484375
+506.2054443 42731.6015625
+512.2258301 33808.1953125
+512.7279663 27883.466796875
+521.2334595 38347.609375
+521.7349854 14059.0009765625
+523.2216187 376510.90625
+524.2243652 103046.1640625
+525.2312012 28426.3515625
+529.7402954 15349.5634765625
+554.2651978 12467.267578125
+555.257019 12189.595703125
+558.7415161 18646.537109375
+571.748291 54243.484375
+572.2750854 285108.65625
+572.7532349 18226.818359375
+573.28125 81583.40625
+576.2637939 28873.55078125
+576.7606201 22696.44921875
+577.2575073 33179.73828125
+580.2614746 71682.875
+580.7548218 1912038.375
+581.2560425 1276949.375
+581.3671875 16318.3251953125
+581.7576294 436676.8125
+582.258667 86279.640625
+598.272522 47884.421875
+598.7750244 38052.2265625
+599.2744141 61528.95703125
+599.7770996 73145.703125
+606.2566528 28846.232421875
+607.2525635 16390.955078125
+624.2675781 42381.421875
+625.2754517 18621.16796875
+673.3244629 388137.75
+674.326416 132967.15625
+675.3234253 25597.552734375
+711.2971191 20183.916015625
+716.9208374 13381.2470703125
+784.3428345 15891.228515625
+802.3624878 78029.609375
+803.3655396 42861.1875
+873.3964233 67152.484375
+874.4037476 28980.828125
+1270.528931 12047.5517578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.205.205.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=205"
+RTINSECONDS=22.08067595
+PEPMASS=598.27001953125
+CHARGE=2+
+50.0124855 25769.93359375
+64.52628326 93565.6015625
+64.53046417 57772.015625
+64.58209229 81707.7421875
+64.58612061 63795.9921875
+64.63800049 28705.939453125
+111.449173 31724.1875
+149.5741119 88384.8671875
+169.0596161 26723.90625
+175.1177521 370652.03125
+177.0761414 72967.890625
+178.0600433 389913.78125
+178.3321838 62950.0390625
+178.3510132 133902.3125
+179.0627441 42959.6015625
+186.0863495 130195.0625
+195.0864563 5488841.5
+196.0892487 559889.125
+197.0908203 45930.72265625
+200.1040802 40903.484375
+206.091095 143710.171875
+218.1018677 49333.953125
+240.096817 30243.21875
+246.0970764 751807.0625
+247.0993042 64988.69921875
+257.1230469 119136.9140625
+258.129303 29056.02734375
+260.1131897 128925.7734375
+270.0974121 122225.0078125
+283.1423035 49023.7109375
+287.1236267 182903.84375
+288.1074524 1924098.5
+289.1100159 286020.09375
+290.1096802 41460.51953125
+303.1420898 37387.7890625
+305.1339722 3938482.75
+306.1193542 1473001.5
+307.12146 195720.78125
+308.1229858 35385.0703125
+311.1322327 30950.353515625
+312.1149292 47253.16796875
+321.1540527 385628.90625
+322.1566162 82661.71875
+323.0986938 40303.5859375
+323.1444702 1523128.125
+323.1882935 42036.734375
+324.146698 211868.484375
+329.1437378 61730.640625
+338.1412964 72624.1875
+338.1805725 463927.59375
+339.1821594 82471.546875
+359.1430664 78036.296875
+366.1864624 185967.890625
+369.1387939 41552.23046875
+376.1704102 130606.4765625
+377.1568298 95982.9140625
+386.1653748 57218.4296875
+394.136322 22270.955078125
+394.1809998 922391.0
+395.1825867 191919.984375
+412.1890869 66899.3984375
+468.2223511 65281.77734375
+485.2480774 264467.75
+486.2529602 74376.7890625
+488.1874084 40158.14453125
+492.2292175 261289.03125
+492.7298279 110282.75
+493.2284546 29113.111328125
+495.2218323 56577.40234375
+505.2099304 59575.60546875
+506.2035522 93221.9921875
+512.7313843 49994.26171875
+521.2322388 64738.73828125
+523.2219849 640939.1875
+524.2224731 159743.3125
+571.7532959 91681.9375
+572.2746582 444665.25
+573.2784424 123565.078125
+576.2588501 75240.1875
+576.7650757 45538.484375
+580.2611694 109337.96875
+580.7553101 3178060.0
+581.2564697 2431400.5
+581.7584839 946855.1875
+582.2577515 181734.953125
+589.2683105 464784.71875
+589.7664185 437550.34375
+590.2650757 121127.8828125
+598.2739868 116514.53125
+598.7685547 38788.8359375
+606.2515869 36009.046875
+624.263916 79620.4140625
+655.3241577 49806.83984375
+673.3240356 596777.0
+674.3260498 208291.40625
+693.2932739 56472.93359375
+802.364624 162689.984375
+803.37146 70025.6640625
+873.3971558 167967.984375
+874.402771 94278.2265625
+1001.462891 50865.62109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.206.206.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=206"
+RTINSECONDS=22.18230829
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1344223 10739.8994140625
+58.13723373 10207.2783203125
+60.97954941 6982.5649414063
+61.04035187 6416.1845703125
+63.16366577 6306.3149414063
+64.52636719 29901.087890625
+64.53053284 19345.091796875
+64.5820694 21801.330078125
+64.5861969 12844.8310546875
+64.63832855 7758.5595703125
+74.81197357 12277.322265625
+74.8159256 9822.427734375
+76.28582764 8555.69140625
+149.5677795 23195.96875
+155.0812531 6480.09375
+167.092041 38462.76953125
+169.0602722 22822.560546875
+175.1181183 231781.4375
+176.1219177 16568.859375
+177.0763245 62699.93359375
+178.0602264 283334.4375
+178.0780334 13151.89453125
+178.3356476 28925.546875
+178.3549042 17086.046875
+179.0648804 16563.544921875
+179.0922089 20758.412109375
+182.0916901 21751.236328125
+183.075119 20228.73046875
+186.086319 78149.0390625
+189.0756531 8682.6650390625
+190.0585175 7128.1337890625
+194.1026764 40755.86328125
+195.0865631 2615207.25
+195.1279144 15999.9736328125
+196.0894928 295192.53125
+197.0913086 24439.64453125
+200.1017914 22745.896484375
+201.0849609 8316.693359375
+206.0912476 134273.765625
+207.0934296 18802.373046875
+212.1131287 15711.109375
+213.0855865 14911.7314453125
+215.0926514 12411.04296875
+218.1023865 45973.71484375
+222.0865784 12383.1318359375
+228.085968 10228.8544921875
+231.0961456 7123.40234375
+232.1185455 10160.181640625
+233.1276855 16407.751953125
+234.0963593 12400.9619140625
+239.1124115 12315.3212890625
+240.0962524 19211.30078125
+242.1008453 7982.1811523438
+243.085083 12258.544921875
+244.1183319 8778.0712890625
+246.0971832 566230.75
+247.0997314 74820.3046875
+248.1105194 6934.2573242188
+249.0973358 12331.1650390625
+257.1228943 82190.4453125
+258.1252136 11957.267578125
+259.129303 7877.798828125
+260.1129456 101838.3828125
+261.1185608 14776.052734375
+267.1115417 9707.9404296875
+270.0970459 102553.0625
+271.1010742 10031.1728515625
+276.1043396 11443.7099609375
+277.1376038 10915.1953125
+278.1194458 14014.451171875
+278.1486206 21773.0859375
+283.14328 36964.83203125
+284.12146 11841.595703125
+287.1235046 120782.375
+288.1075745 1399843.375
+289.1105042 203163.4375
+290.1129761 17551.763671875
+294.1194458 21224.421875
+295.1488647 20975.837890625
+297.1168213 8101.080078125
+302.1305847 10872.1923828125
+303.1429749 21513.158203125
+304.1287842 19226.955078125
+305.0512695 20217.67578125
+305.1342163 2336040.75
+305.2145691 12862.693359375
+306.1193542 844800.1875
+307.1213989 128955.1640625
+308.1210938 16310.513671875
+311.1350403 34135.04296875
+312.1188354 26156.984375
+313.2157288 8302.0791015625
+318.1434937 16511.947265625
+321.1543274 268837.28125
+322.1574707 45829.93359375
+323.0975037 9662.94921875
+323.1446838 782538.375
+324.1468506 120904.2578125
+325.1514893 12409.6357421875
+329.1444092 40338.4296875
+331.1490479 15824.4140625
+338.1421509 33019.76953125
+338.1809082 284649.65625
+338.646637 10724.1728515625
+339.1837158 54016.98828125
+341.1507263 8051.1372070313
+347.149231 24564.900390625
+347.6488953 10671.01953125
+349.1625061 11568.853515625
+351.1318054 10742.3095703125
+358.1617737 8794.92578125
+359.144104 74062.046875
+366.1867065 86844.140625
+367.1893616 16652.24609375
+369.1379395 18548.166015625
+376.1705322 81433.0078125
+377.157196 67423.0625
+378.1533813 9494.580078125
+386.1642456 16961.595703125
+394.1197205 8885.599609375
+394.1811523 452395.3125
+395.183075 103164.359375
+396.1818542 11945.833984375
+412.1887817 31664.974609375
+421.1789551 10109.7099609375
+423.1583557 9222.859375
+434.1737671 8861.4052734375
+452.1862793 7742.8852539063
+460.1888428 24961.697265625
+464.1691895 10108.6533203125
+468.2218018 41192.7578125
+469.2216187 14196.7626953125
+477.2189026 15309.826171875
+478.2058716 12724.908203125
+483.7155151 14537.640625
+485.2478333 132845.703125
+486.249939 57885.70703125
+488.1869202 48216.87109375
+492.2297668 86706.390625
+492.7324219 52683.19921875
+493.2330933 20849.837890625
+495.2268677 32155.02734375
+503.2227173 13196.5
+503.7134094 13122.5048828125
+504.2175293 10237.2265625
+505.2130432 42559.70703125
+506.2035828 34481.95703125
+507.2085876 11037.8369140625
+512.2279663 32925.52734375
+512.730957 20584.3125
+521.2324219 14298.8408203125
+522.2363892 8493.3447265625
+523.2223511 279921.0
+524.2246704 70355.8671875
+525.229248 20136.955078125
+555.2595825 12719.34765625
+558.7438965 21883.85546875
+559.2473145 17962.5546875
+559.744751 10760.7138671875
+571.7504272 53609.53125
+572.2749634 201610.125
+572.7545776 12218.0595703125
+573.2792969 65965.5703125
+576.2625732 26707.87109375
+576.7580566 17980.73046875
+580.2650146 31599.2421875
+580.755249 1158313.375
+581.2564087 766557.5
+581.7584229 243438.609375
+582.2590942 62102.421875
+589.2680664 25029.26171875
+589.7672729 39910.55078125
+590.2658081 12580.09375
+598.2752075 41379.50390625
+598.7744141 37093.53125
+599.2775879 65480.67578125
+599.7770386 59682.5703125
+606.258606 21240.51171875
+624.2675171 27596.380859375
+673.3249512 270379.9375
+674.3277588 110044.9765625
+675.3327637 16826.298828125
+802.3651733 56340.8984375
+803.3724365 10735.08203125
+873.4047241 29277.146484375
+874.4052124 16095.6494140625
+1001.459045 7723.2822265625
+1137.096313 7831.2045898438
+1175.272583 7095.4995117188
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.207.207.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=207"
+RTINSECONDS=22.30547352
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13424301 33944.58984375
+64.52650452 62945.73046875
+64.53035736 69287.71875
+64.58200073 91366.8203125
+64.58608246 58558.16796875
+65.4727478 32029.353515625
+134.060318 35648.8828125
+149.569809 128242.1328125
+167.0915985 38980.81640625
+169.061615 39129.58203125
+175.1178741 314728.53125
+177.0749207 63879.36328125
+178.0599976 389195.375
+178.3369598 159806.640625
+178.3562927 81911.6015625
+179.0636749 60759.0078125
+186.0859528 128420.984375
+190.9716644 46299.50390625
+194.101593 60814.375
+195.0648499 41903.3203125
+195.0865326 5630369.5
+196.0894928 511270.125
+206.0910187 148087.671875
+218.1018524 76937.453125
+243.0849152 45263.70703125
+246.0971222 750499.625
+247.0994263 78302.9453125
+257.1227417 160218.890625
+260.1134949 124793.390625
+270.0980225 145526.125
+283.1438904 49698.32421875
+287.1236572 200481.65625
+288.1075745 1838137.0
+289.1099243 291872.0625
+303.144165 68194.171875
+305.0930481 64369.4140625
+305.1044312 73727.5546875
+305.1342163 3925920.25
+306.1192627 1412405.75
+307.1215515 285744.28125
+308.1223755 57404.0234375
+311.1354065 44397.05859375
+319.966095 38126.8125
+321.1544495 363624.75
+322.1572876 54438.80078125
+323.1447449 1483804.75
+324.1468506 242444.984375
+338.1426392 48609.671875
+338.1807251 527935.6875
+339.1835938 50485.625
+359.1445923 75009.171875
+366.1866455 162683.515625
+369.1391907 44760.51953125
+376.1701355 157027.359375
+377.1571045 74905.5390625
+394.181366 1015446.0
+395.1843567 174017.1875
+412.1871643 78015.671875
+467.9529419 35474.7265625
+485.2476196 277406.28125
+486.2538757 63366.01171875
+488.1860352 59909.9453125
+492.2288513 222460.3125
+492.7307434 148173.28125
+495.2290649 49383.12109375
+505.2121277 97584.96875
+506.2084961 54596.3203125
+512.2218018 52975.60546875
+512.7278442 53153.9921875
+521.2307129 83125.28125
+523.2224731 642038.9375
+524.2259521 214620.640625
+525.2282715 41474.72265625
+530.2406616 41587.5
+571.7505493 77899.234375
+572.2752075 432512.78125
+573.2792969 151411.5625
+576.2630005 95896.515625
+577.267395 40878.91015625
+580.2629395 114968.1640625
+580.7554932 3354732.0
+581.2572632 2515419.75
+581.7589722 852825.75
+582.2597656 135004.828125
+589.2683716 869553.625
+589.7680664 726316.5625
+590.2678833 228274.453125
+590.7716064 44720.84765625
+598.2744751 111235.4140625
+598.769104 43694.32421875
+624.2705078 71653.8515625
+673.3252563 729937.1875
+674.3291626 230350.28125
+693.293335 48730.41015625
+759.7921143 39143.015625
+802.3682861 170503.46875
+803.3626099 68623.5703125
+804.3668213 38263.0625
+873.3939819 190834.703125
+874.4107056 109251.7109375
+1001.461731 61437.07421875
+1058.468872 56212.82421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.208.208.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=208"
+RTINSECONDS=22.40611928
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13412857 13239.1982421875
+64.52616119 47532.42578125
+64.53063965 36367.03125
+64.58197784 33181.125
+64.58620453 22490.208984375
+64.63826752 12980.7744140625
+66.52826691 10185.9501953125
+69.25019073 10332.3369140625
+74.8161087 10941.5634765625
+82.05428314 20053.791015625
+106.0752182 9805.03125
+125.1472855 10726.150390625
+141.0970154 9754.51953125
+149.5609131 17254.564453125
+149.5746613 29546.75390625
+167.0917511 41565.765625
+169.059433 18578.845703125
+175.1177216 310013.625
+177.0758514 59457.41015625
+178.0598145 316186.6875
+178.0781097 20229.673828125
+178.3473816 63503.55859375
+179.0637512 22949.453125
+179.0915222 15280.5498046875
+182.0910339 21846.36328125
+183.0746765 22589.908203125
+186.0859833 91055.9453125
+190.0601959 11641.041015625
+194.1023865 45439.515625
+195.086319 3557049.5
+195.1280518 26129.076171875
+196.0891266 391508.03125
+197.0924988 24399.515625
+200.1018066 27833.23828125
+201.0858612 19555.69921875
+206.0910645 134251.359375
+207.0930023 18264.634765625
+207.113266 13907.6025390625
+209.1028595 11702.591796875
+212.1112061 18661.48828125
+215.0906372 19804.45703125
+218.1018524 61411.51953125
+221.0997314 14944.404296875
+222.0852356 14338.462890625
+232.1176453 11172.59375
+233.1269379 15717.427734375
+234.095932 17433.837890625
+239.1122742 12704.1640625
+240.095459 27471.611328125
+243.087265 24966.576171875
+246.0968475 639260.9375
+247.0995636 77570.6640625
+248.1113434 10683.849609375
+249.1031799 11580.3505859375
+257.1224365 111000.7421875
+258.1257324 11751.4091796875
+260.1122437 123274.375
+270.0966797 124679.4375
+271.1003418 21709.78515625
+278.1167908 11203.373046875
+278.1490173 20922.2421875
+283.1430054 52010.37890625
+287.1235352 151506.46875
+288.1072388 1610169.0
+289.1100464 215416.125
+290.1144409 22019.330078125
+294.1165466 16934.24609375
+295.1497498 16976.498046875
+302.1321411 11347.041015625
+303.1429749 16067.44140625
+303.6304932 12986.703125
+304.1291199 14835.1533203125
+305.1337891 2917678.5
+305.2158813 17637.015625
+306.118988 1015322.3125
+307.1211853 163317.8125
+308.1214905 22988.1484375
+311.1347656 53953.2109375
+312.0760498 11488.57421875
+312.1167908 37576.6953125
+321.1117859 23308.984375
+321.1539001 336275.03125
+322.1564331 48239.82421875
+323.0988464 23216.267578125
+323.1442566 1045211.3125
+324.1462402 146230.28125
+325.1482849 17150.51953125
+329.1429749 47654.05859375
+338.1424255 52988.05859375
+338.180481 329448.5625
+338.6433716 12738.171875
+339.1410217 15291.4052734375
+339.1836243 76574.5703125
+341.145752 12673.478515625
+347.1470337 11620.994140625
+348.1703186 11660.5869140625
+349.1581726 23468.76953125
+351.1291809 27618.615234375
+353.1546631 13599.55078125
+358.1646729 11438.2744140625
+359.1443176 72090.109375
+360.1497803 11354.5087890625
+366.1864624 113635.734375
+369.1411743 20602.65234375
+376.1702271 100309.0078125
+377.1560974 65008.8515625
+378.1605835 20425.125
+386.165741 21405.119140625
+389.1578369 14524.697265625
+394.118988 17734.865234375
+394.1807251 662022.9375
+395.1826782 141385.5625
+396.1843567 15857.26953125
+397.6792908 15815.783203125
+412.1871643 25629.86328125
+419.1815796 10697.4794921875
+420.6827087 19145.91796875
+434.1698303 13388.8984375
+460.1919556 17298.154296875
+468.2202454 51379.859375
+477.2187195 15044.060546875
+478.2055054 14023.595703125
+483.2296753 12591.638671875
+485.2475281 175491.640625
+486.249115 60134.47265625
+486.3184509 13942.7685546875
+488.18573 45421.0625
+489.184906 18274.21875
+492.156189 8190.8564453125
+492.2294312 143333.90625
+492.7303162 79151.1953125
+493.2331543 24850.400390625
+495.2273254 62968.71875
+503.2210388 11988.125
+503.7154236 16412.005859375
+505.2128906 39104.30078125
+506.2059021 46797.3203125
+512.2265625 32284.947265625
+512.7319336 17667.765625
+521.2317505 22017.36328125
+521.7401123 14462.4619140625
+523.2216187 353717.9375
+524.2260132 99597.484375
+525.2335815 24247.01171875
+541.2394409 16565.23828125
+554.2678833 17117.646484375
+555.2596436 12778.5380859375
+571.7521362 85996.109375
+572.2752686 251759.609375
+572.7503662 24321.76953125
+573.2789917 81056.5546875
+574.2785645 13097.505859375
+576.2608032 30745.2578125
+576.7591553 21806.115234375
+577.2623901 28195.919921875
+580.2631226 51507.140625
+580.7549438 1849831.75
+581.2561646 1182311.75
+581.7578735 443861.3125
+582.2578125 80661.734375
+589.2652588 14845.8203125
+598.2732544 50985.21484375
+598.774353 24247.529296875
+599.2791748 38261.9296875
+599.77771 102079.6484375
+606.2634888 23662.171875
+624.2678223 48467.73828125
+625.2730713 16771.669921875
+673.3240356 339342.5
+674.3268433 131829.515625
+675.3270874 33174.80078125
+693.2947998 14629.455078125
+711.2954712 20057.130859375
+802.3648071 83555.640625
+803.3654175 38756.19921875
+873.4024048 66129.1484375
+874.402771 31269.4453125
+1001.47345 15001.1318359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.209.209.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=209"
+RTINSECONDS=22.52007731
+PEPMASS=598.27001953125
+CHARGE=2+
+52.1835556 13593.494140625
+64.52626038 74975.4453125
+64.53063965 50905.98828125
+64.58197784 50221.4453125
+64.58615875 32295.197265625
+64.63819885 23311.0
+67.31118011 14057.9140625
+68.06780243 14286.482421875
+87.9325943 15423.27734375
+93.60984802 15059.408203125
+93.78907776 15334.59375
+99.84279633 14508.4111328125
+134.9084473 16853.21875
+149.5663757 48916.34765625
+153.3278046 14862.9365234375
+167.0913544 44026.41796875
+169.0597992 39608.49609375
+175.1179504 318280.78125
+176.1195679 22082.845703125
+177.0762482 58096.484375
+178.0600739 352854.21875
+178.0776978 11280.56640625
+178.3356323 52767.84375
+178.3547516 42020.16015625
+179.0632629 30317.029296875
+183.072937 17967.8359375
+186.0862427 104462.578125
+194.102829 55625.58984375
+195.0864868 4537098.5
+195.1276703 25597.248046875
+196.0894318 441709.4375
+197.0914459 27862.703125
+200.1014252 36631.203125
+201.0847931 21453.65625
+206.0913696 184400.125
+209.0752258 18841.2109375
+209.1007233 21110.552734375
+212.1128998 16749.166015625
+215.0902557 23948.029296875
+218.1024017 68585.296875
+234.0979309 15291.4501953125
+239.1119232 29268.5234375
+243.0862885 20236.822265625
+246.0744934 10456.115234375
+246.0971069 721455.1875
+246.1257629 35193.703125
+247.1003723 79607.390625
+257.1235962 102430.4140625
+260.1124878 98887.578125
+261.1200867 20920.94921875
+270.0967102 154789.640625
+278.119873 21593.5
+283.144104 61497.2890625
+287.1234436 177543.921875
+288.1075439 1753553.5
+289.1102905 264827.0625
+303.1449585 17935.626953125
+304.1283264 20760.7265625
+305.1340942 3547972.5
+306.1192627 1286868.375
+307.1216125 212498.921875
+308.1203918 21180.552734375
+311.1339111 74376.8984375
+312.1170654 35006.98828125
+321.1544189 353161.09375
+322.1572266 60098.41796875
+323.0984802 20443.841796875
+323.1446228 1225856.625
+324.1467896 204016.609375
+325.1504822 18040.5703125
+329.1446228 43617.8359375
+338.1420288 58794.2109375
+338.1806641 407649.84375
+339.1834106 71228.34375
+341.1451111 21975.091796875
+347.1480103 36697.51171875
+349.1589966 18877.87890625
+359.144989 66612.8984375
+366.1864319 130542.078125
+369.1387634 33035.4765625
+376.1702271 126307.46875
+377.1586609 78689.0390625
+386.1649475 27293.548828125
+394.1811523 819270.1875
+395.1826172 166397.71875
+412.1893005 35383.73828125
+460.1921387 19386.30078125
+468.2229309 64427.9765625
+477.211853 22921.40625
+483.7154236 20639.10546875
+485.2477112 242667.96875
+486.2524109 84080.015625
+488.1881409 60933.94921875
+492.2292175 216820.515625
+492.7311401 115410.859375
+493.229187 29762.693359375
+495.225769 55927.44140625
+503.7194519 29974.1484375
+505.2108459 63849.84765625
+506.2035217 69652.625
+512.2284546 55267.4375
+512.7290039 46383.84765625
+521.2321167 40728.1328125
+523.2224731 522883.0625
+524.2243652 118636.703125
+525.2329102 44885.33984375
+530.2494507 28432.431640625
+555.2600098 25115.388671875
+558.739624 23996.48046875
+571.7495117 101107.015625
+571.8421631 18740.15234375
+572.2747803 370409.4375
+572.7516479 29611.05078125
+573.2806396 100324.6328125
+574.2785645 18383.408203125
+576.2608032 47842.54296875
+576.7686157 20866.11328125
+577.263916 37510.9765625
+580.260376 94366.984375
+580.755249 2730301.25
+581.2566528 1758705.25
+581.3660889 31407.2578125
+581.7585449 680675.6875
+582.2593994 161538.515625
+589.2697754 60403.015625
+589.7683716 37354.32421875
+598.2715454 66308.015625
+598.7764282 52019.02734375
+599.7772827 112591.6484375
+606.2512817 35187.12890625
+624.2701416 83322.2109375
+625.2724609 22194.607421875
+655.312439 26677.572265625
+673.3244629 481993.90625
+674.3269043 155707.234375
+675.3258667 39145.15234375
+802.3636475 105022.671875
+803.369751 29021.681640625
+873.3995361 101616.5078125
+874.402832 41742.203125
+1001.461975 23111.193359375
+1058.475586 18892.6015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.210.210.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=210"
+RTINSECONDS=22.62773655
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13434601 19194.822265625
+58.13733673 14055.9267578125
+64.52613068 58806.875
+64.5306778 45508.01171875
+64.58197784 35075.4140625
+64.58615875 28579.708984375
+74.81185913 14992.78515625
+76.28096771 10656.4345703125
+77.95215607 9992.5
+82.05413818 17502.267578125
+111.1328125 12343.9775390625
+149.5610352 20067.126953125
+149.5755463 33804.53125
+167.0921326 59738.00390625
+169.0594177 21549.369140625
+175.1178436 285595.46875
+176.1204376 16634.439453125
+177.0759888 84570.2421875
+178.059967 339037.53125
+178.0780945 21177.23046875
+178.3297119 19458.884765625
+178.3490448 72358.4453125
+179.0635681 31104.046875
+179.0916901 28279.978515625
+182.0909882 25061.07421875
+183.0749054 29493.69140625
+186.0860901 116144.765625
+190.1081696 18606.296875
+194.1023102 38354.609375
+195.08638 3966107.25
+196.0892487 384380.53125
+197.0920563 25931.736328125
+200.1022797 26542.896484375
+206.0910034 187477.640625
+207.0941772 14883.9716796875
+212.1120453 14425.517578125
+213.0850525 14043.4638671875
+215.091156 15411.4873046875
+218.1022034 48463.49609375
+222.0856781 16847.9453125
+234.0978088 13868.93359375
+239.1098785 11525.771484375
+240.095459 22548.716796875
+243.0861053 22893.912109375
+244.1175385 19643.083984375
+246.0969696 674540.5625
+247.0996399 90400.46875
+257.1230774 111708.6328125
+260.1125183 120618.4765625
+261.1205444 13126.455078125
+262.1273193 12988.673828125
+270.0967712 139629.28125
+278.1203308 20478.724609375
+278.1498718 34885.046875
+283.1118164 12977.736328125
+283.1435242 59444.09375
+287.1233521 147653.875
+288.1074524 1609065.875
+289.1100769 258085.71875
+290.1121216 19200.236328125
+295.1499634 27185.173828125
+303.1430359 29210.1640625
+304.1274109 18869.341796875
+305.1339722 3071471.75
+306.1193237 1113096.5
+307.1210327 196985.921875
+308.1221313 19343.359375
+311.1346741 60004.90234375
+312.118042 37995.12109375
+318.1416016 13030.9853515625
+321.1539917 360396.15625
+322.1567688 57276.5703125
+323.0982666 23200.744140625
+323.1444092 1099292.5
+324.146759 175836.015625
+325.1495361 18507.82421875
+328.1618347 13502.3583984375
+329.1446533 39854.85546875
+338.1416626 48702.19140625
+338.1807251 407017.125
+338.6448059 32002.857421875
+339.184021 67374.0390625
+347.1500854 29240.392578125
+349.1594238 19752.931640625
+358.1646729 22267.482421875
+359.1453552 68194.5
+360.1502686 12451.1552734375
+366.1861267 128116.3671875
+367.1881714 18178.138671875
+369.1389771 32342.255859375
+376.1706238 116672.109375
+377.1565247 61696.4296875
+386.1646423 22099.96484375
+394.1810913 689226.5625
+394.2409363 23790.525390625
+395.1824646 142642.015625
+412.1889648 43040.921875
+460.188324 20669.419921875
+468.2216187 60849.8515625
+469.2207336 21002.291015625
+477.2171936 16347.615234375
+483.2295837 13832.166015625
+483.7151489 25870.20703125
+485.2477722 215059.234375
+486.2498779 62694.015625
+488.1865845 61543.87890625
+492.2297363 163652.90625
+492.7302246 92925.140625
+493.2271423 31925.818359375
+495.2281799 49123.45703125
+501.235321 15833.365234375
+503.217804 17676.099609375
+503.7164307 24325.58984375
+505.2133484 53095.265625
+506.2058716 56825.171875
+507.208252 13231.685546875
+512.2283325 42399.6171875
+512.7322388 23343.388671875
+513.2279053 15977.513671875
+521.2295532 31293.71875
+521.7360229 18536.1796875
+523.2223511 452361.09375
+524.2253418 127108.6015625
+525.2320557 39388.04296875
+555.2598267 13909.4150390625
+567.2546387 18613.7734375
+571.7497559 76761.5234375
+572.2753296 302848.46875
+572.7478027 19594.427734375
+573.2791138 94049.375
+576.2584839 47446.4765625
+576.7664795 29789.14453125
+577.2654419 16972.5703125
+577.7698975 17644.763671875
+580.2642822 75179.3125
+580.755249 2105751.75
+581.2565308 1384515.625
+581.3699951 19197.740234375
+581.7581177 508699.875
+582.2611084 82972.2421875
+589.2636719 18884.6796875
+598.2720947 56467.9609375
+598.769104 33756.16796875
+599.2754517 51195.83203125
+599.7774658 106111.7890625
+606.2542114 37161.67578125
+607.263916 21917.58203125
+624.2674561 44671.0703125
+625.269165 18413.6015625
+655.3126221 19458.810546875
+673.324707 373066.125
+674.3276367 154088.125
+675.3287964 35304.4453125
+693.2885132 16578.724609375
+802.3633423 71507.359375
+803.3656616 39208.49609375
+873.4017944 86202.4765625
+874.4084473 34152.265625
+1221.899536 15185.6025390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.211.211.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=211"
+RTINSECONDS=22.73961381
+PEPMASS=598.27001953125
+CHARGE=2+
+55.48002243 14824.021484375
+64.52631378 59559.88671875
+64.53050232 33122.03515625
+64.58197021 49351.0625
+64.58609772 33861.8828125
+64.63819885 19918.064453125
+64.64146423 14211.5556640625
+82.05456543 15808.1171875
+110.894989 14217.1318359375
+149.5651093 38928.61328125
+149.5787659 29342.720703125
+156.8813324 14893.951171875
+163.9204865 14940.7880859375
+167.0914459 52067.82421875
+169.0601349 40452.51953125
+175.1178894 281166.875
+177.0760651 70318.90625
+178.0599823 321394.71875
+178.3404846 94176.484375
+179.0639191 27209.19921875
+179.0914612 37889.515625
+183.0754242 28802.93359375
+186.0858765 102068.109375
+190.0589905 15780.599609375
+190.1064758 17501.544921875
+194.1021729 46492.9765625
+195.0863953 4284084.0
+195.1281586 22969.0546875
+196.0893097 417875.0625
+197.0919952 17212.267578125
+200.1018982 33671.31640625
+201.085434 28339.3828125
+206.091095 156832.40625
+218.1027832 80054.6328125
+234.0970612 20077.5859375
+240.0964203 17294.103515625
+243.0858154 27253.951171875
+246.0969086 630114.0
+246.1257935 33057.8828125
+247.0995483 80331.9609375
+257.1226807 123480.0703125
+260.111969 117713.328125
+270.0970764 114160.984375
+278.1486816 18760.2421875
+283.1437988 44591.109375
+287.1231689 149081.171875
+288.1073303 1587169.875
+289.1098328 230024.125
+290.1143188 22512.40234375
+294.1161804 18412.96875
+303.1429138 32592.123046875
+304.1271973 19939.9296875
+305.1338196 3156017.25
+306.1188965 1118268.75
+307.1210938 179826.796875
+308.1220093 21647.876953125
+311.1338806 48782.54296875
+312.116272 25361.029296875
+321.1539917 355431.1875
+322.1570435 76380.5625
+323.1443787 1134140.25
+324.1462097 198473.265625
+325.150116 30449.56640625
+329.1437988 46462.29296875
+331.1495667 16043.431640625
+338.1420593 62141.30078125
+338.1804199 404516.46875
+339.1819153 38842.5
+347.1443176 25902.205078125
+359.1445312 49835.734375
+366.1861267 115595.5546875
+367.1865234 28668.1015625
+369.1400146 27064.298828125
+376.1701355 109978.96875
+377.1558228 93902.8203125
+378.1566772 17714.640625
+386.1643982 27280.884765625
+389.1578369 17933.546875
+394.1806641 716614.3125
+394.2400513 22606.423828125
+395.1819153 136386.84375
+412.190094 34703.3359375
+420.6827698 17666.3125
+442.1846619 16664.265625
+460.1847229 26831.83203125
+468.2200317 49224.97265625
+483.7172852 15876.111328125
+485.2471924 205080.171875
+486.2489014 58210.796875
+488.1865845 32177.3125
+492.228302 138943.328125
+492.7303772 78778.171875
+493.2287598 29248.845703125
+495.2256775 57242.390625
+503.7206726 18901.9296875
+505.2114258 54259.19921875
+506.2076416 36176.5
+507.2020874 19079.380859375
+512.2236328 47247.6953125
+521.2350464 27224.130859375
+521.7388916 19014.892578125
+523.2216797 403886.75
+524.2234497 105355.375
+525.2293091 18536.025390625
+571.7504883 69511.2890625
+572.2730713 249392.359375
+572.7466431 23864.6328125
+573.2814331 95234.390625
+574.2728271 21573.484375
+576.2637939 41564.1640625
+576.7644043 41235.94921875
+577.262146 36423.29296875
+580.2619019 99000.2890625
+580.7547607 2310135.75
+581.2557373 1536456.75
+581.3652954 16487.12890625
+581.7573242 585087.0
+582.2580566 113009.3828125
+589.2677002 106730.0078125
+589.7645264 45202.48828125
+598.2723999 65559.40625
+598.7758179 40467.60546875
+599.2756348 19571.89453125
+599.7747192 59315.23046875
+606.2548218 43321.40625
+607.2444458 21224.83203125
+624.2672729 55807.4375
+625.2703247 27550.1875
+656.3110352 21039.751953125
+673.322876 368035.5625
+674.3253174 157195.390625
+675.3271484 30223.068359375
+802.3635864 102063.484375
+803.362854 33786.07421875
+873.3986816 108512.65625
+874.4003296 36021.8203125
+1001.46344 22174.474609375
+1080.552979 18048.115234375
+1191.163452 18875.541015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.212.212.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=212"
+RTINSECONDS=22.84767078
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 69217.140625
+64.53048706 41773.46875
+64.5819397 52942.578125
+64.58607483 42421.859375
+64.63796234 21062.27734375
+64.64205933 16213.7373046875
+93.20554352 20155.59765625
+100.1991959 15153.94921875
+145.2695007 19886.654296875
+147.8282318 20931.8125
+149.5652161 46375.50390625
+149.5776672 35730.57421875
+167.0912628 38971.0
+169.059433 40538.70703125
+175.1176605 311438.53125
+177.0754089 74856.734375
+178.059845 356466.78125
+178.3469391 110235.703125
+179.0635376 32509.52734375
+179.0921783 20507.962890625
+183.0766296 29656.568359375
+186.0860901 121369.9375
+194.1022186 36700.40625
+195.0862885 4540821.5
+196.088974 440702.625
+197.0909119 30762.8515625
+200.1019135 33902.35546875
+201.0847626 35610.87890625
+206.0908966 143529.140625
+213.0844421 27966.283203125
+218.102417 63201.66015625
+226.6304474 16295.8779296875
+230.2140198 16961.35546875
+233.4146576 18239.9375
+246.096817 683006.4375
+247.1005859 46894.953125
+249.0956573 23583.98046875
+257.1229858 108283.34375
+258.1252747 25872.27734375
+260.1122742 120028.8359375
+270.0961609 116774.046875
+271.1042175 17126.150390625
+278.1461487 33291.46484375
+283.1433105 48757.390625
+287.12323 117705.3828125
+288.0539551 24001.5234375
+288.1071167 1524563.0
+289.1100159 238417.125
+290.1138916 25079.396484375
+294.1157532 19711.80859375
+295.1510925 26095.4609375
+302.1316223 18175.7890625
+303.1424866 22181.583984375
+304.1279602 20047.107421875
+305.1335754 3358675.0
+306.1187134 1166769.75
+307.1207886 226947.765625
+311.1347351 77744.1484375
+312.1170349 41134.5078125
+321.0290527 19935.78125
+321.1536255 358471.21875
+322.1560669 60840.93359375
+323.1440125 1200934.25
+324.1464233 171895.875
+329.1434326 56559.0078125
+338.1423645 36298.234375
+338.1799927 412578.5
+339.1815186 82959.59375
+349.160614 42403.328125
+358.1631775 20131.556640625
+359.1447144 76393.4609375
+366.1864624 156254.484375
+367.1895142 31893.212890625
+376.1696777 113314.609375
+377.1568909 79577.7421875
+386.1620483 28269.1640625
+394.1804504 784262.9375
+395.1820984 140660.421875
+396.1866455 24640.5234375
+412.1867065 40337.93359375
+420.6803894 26078.3515625
+430.3150024 19072.220703125
+432.5826111 17418.3359375
+460.1959534 18644.40234375
+468.2202148 56554.2890625
+474.7096558 24293.1640625
+477.2162781 28297.6171875
+483.7184448 40620.91015625
+485.247406 191466.671875
+486.2504883 49793.99609375
+488.1852417 40165.765625
+492.2279968 154457.734375
+492.7315063 80127.3203125
+495.2264709 57220.37890625
+503.2191162 23158.283203125
+503.7160034 19942.67578125
+504.2129822 23757.349609375
+505.2106934 53212.60546875
+506.2033997 51980.2421875
+512.223938 20566.171875
+521.2296143 47186.4375
+523.2214355 485022.9375
+524.2229004 131073.3125
+525.2344971 28704.47265625
+558.7457886 27786.1953125
+571.7491455 84759.7890625
+572.2741089 326309.75
+573.2782593 94151.8359375
+574.2842407 24021.47265625
+576.2596436 56344.0703125
+576.7630615 32187.90234375
+580.260437 80746.40625
+580.7539062 2399550.75
+581.2550659 1823033.75
+581.3380737 22003.46875
+581.3696289 23030.064453125
+581.757019 700629.1875
+582.2572632 114684.2578125
+589.2659912 155713.109375
+589.7650146 123738.515625
+590.2689819 25636.5546875
+598.2720337 58212.109375
+598.7706299 37553.83984375
+599.774292 40989.46875
+606.258606 24429.24609375
+624.2682495 65992.6171875
+673.3223877 434919.6875
+674.3255615 186950.34375
+675.3340454 35159.47265625
+802.361145 127306.65625
+803.3647461 44265.73046875
+873.3999023 122412.6015625
+874.399292 76225.0703125
+875.4036865 29703.453125
+1001.457764 38647.25390625
+1002.468994 21562.998046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.213.213.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=213"
+RTINSECONDS=22.95414314
+PEPMASS=598.27001953125
+CHARGE=2+
+53.42022324 10941.2666015625
+53.91523743 11846.1494140625
+58.13414383 10665.42578125
+64.52633667 50404.05078125
+64.53049469 32402.052734375
+64.58196259 32992.8203125
+64.58625031 23683.51953125
+64.63793182 15370.7197265625
+64.64138031 12052.8369140625
+67.61206055 11018.6220703125
+71.11804199 11808.58203125
+74.8115387 15826.3642578125
+145.1811218 12963.1728515625
+149.5688324 48638.82421875
+167.0916901 46377.58203125
+169.0601196 28101.41015625
+175.1022644 20125.82421875
+175.1179657 273481.15625
+176.1212616 13251.6640625
+177.0760498 56180.12109375
+178.0601501 337628.84375
+178.0778961 18494.185546875
+178.3398132 64706.40234375
+179.0638123 23985.720703125
+179.0914001 24127.69140625
+182.0913696 15755.5576171875
+183.0753937 15916.6904296875
+186.0862274 84167.21875
+190.0600739 15013.9453125
+194.1022644 51494.1015625
+195.0865021 3771467.5
+196.0893097 394555.46875
+197.0920715 31762.52734375
+201.0837555 18373.40625
+206.0912323 146184.078125
+207.1109161 13135.5654296875
+209.1034698 16970.55859375
+215.0919037 23875.337890625
+218.1022797 55297.21875
+222.0856628 19430.259765625
+233.1246643 11849.701171875
+234.0967407 15603.65234375
+240.0965271 33759.734375
+243.0864258 25043.26171875
+244.1181946 20776.09375
+246.0971222 568040.0
+247.0999908 54057.03515625
+248.1119843 12626.80078125
+251.0916138 10851.0029296875
+257.1230164 97315.34375
+258.124054 21989.900390625
+260.1128235 108173.1328125
+261.1192932 14343.8134765625
+270.0972595 133263.40625
+271.0993347 13319.0322265625
+276.1082458 13313.275390625
+278.1190491 19129.220703125
+278.1488953 17757.0625
+283.1437683 49574.73828125
+287.1235352 138764.5625
+288.107605 1489195.625
+289.1103516 226704.5625
+290.1118469 26327.6796875
+294.1178894 21391.4609375
+295.1487122 16210.3720703125
+303.1424561 30573.65625
+304.1254578 18286.34375
+305.1341858 2904479.0
+306.1193237 1074578.0
+307.1218262 179119.78125
+308.1233826 15914.9814453125
+311.1344604 56144.80078125
+312.1161804 32446.919921875
+318.1443787 16542.54296875
+321.1542969 318572.0625
+322.1573486 61534.57421875
+323.0982971 23621.943359375
+323.1445923 1060439.625
+324.1466064 146131.84375
+325.1470947 22362.44921875
+329.1443481 50312.1640625
+331.1483765 18361.99609375
+338.1447449 30445.603515625
+338.1808472 364205.78125
+338.6462402 15919.7939453125
+339.1441345 14740.1845703125
+339.18396 66019.3125
+341.1409302 14477.9931640625
+347.1498108 27673.65234375
+349.1567993 24397.173828125
+351.1343689 19770.537109375
+359.1439209 39950.6640625
+366.1870117 111809.90625
+367.1882935 17229.9921875
+369.1347046 27534.47265625
+376.1705627 110580.3203125
+377.1575623 74010.4296875
+378.1589966 17395.958984375
+386.1652832 14532.0439453125
+394.181366 675159.9375
+394.240448 23100.474609375
+395.1826782 131005.1875
+396.1860962 22426.87109375
+398.1770325 13271.98828125
+412.1914368 33594.9296875
+460.1910706 31581.85546875
+468.2197571 47206.69921875
+469.2224426 18959.28125
+483.22229 15040.6103515625
+483.7256165 22335.5625
+484.2172852 14313.921875
+485.247406 208020.515625
+486.2519531 55137.37890625
+488.1867676 60364.203125
+492.2302856 140349.484375
+492.730835 86728.9609375
+495.2259827 53903.96484375
+496.229126 14641.134765625
+503.7172241 28233.326171875
+504.2138367 15351.439453125
+505.2134094 54065.203125
+506.2016296 38074.16015625
+507.2099609 19853.611328125
+512.2269897 33019.8515625
+520.7374268 12982.2880859375
+521.2331543 25050.25
+521.7329102 16167.107421875
+523.1339722 27523.58203125
+523.2225952 417552.625
+524.225708 108470.8671875
+525.2307129 24355.416015625
+558.7407837 20951.986328125
+567.2579956 18061.8515625
+571.7515869 77018.0859375
+572.2752075 243704.984375
+572.7507935 23632.48046875
+573.2803955 71465.6015625
+576.2642822 33801.13671875
+577.2630615 23950.8203125
+577.7616577 14473.6357421875
+580.2646484 65115.2734375
+580.7554932 1846652.375
+581.2567749 1262766.25
+581.7585449 486044.96875
+582.2587891 90263.1640625
+589.2686768 36635.41796875
+598.2753906 53273.20703125
+598.7744751 44427.87109375
+599.2731323 44664.2734375
+599.7766113 66736.78125
+606.2583618 26705.482421875
+624.2685547 41989.59765625
+673.3247681 373946.78125
+674.3273926 130503.6796875
+675.3300171 31473.416015625
+693.2883301 18538.5859375
+711.2919312 16567.97265625
+802.3665771 78477.3671875
+803.3690796 40693.92578125
+804.3875732 15775.341796875
+873.3985596 75057.203125
+874.4050903 35204.3203125
+1001.448792 21968.333984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.214.214.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=214"
+RTINSECONDS=23.06552291
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 65814.625
+64.53064728 48450.55078125
+64.58192444 50019.1796875
+64.58615112 36906.60546875
+64.63825226 20308.720703125
+64.64136505 15312.943359375
+70.64438629 13988.763671875
+74.53630066 15924.1552734375
+149.5676575 44706.3046875
+167.0917511 42386.78515625
+169.0596771 24959.07421875
+175.1177216 285421.59375
+176.1203156 28283.732421875
+177.0753937 50990.58203125
+178.059906 349115.46875
+178.3370209 56853.5234375
+178.3564606 26994.923828125
+179.0636749 40101.87109375
+179.0911865 16577.978515625
+182.0901642 22468.76171875
+183.0752411 29356.015625
+186.085968 116606.4609375
+194.1022491 48651.890625
+195.0863037 4174396.25
+195.1280823 32116.7734375
+196.0890198 406916.34375
+197.0920563 18585.515625
+200.1019897 27211.26171875
+201.0856628 18109.583984375
+206.0910339 149862.578125
+209.1025391 13554.4365234375
+212.1131439 15256.322265625
+215.0922089 13356.6982421875
+218.1024017 40709.58984375
+222.0849762 18685.52734375
+234.0947113 16048.5234375
+239.1122284 16144.1708984375
+240.0965118 24427.09765625
+243.0859833 17321.97265625
+246.096756 659117.875
+246.1208038 10598.2607421875
+247.0995178 85046.5625
+249.0984955 18771.220703125
+257.122345 109575.3828125
+258.1252136 25582.232421875
+259.3212585 16543.13671875
+260.1123962 101746.9609375
+270.0966492 126489.0703125
+278.1488647 22982.513671875
+283.1412354 49026.1640625
+287.1235352 169688.03125
+288.1071777 1552638.25
+289.1099243 240234.4375
+290.1125793 13594.01171875
+303.1444702 27942.703125
+305.133667 3079446.25
+306.1187744 1188763.625
+307.1210022 175631.28125
+311.133606 42220.640625
+312.1159058 42740.3046875
+321.1536255 296804.625
+322.1574707 66759.7421875
+323.1440125 1095864.125
+324.1459656 188477.609375
+329.1448059 45750.16015625
+338.142334 51267.09765625
+338.1804199 432628.8125
+338.6445618 28890.228515625
+339.1835022 70135.015625
+349.158783 31606.861328125
+359.1444397 67519.0859375
+366.1854553 148587.921875
+369.1345215 24688.580078125
+376.170105 124265.7421875
+377.1555786 64195.8984375
+386.1653137 44812.453125
+389.153656 17047.419921875
+394.1805725 709253.1875
+395.1817017 125377.8046875
+412.1885986 34252.26171875
+420.6858826 16674.84375
+442.1863708 15479.4375
+468.222229 55979.2109375
+477.2171631 25008.595703125
+483.7240906 17595.59765625
+485.2476196 194632.796875
+486.2483826 54081.03125
+488.1870422 53254.91796875
+492.2284851 166274.859375
+492.7303772 93310.3515625
+493.2303162 28441.873046875
+495.2281189 40251.24609375
+505.2101135 54343.0546875
+506.2029114 46862.765625
+506.7276306 18533.62109375
+512.2258301 50244.94140625
+512.7247925 31005.755859375
+520.7423706 18465.94921875
+521.2356567 38655.12890625
+521.7370605 22130.138671875
+523.2211914 462463.0
+524.2236328 139144.90625
+529.739624 25632.87890625
+555.2572632 24841.373046875
+558.7435303 20537.2890625
+559.2422485 22818.119140625
+567.2474976 28927.79296875
+571.7483521 98879.2578125
+572.274353 336820.9375
+573.2799072 104524.1640625
+576.2619019 49795.140625
+576.762085 40627.23046875
+577.2636108 28285.91015625
+580.2613525 87198.28125
+580.7542114 2500981.25
+581.2556763 1740134.625
+581.3361206 27764.953125
+581.3662109 28456.88671875
+581.7572021 665334.125
+581.8653564 26853.904296875
+582.2587891 120276.0078125
+589.2664185 63702.8828125
+589.7658691 30460.666015625
+598.2716675 55149.953125
+598.7739868 36188.7890625
+599.2739258 19525.193359375
+599.7751465 66408.1953125
+606.2588501 40151.89453125
+624.2669678 51940.1953125
+625.2797852 22988.8671875
+655.3162231 21335.251953125
+673.2147827 11336.3232421875
+673.3236694 454966.15625
+674.3245239 177587.109375
+675.3275757 31618.71875
+693.2897949 23718.458984375
+711.2959595 24744.875
+802.3612671 71483.8203125
+803.3654175 49081.6328125
+873.3988647 76203.359375
+874.3947144 57493.0234375
+1001.449951 24805.650390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.215.215.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=215"
+RTINSECONDS=23.17442496
+PEPMASS=598.27001953125
+CHARGE=2+
+50.56868744 11115.15234375
+58.13444519 14771.50390625
+58.13742828 16319.390625
+64.52632141 52836.43359375
+64.53049469 36070.78125
+64.58195496 38584.08984375
+64.58611298 32488.7109375
+64.63811493 20690.537109375
+112.5709152 10749.5390625
+129.3947144 14267.572265625
+149.5738983 42455.8828125
+167.0918732 52451.25
+169.0595398 30105.166015625
+175.1178436 283006.78125
+176.1199799 19563.80859375
+177.0759735 74282.984375
+178.0600433 321021.5
+178.0780487 24634.15625
+178.3391418 69729.9140625
+179.0640564 27761.83984375
+183.0744629 28475.8359375
+186.0861664 98352.375
+190.0602112 14918.4130859375
+194.1022797 48019.94921875
+195.0864563 3905597.75
+195.1278992 31462.20703125
+196.0892487 381625.53125
+197.0918732 28392.86328125
+200.1017456 20323.38671875
+201.0861664 13835.6513671875
+206.0910645 135329.9375
+212.1121979 18550.783203125
+215.0916443 17820.919921875
+218.1027527 54912.296875
+240.0953217 20199.39453125
+243.0861359 19899.70703125
+246.0970001 597319.6875
+246.1258392 27406.12109375
+247.0995331 68164.7890625
+249.0965424 13496.072265625
+257.1228943 115154.65625
+260.1125793 117219.3515625
+261.1159973 17083.298828125
+270.0971985 132810.296875
+271.1032104 17146.728515625
+277.138092 21673.4296875
+278.1188354 16816.806640625
+278.1497192 20866.888671875
+283.1433411 41205.97265625
+287.1236572 149501.3125
+288.1074524 1591946.75
+289.1100769 231354.671875
+290.1115417 18396.423828125
+294.1170349 18673.005859375
+295.1498413 19346.861328125
+303.1424561 32159.0859375
+305.1340027 3150110.0
+306.1192322 1090075.25
+307.1213074 200740.3125
+311.1344299 44332.87109375
+312.1168518 29550.060546875
+320.1328735 18994.517578125
+321.1541443 314046.46875
+322.1565247 65210.359375
+323.1444702 1144711.75
+324.1460876 158605.828125
+329.1437683 58419.05078125
+338.1418152 43367.38671875
+338.1806946 363576.03125
+338.6462097 19449.6640625
+339.1825867 84065.3984375
+341.1446228 13696.75390625
+346.1707764 18402.12109375
+347.1488647 20906.75
+349.1603699 25946.650390625
+351.1323242 16480.658203125
+358.158844 13978.3447265625
+358.7970276 13716.359375
+359.1437988 53623.515625
+366.1864319 116691.703125
+367.1868591 16308.98046875
+369.1379395 27349.32421875
+370.1465454 13901.404296875
+376.1699829 110942.53125
+377.15625 77093.2265625
+386.1682739 32021.55078125
+389.15979 15399.673828125
+394.1809998 681844.4375
+395.1835022 151088.53125
+396.188324 19080.015625
+412.188446 35943.2265625
+413.1680908 16745.845703125
+460.188385 30407.59375
+468.222229 53690.82421875
+478.2116394 15368.935546875
+483.7203979 19451.626953125
+485.2471924 229697.3125
+486.2506714 51889.65625
+488.1856384 71948.921875
+492.2295227 155252.953125
+492.7297363 103355.546875
+493.2311401 21162.705078125
+494.7077026 19480.6640625
+495.228302 54101.75390625
+496.2261658 18098.1640625
+503.721344 21972.212890625
+505.2135315 51172.14453125
+506.2114258 49780.5703125
+507.2004395 20371.83203125
+512.2246094 42026.07421875
+512.7247314 28880.884765625
+521.2278442 21233.94921875
+521.7363892 17245.974609375
+523.222168 457832.28125
+524.2254639 127312.015625
+525.229248 21976.150390625
+558.7473755 17194.005859375
+571.7509766 88004.4765625
+572.2750244 316419.9375
+572.7562866 31674.21875
+573.2800903 93055.8984375
+576.2615356 48830.3203125
+576.7643433 26878.5625
+577.256958 16079.625
+580.2633667 87372.5703125
+580.7549438 2112920.75
+581.2561035 1452449.75
+581.7585449 504312.75
+581.864563 20650.3203125
+582.2587891 111601.21875
+589.2568359 24527.28125
+598.2718506 45989.08984375
+598.7749023 34368.05859375
+599.2783203 28245.931640625
+599.7774048 75143.84375
+606.2602539 38797.0703125
+607.2564087 16477.93359375
+624.269043 55493.19921875
+655.3095093 21636.00390625
+673.3232422 357942.4375
+674.3270264 135334.765625
+675.3226929 28481.3359375
+693.2861328 18748.73828125
+802.3648682 81818.296875
+803.3681641 41313.6953125
+873.4002075 76644.5390625
+874.4024658 41708.60546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.216.216.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=216"
+RTINSECONDS=23.28515645
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619171 63110.56640625
+64.5304718 38976.54296875
+64.5819931 46225.48828125
+64.58618164 37446.3671875
+64.63806152 14661.2060546875
+73.58840179 12509.294921875
+74.81181335 15256.021484375
+76.28103638 14344.4609375
+78.96366882 13037.8662109375
+82.0539093 14326.80078125
+82.25123596 13043.626953125
+149.5657654 51239.4765625
+167.0921173 28968.013671875
+169.0600586 21110.12109375
+175.1021881 22727.126953125
+175.1177673 285803.90625
+176.1214142 15945.8955078125
+177.0760345 59223.15625
+178.0435333 26112.923828125
+178.0599976 316069.125
+178.3456268 92190.875
+179.0631866 25525.994140625
+179.091217 15055.9609375
+182.0912018 21268.634765625
+183.0747681 13862.50390625
+186.0860138 123208.7734375
+194.1023254 45776.76953125
+195.0863953 4121105.5
+195.1279144 30602.677734375
+196.0892487 420890.0625
+197.0922699 28850.8046875
+200.1014252 35071.515625
+206.0909882 164934.328125
+207.093277 24547.458984375
+218.1023712 45194.84375
+222.0858612 16004.8125
+240.0963135 25841.42578125
+243.0860138 20688.5
+246.0970001 639297.5625
+247.0995026 70124.7421875
+257.1226807 91086.859375
+260.1130371 130791.4140625
+261.1202393 19939.048828125
+270.0970764 138144.5625
+271.1004639 23351.390625
+278.1201172 20291.32421875
+278.1508179 20798.349609375
+283.1425781 46231.7890625
+287.123291 143587.234375
+288.1074524 1578911.5
+289.1103821 242994.28125
+294.117981 31685.04296875
+295.151062 25726.775390625
+303.144928 35647.828125
+304.1286926 19029.337890625
+305.1340332 3171369.25
+306.1192627 1142751.125
+307.1209106 189069.109375
+308.1231995 16162.0361328125
+311.1342163 53210.71875
+312.1166992 32360.8203125
+318.1418152 15163.3994140625
+321.1539917 352001.125
+322.1567383 51196.8984375
+323.1445007 1109997.75
+324.1460266 180578.328125
+328.1599121 19806.451171875
+329.1441956 41081.6328125
+331.1495361 22949.001953125
+338.1429749 37092.37890625
+338.1808167 426412.46875
+339.1834412 70603.078125
+341.1489258 17813.041015625
+349.1572266 18169.45703125
+358.1629028 17096.53125
+359.1439209 70765.265625
+366.1866455 113568.7265625
+367.1893921 15203.9912109375
+369.141571 28400.7421875
+376.1706238 121578.0625
+377.1578064 63080.234375
+386.1638794 37969.0
+394.1810913 704261.0625
+395.1823425 131419.578125
+396.1844482 17097.466796875
+412.1898193 40779.046875
+460.1910706 22052.03515625
+468.2217407 55707.8515625
+469.2207947 16520.1484375
+485.2471619 225714.484375
+486.2506104 55461.15234375
+488.187561 60380.921875
+489.1903687 15645.86328125
+492.2296448 186607.75
+492.730011 91322.0078125
+493.2321472 24146.48046875
+495.2263794 52736.61328125
+503.2238464 20143.05859375
+503.7171326 23883.91015625
+505.2108765 61801.8125
+506.2073059 65344.75
+512.2285767 48806.33203125
+512.7307739 33812.46875
+521.2330933 29794.095703125
+521.732605 28116.4296875
+523.2223511 488616.375
+524.2247314 145108.546875
+525.2264404 41737.44921875
+531.1619263 17442.255859375
+555.2628784 15583.4208984375
+558.7479248 17557.009765625
+567.2544556 19548.623046875
+567.7518921 21314.12890625
+571.748291 78235.46875
+572.2749634 328228.03125
+572.7539062 30603.357421875
+573.279541 104885.453125
+575.7619019 22550.01171875
+576.2617188 48770.859375
+580.2616577 76836.2890625
+580.7554321 2393520.5
+581.2565918 1672954.5
+581.3677979 27167.84765625
+581.7585449 526075.125
+582.2587891 138100.09375
+589.2698364 68998.640625
+589.7711182 40172.90234375
+598.2776489 36369.61328125
+598.7772217 29136.974609375
+599.7770386 52424.88671875
+606.2609863 34434.91015625
+624.2668457 51956.78515625
+655.3123779 28334.396484375
+673.3249512 374937.8125
+674.3285522 127350.6953125
+675.3261108 28946.59765625
+693.291748 26904.419921875
+711.2974243 23339.482421875
+802.3648682 82971.4296875
+803.3659668 52744.8203125
+873.4049072 94830.96875
+874.4072266 44520.8046875
+1001.447937 21091.1796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.217.217.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=217"
+RTINSECONDS=23.3944215
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91825485 14878.537109375
+57.62849045 17881.029296875
+57.63204193 15186.55859375
+58.13426208 15592.68359375
+61.13505554 14353.322265625
+61.98257446 17015.541015625
+64.52627563 76994.34375
+64.53051758 46200.01171875
+64.5822525 38054.94140625
+64.58615112 31640.658203125
+64.63803864 29991.06640625
+64.64148712 16697.08984375
+64.8611908 13840.4033203125
+66.74841309 17649.421875
+66.76197052 13515.8935546875
+67.00605774 15369.9091796875
+70.23773193 15995.423828125
+80.92402649 18279.251953125
+82.05439758 21902.916015625
+88.60311127 16026.255859375
+149.5703583 69743.0703125
+152.6872101 17827.9296875
+159.1478729 18713.669921875
+167.0919952 41055.515625
+169.0588074 27554.15625
+175.1180573 315276.125
+177.0761108 73064.2578125
+178.0600739 333060.375
+178.3340912 34468.21875
+178.353241 58004.5
+179.0647125 29019.06640625
+179.0922546 31597.544921875
+182.0910187 19686.6796875
+183.0754242 30787.615234375
+186.0863647 111956.34375
+194.1029205 33471.16796875
+195.0865631 4465569.0
+196.0895691 449089.78125
+197.0912628 19620.7734375
+200.1016083 30094.1484375
+201.0862579 27706.623046875
+206.0914307 155399.140625
+212.7948303 16559.74609375
+218.1026306 72935.125
+222.0851746 18370.783203125
+224.2208405 16160.3427734375
+234.0980072 24271.265625
+243.0867004 22854.322265625
+246.0970612 662525.0625
+247.1000977 74096.3125
+257.1231079 99790.015625
+260.1126709 128889.484375
+260.2923889 17434.935546875
+261.1168213 20711.0546875
+270.0973511 153464.171875
+271.1022339 16406.1484375
+274.5175171 14618.0830078125
+277.1398926 23279.7265625
+278.1481628 20583.421875
+283.1436768 59014.34375
+287.1235046 166768.671875
+288.0545044 24580.794921875
+288.0775452 20590.29296875
+288.107666 1624443.125
+289.1103516 271272.46875
+290.1131897 28284.25
+294.1183472 23864.521484375
+303.1448364 26681.896484375
+304.1289978 27738.625
+305.1342163 3508129.25
+306.1196594 1131190.625
+307.1219482 204565.234375
+308.1191101 24906.11328125
+311.1351929 55218.52734375
+312.1168213 33119.8125
+318.1445312 20696.75
+321.1542358 328953.84375
+322.1566467 67799.25
+323.0989685 24954.095703125
+323.1114197 19647.1015625
+323.1447449 1199671.875
+324.1470032 216915.328125
+329.1428528 54267.984375
+338.1427612 53624.7109375
+338.1809692 404860.90625
+339.183136 76880.7734375
+347.1510315 19810.4375
+349.1632996 18656.09765625
+358.1666565 22085.61328125
+359.144043 69250.140625
+366.1863098 149309.875
+368.155365 17318.263671875
+369.1394348 27218.646484375
+376.1702576 97173.0625
+377.1585083 86613.015625
+386.1644287 21894.62109375
+394.1812134 801247.3125
+395.1831665 161166.296875
+412.1890259 50978.7421875
+468.2210693 53859.64453125
+471.2304077 15108.2216796875
+477.2165833 23038.787109375
+483.7168274 29996.80859375
+485.2476501 220970.015625
+486.250824 62374.9453125
+488.1844788 39407.1875
+489.1963196 17479.28515625
+492.2285156 175154.21875
+492.7305603 65318.8125
+493.2379761 29334.658203125
+495.2270813 65277.515625
+496.2329102 18929.33203125
+504.2201843 22741.94921875
+505.2129517 55721.1953125
+506.2118835 22343.9375
+512.2289429 31691.52734375
+512.7279053 30558.6796875
+520.7456665 31613.544921875
+521.2323608 36584.82421875
+521.7382202 32000.62890625
+523.2229614 491996.84375
+524.2262573 130985.875
+555.258728 23526.158203125
+567.2495117 25706.388671875
+571.75177 78738.0078125
+572.276123 334783.0625
+573.2820435 125345.7890625
+576.2654419 23855.484375
+576.762085 45408.2734375
+577.2635498 44493.3515625
+580.2633667 103179.8046875
+580.7559204 2593928.25
+581.2567139 1689885.625
+581.3651123 30291.34375
+581.7585449 674046.6875
+582.2594604 89823.9140625
+589.2670898 147790.21875
+589.7664795 77756.8828125
+590.2686768 35113.9296875
+598.2718506 61418.44921875
+598.7750244 35430.6171875
+599.7766724 51995.89453125
+606.2577515 39026.14453125
+624.2700195 55667.203125
+656.3031006 23882.1328125
+673.3248901 441025.4375
+674.3272705 187950.484375
+675.3311768 25216.615234375
+693.286438 24214.150390625
+711.2925415 24271.71875
+802.3648682 91947.34375
+803.3721924 48724.74609375
+873.4033813 116007.2734375
+874.4033203 58177.56640625
+1001.458801 27801.53515625
+1002.462036 22039.673828125
+1097.070435 19164.458984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.218.218.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=218"
+RTINSECONDS=23.50119253
+PEPMASS=598.27001953125
+CHARGE=2+
+51.72574615 13136.259765625
+56.12640762 14922.5791015625
+61.00198364 12967.45703125
+64.52620697 58216.40234375
+64.53066254 45823.76171875
+64.58188629 50965.5859375
+64.58618164 32810.015625
+64.63813782 14968.96484375
+82.0541687 24259.419921875
+133.124176 13708.9091796875
+138.2745514 13778.73828125
+149.5621796 27273.203125
+149.5745544 35813.1171875
+167.0916443 50248.0078125
+169.0592651 25202.439453125
+175.1176605 295874.03125
+176.1204529 13017.2021484375
+177.0759583 60572.55078125
+178.0597992 305374.78125
+178.346344 89700.1328125
+179.0638123 18036.962890625
+182.0909119 21245.298828125
+183.0750275 15877.2138671875
+186.0858765 113749.8828125
+191.0903015 14852.2587890625
+194.1026154 35921.28125
+195.0862885 3996355.0
+196.0890961 412400.59375
+197.0912476 35599.3984375
+199.1179047 13469.833984375
+200.102829 33459.54296875
+201.0844116 16004.4521484375
+206.0908203 139057.3125
+209.1026306 18285.53515625
+213.0852509 19601.333984375
+218.1020203 39815.32421875
+240.0954895 20916.279296875
+243.0860291 28904.291015625
+246.0968475 565377.5625
+247.0995789 61820.046875
+249.0957031 14654.2744140625
+257.1226807 93647.2734375
+258.125 14199.5703125
+260.1123047 103650.609375
+270.0965881 122737.7109375
+278.1481323 17777.119140625
+283.1438293 59891.31640625
+285.5006104 13104.8525390625
+287.1233215 116542.0703125
+288.1071167 1512128.25
+289.1099854 206534.25
+290.1135559 25160.00390625
+294.1162415 26478.98046875
+295.1498413 22315.642578125
+303.1428223 21926.70703125
+305.1336365 2986188.0
+306.1188965 1086113.5
+307.121582 166313.09375
+311.1329956 46464.96484375
+312.1173401 33079.50390625
+321.1538391 287791.28125
+322.1554565 42615.546875
+323.1440735 1112561.75
+324.1461792 178936.765625
+329.1439209 45659.01953125
+338.1431274 35473.73046875
+338.1802063 372042.71875
+338.6443176 21483.515625
+339.1825562 66057.1484375
+341.1464844 16822.505859375
+347.1491089 22873.447265625
+349.163147 24095.82421875
+351.1286621 23628.23046875
+358.1618958 16412.255859375
+359.144104 46506.94921875
+366.1852722 119713.3203125
+369.1390991 30992.935546875
+376.1696777 136005.6875
+377.1557617 86714.140625
+386.1640625 38674.04296875
+394.1803589 661244.4375
+395.1829529 134227.703125
+396.1847534 15377.359375
+397.677887 17054.115234375
+412.1885986 18897.462890625
+413.1687927 15673.525390625
+420.6811218 21410.208984375
+460.191803 29484.99609375
+468.22052 56854.5390625
+478.2011719 21571.814453125
+483.7221069 20746.83984375
+485.2469177 200275.15625
+486.249939 54254.42578125
+488.1864014 38434.515625
+492.2288818 159989.40625
+492.7306824 99128.2421875
+493.2321777 23911.8203125
+495.2253113 43470.95703125
+503.7175293 17351.01171875
+505.2110596 46127.69921875
+506.2005005 49945.01953125
+512.2240601 30983.263671875
+512.7280884 22019.822265625
+521.7329712 32666.26171875
+523.2214966 405297.6875
+524.2235718 124322.578125
+525.2206421 18082.359375
+558.7421875 32400.6015625
+571.749939 106084.3359375
+572.2733765 298226.3125
+572.75354 17739.677734375
+573.2788086 105157.1015625
+574.2813721 18976.54296875
+576.2631226 33488.6015625
+576.7659302 22195.2890625
+577.2674561 20020.9140625
+580.260498 76328.0
+580.7542725 2309980.75
+581.2555542 1756812.875
+581.3358154 28967.140625
+581.3665771 29259.7421875
+581.7574463 576049.75
+582.2585449 101971.734375
+589.2670288 51561.8359375
+589.7629395 19419.09765625
+598.272644 47730.6015625
+598.7761841 51118.73046875
+599.7761841 79246.59375
+606.2584229 40828.7109375
+624.2677612 52002.30078125
+625.2658081 22742.21875
+655.3150635 27847.736328125
+673.3233643 425703.5625
+674.3267212 154427.15625
+675.3277588 49069.12890625
+693.2894897 18382.697265625
+711.2984619 18530.326171875
+802.3614502 87503.046875
+803.3706055 39166.53125
+804.3709717 17264.90234375
+873.3986816 86804.6640625
+874.4059448 46770.59375
+875.4192505 17217.65234375
+1001.46051 25098.697265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.219.219.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=219"
+RTINSECONDS=23.61048352
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58815765 17001.990234375
+64.52622223 56903.30859375
+64.5306778 42660.63671875
+64.58198547 42349.31640625
+64.58601379 30305.771484375
+64.6381073 24775.0234375
+76.28585815 14659.84375
+115.0207291 11785.7685546875
+149.5656281 41907.16796875
+162.332077 14554.5380859375
+167.0919189 46135.59765625
+169.0597534 23411.845703125
+175.1178436 292855.40625
+176.1207733 27974.44921875
+177.0761261 75315.9921875
+178.0599518 295780.28125
+178.3432922 89725.0625
+179.0637512 21930.89453125
+179.0906677 17165.548828125
+182.090744 22676.8671875
+183.075119 21645.423828125
+186.0860596 105648.4296875
+190.0598602 19241.513671875
+194.1030579 37462.30859375
+195.08638 4055347.25
+196.0890808 389569.03125
+197.092041 31855.8359375
+200.1015472 28962.8984375
+201.0857697 14315.076171875
+206.0909882 157562.234375
+215.9924622 14120.0224609375
+218.1022491 54999.859375
+221.104248 15912.9443359375
+233.1273041 17508.25
+235.2171326 13951.5673828125
+239.1128693 17691.828125
+240.095108 19209.99609375
+244.1171875 18015.919921875
+246.0969238 629576.375
+247.0997772 92730.84375
+257.1224976 91313.9765625
+260.1124268 109617.3359375
+261.1184692 14859.13671875
+270.0967407 125570.203125
+271.0986938 12874.6376953125
+278.1168823 14777.267578125
+278.1496582 22057.611328125
+283.1436157 54002.65625
+287.1232605 155396.140625
+288.1073914 1584837.625
+289.1100464 213666.796875
+290.1128235 21319.578125
+295.1496582 25646.42578125
+303.143219 19639.03125
+304.1282959 19788.857421875
+305.1338806 3118597.25
+306.1188049 1133153.125
+307.1216125 174995.0
+308.1261902 14648.5048828125
+311.1346436 50674.2734375
+312.1154175 36795.49609375
+321.1536865 325876.46875
+322.1572266 62628.4375
+323.098877 22857.982421875
+323.1443787 1104850.625
+324.1468201 180192.1875
+325.1486816 24670.169921875
+329.1444092 56100.578125
+336.1556091 18010.97265625
+338.1416626 45119.00390625
+338.1806641 375994.71875
+338.6462708 21311.408203125
+339.1404114 20400.28125
+339.182373 63720.30859375
+341.1443481 20341.744140625
+351.1345215 18410.94140625
+359.1446228 60217.5390625
+366.1855469 139991.984375
+367.1906433 27165.263671875
+369.1398621 29192.642578125
+376.1701965 104581.8515625
+377.1551208 72185.9609375
+386.1636658 26257.91015625
+389.1485596 18761.681640625
+394.1807251 668304.125
+394.2403259 27566.001953125
+395.1817017 136438.453125
+396.1885681 22579.869140625
+412.1903076 30931.2109375
+413.1626282 13672.982421875
+420.6855774 13346.2822265625
+421.1795044 15971.4248046875
+460.1926575 21324.431640625
+468.2212524 44395.265625
+477.2143555 22600.30078125
+484.214386 19659.037109375
+485.246521 204625.953125
+486.2502136 67720.03125
+488.1870422 41812.7578125
+492.228302 130921.9453125
+492.7303162 89696.609375
+493.2312012 29393.34375
+495.2260437 55106.6015625
+503.2225037 27369.423828125
+503.711731 19498.298828125
+505.2140198 43114.734375
+506.2068176 64343.69140625
+512.2296753 30506.84375
+512.7276001 16851.158203125
+521.2349243 30767.224609375
+523.2218628 396482.46875
+524.2243652 124880.421875
+525.2300415 21419.4296875
+571.748291 93563.8515625
+572.2748413 292663.96875
+572.7567139 22407.08984375
+573.2825317 74558.2265625
+574.282959 29677.552734375
+576.2611694 44856.08984375
+576.7636719 45467.42578125
+577.2654419 20842.689453125
+580.2631836 66476.7421875
+580.7548828 2081517.125
+581.2559814 1459258.75
+581.3685303 19864.2890625
+581.7576904 592583.875
+582.2579346 108246.1484375
+589.2672729 64793.3046875
+589.7766724 19437.931640625
+598.2714844 59057.36328125
+598.7765503 37994.88671875
+599.2730103 42158.14453125
+599.7752686 61435.48828125
+606.2541504 43119.265625
+624.2666626 50925.7421875
+673.3242188 379473.5625
+674.326355 137480.0625
+675.3359375 21620.435546875
+693.2963867 22090.130859375
+802.3641968 98070.6796875
+803.3687744 30478.12890625
+873.4000854 80665.7421875
+874.4057007 33050.57421875
+875.3995361 19235.28125
+936.6362915 13917.7763671875
+1001.452698 23745.462890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.220.220.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=220"
+RTINSECONDS=23.72028858
+PEPMASS=598.27001953125
+CHARGE=2+
+56.39847565 13883.375
+58.13423538 24490.79296875
+64.52630615 72697.3671875
+64.53066254 63442.921875
+64.58208466 51450.640625
+64.58622742 30347.0625
+64.63817596 16362.298828125
+75.25085449 16382.5302734375
+87.69457245 16203.6875
+99.36031342 15948.732421875
+102.8798141 14705.876953125
+103.6359253 15420.0263671875
+149.5693817 59296.4375
+167.0917511 30355.908203125
+169.0601349 29864.453125
+175.1179504 318072.40625
+176.1206055 27941.359375
+177.0758972 60733.5546875
+178.0600586 330102.90625
+178.3385773 81323.3046875
+178.3575287 27833.841796875
+179.0927124 19899.9296875
+182.0924988 19566.94140625
+183.0762787 15759.087890625
+186.0861816 96558.328125
+194.1030426 43882.76171875
+195.0865021 4366013.5
+196.0895233 435761.15625
+197.0905914 24609.87890625
+200.1020508 31632.857421875
+201.0862122 15287.068359375
+206.0912628 184869.078125
+207.0933685 19669.90234375
+208.0713959 18363.419921875
+215.0898132 21518.669921875
+217.1284485 17595.486328125
+218.1021576 62391.39453125
+233.1285248 15748.5732421875
+240.0957489 28390.97265625
+243.0870361 17599.205078125
+246.0970612 660398.875
+246.1255493 36883.79296875
+247.0995331 75740.25
+249.0964661 29721.619140625
+257.1231689 96752.4453125
+258.1250916 19692.83984375
+260.112854 107000.828125
+267.1138 15928.0029296875
+270.097229 125263.9453125
+278.1478882 18068.517578125
+283.143158 66997.2734375
+287.1235352 193787.484375
+288.0775452 22194.24609375
+288.1075134 1658444.5
+289.110321 232535.53125
+290.111084 27473.28515625
+295.1148376 18983.21875
+303.1448364 26633.76171875
+305.1341248 3266671.0
+306.0596313 21602.1015625
+306.1193542 1146812.75
+307.12146 180403.453125
+308.1236267 21027.810546875
+311.133728 51689.125
+312.1175537 34015.625
+321.1543884 334950.875
+322.1570129 59727.25390625
+323.1445923 1170483.125
+324.1467285 187314.09375
+325.151062 20828.990234375
+328.1565552 18567.32421875
+329.1434631 57899.34375
+338.1419678 59274.515625
+338.180542 412426.5
+339.184082 79837.9375
+346.1686096 21298.3359375
+351.1290588 26036.529296875
+358.164917 23555.828125
+359.1456299 63355.51171875
+366.1868591 128578.5546875
+367.1872864 24307.4921875
+369.1395874 34040.51171875
+376.1704407 139626.5
+377.157135 103924.4375
+378.1587219 16603.3125
+386.1640015 31097.310546875
+389.1604309 17617.509765625
+394.1812134 779988.5625
+395.1831055 147916.140625
+412.1908569 35040.37890625
+452.1745911 17109.986328125
+460.1924438 23765.095703125
+468.2202759 50604.953125
+469.2247314 18715.0703125
+483.7171936 28010.896484375
+485.2478027 223930.984375
+486.2502441 58091.03515625
+488.1828308 43311.0390625
+492.2294617 157076.03125
+492.7311401 115064.3359375
+493.2310791 55309.46875
+495.2272034 60122.2265625
+505.2109985 57047.26953125
+506.2019653 53620.9765625
+512.2270508 44021.51953125
+512.7266846 30316.966796875
+521.2304688 35097.4296875
+521.7382202 21350.431640625
+523.222229 518199.3125
+523.3083496 29529.521484375
+524.2247314 144979.8125
+529.7414551 18111.427734375
+554.2648926 21323.09375
+571.7486572 69183.59375
+572.2749634 332186.6875
+573.2790527 76791.640625
+574.2752075 25882.232421875
+576.2639771 38017.703125
+576.7574463 29593.59375
+580.2637939 116218.6640625
+580.7553711 2729434.25
+581.2564087 1785981.25
+581.6503906 18505.056640625
+581.6800537 12241.7333984375
+581.758728 681182.9375
+581.864624 27013.115234375
+582.2601929 132325.796875
+589.2671509 100879.0078125
+589.7653198 64315.37890625
+598.2750854 67651.2421875
+598.7732544 52515.84765625
+599.7788696 18792.234375
+606.2597656 29178.931640625
+624.2697144 45070.18359375
+655.3148193 21474.2578125
+673.3247681 418916.34375
+674.3279419 178672.046875
+675.3250732 43028.1796875
+693.2884521 32443.55078125
+711.2990723 21675.302734375
+802.3651123 87717.7890625
+803.3643188 41673.34375
+873.4017944 114321.1953125
+874.406189 48402.44921875
+1035.726807 23225.81640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.221.221.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=221"
+RTINSECONDS=23.8276415
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13433838 19073.126953125
+64.52635956 57541.44140625
+64.53050232 36201.9375
+64.58202362 36986.72265625
+64.58621979 27634.064453125
+64.63822937 16972.0
+72.83820343 12730.2041015625
+82.0541153 15393.220703125
+93.71162415 11216.046875
+101.5865479 13164.79296875
+149.567688 43812.71875
+167.09198 40507.828125
+169.059433 32530.95703125
+175.101532 9824.5439453125
+175.1179199 278498.65625
+176.1207886 26536.66015625
+177.0761108 61294.42578125
+178.0601349 355751.3125
+178.0782471 15270.353515625
+178.3495026 62045.4140625
+179.0637207 27017.810546875
+179.091217 27683.037109375
+183.0762177 23801.546875
+186.0862274 110814.8359375
+194.1023407 34182.8359375
+195.086441 3748149.75
+196.0892487 394881.6875
+197.0921173 41385.80859375
+200.1008453 13424.26171875
+201.0852509 18992.271484375
+206.0911865 156304.015625
+207.0938873 18462.515625
+215.0904846 15680.087890625
+218.1024017 62293.703125
+221.102356 28515.91015625
+222.0855865 20215.837890625
+234.0970459 12861.1669921875
+240.0980225 19850.970703125
+243.0858765 24402.91015625
+244.1178284 15417.7373046875
+246.0970154 630675.9375
+247.0996552 81334.59375
+257.1227417 113594.734375
+258.7931519 13339.115234375
+260.1123352 99177.671875
+261.1191711 15253.9912109375
+270.0969849 143325.53125
+271.0996704 13827.0986328125
+277.1408081 14985.5029296875
+278.1483459 26921.412109375
+283.1430664 49973.9375
+287.1235962 134164.53125
+288.1073914 1590374.25
+289.1102905 258421.171875
+290.1137695 13548.12109375
+294.1160583 15817.0283203125
+295.1502075 26223.0390625
+303.1445618 34346.1640625
+305.1339417 3025787.5
+306.1192322 1069813.125
+307.1210938 174431.125
+308.1228333 24882.09375
+311.1349182 52993.97265625
+312.1159973 26267.017578125
+321.1536865 331624.34375
+322.1567688 54178.32421875
+323.1444092 1097782.625
+324.1464233 161116.734375
+325.1518555 14334.998046875
+328.1610107 12553.98046875
+329.1445007 48131.98046875
+331.1489563 18333.5546875
+338.1431274 36328.953125
+338.180481 408521.15625
+338.6461792 17817.58984375
+339.1828613 72921.3203125
+347.1488037 22805.728515625
+359.1444092 76673.0625
+366.1858215 122609.1640625
+367.1911621 13775.6904296875
+369.1385498 28232.208984375
+376.1705933 120977.8046875
+377.1556396 82092.234375
+386.1647949 35809.52734375
+394.1807556 712405.8125
+394.2408142 20306.158203125
+395.1818848 146605.53125
+396.184021 22604.6015625
+412.1893616 25038.447265625
+460.1949463 20670.552734375
+468.2189941 56241.26953125
+474.7103882 18151.8984375
+483.7203674 19517.767578125
+485.2470703 209387.59375
+486.2510376 66942.046875
+488.1869812 55435.44921875
+492.2293701 172296.78125
+492.7294006 102251.8125
+493.2298889 28152.041015625
+494.7068176 14755.69140625
+495.2247925 46489.49609375
+496.2326355 18848.89453125
+503.7129211 19109.1875
+505.2120056 51829.9140625
+506.205658 38720.1875
+512.2241821 39124.640625
+520.7387085 18641.853515625
+521.2337036 38458.453125
+523.2214355 421474.4375
+524.223999 117464.671875
+525.2317505 26171.203125
+541.2451172 15213.6748046875
+555.2509766 17576.4453125
+558.2518311 13403.6806640625
+558.7410889 26217.048828125
+571.7488403 91493.5703125
+572.2739868 276535.125
+573.2799072 100533.203125
+574.2808228 14688.912109375
+576.2647095 26443.9296875
+576.7553101 40652.09375
+577.2527466 23351.396484375
+580.2628784 85363.953125
+580.7546387 2126932.5
+581.2557983 1320737.75
+581.7577515 532651.5
+581.8642578 17212.265625
+582.2590942 119033.2109375
+598.2724609 52284.98828125
+598.7722168 17996.634765625
+599.2762451 35612.45703125
+599.7772827 74656.734375
+606.2580566 33614.859375
+624.265686 49539.21484375
+625.2703247 15132.9140625
+673.3233032 371026.28125
+674.326416 137883.53125
+675.3291626 24845.52734375
+686.3920898 14185.107421875
+693.2888184 27222.046875
+711.296936 19487.560546875
+802.364624 85862.5625
+803.3703613 23745.021484375
+873.3982544 84581.9453125
+874.4020386 47318.07421875
+1001.462769 18295.580078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.222.222.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=222"
+RTINSECONDS=23.93926446
+PEPMASS=598.27001953125
+CHARGE=2+
+53.96337509 16196.7236328125
+55.46004868 13716.1376953125
+58.13436508 18128.80078125
+64.52629089 72563.4609375
+64.53069305 51905.68359375
+64.58202362 53155.87890625
+64.58623505 31681.458984375
+64.63809204 26198.75390625
+64.64141083 21613.12890625
+65.14428711 15601.970703125
+65.20176697 15540.330078125
+78.35623169 14991.7490234375
+78.50687408 13905.615234375
+149.5708008 72006.9375
+167.0912628 23745.0078125
+169.0600433 34339.79296875
+175.1178131 297597.09375
+175.6905518 17865.337890625
+177.0759888 44080.140625
+178.0600128 325543.125
+178.348526 102129.609375
+179.0640106 23164.201171875
+179.0909576 19853.376953125
+182.0916443 20100.728515625
+183.0750275 23336.095703125
+186.0861816 112792.5859375
+194.1017456 49491.890625
+195.0864105 4369057.0
+195.1282349 26890.529296875
+196.0890656 432331.09375
+197.0913086 24847.23046875
+200.1015472 42276.984375
+201.0862885 21227.10546875
+206.0910645 110066.3203125
+215.0908356 19160.091796875
+218.102066 55521.3125
+239.1136169 25109.658203125
+240.0953674 31187.107421875
+243.0865784 24753.302734375
+244.1163788 19273.09765625
+246.0968628 631365.4375
+246.1256561 31067.384765625
+247.0996552 77774.859375
+257.1226196 100183.28125
+260.1123657 130175.2890625
+270.0965881 116972.3359375
+278.1486206 22542.28125
+283.1438904 43475.1796875
+287.1232605 179841.234375
+288.1072998 1617053.25
+289.1101379 248966.84375
+294.1158447 19836.955078125
+295.1473389 20361.05859375
+302.1333923 21333.880859375
+303.1430359 19065.783203125
+303.6271667 19969.80859375
+304.1298523 20838.330078125
+305.1338806 3357617.75
+306.1188049 1249242.875
+307.1213684 193413.65625
+311.1351318 45264.953125
+312.1168518 38918.3203125
+320.1358337 19425.5234375
+321.1536865 347446.75
+322.1567383 52626.05859375
+323.1442871 1139769.0
+324.1459656 153747.734375
+329.1438599 49545.00390625
+338.1418457 46493.4921875
+338.180542 399254.78125
+339.182373 70868.578125
+347.1477661 36753.41015625
+349.1582336 25794.8828125
+358.1615601 29512.6640625
+359.1452332 82600.71875
+366.18573 137139.75
+367.1880493 28213.9453125
+369.1385498 38173.78125
+376.1699829 138542.359375
+377.1570129 80602.21875
+386.1639404 29936.935546875
+394.1807251 735888.25
+395.1819763 136673.3125
+396.1849976 27375.4609375
+412.1815796 30989.2578125
+413.1655273 23299.1953125
+468.2209778 54667.6953125
+485.2469482 236839.4375
+486.250824 68190.9765625
+488.1843567 37519.51953125
+492.2277222 171816.40625
+492.7305298 94278.2109375
+493.2324524 25789.984375
+495.2268372 62042.234375
+496.2318115 26131.849609375
+505.2109375 67489.6953125
+506.2052917 46746.61328125
+512.227417 41622.8671875
+521.2306519 44179.6796875
+523.2220459 518580.625
+524.2252197 99955.0625
+525.2335815 24316.451171875
+558.7461548 26488.515625
+567.7571411 20344.900390625
+571.7496948 63205.109375
+572.274231 359322.0625
+572.7523193 33669.8125
+573.2788696 104444.546875
+576.2581787 56703.58984375
+576.7625732 41403.79296875
+577.7609863 19907.3671875
+580.2623291 83462.953125
+580.7546997 2701362.75
+581.2557983 1851215.875
+581.366333 23289.236328125
+581.7576294 717387.1875
+581.862854 32472.591796875
+582.2597656 156523.4375
+589.2670898 119545.84375
+589.7686768 76810.1171875
+598.2717285 47759.80859375
+598.7730103 47820.125
+599.7785645 55950.26171875
+606.2558594 33025.515625
+624.2651367 65379.45703125
+673.3237915 445966.125
+674.2092285 24321.2890625
+674.3259888 169028.96875
+675.3319702 38193.12109375
+693.291748 29896.048828125
+802.3618164 87841.859375
+803.3635254 55536.40625
+873.3984985 111242.8203125
+874.3974609 66684.359375
+1001.453918 18061.603515625
+1058.478638 22553.7734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.223.223.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=223"
+RTINSECONDS=24.04618242
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52620697 62665.078125
+64.53044891 43131.10546875
+64.58197784 42365.41796875
+64.58614349 34066.1953125
+64.63806152 21366.423828125
+64.64150238 19114.984375
+65.75518799 11896.693359375
+74.81186676 16357.63671875
+95.88249969 13038.05078125
+104.9837723 13001.97265625
+149.5678253 46514.73046875
+167.0921478 43277.69921875
+169.059433 44876.98046875
+175.1177063 298860.6875
+176.1203003 16027.6572265625
+177.0757751 64653.046875
+178.0599213 350367.03125
+178.0778961 18390.2109375
+178.3360443 47955.3359375
+178.3553162 20474.21484375
+179.0635223 32949.5390625
+179.0911713 24481.798828125
+183.0751495 30910.921875
+186.0862732 110074.1640625
+194.1024933 45751.55078125
+195.0862732 4256736.5
+195.1280518 22240.787109375
+196.0892029 457398.65625
+197.0916443 30920.83984375
+200.1016388 24564.126953125
+201.0847168 20447.6484375
+206.0910187 153838.703125
+207.0937958 19106.83203125
+207.1136627 13161.654296875
+212.1147614 15113.8994140625
+218.102066 79234.9453125
+221.1010132 12075.9755859375
+232.1179962 19426.23828125
+243.0855255 18113.365234375
+246.0968628 605815.375
+247.1000671 71361.0703125
+257.1228027 99676.6875
+260.1121826 114357.4375
+261.1168213 15520.7294921875
+270.0969543 111301.453125
+277.1378784 17268.734375
+278.1495667 26243.126953125
+283.1425171 43954.48046875
+287.12323 147503.59375
+288.1072083 1671250.125
+289.1100769 261361.546875
+290.1126709 24058.375
+295.1481628 17432.96484375
+303.143158 28091.0390625
+305.133728 3122252.25
+306.118866 1193727.0
+307.1208801 190478.65625
+308.1246643 19155.404296875
+311.1339111 52516.59765625
+312.1164856 32160.919921875
+318.143158 16864.34765625
+321.1538391 327264.71875
+322.1564331 63934.8203125
+323.1442261 1085421.625
+324.1462402 185198.1875
+325.1491699 19297.037109375
+328.1612549 14329.34375
+329.1445923 33896.1328125
+331.1474609 15109.5751953125
+338.1429443 40748.18359375
+338.1804504 419561.1875
+338.6446533 27537.216796875
+339.1826782 63695.44140625
+347.1507263 21536.162109375
+349.1540833 14436.51953125
+359.1444397 63596.453125
+366.1856384 99653.34375
+367.1841431 22586.892578125
+369.1374817 23018.65625
+376.1703186 112869.953125
+377.1550903 83310.546875
+378.1624451 16088.9306640625
+386.1648254 22862.56640625
+394.1807861 722678.4375
+394.2408447 24993.025390625
+395.1821289 156148.625
+396.1849365 19868.458984375
+412.1890869 20508.869140625
+413.1636353 17487.171875
+428.7007751 15498.3408203125
+460.1899414 26627.599609375
+468.2194519 43790.16015625
+469.2253418 20859.529296875
+478.2064514 17195.06640625
+485.2471008 238759.5
+486.2502441 60059.09375
+488.1836243 46332.73046875
+492.2289429 176438.171875
+492.7296143 96509.4609375
+493.2351074 38484.21484375
+494.2168884 15894.853515625
+495.2298584 69939.046875
+503.2163391 20527.2421875
+503.7157593 24713.23828125
+504.2223816 20934.2265625
+505.210968 67097.640625
+506.2093506 42819.98828125
+512.2275391 50708.453125
+512.4690552 14807.7783203125
+512.7323608 22897.30859375
+513.2307129 15862.296875
+521.2321777 31447.876953125
+523.2216797 445216.1875
+524.2236328 120397.5
+525.2325439 29740.013671875
+529.7428589 16968.587890625
+555.2495117 25298.69921875
+558.2606812 17585.77734375
+558.743042 28203.93359375
+559.2484131 19191.828125
+567.2532959 20417.712890625
+571.2573242 14994.6806640625
+571.7498779 115713.046875
+572.2750244 331270.6875
+572.7536011 18239.71484375
+573.2799683 127776.046875
+574.2796021 24897.32421875
+576.2625732 56004.1171875
+576.7634277 17693.8515625
+577.2583618 33151.51953125
+580.2588501 63014.7109375
+580.7546997 2391930.75
+581.2560425 1654537.625
+581.7575684 633055.125
+582.2587891 125857.6796875
+589.265625 63742.11328125
+589.7642822 38878.5078125
+598.2720337 60520.6875
+598.7733154 51385.26953125
+599.2758789 42708.3203125
+599.7750244 87970.265625
+606.2567749 38582.8828125
+624.2681885 55442.97265625
+655.3168945 20462.61328125
+673.196106 28178.046875
+673.3233643 427840.96875
+674.326416 146789.78125
+675.3234863 27271.142578125
+802.362854 92471.1015625
+803.3657227 31151.8984375
+873.3983154 84594.0078125
+874.4035034 34547.26953125
+1001.456909 28700.708984375
+1002.451111 16915.9140625
+1058.46936 20297.4921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.224.224.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=224"
+RTINSECONDS=24.15541278
+PEPMASS=598.27001953125
+CHARGE=2+
+55.8029747 12392.720703125
+58.65787506 14105.75
+64.52624512 65040.453125
+64.5306778 48140.8828125
+64.58198547 45168.6015625
+64.58614349 31684.07421875
+64.63793945 30609.431640625
+64.64136505 15781.9208984375
+74.81189728 18141.541015625
+92.84539795 14509.513671875
+149.5677643 53405.0546875
+167.0922089 26950.291015625
+169.0596924 33344.6328125
+175.1020355 26243.5
+175.1177673 308069.34375
+175.1338348 14621.6982421875
+176.1203308 15937.7333984375
+177.0759583 51976.58984375
+178.0436096 25831.6015625
+178.0599823 323308.53125
+178.0780792 17870.625
+178.3419342 87962.84375
+179.0635986 18394.849609375
+179.0919189 19662.09765625
+183.0749054 34618.984375
+186.0861664 98898.703125
+194.1028595 24720.41015625
+195.0863495 4204274.5
+196.0891876 432136.65625
+197.0926514 20138.83203125
+200.1021576 30464.416015625
+201.0845947 18631.12109375
+201.1233063 15161.810546875
+206.0909729 155592.890625
+215.0912476 17305.767578125
+218.1013031 42371.890625
+222.0862885 18269.984375
+227.5334015 13992.2255859375
+234.0968018 30292.224609375
+240.0966949 30490.404296875
+243.0857391 20273.953125
+244.1165924 20344.447265625
+246.0968475 661337.875
+247.0998535 66752.0625
+249.0969543 25471.28125
+257.1228943 112643.90625
+260.1123962 113984.5859375
+261.1164246 16726.48828125
+270.0970764 126007.765625
+277.139679 21201.181640625
+278.1486511 23412.943359375
+283.1429443 39643.3828125
+287.1232605 156468.359375
+288.1072998 1552902.25
+289.1102295 231199.390625
+290.1137695 15685.6904296875
+295.1474915 15766.4267578125
+303.1430359 34596.0
+304.1302185 21235.8515625
+305.1338501 3165155.5
+306.118988 1158441.75
+307.1212158 201587.40625
+308.1278381 17235.416015625
+311.1351013 60530.765625
+312.1168518 38172.8671875
+321.1539001 337885.4375
+322.1543884 46556.15234375
+323.1443176 1070244.5
+323.1886597 28386.435546875
+324.1463013 154415.328125
+325.1488647 21969.966796875
+329.1448059 59979.6015625
+338.1429443 41071.2890625
+338.1803284 401941.40625
+339.1833496 71339.46875
+347.1499023 21221.998046875
+349.1579285 29736.92578125
+351.1307068 18121.283203125
+359.1448059 63590.21484375
+360.1477966 17106.388671875
+366.1861572 106663.8984375
+367.1896362 25964.166015625
+369.1390381 22549.705078125
+376.1705933 105745.1171875
+377.1564331 76286.4921875
+386.165802 32533.48828125
+394.180542 742052.5
+394.2399292 33547.3828125
+395.1832275 151864.8125
+396.1830139 14942.49609375
+412.1877136 45747.75390625
+413.1661072 20955.40625
+420.6838989 19745.830078125
+468.2201843 50060.41015625
+485.2469177 193575.828125
+486.2496338 61729.51171875
+488.184967 57478.96484375
+492.2294922 181450.734375
+492.7312927 94655.9765625
+493.2304382 26343.2421875
+495.2271729 62108.58984375
+496.2192993 18980.419921875
+503.7139893 20902.2890625
+505.2111206 54198.5078125
+506.204834 44595.83203125
+506.7271118 19004.900390625
+512.2260742 26403.251953125
+512.7236938 37339.89453125
+520.7416382 19282.064453125
+521.2321777 47038.98046875
+523.2214966 443649.4375
+524.2249146 144804.0625
+525.2301636 30720.78515625
+529.7417603 20436.71484375
+555.2643433 17376.9375
+558.7444458 28585.76953125
+571.7526245 75696.5546875
+572.2752686 289368.5625
+573.2808838 97758.7109375
+576.262146 56176.29296875
+576.7669678 28249.732421875
+577.2584839 33226.65234375
+577.7675781 21879.828125
+580.2602539 72535.90625
+580.7548828 2493363.25
+581.2559814 1612878.625
+581.7579346 641150.5
+582.2581787 114051.0703125
+589.2663574 59001.2890625
+589.7647095 36001.140625
+598.2734375 58410.4296875
+598.7748413 30802.345703125
+599.2767944 24345.36328125
+599.7767944 72051.5390625
+606.2578125 43140.51171875
+607.2598877 21830.78125
+624.2669067 77450.5234375
+625.2741089 18670.986328125
+656.305603 19155.6015625
+673.3244629 430231.4375
+674.3270874 174096.625
+675.3224487 26502.029296875
+693.2873535 32851.0078125
+802.3630371 116071.3984375
+803.3668823 54345.73828125
+873.4004517 98914.125
+874.3948975 50086.17578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.225.225.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=225"
+RTINSECONDS=24.26394392
+PEPMASS=598.27001953125
+CHARGE=2+
+53.94553757 12600.2236328125
+64.52622986 75230.9921875
+64.53050232 44271.859375
+64.58200836 47391.94140625
+64.58617401 31410.068359375
+64.63816833 17829.828125
+64.64155579 16216.056640625
+74.81200409 15986.1044921875
+82.05462646 19135.31640625
+90.53011322 12934.8896484375
+97.31843567 14822.4384765625
+136.1064453 12680.291015625
+149.5636139 36185.30078125
+149.5779572 30879.30078125
+167.0919647 38187.48046875
+169.0596924 39298.71875
+175.1178894 315815.96875
+176.1218414 14614.443359375
+177.0760498 67210.5546875
+178.0600128 350316.34375
+178.3428955 91729.4140625
+179.0627289 26576.826171875
+179.091095 18854.458984375
+183.0756378 22571.177734375
+186.08638 86189.0390625
+194.1027985 32245.6328125
+195.0864258 4267678.0
+195.8627167 16910.701171875
+196.0894165 437118.71875
+197.0911102 32656.90234375
+200.1019135 18065.875
+206.0912018 135087.578125
+207.0936279 27102.05859375
+215.0916443 20051.5546875
+218.1027832 60572.8671875
+222.0842896 14763.2998046875
+232.1187897 18776.85546875
+234.096756 17753.505859375
+240.0976257 20002.625
+243.0865784 25391.662109375
+246.0740204 13635.578125
+246.0970459 670664.875
+247.1003265 73926.1953125
+249.0963135 22725.607421875
+257.1227417 103397.5078125
+260.1118164 115484.859375
+261.1194458 17344.861328125
+270.0966797 122715.0546875
+271.1013184 22060.70703125
+278.1190186 21085.388671875
+283.1427002 48407.6171875
+287.1234436 157249.21875
+288.1073914 1563176.75
+289.1102905 228696.140625
+290.1133728 20858.826171875
+294.1179199 23514.630859375
+295.1490173 24456.505859375
+303.143219 39063.9140625
+304.1264954 18683.31640625
+305.1340332 3239832.75
+305.2164917 20733.779296875
+306.1191101 1155614.5
+307.1213074 151050.71875
+308.1221313 24037.6015625
+311.136261 51966.5234375
+312.1164246 22442.830078125
+320.1319275 17559.796875
+321.1540527 339601.0625
+322.1569214 73303.8671875
+323.098938 19205.318359375
+323.1445923 1111439.0
+324.146698 216356.21875
+325.1521301 25971.83984375
+329.1431885 33762.59375
+338.1418152 46119.87109375
+338.1806335 392969.1875
+338.6465149 23618.048828125
+339.1839294 70178.5546875
+347.1514587 25873.0390625
+349.1593323 23732.52734375
+359.1444397 48168.62109375
+360.1453857 17678.814453125
+366.186615 110258.515625
+376.1705017 96638.6484375
+377.1575317 80388.453125
+378.16745 16382.2578125
+386.1642456 29699.001953125
+394.1812134 711117.875
+394.2406311 24177.666015625
+395.183136 133819.40625
+396.1835632 15002.6005859375
+412.1878967 32923.65625
+420.6778259 16162.845703125
+460.1902161 29824.03515625
+468.22052 57314.98046875
+469.2172852 14653.982421875
+478.1992798 22363.0078125
+485.2477722 207283.953125
+486.25177 52121.5859375
+488.1868896 51525.44921875
+489.1849976 16599.46875
+492.2293091 171943.828125
+492.7324524 74019.21875
+493.2335815 46949.19140625
+495.2270508 52601.015625
+496.2328186 18519.80859375
+505.2113037 63589.37109375
+506.2041931 42492.25
+507.2081604 18924.736328125
+512.2247314 50072.40625
+512.7269287 40862.57421875
+521.2359619 31867.6484375
+521.7368164 20915.31640625
+523.222229 483241.28125
+524.2246094 119579.8125
+525.229187 33369.7265625
+529.741333 23058.55859375
+558.7449341 28644.779296875
+567.7561035 23711.388671875
+571.7503052 91425.2421875
+572.2734985 326544.21875
+572.7456055 25362.91015625
+573.277771 100813.5078125
+576.2618408 46214.421875
+577.2601929 26656.0859375
+580.2631226 97485.8671875
+580.7554321 2477919.5
+581.2565918 1695610.25
+581.758606 659435.6875
+582.2587891 140185.65625
+589.2667236 50627.2265625
+589.769165 40807.125
+598.2753906 62339.11328125
+598.774353 41669.1484375
+599.279541 31670.162109375
+599.7764282 96264.8671875
+606.2598267 30973.162109375
+624.2699585 57303.30078125
+625.2702637 33510.87890625
+656.3041382 28359.9765625
+673.324585 444211.1875
+674.3280029 184254.375
+675.3247681 31642.158203125
+693.2843018 22088.65234375
+711.3009644 22548.830078125
+802.364502 86589.5859375
+803.3703003 38997.203125
+873.40271 97968.3203125
+874.4030762 45724.48046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.226.226.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=226"
+RTINSECONDS=24.3727356
+PEPMASS=598.27001953125
+CHARGE=2+
+53.13803864 14119.0380859375
+54.69055557 14439.240234375
+58.1344986 16115.439453125
+58.1374588 14527.1337890625
+64.52613831 65361.43359375
+64.53061676 48691.9765625
+64.58197784 42404.98046875
+64.58596802 39032.1953125
+64.63821411 30396.095703125
+64.64147949 18411.548828125
+76.28557587 19478.275390625
+82.05393219 15426.869140625
+86.87612915 16304.4072265625
+89.76825714 14968.6982421875
+92.6322403 14676.7578125
+133.6371307 15471.9443359375
+149.5749512 32432.068359375
+167.0913849 41197.17578125
+169.0603943 22562.64453125
+175.1018982 27833.689453125
+175.1176453 303681.65625
+176.1204224 15184.1376953125
+177.0758209 64667.25390625
+178.059845 330062.9375
+178.342804 92974.7890625
+179.0630188 37814.078125
+182.090744 18430.40625
+183.0754395 36149.87890625
+186.0858917 108801.0703125
+194.1028137 40199.421875
+195.0862885 4404920.0
+196.0891113 425210.40625
+197.0923157 29582.365234375
+200.1014709 23977.29296875
+201.0849457 28381.708984375
+206.0909271 157554.015625
+207.0929108 20085.84375
+207.1130524 19818.216796875
+209.1016998 17680.66796875
+215.0910492 21466.453125
+218.1021729 49722.8359375
+234.0969086 15408.134765625
+234.2511902 15164.2900390625
+239.1127014 18686.466796875
+240.0955658 22839.169921875
+242.7344818 13800.341796875
+244.1186218 16957.82421875
+246.0967865 655453.25
+247.0995636 83451.578125
+249.0967407 25318.90625
+257.1221924 92988.5
+258.1278687 15908.21484375
+260.1123962 123677.1171875
+265.1005859 14257.734375
+270.0964966 129345.1796875
+271.1019592 16546.326171875
+278.1498413 29127.427734375
+283.1430664 49563.4765625
+287.1228943 153578.703125
+288.1071472 1626099.625
+289.1101379 222590.703125
+290.1103821 29026.58984375
+293.1330261 16474.931640625
+295.1501465 24513.439453125
+303.144043 32794.96875
+304.1242676 19268.384765625
+305.1336975 3272705.25
+306.118866 1193356.25
+307.1213379 200201.84375
+308.1243286 24020.591796875
+308.6629028 18927.271484375
+311.1349792 58899.20703125
+312.1157837 33925.69921875
+321.1540833 342297.34375
+322.1568604 73112.0546875
+323.1442566 1171129.875
+324.1461182 153729.34375
+329.1441345 54415.33203125
+338.142334 50604.50390625
+338.1803284 429631.75
+339.1825256 76196.0703125
+349.1594543 38641.54296875
+351.1292725 27790.3828125
+359.1438599 55164.53515625
+366.1860046 117228.2109375
+367.1872253 26076.291015625
+369.1390686 32632.958984375
+376.1698303 139643.96875
+377.155426 93425.5703125
+386.1650085 24579.365234375
+394.180542 752795.1875
+394.2399292 22102.638671875
+395.182251 165938.34375
+396.1864319 20529.384765625
+412.1871033 31099.65234375
+420.6852417 27302.248046875
+460.1902161 20138.67578125
+468.2197876 66064.453125
+469.2200317 17178.234375
+478.1993408 21929.109375
+483.7176514 25757.44140625
+485.2468567 215318.8125
+486.2498779 65853.2578125
+488.186615 75318.328125
+492.2292786 195034.65625
+492.7306519 102803.0703125
+493.2315674 35138.63671875
+495.2267761 69269.5703125
+503.2179871 18239.412109375
+503.7150269 18540.1015625
+505.2136841 54572.50390625
+506.2038879 41700.640625
+507.1947327 18202.525390625
+512.2281494 42479.54296875
+512.729248 34528.94921875
+521.2317505 32915.30078125
+523.2213135 505401.40625
+524.223938 132754.828125
+525.230835 17131.072265625
+555.2495728 21130.427734375
+558.7463379 27192.345703125
+559.2409058 20329.625
+571.74823 80469.0078125
+572.2748413 351084.15625
+573.2796631 104173.3046875
+574.2732544 19680.947265625
+576.2616577 63677.3125
+576.7590942 35865.50390625
+577.2646484 43209.89453125
+580.2610474 84580.5859375
+580.7546997 2518441.75
+581.2557983 1790704.875
+581.7575073 699914.4375
+581.864563 22323.625
+582.2583008 137222.703125
+589.2675171 80363.03125
+589.7689819 47470.48828125
+598.2740479 39393.05078125
+598.7710571 39459.171875
+599.2783203 23123.552734375
+599.776062 72152.484375
+606.2566528 34424.1171875
+624.2674561 65367.859375
+655.3071289 19816.328125
+673.3230591 399755.5625
+674.3264771 170152.328125
+675.329834 38869.8046875
+693.2797852 16564.294921875
+711.2982788 31945.30078125
+802.364624 100362.7421875
+803.369751 43988.7421875
+873.3988037 112032.1328125
+874.4026489 52669.875
+875.4100342 20139.431640625
+1058.475098 17570.296875
+1133.44104 17026.423828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.227.227.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=227"
+RTINSECONDS=24.48091997
+PEPMASS=598.27001953125
+CHARGE=2+
+56.45897293 13265.7998046875
+56.59310532 12985.466796875
+58.13427353 15841.609375
+58.1373024 18022.521484375
+64.52626801 54097.0390625
+64.53044128 44020.171875
+64.58196259 37877.34765625
+64.58615875 33421.35546875
+64.63816833 15856.802734375
+64.64133453 18309.34375
+130.4366302 13754.033203125
+149.5676575 54381.24609375
+167.0914001 43052.15234375
+169.0602875 34149.1953125
+169.2133789 14956.1943359375
+175.1176605 300291.25
+176.1205902 26632.2421875
+177.0760345 61749.734375
+178.0597076 355332.9375
+178.3421326 93124.96875
+179.0626221 32103.662109375
+182.0911713 30223.001953125
+183.0744781 22524.03515625
+186.0858002 122628.375
+194.1024017 41642.19140625
+195.0861969 4260119.0
+196.0890656 465949.25
+197.0914459 24604.498046875
+200.101181 35130.72265625
+201.0849152 19721.33984375
+206.0909576 171327.125
+207.0936127 29773.68359375
+212.1129761 17931.6484375
+215.0904694 18581.611328125
+218.1034241 33866.8046875
+233.1268005 22211.251953125
+234.0965424 25149.732421875
+240.0957489 21794.634765625
+243.0847168 15818.595703125
+246.0966187 633290.0
+246.1257324 31558.046875
+247.0989685 81574.6484375
+254.9655304 15191.169921875
+257.1226196 125865.953125
+258.1253357 18249.259765625
+260.1124878 106691.1953125
+270.096283 117785.3203125
+278.1486206 39253.84765625
+283.1420288 42813.6171875
+287.1226501 156910.78125
+288.1069641 1646024.25
+289.1098022 232761.015625
+290.1125793 17861.76171875
+303.1435852 33302.75390625
+304.1246948 16780.29296875
+305.1334839 3246258.5
+306.1185608 1248301.375
+307.1208801 193226.609375
+308.1205139 16304.8408203125
+311.1340942 56451.05078125
+312.1126404 35183.91796875
+318.1412964 18152.466796875
+321.1535034 308398.40625
+322.1564636 65734.6328125
+323.0994263 32665.69921875
+323.1439209 1184884.875
+323.1889038 34867.125
+324.1463013 192420.21875
+329.1442261 47060.78515625
+331.1497498 16703.470703125
+338.1417847 47158.4765625
+338.1799927 437839.65625
+338.6409302 16890.1796875
+339.1824036 60579.6328125
+346.1682129 19164.89453125
+349.1587524 18818.744140625
+353.1879883 15521.4501953125
+358.1638794 18730.080078125
+359.1451721 73215.265625
+360.1496887 16104.892578125
+366.1852722 119647.390625
+367.1830444 18699.419921875
+369.1360779 20309.59765625
+376.1696167 126389.21875
+377.1556091 79094.140625
+386.1633301 27650.4765625
+394.1801453 752457.1875
+394.2398071 31629.681640625
+395.1827393 145653.125
+398.1659851 22522.994140625
+412.1882935 40617.39453125
+420.684082 20931.7265625
+452.2000427 23767.392578125
+468.2218018 44992.56640625
+477.2173157 26646.37890625
+478.2064209 23477.361328125
+485.2467041 220708.984375
+486.249939 67135.9375
+488.1832581 49891.9375
+492.2287903 157669.140625
+492.7286987 88826.984375
+493.2254639 25779.111328125
+495.2287598 54105.83984375
+503.7203064 26356.3046875
+505.2106323 64723.953125
+506.2088928 45692.8359375
+512.2229614 54042.0703125
+521.2336426 27621.0
+523.2209473 466629.8125
+524.2241211 141620.65625
+525.2306519 22599.67578125
+529.744812 15735.9208984375
+558.7410278 22972.005859375
+571.7479858 66462.2890625
+572.2745361 301905.46875
+573.2787476 95330.921875
+576.2606201 55471.3046875
+576.760498 38973.44140625
+577.2546997 19324.931640625
+580.2636719 79971.15625
+580.7539062 2240743.0
+581.2550659 1555959.625
+581.3377075 23620.45703125
+581.3652344 22438.6875
+581.7564697 613469.1875
+582.2566528 143811.0625
+589.2654419 74651.2265625
+589.7659302 34559.83984375
+598.270874 54274.17578125
+598.7767944 29773.373046875
+599.2705688 33236.65625
+599.7768555 66002.6640625
+606.2502441 34010.9140625
+624.267395 57919.265625
+673.3222046 429628.65625
+674.3251343 135162.953125
+675.3262329 23476.9609375
+711.2985229 21774.224609375
+784.3599243 19108.5
+802.3623657 110128.7890625
+803.3636475 52937.98828125
+873.3969116 108283.265625
+874.3964844 51788.25390625
+1001.462708 32111.728515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.228.228.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=228"
+RTINSECONDS=24.58887517
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13720322 15499.5673828125
+64.52616119 66748.71875
+64.5304184 41676.9453125
+64.58197784 36658.44140625
+64.58612823 33336.46875
+64.63818359 26838.90234375
+64.64141083 18421.83203125
+67.27625275 14438.0078125
+72.02472687 13779.998046875
+75.43710327 13205.2861328125
+76.28110504 17922.375
+82.05405426 20087.30859375
+83.0617981 14495.58203125
+97.30836487 16234.5009765625
+102.4258728 14945.6943359375
+110.0728455 15719.6474609375
+148.7744751 14490.6630859375
+149.5620575 23909.408203125
+149.5743561 37791.48828125
+167.0916748 42486.18359375
+169.0594635 40032.03125
+175.1177673 298228.59375
+176.1211395 14193.3955078125
+177.0759583 80871.671875
+178.0599518 346457.46875
+178.3370056 62426.19921875
+178.3565369 34252.78125
+179.0635681 27603.984375
+179.0905914 21853.708984375
+182.0908813 19085.95703125
+183.0749817 36677.60546875
+186.0861359 100346.1875
+190.1069031 17964.25
+194.1030731 40570.5859375
+195.0863037 4364720.0
+196.0891266 432129.1875
+197.0920258 26093.33984375
+206.0908813 183439.90625
+212.1134033 14113.54296875
+213.3694 16545.265625
+215.0914001 30072.90234375
+218.1023865 51215.4453125
+222.0847015 22034.435546875
+239.114151 19500.125
+240.096344 26592.869140625
+243.0860748 33412.83203125
+246.0968781 657032.3125
+246.1257629 31673.037109375
+247.099762 77518.171875
+257.1227417 114211.6015625
+260.1122437 127532.3203125
+261.1193848 17409.318359375
+270.0964661 131457.90625
+278.1480713 30621.21875
+283.142395 44087.234375
+287.1231689 158350.34375
+288.1072998 1632520.5
+289.110321 227903.140625
+295.149292 26007.603515625
+303.1440125 26325.69921875
+304.1254883 16896.697265625
+305.1338196 3201188.0
+306.1191711 1127500.875
+307.1209717 185426.0625
+308.1230774 32515.474609375
+311.1341553 48112.11328125
+312.1158142 29476.533203125
+320.1315308 20097.447265625
+321.1537781 342034.21875
+322.1558838 56411.421875
+323.1442871 1081706.75
+324.1466064 201590.375
+329.143158 47049.1328125
+338.1416321 66645.5859375
+338.1805115 418752.53125
+339.183075 72007.3828125
+347.1472168 23400.517578125
+349.1609802 24556.734375
+351.1351013 22078.591796875
+358.1700439 21858.94921875
+359.1441956 68689.1640625
+366.1858521 116084.140625
+367.1886597 23035.052734375
+369.1394043 31073.6640625
+370.6141052 14810.783203125
+376.170105 137038.546875
+377.1543579 77717.2109375
+378.1601868 18822.1796875
+386.1617432 23341.74609375
+389.15271 18869.08203125
+394.1807251 740280.25
+395.183075 150347.71875
+412.188324 30025.1953125
+420.6790771 20691.998046875
+421.1810913 21983.49609375
+460.1894531 19433.611328125
+468.2190552 57027.43359375
+477.2160034 20383.40625
+478.2065125 21226.662109375
+483.2221985 18111.54296875
+483.7172241 24206.63671875
+485.2473145 242847.65625
+486.2502747 50309.09765625
+488.1863403 59895.67578125
+492.2285461 163652.078125
+492.7307129 83798.140625
+493.2304077 31634.333984375
+495.2258301 69987.0859375
+503.2200012 21893.181640625
+505.2116394 66870.203125
+506.2040405 51747.546875
+512.2248535 51874.88671875
+512.7247314 26508.5
+521.2338257 48698.06640625
+521.7333374 32972.5859375
+523.2217407 500673.03125
+524.2247314 123329.7890625
+525.2285767 33078.49609375
+529.7469482 31475.98828125
+541.225647 15702.7861328125
+554.2762451 15287.552734375
+555.2561035 24988.3515625
+558.7410889 20264.83203125
+559.2462158 20693.703125
+567.253418 22144.912109375
+571.7488403 94326.1875
+572.2755127 331804.0625
+572.7497559 23904.80078125
+573.2805176 94520.2265625
+576.260437 51581.875
+576.7649536 23881.671875
+577.2637329 28001.94140625
+580.2626953 92295.546875
+580.7548218 2409056.75
+581.2562866 1688164.375
+581.3682251 29001.3515625
+581.6508789 19564.126953125
+581.7579956 647386.75
+582.2580566 95064.65625
+589.2683716 61759.4140625
+589.7652588 40847.53125
+598.2722778 51853.6328125
+598.7736816 25055.53515625
+599.2782593 20557.42578125
+599.7750854 80063.0859375
+606.2565308 42345.0234375
+624.2696533 47738.1328125
+625.2769165 18579.63671875
+673.3233643 401674.78125
+674.3270874 170527.765625
+675.3266602 25926.72265625
+693.2888184 25544.28125
+711.2959595 18584.501953125
+802.3626099 75417.234375
+803.3681641 44094.265625
+873.4004517 95015.90625
+874.4017334 36347.42578125
+1001.444092 25431.22265625
+1003.459045 17957.1015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.229.229.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=229"
+RTINSECONDS=24.69760062
+PEPMASS=598.27001953125
+CHARGE=2+
+51.28585434 13656.78125
+63.58453751 14855.0986328125
+64.52622986 62228.1484375
+64.53063965 49969.4375
+64.58209991 43355.51171875
+64.58622742 27722.4140625
+64.63815308 24996.75390625
+70.21592712 14076.865234375
+82.05410767 20645.673828125
+89.03157043 13429.8740234375
+115.7191162 13993.26953125
+122.9388657 13539.447265625
+135.3882294 14671.2177734375
+149.5614777 18017.90625
+149.5732574 48351.69921875
+167.09198 43614.703125
+169.0601654 34791.05859375
+175.1179047 282403.78125
+176.1192932 21891.951171875
+177.0757599 95289.65625
+178.0435486 26373.205078125
+178.0599823 329695.28125
+178.0779724 16134.6171875
+178.3393707 77585.90625
+179.0641174 27852.705078125
+179.0914459 19968.013671875
+183.0754089 32912.984375
+186.0863647 94663.015625
+190.0605469 17424.05078125
+194.102417 28908.576171875
+195.0864105 4245557.5
+195.1276703 25385.919921875
+196.0895233 435145.625
+197.0912018 27289.9921875
+200.1018982 33031.65234375
+201.0863953 23616.623046875
+206.091095 158206.09375
+207.0940247 17044.6796875
+212.1124268 17310.529296875
+215.0899963 14455.1875
+218.1017151 54778.0
+221.1031799 19943.93359375
+240.0946503 25488.873046875
+246.0969543 627945.625
+247.1000671 86262.875
+249.0952301 22135.14453125
+257.122467 110382.7265625
+260.1124268 113963.78125
+270.0968628 129333.6953125
+278.1169434 17160.2734375
+278.149353 31333.142578125
+283.1436157 30354.578125
+287.12323 135239.40625
+288.1073608 1631041.0
+289.1101379 225458.03125
+290.1119995 16401.548828125
+294.1147156 16861.783203125
+295.1508789 17561.529296875
+303.1427307 45781.11328125
+304.1267395 16585.703125
+305.1339722 3175342.75
+306.1190796 1121582.75
+307.1210327 177065.953125
+308.1222534 19285.630859375
+311.1340942 32957.140625
+312.1161804 31794.3359375
+321.1540222 334873.09375
+322.1574707 64391.87890625
+323.1445312 1140636.125
+324.1466675 169127.671875
+325.1521301 14929.423828125
+329.1439514 52351.078125
+338.1423035 38375.3671875
+338.1805115 397868.21875
+338.6446838 30731.326171875
+339.1838684 70174.4296875
+341.1362915 20009.650390625
+347.1487122 25783.0234375
+349.1594543 25487.93359375
+351.1295776 20624.09765625
+359.1445007 79538.515625
+366.186554 121655.6875
+367.186676 22323.345703125
+369.13974 31997.884765625
+376.1704712 115114.359375
+377.1562805 69304.7421875
+386.1639404 41287.11328125
+394.1203003 21560.90234375
+394.1809692 670507.4375
+395.1823425 145916.8125
+396.1856995 25246.19921875
+412.1908569 24014.154296875
+460.1896057 21819.88671875
+468.2217407 43019.328125
+477.2182007 18167.728515625
+483.7133179 29045.935546875
+485.2471924 201000.53125
+486.2496948 56191.4921875
+488.1870117 54832.86328125
+492.2284241 144788.875
+492.7311707 99762.65625
+493.2305298 39839.07421875
+495.2287903 47290.55859375
+496.22995 21596.97265625
+504.214447 17995.0546875
+505.2123413 58054.66796875
+506.2064209 50296.60546875
+512.2272949 40159.0390625
+512.7236938 36474.890625
+520.741394 16994.072265625
+521.2318115 32619.58984375
+521.7298584 25491.76953125
+523.222229 423521.78125
+524.2249756 118091.1015625
+525.2320557 40489.953125
+530.2420044 20770.29296875
+555.2601929 24527.251953125
+571.7496338 66482.0625
+572.2754517 307797.15625
+573.2794189 100723.9140625
+574.2787476 21118.0234375
+576.2596436 40328.234375
+576.762146 39782.078125
+577.2686768 23225.380859375
+580.2612915 61842.8828125
+580.755127 2384603.5
+581.2564697 1534252.25
+581.7581787 631948.3125
+582.2594604 108322.6484375
+589.2677002 70773.234375
+589.7635498 24469.76171875
+598.2734985 52867.16796875
+598.774231 39568.3984375
+599.2716064 37281.5390625
+599.7771606 79528.1328125
+606.2564087 21143.56640625
+624.2701416 59282.34375
+673.324707 457189.15625
+674.3271484 147560.6875
+675.3253174 26105.630859375
+693.2946167 23067.5
+802.364502 102588.9296875
+803.3737793 40495.99609375
+873.3977661 71553.359375
+874.4031982 46673.171875
+1001.4599 36620.68359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.230.230.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=230"
+RTINSECONDS=24.80617013
+PEPMASS=598.27001953125
+CHARGE=2+
+56.41166687 12312.3603515625
+58.54587936 13522.064453125
+60.179142 11499.02734375
+61.13416672 13743.9375
+64.52622986 55172.53125
+64.53050232 40918.421875
+64.58200073 35531.11328125
+64.58625031 26698.8125
+64.63802338 19646.501953125
+64.64147949 13069.4267578125
+87.27521515 13761.9716796875
+149.563324 32162.37890625
+149.5769348 25854.974609375
+163.1634674 14383.09375
+167.091095 47474.01171875
+169.0591125 35696.625
+173.7200775 13964.27734375
+175.1177673 298924.0625
+175.1338959 27822.724609375
+176.1197205 24933.0
+177.0758667 69566.2265625
+178.0599823 368920.15625
+178.0779266 21711.703125
+178.3371735 50489.05078125
+179.0633698 18731.302734375
+179.091568 17466.390625
+182.09198 25733.7578125
+183.0747833 25631.509765625
+186.0859985 127597.8984375
+194.1016388 39266.33984375
+195.0864105 4141221.75
+195.1278839 23011.64453125
+196.0892792 442195.625
+197.0919495 22884.970703125
+200.1022034 37313.18359375
+206.091156 143863.65625
+207.1115875 18610.494140625
+212.1123352 18646.158203125
+215.0910797 16033.498046875
+218.1024323 55760.30078125
+234.0970612 22256.59375
+243.0863495 18636.2578125
+246.0969391 598837.5
+247.0996094 69474.65625
+247.8806152 12679.76171875
+257.1227722 98430.09375
+260.1124268 106327.0859375
+270.0968933 145549.609375
+271.101532 21033.373046875
+276.108551 17411.26171875
+283.142334 41988.86328125
+287.1235962 149802.65625
+288.1074219 1557771.625
+289.1102295 262900.9375
+294.1167603 27429.572265625
+295.1513367 27501.08203125
+303.1438904 34490.53125
+305.1339417 3039671.5
+306.1192017 1099597.875
+307.121582 182653.25
+311.1333618 47889.9296875
+312.117218 43691.98828125
+321.1539307 336476.4375
+322.1569824 52135.734375
+323.0982361 19908.076171875
+323.1444702 1135060.625
+324.1467896 169585.8125
+325.1450195 13759.212890625
+329.1453247 49049.84375
+338.1416321 59262.02734375
+338.1805725 403277.6875
+338.645813 25098.259765625
+339.1832581 83319.0390625
+341.1478882 22333.94140625
+347.1490173 18111.544921875
+349.1604309 15571.4755859375
+359.1453857 50707.57421875
+366.1860657 114568.6796875
+367.1910095 20844.046875
+369.1403198 26411.498046875
+376.17099 121947.1328125
+377.1555176 80720.078125
+386.1658936 29102.560546875
+394.1808472 734024.3125
+395.1832581 153155.578125
+396.1858521 23056.77734375
+412.1877441 38510.1015625
+413.1695862 19305.271484375
+420.6825562 23001.732421875
+428.1978455 18035.599609375
+463.2085571 12876.958984375
+468.2201538 63895.734375
+485.2470093 207136.28125
+486.2510681 69048.4609375
+488.1865845 38905.6875
+492.2296753 163330.96875
+492.7315063 108980.53125
+493.2316895 35932.05078125
+495.228363 49038.32421875
+505.2098389 60051.30078125
+506.1977844 55188.14453125
+512.2261353 20493.236328125
+512.7251587 25289.54296875
+513.2286377 21866.140625
+521.2319336 32492.267578125
+523.2224731 422548.28125
+524.2254028 141118.390625
+525.2237549 21639.015625
+529.746521 17671.22265625
+548.675354 15711.841796875
+558.739502 24180.140625
+571.7521362 67213.6015625
+572.2750244 307202.9375
+573.2790527 86792.0859375
+574.2817383 20234.470703125
+576.2601318 42168.828125
+576.7627563 36796.21875
+580.2635498 83882.65625
+580.755249 2277757.5
+581.2563477 1395721.125
+581.7576294 541640.8125
+582.2581787 102415.8671875
+589.2644043 54576.55859375
+589.7678223 28528.373046875
+598.2747192 41692.7109375
+598.7761841 35897.05859375
+599.2761841 32216.578125
+599.7758789 57834.0390625
+606.2593994 42334.99609375
+624.2672119 37252.01171875
+625.2767334 21221.876953125
+673.324707 350060.21875
+674.3286133 158705.1875
+675.3306274 28259.29296875
+693.2796021 19669.138671875
+711.3010864 16383.8134765625
+802.364563 83454.0
+803.3711548 35276.17578125
+873.3988037 100335.953125
+874.4042969 49528.41015625
+1001.455322 39997.53515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.231.231.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=231"
+RTINSECONDS=24.91543035
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52631378 62746.00390625
+64.53045654 34367.08984375
+64.58201599 47384.15234375
+64.58617401 25435.416015625
+64.63827515 17780.794921875
+66.50431824 12386.111328125
+74.8117218 14822.1220703125
+75.39463043 13464.2998046875
+102.2176056 12496.5146484375
+149.5654144 35498.87890625
+149.5789795 24036.466796875
+167.0916443 52608.75
+169.0592041 33903.11328125
+175.1178131 308587.0625
+176.1203766 23041.001953125
+177.0759125 67208.3046875
+178.0600739 368064.5625
+178.078064 22060.443359375
+178.350235 81890.609375
+179.0631866 29361.171875
+183.0754089 26620.935546875
+186.0862274 88667.1484375
+190.1057434 15521.2109375
+190.1772461 12444.7275390625
+194.1025696 38065.15234375
+195.0863953 4094714.25
+196.0893402 421000.40625
+197.0914917 26769.9140625
+200.1016083 33695.765625
+206.0910339 134821.21875
+207.0931549 14907.119140625
+209.0749359 16127.291015625
+215.0913239 18756.287109375
+218.1022491 71821.7421875
+221.0998688 16618.263671875
+233.1275635 14921.8896484375
+234.0964355 20877.30859375
+239.1101379 14358.5263671875
+240.0956116 30157.705078125
+244.690918 13671.2001953125
+246.0968781 637408.75
+246.1257172 29995.224609375
+247.0995636 89443.9609375
+248.1114044 15370.6640625
+249.0951385 17146.673828125
+257.1227112 100642.96875
+258.1260376 17101.65234375
+260.1124268 116991.3828125
+267.116333 13895.6298828125
+270.0968628 130325.5390625
+278.1491089 30670.986328125
+283.1422729 44352.296875
+287.1232605 145708.296875
+288.1073303 1633084.0
+289.1102295 198278.53125
+290.1124268 22681.40234375
+294.1169739 27344.00390625
+295.1502686 18285.041015625
+303.1434021 26050.990234375
+304.1271973 28775.234375
+305.1339111 3103497.75
+306.1191406 1119454.375
+307.1210327 169183.28125
+308.1230774 22839.349609375
+311.1335144 41902.94921875
+312.1182861 50965.84765625
+321.1540833 340855.28125
+322.1557922 52223.2109375
+323.0989075 13309.474609375
+323.1443787 1121533.125
+324.1470032 170350.265625
+325.1491089 26919.900390625
+328.1598816 15165.193359375
+329.1437378 57758.44921875
+331.1477356 14952.4560546875
+338.142334 51343.46484375
+338.1804504 383561.6875
+338.6443481 20540.9453125
+339.1828308 81034.6953125
+341.1480103 21624.021484375
+347.150116 28171.23046875
+349.1590576 36231.2109375
+358.1636353 13601.1318359375
+359.1448669 62988.90625
+366.1859741 141017.453125
+367.1874695 23539.099609375
+369.1400146 22221.05859375
+376.1702881 129819.703125
+377.1552429 99856.1796875
+378.1577454 14543.87890625
+386.1643066 27953.724609375
+394.1204224 19648.50390625
+394.1808167 711142.8125
+395.1830444 164897.28125
+396.190918 17696.25390625
+412.187439 39031.46484375
+428.2017822 13290.3935546875
+460.1908875 28085.984375
+464.1702271 14959.765625
+468.2192688 53225.421875
+477.2147217 16724.470703125
+483.7204895 30453.138671875
+485.2469177 261615.03125
+486.2516174 60497.6171875
+488.1867981 61524.375
+492.2289429 193926.265625
+492.72995 91246.40625
+493.2275391 40125.31640625
+495.2274475 55623.45703125
+503.7157593 28972.974609375
+505.2104187 66558.9375
+506.20047 61413.328125
+512.2280273 52797.57421875
+512.729187 16503.08203125
+521.234436 19260.60546875
+521.7384644 18744.490234375
+523.2216797 435805.5625
+524.2240601 137969.90625
+525.2264404 23274.2734375
+529.7451172 23214.62109375
+559.2477417 29163.32421875
+571.7497559 94886.84375
+572.2747803 312902.40625
+572.7491455 36235.19921875
+573.2787476 107203.5546875
+574.2667847 28831.685546875
+576.2615356 56429.2734375
+576.7630005 29233.23828125
+577.2652588 29453.845703125
+580.2612305 96466.8828125
+580.7548828 2237542.25
+581.2557983 1522391.375
+581.7578125 546778.0
+582.2580566 84972.28125
+589.2637329 38599.73046875
+589.7647705 47066.62890625
+598.272583 32476.52734375
+598.7745361 33856.52734375
+599.2754517 42100.859375
+599.7770386 98363.4921875
+606.25354 30837.224609375
+624.2633667 44291.5546875
+625.2592163 16635.423828125
+673.3240967 402347.0
+674.3247681 149210.015625
+675.3244629 35773.30078125
+802.3634644 77616.6328125
+803.3651123 39042.6953125
+804.3759766 15817.6416015625
+873.397583 114101.046875
+874.4030762 49714.609375
+1001.450806 27383.44140625
+1058.484985 16573.951171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.232.232.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=232"
+RTINSECONDS=25.02543014
+PEPMASS=598.27001953125
+CHARGE=2+
+55.4393158 12927.7822265625
+58.13375854 17782.14453125
+64.52611542 67649.515625
+64.53044128 47430.9609375
+64.58195496 43403.91796875
+64.58611298 34632.75390625
+64.6379776 26513.474609375
+64.64149475 22169.001953125
+74.816185 17426.970703125
+89.67697906 13751.8720703125
+95.1459198 12914.4541015625
+145.183136 13095.4833984375
+149.5726166 58236.92578125
+167.0921021 37896.95703125
+169.0598602 27014.767578125
+175.1177216 276965.46875
+176.1208191 16123.3037109375
+177.0756683 46214.15234375
+178.0436401 23396.001953125
+178.0599213 305449.8125
+178.096756 13453.458984375
+178.3392792 82218.0390625
+179.0644226 27419.81640625
+179.091629 22744.642578125
+182.0906982 14462.2822265625
+182.7293396 12066.3076171875
+183.0751495 17418.30859375
+186.085968 96954.84375
+190.2500153 13007.0
+194.1018066 42134.484375
+195.0862885 4252467.5
+196.0890961 414869.96875
+197.0924377 18493.638671875
+200.1013184 29882.34765625
+201.0859528 23531.931640625
+206.0910034 145650.0625
+207.0939941 16273.3623046875
+215.0921021 19146.783203125
+217.8933105 13799.8828125
+218.1016083 47293.51171875
+232.1191406 17567.271484375
+234.0945892 17435.021484375
+240.0970612 18225.568359375
+243.086853 25708.421875
+246.0968018 642668.4375
+247.1000061 67590.640625
+248.1109161 19543.587890625
+253.738205 15674.60546875
+257.1227417 108347.5
+257.1895447 16860.408203125
+258.1225281 19985.810546875
+260.1124268 89128.0
+261.1172485 29387.59375
+270.0965881 150665.65625
+278.1487732 21979.294921875
+283.1425781 36759.26953125
+287.1232605 155716.53125
+288.1072083 1528795.5
+289.1102905 238453.890625
+290.111145 17600.001953125
+294.1170959 24662.12109375
+295.1503296 28883.82421875
+303.1424561 18399.66796875
+305.1337585 3147069.0
+305.2173767 21246.58984375
+306.0597534 21503.896484375
+306.1189575 1182133.5
+307.1213379 178116.578125
+308.1229858 15282.216796875
+311.1356506 61998.92578125
+312.1173096 38934.03515625
+318.1435547 17240.97265625
+321.1536255 310113.75
+322.1568909 71131.75
+323.1441956 1107342.375
+324.146698 184002.71875
+329.1437378 57062.80078125
+338.1425171 49681.1015625
+338.1803894 433193.8125
+338.6489258 15895.0771484375
+339.1829529 74777.125
+341.1445923 16556.814453125
+347.1549683 17344.990234375
+351.1331787 17568.240234375
+359.1447754 49342.828125
+366.1858826 135190.84375
+367.1882324 18655.61328125
+376.1697388 123093.390625
+377.1564941 88665.4453125
+386.1630554 27276.060546875
+394.1805725 719088.3125
+394.2403259 31471.48046875
+395.1826782 166061.90625
+412.188385 38600.47265625
+468.2185669 38750.19921875
+478.202301 18196.162109375
+483.7192993 27092.126953125
+484.2186279 18528.91015625
+485.2471313 199305.65625
+486.2499695 64663.36328125
+488.1856689 49961.9296875
+492.2296448 143187.609375
+492.7313843 95950.3046875
+493.228363 31979.15625
+495.2240906 59847.5625
+503.7209473 17978.76171875
+505.2097778 41616.8125
+506.2030029 40014.4296875
+512.2251587 37370.8515625
+512.7324219 19313.474609375
+521.2293091 41283.58984375
+523.2216187 459975.0625
+524.2242432 116201.2578125
+525.2323608 22328.447265625
+529.739563 18474.931640625
+541.2385864 15758.904296875
+559.2432861 24164.794921875
+571.7502441 82598.703125
+572.274353 314904.09375
+572.758728 17350.107421875
+573.2787476 93661.6484375
+576.2614746 56402.65234375
+580.262146 84877.0625
+580.7546387 2400538.5
+581.2559814 1609761.125
+581.3668823 27425.732421875
+581.7578735 594048.375
+582.2584839 137240.859375
+589.2651978 68036.25
+589.7695312 33191.14453125
+598.2713013 67068.90625
+598.7772827 42020.84375
+599.2770386 22323.42578125
+599.7772827 65775.4921875
+606.258606 25170.271484375
+607.2480469 18983.12890625
+624.2672729 65343.51171875
+673.3240967 454762.4375
+674.3269043 162251.65625
+675.3228149 33687.66796875
+802.3644409 108698.140625
+803.3604736 48897.19921875
+852.5933838 15215.619140625
+873.3989868 113554.9140625
+874.4017944 39709.71484375
+875.4154053 17944.119140625
+1001.456177 28385.681640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.233.233.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=233"
+RTINSECONDS=25.13392119
+PEPMASS=598.27001953125
+CHARGE=2+
+50.02981949 13884.53125
+58.13441467 15812.9111328125
+58.13748932 16147.345703125
+64.52631378 65524.6796875
+64.53048706 44170.9296875
+64.58195496 44533.03515625
+64.58621979 34264.5078125
+69.2759552 18230.58984375
+149.5673065 48214.0234375
+167.0919495 41068.3984375
+169.0592957 23725.37890625
+174.2045898 14341.0634765625
+175.1178131 300244.0625
+177.0758362 53044.5
+178.059967 323280.03125
+178.3436127 108678.484375
+179.0627899 24543.521484375
+179.0914764 15997.8212890625
+183.0750275 17822.62890625
+186.0863647 123987.265625
+194.1023865 51245.33203125
+195.0863647 4417390.5
+196.0891113 461219.6875
+197.0920868 24513.95703125
+200.1014099 19507.728515625
+205.0598297 17028.26171875
+206.0911255 166265.46875
+207.0943451 22143.384765625
+218.102066 61298.625
+222.0863953 17417.7890625
+234.0987549 18496.4140625
+239.113205 16841.16796875
+240.0955048 29027.1015625
+243.0865631 22276.451171875
+246.096817 708595.0625
+246.1219025 15136.1435546875
+247.0995636 87575.0390625
+255.1278534 16369.9716796875
+257.1225586 109134.3125
+260.1130981 121328.265625
+261.1171875 21407.677734375
+270.0969849 131344.46875
+277.1372375 21328.419921875
+278.1491394 31580.81640625
+283.1426697 57879.88671875
+284.1179199 15866.0205078125
+287.1235962 148697.984375
+288.1072693 1662285.5
+289.1097717 257629.765625
+303.1441956 25736.0546875
+305.1337585 3369893.25
+306.1188354 1226087.0
+307.1210632 197731.65625
+311.1351013 45490.828125
+312.1151733 31415.498046875
+321.1535645 340712.625
+322.1569519 59552.07421875
+323.098938 18919.181640625
+323.1442261 1166676.625
+324.1462708 193580.1875
+325.1499634 18086.712890625
+326.4582214 15123.71875
+329.1413879 49175.203125
+338.1419678 49623.93359375
+338.1803589 413574.53125
+338.6451721 27835.267578125
+339.1828918 95365.0703125
+347.1460571 17925.904296875
+349.1568298 28149.212890625
+351.1303406 32345.69921875
+359.1453552 56411.4453125
+366.1853333 127794.6953125
+367.1861877 23293.15234375
+369.1387329 41762.46484375
+376.170105 130261.4765625
+377.1566772 83403.171875
+386.1655273 29803.240234375
+394.1806641 714204.125
+395.1818237 153383.5625
+397.6758423 20840.5234375
+412.1858521 19268.638671875
+420.6860657 25894.419921875
+421.1893616 18083.19140625
+460.1917725 25313.05078125
+468.223053 50698.85546875
+483.717804 24634.365234375
+485.246582 233556.5
+486.2484131 55977.734375
+488.1848145 38109.80078125
+492.2289734 159230.609375
+492.7297058 98602.46875
+493.228302 29240.3359375
+495.2268677 47519.78515625
+503.7127686 29395.71484375
+505.2110291 70390.875
+506.2070618 53148.59765625
+507.1947937 16734.044921875
+512.2305908 37312.3203125
+521.2304077 26572.34765625
+521.7310791 18870.548828125
+523.2219238 496991.875
+524.2237549 125708.734375
+525.2294312 23380.359375
+571.7503052 67331.78125
+572.2739258 313533.28125
+572.7480469 29269.37109375
+573.2814331 87143.7890625
+576.2630005 61993.234375
+576.7623901 22222.990234375
+580.2626343 70375.84375
+580.7542725 2378859.25
+581.2555542 1527023.75
+581.3364868 23046.2734375
+581.366394 19192.654296875
+581.7576294 509789.0625
+582.2572021 110392.265625
+589.267395 77695.4296875
+589.7633667 49877.8046875
+598.2688599 56880.703125
+598.769104 18341.044921875
+599.2749023 18548.890625
+599.7770996 60305.26953125
+606.2544556 24973.71484375
+624.2703247 40525.83203125
+662.5205688 16793.947265625
+673.3235474 385768.6875
+674.3251343 149133.171875
+675.3262939 25986.0625
+693.2827759 17190.5703125
+711.2955322 18524.3203125
+802.361084 91621.4296875
+803.3654175 30766.08203125
+873.395752 97990.4296875
+874.3995361 49713.1328125
+1001.460876 30312.392578125
+1002.454102 32169.595703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.234.234.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=234"
+RTINSECONDS=25.24151069
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 62289.43359375
+64.53046417 37739.21875
+64.58203125 43189.11328125
+64.58612823 34588.15625
+64.6381073 24091.4609375
+83.01070404 13739.8681640625
+85.49156952 13994.978515625
+107.6060104 14745.927734375
+114.3484192 14313.263671875
+116.6926651 14814.220703125
+149.5762939 36421.625
+159.624939 15081.2373046875
+167.0912476 49421.28125
+169.0593109 42281.7578125
+175.1179199 311753.21875
+176.1200867 24481.818359375
+177.0762024 60913.875
+178.0600891 334074.21875
+178.3448486 99894.3515625
+179.0630493 24870.28125
+179.0919342 30541.37109375
+182.0914001 16595.974609375
+183.0751648 22690.49609375
+186.0860596 108997.4140625
+194.1026611 40877.18359375
+195.0864563 4310412.0
+195.1281586 20621.00390625
+196.089325 449909.625
+197.0907593 30729.5
+200.1022644 41960.5234375
+206.091156 145317.46875
+218.1020508 57720.55859375
+221.099472 17473.8984375
+222.086319 26186.35546875
+234.0991364 19860.083984375
+239.1121979 16658.205078125
+240.0953979 23585.046875
+243.086731 23952.904296875
+244.1173553 18601.296875
+246.0970001 628947.6875
+247.0997467 81501.953125
+257.1228333 108416.8046875
+260.112915 98557.1171875
+270.0968323 149743.703125
+278.1490784 23580.08203125
+283.1433716 37326.9140625
+287.1237183 162931.9375
+288.0777893 21209.728515625
+288.1074524 1579094.375
+289.1104126 252857.796875
+290.1139832 18402.7265625
+295.1497803 29796.578125
+303.1422424 41013.375
+304.1257629 15887.7314453125
+305.1340027 3322418.75
+306.0592041 19865.8984375
+306.1191406 1190345.125
+307.121582 176839.671875
+308.1232605 23476.369140625
+311.1357117 47069.44140625
+312.1142273 32534.609375
+321.1543579 379117.6875
+322.1556396 76523.9921875
+323.1444702 1172838.625
+324.1463928 174708.21875
+325.1528015 28127.1953125
+329.1441956 52908.3671875
+338.1425171 36091.68359375
+338.1807251 433714.4375
+339.1842346 70181.9296875
+341.1469116 19132.431640625
+347.149292 27361.255859375
+349.1579285 26109.322265625
+351.1282654 18884.529296875
+359.1443176 51850.75
+366.1858215 132078.921875
+367.1889038 24441.763671875
+369.1383362 26529.146484375
+376.170166 117305.15625
+377.1568909 81846.59375
+379.972229 14816.3818359375
+386.165741 29935.03515625
+394.1808777 689628.875
+395.1831055 152449.1875
+412.1887512 31462.837890625
+413.1731262 15416.81640625
+420.682312 26116.306640625
+434.1700745 15388.0029296875
+460.1894531 20626.880859375
+468.2219849 59122.91015625
+477.215271 17687.626953125
+478.2065125 20024.98828125
+485.2480469 195255.421875
+486.253479 65705.7265625
+488.1846619 57706.4296875
+492.2297668 149877.9375
+492.7307129 88330.1875
+493.2315674 43960.3828125
+495.2271729 72651.6015625
+503.7206421 26885.19921875
+505.214386 45616.359375
+506.2067871 52714.26171875
+512.225708 48419.5078125
+521.2338257 46898.80078125
+523.2224731 458713.3125
+524.2244873 128579.359375
+525.2299194 25024.3671875
+567.2570801 22242.17578125
+571.7529297 70517.9140625
+572.2741089 313621.6875
+572.7531128 24943.05859375
+573.2815552 77693.5
+576.2605591 36466.96875
+576.7669678 24928.107421875
+577.2626343 27210.46484375
+580.2619629 57463.6015625
+580.755249 2332052.25
+581.2563477 1600737.75
+581.3678589 22616.369140625
+581.7581787 612186.9375
+581.8649292 26095.09375
+582.2595215 107267.9296875
+589.2663574 90698.8515625
+589.7705688 31873.171875
+598.2752075 43410.4453125
+598.7768555 40919.4453125
+599.2761841 34071.08984375
+599.7781372 60152.5703125
+606.2572021 34971.58203125
+624.2697144 52697.58984375
+655.3096924 17732.52734375
+673.3238525 394939.28125
+674.3279419 150643.734375
+675.3371582 22206.73046875
+711.2905884 20856.015625
+802.367981 99824.7890625
+803.3673096 48979.07421875
+873.3984375 105980.6171875
+874.4016724 57209.0546875
+1001.462097 32674.74609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.235.235.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=235"
+RTINSECONDS=25.34960718
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1343956 14580.2568359375
+60.5220108 11973.138671875
+63.03047562 13204.0244140625
+63.5848465 14673.4765625
+64.52624512 57439.796875
+64.53044891 42127.89453125
+64.58196259 45232.1328125
+64.5861969 30305.53125
+64.63817596 20483.751953125
+64.64150238 16084.8232421875
+75.94127655 13896.33203125
+82.05415344 19044.517578125
+102.5969009 12001.7353515625
+149.5590668 11696.9755859375
+149.5713654 44343.4609375
+167.0918121 34062.015625
+169.0598602 36197.94140625
+175.1179504 303688.1875
+177.0759277 62686.6015625
+178.0600586 301524.8125
+178.3396149 62724.015625
+179.0626373 27496.087890625
+179.0924377 15794.9384765625
+182.0908508 16451.193359375
+183.0751801 32918.921875
+186.0861511 82476.5859375
+194.1017761 39610.125
+195.0864563 3933900.75
+196.0894318 410155.875
+197.0913849 20014.37109375
+200.1008301 24256.814453125
+201.0865021 21952.515625
+206.0913391 159041.0625
+207.0942535 17311.984375
+212.1000671 12811.1015625
+215.08992 20199.119140625
+218.1024475 38381.73828125
+233.1228638 13931.966796875
+234.0960388 16843.5390625
+240.0979462 16651.146484375
+243.0858307 16779.48046875
+244.1166382 12782.4609375
+246.0745544 10085.7568359375
+246.0970917 644362.875
+247.1001587 78798.8203125
+248.1107025 13300.7060546875
+257.1228333 104891.40625
+258.1260376 17735.9609375
+260.1124878 101829.2265625
+270.0971985 133547.828125
+271.1004639 15440.0205078125
+278.1485291 19574.875
+283.1428528 43026.95703125
+284.1213379 16564.06640625
+287.1234741 179488.375
+288.1075745 1615552.25
+289.1104126 223138.96875
+290.11203 27556.607421875
+294.1144104 18104.208984375
+295.1480103 23387.74609375
+303.1426697 18628.833984375
+304.1305542 12464.31640625
+305.1341553 3003433.0
+306.1196289 1002095.5
+307.1212769 197541.1875
+308.1222839 28748.087890625
+311.1351929 43476.8828125
+312.1177673 34574.26171875
+321.1542969 283353.59375
+322.1559143 69437.359375
+323.1445923 1028118.3125
+324.1467285 189984.921875
+325.1480713 18279.16796875
+329.1442871 45121.87109375
+331.1469421 15868.54296875
+338.1414185 46661.49609375
+338.1809387 354153.1875
+338.6438904 25080.564453125
+339.1822815 71376.7109375
+341.146759 14347.892578125
+346.1690063 16512.595703125
+347.1503296 33049.0703125
+349.1600037 18346.25390625
+351.1323547 15583.59375
+359.1445007 52176.55078125
+360.1448059 15250.783203125
+366.186615 108768.078125
+367.1872253 20657.77734375
+369.1394653 30269.8359375
+376.1711731 101440.6484375
+377.1562195 74990.0859375
+386.1657104 32871.1328125
+394.1812439 630524.5
+395.1832886 139923.265625
+412.1868591 22347.99609375
+413.1697693 17631.841796875
+452.1761475 15863.6123046875
+460.1968689 15208.9248046875
+468.2212219 55189.4140625
+485.2476196 196885.453125
+486.2499084 47845.85546875
+488.1850586 41413.31640625
+492.2298584 172177.21875
+492.7298889 52991.984375
+493.2325439 21551.3828125
+495.2276611 55255.33984375
+496.2319031 16512.091796875
+505.2104797 49264.44921875
+506.2045593 36830.5390625
+512.7288818 37711.12109375
+521.2384644 42037.0625
+521.7389526 28748.982421875
+523.2227173 450758.84375
+523.3095093 25463.841796875
+524.2243042 114635.0703125
+530.2509155 14411.736328125
+558.7439575 22624.15625
+571.7516479 73612.375
+572.2763672 289032.5625
+572.746521 25471.62890625
+573.279541 104485.265625
+576.2589111 43465.17578125
+576.7623291 33236.54296875
+577.2617188 17165.71484375
+580.263855 70560.859375
+580.7556152 2159561.0
+581.256897 1578433.0
+581.758606 489372.21875
+582.2593994 109347.828125
+583.257019 14148.4765625
+598.274231 39352.83984375
+598.774353 25825.611328125
+599.2762451 63502.5546875
+599.7776489 101247.875
+606.2611694 25800.158203125
+624.2677612 52732.7578125
+625.2669678 17847.421875
+655.3223877 19147.46484375
+673.3253784 403415.53125
+674.3291016 161898.515625
+675.3301392 26295.9375
+693.2927856 32346.29296875
+802.3655396 105648.125
+803.371521 51970.5703125
+873.401001 94786.828125
+874.4013672 46712.11328125
+875.40802 20415.728515625
+1001.445129 18203.017578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.236.236.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=236"
+RTINSECONDS=25.46019411
+PEPMASS=598.27001953125
+CHARGE=2+
+60.83326721 20153.53515625
+64.44722748 17543.8125
+64.52623749 70009.0
+64.53047943 48408.9453125
+64.58203888 54493.1640625
+64.58612823 38912.21875
+64.63839722 22931.72265625
+64.64148712 19514.7578125
+74.81179047 22623.482421875
+75.52591705 15070.427734375
+88.14199829 14155.578125
+149.5700531 56779.78125
+167.091629 32375.701171875
+169.0596771 34942.96484375
+175.1020966 30799.400390625
+175.1179352 326690.0
+177.0761871 42448.22265625
+178.0600433 355879.09375
+178.3482361 105387.765625
+183.0763092 22842.92578125
+186.08638 107898.046875
+194.1029968 44097.91015625
+195.0864258 4580804.5
+196.089325 461415.25
+197.0902863 35199.1171875
+200.102005 25385.05859375
+206.0910187 160510.828125
+212.113327 15867.1396484375
+215.0904999 20678.591796875
+218.1027374 56367.3046875
+222.0860138 23120.005859375
+234.0980682 17924.75
+243.0860748 20689.9296875
+244.1196594 32438.1484375
+246.0969849 686174.6875
+247.0999908 75155.6015625
+257.1223755 121499.4140625
+260.1123657 107047.0546875
+270.0970154 165987.890625
+271.1021423 21119.267578125
+278.1512146 20226.193359375
+283.1431885 45004.3125
+287.1240234 149843.625
+288.1074219 1624636.875
+289.1105042 251574.3125
+290.1141052 27296.365234375
+303.1427307 44636.75390625
+305.1340027 3421878.5
+306.0584717 22751.109375
+306.1192627 1141958.625
+307.1218872 154263.96875
+308.1213989 18955.177734375
+311.1324158 45268.30078125
+312.1149902 36232.72265625
+321.1539001 349854.90625
+322.1573486 44426.01953125
+323.1444397 1197873.875
+324.1466675 209531.96875
+329.1447449 43873.828125
+337.1600037 17695.587890625
+338.1416016 43791.80859375
+338.1806641 386165.9375
+339.1828918 78461.421875
+347.1477356 29208.96875
+351.131134 18391.396484375
+359.1454163 67181.40625
+366.1859436 127926.09375
+367.1852722 18539.37890625
+369.1373901 36130.54296875
+376.1702881 123905.2890625
+377.1561584 88684.0625
+386.1657104 32628.14453125
+389.1547241 20530.4140625
+394.1809082 746704.1875
+394.240448 29912.443359375
+395.1829224 153651.421875
+396.1896057 20030.541015625
+412.1882324 22804.669921875
+420.6833801 20556.80859375
+454.3916626 17264.806640625
+460.1865845 22926.439453125
+464.8356934 19049.34375
+468.2222595 49058.22265625
+483.7116394 27120.705078125
+485.2476807 230067.703125
+486.2511292 49985.0078125
+488.1920776 52769.65625
+492.2288513 196712.5625
+492.7310791 93673.84375
+493.2313843 30806.412109375
+495.22995 37739.99609375
+503.2205505 24341.134765625
+505.2124329 47639.5859375
+506.2102661 56141.33984375
+506.7305603 20707.728515625
+512.229248 49805.9296875
+512.7307129 22404.75
+513.2342529 20532.91796875
+521.230957 43475.55078125
+523.2224731 485427.71875
+524.2253418 118374.8984375
+567.7542725 20762.83984375
+571.7548828 78920.234375
+572.2747192 333645.6875
+572.7522583 44884.453125
+573.2824097 77240.8046875
+576.2613525 35415.03515625
+576.7636719 33118.80859375
+577.2645874 29486.30078125
+580.2618408 105458.703125
+580.755188 2606122.0
+581.2566528 1777023.375
+581.7579956 705789.9375
+582.2581787 174400.671875
+589.2678833 129492.546875
+589.7695312 75752.4140625
+598.2732544 79457.7578125
+598.7781372 48553.9609375
+599.7733765 46184.7421875
+606.2584839 33889.87890625
+607.2590332 23531.1796875
+624.2668457 49151.8515625
+673.3245239 532192.25
+674.3261719 169132.078125
+675.326416 43989.4453125
+785.3497314 20481.7734375
+802.3657837 108486.7109375
+803.3704224 43385.3046875
+873.4024048 117076.8046875
+874.4022827 59651.7265625
+1001.463806 24072.201171875
+1010.599792 21411.39453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.237.237.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=237"
+RTINSECONDS=25.56692362
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13419724 18254.833984375
+64.52616882 54830.98046875
+64.53042603 44439.875
+64.58192444 34426.27734375
+64.5859375 22467.41796875
+64.63820648 16261.4755859375
+64.64142609 17407.521484375
+78.51110077 14711.56640625
+128.6029205 11410.046875
+149.563385 34202.71484375
+149.5773315 24783.7890625
+167.0914154 30278.314453125
+169.060257 24607.1640625
+175.1052399 10463.681640625
+175.1176605 291583.09375
+176.1210938 25980.583984375
+177.0761108 57970.53515625
+178.0597076 321904.5
+178.352005 69783.6484375
+179.063385 29765.59375
+183.0751801 26430.275390625
+186.0858459 123358.1875
+194.1021118 39211.09375
+195.0861664 4122979.5
+196.0890045 418373.90625
+197.0914459 29070.591796875
+200.1008759 25886.994140625
+201.0856476 38929.953125
+201.9213409 13661.05859375
+202.2579041 13346.427734375
+206.090744 134805.9375
+213.0848083 15999.6611328125
+218.1020203 59060.75390625
+221.1024628 16045.0166015625
+232.1188049 16975.5625
+234.0990448 24958.978515625
+240.0958099 32579.369140625
+246.0966492 577683.3125
+247.0990753 89551.25
+249.0957947 18666.296875
+257.1221619 89477.140625
+258.1257935 16486.296875
+260.111969 116868.1015625
+261.1193848 14728.5087890625
+262.1271667 14663.3291015625
+270.0964355 127233.109375
+277.1393738 22971.23046875
+278.117981 31046.185546875
+278.149353 29855.62890625
+283.1423035 41277.80859375
+287.1230164 161586.03125
+288.1069641 1586955.75
+289.1098938 231956.09375
+295.1482239 25167.58984375
+303.144165 29697.625
+305.1334534 3153504.5
+306.1188965 1050414.625
+307.1213379 181288.359375
+311.1346741 63881.9140625
+312.1159973 29867.998046875
+321.1534424 308620.0
+322.1559143 79074.578125
+323.0986023 22170.44140625
+323.1439209 1128808.5
+323.1889038 29459.005859375
+324.1457825 140990.515625
+325.1497803 17061.4921875
+329.1419678 48394.18359375
+331.149353 15350.7666015625
+338.142395 46906.19921875
+338.1800842 392438.875
+339.1813049 44321.62890625
+347.1496582 24785.359375
+349.1609192 22491.5703125
+359.1444092 79462.9921875
+366.1853333 126920.375
+369.1387634 30870.79296875
+376.1701355 104935.5390625
+377.1577148 65938.9921875
+386.1654968 27011.236328125
+394.1803284 737767.4375
+394.2403259 28088.36328125
+395.1820984 135426.171875
+396.1818848 17328.9921875
+412.1892395 40632.95703125
+421.1779785 17423.609375
+460.1878357 30098.943359375
+464.1707458 18461.83984375
+468.2189636 55554.38671875
+483.7201233 27338.546875
+485.246521 212343.484375
+486.2499695 50907.3671875
+488.186676 46171.890625
+489.19104 18410.58984375
+492.2286072 103461.171875
+492.729126 86415.828125
+493.2300415 41380.140625
+495.2259827 52105.05078125
+503.2172546 18769.078125
+505.2110291 76464.265625
+506.2058105 48379.5078125
+512.2254028 32883.6171875
+512.7265015 30996.453125
+520.7409668 26384.126953125
+521.2310181 27972.546875
+523.2210083 449106.0625
+524.2232666 94488.1796875
+530.2523804 17187.966796875
+555.2540283 21248.5703125
+571.7495117 68986.5390625
+572.2736816 294311.125
+572.7479248 28620.37890625
+573.2794189 95207.5546875
+576.2615967 47732.97265625
+576.7637939 19073.365234375
+577.2626953 33904.33984375
+580.2631226 63455.5859375
+580.7542725 2142660.75
+581.2554932 1461622.875
+581.3369141 27170.30078125
+581.756897 549828.6875
+582.2581177 96053.46875
+589.2662964 53022.359375
+589.7662964 22301.076171875
+598.2730713 54036.1875
+598.7808838 27821.220703125
+599.2734375 19366.9765625
+599.7770386 69579.8984375
+606.2619019 38455.05859375
+624.2658691 61508.55859375
+655.3134766 24617.091796875
+673.3226929 422356.375
+674.3261719 142133.671875
+675.3240967 29540.30078125
+693.2912598 22097.890625
+802.3630981 99055.3046875
+803.3620605 53572.19140625
+873.3974609 89861.1640625
+874.4007568 63027.8203125
+1001.444885 23798.900390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.238.238.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=238"
+RTINSECONDS=25.67600264
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58501434 16874.947265625
+63.58839417 14244.1728515625
+64.52641296 69711.3515625
+64.53058624 36516.9453125
+64.58203125 49561.58984375
+64.58618927 32544.455078125
+64.63817596 24264.158203125
+64.64142609 15800.978515625
+70.33389282 12944.87890625
+71.95174408 13874.1083984375
+73.1115799 15106.384765625
+82.86860657 15132.8671875
+94.47631836 15376.5439453125
+133.0185547 13007.533203125
+137.3978577 16052.4267578125
+149.5713806 61364.8125
+167.0918884 33063.33984375
+169.0592804 31838.126953125
+172.7678223 14991.3984375
+175.118042 305719.25
+177.0762787 69929.4296875
+178.0602112 319583.0625
+178.3463593 90164.34375
+179.0640411 21764.458984375
+179.0913239 26709.181640625
+186.0862885 125959.2734375
+194.1027222 48923.40625
+195.0865784 4315093.0
+196.0895081 419952.34375
+197.0912933 33246.5
+200.1014862 36326.9765625
+201.0848846 21671.802734375
+206.0912781 161045.6875
+207.0935822 19252.833984375
+218.1034088 57851.3046875
+240.098938 20244.296875
+243.0865021 22569.75390625
+246.0971527 617338.25
+247.1000824 78574.96875
+257.1228638 108250.4609375
+258.1232605 22312.283203125
+260.1126099 130166.859375
+270.0970459 138514.734375
+277.1402588 21678.302734375
+278.1497192 27866.81640625
+283.1428833 34625.9375
+287.1234436 158908.359375
+288.077179 24284.54296875
+288.1076355 1564412.625
+289.1105347 259343.328125
+294.1170654 16375.6162109375
+295.1495972 32838.0
+303.143219 29499.033203125
+304.1281433 21524.7109375
+305.1038513 61045.54296875
+305.1342468 3307916.0
+306.0594788 22596.12109375
+306.1193237 1198956.875
+307.1220703 192127.953125
+311.1339722 48446.30859375
+312.1169434 34410.7109375
+321.1544189 361863.5
+322.1568298 82823.71875
+323.1447449 1195884.375
+324.1473694 172604.546875
+328.1617432 21232.390625
+329.1438293 42209.37890625
+331.1509094 20776.560546875
+338.1417542 59106.5546875
+338.1809692 406446.25
+339.1827393 75096.3671875
+347.1497192 24270.072265625
+349.1598816 18855.333984375
+358.165741 28817.60546875
+359.1457825 69444.484375
+366.1870117 150054.640625
+369.1394958 32518.55859375
+370.1390381 16253.1572265625
+376.170166 106156.265625
+377.1566772 85605.8984375
+378.1559448 20807.650390625
+384.1799316 16061.537109375
+394.1811829 710590.875
+394.2407227 27446.84765625
+395.1836243 154096.515625
+396.186615 19432.796875
+412.1878967 38359.0390625
+413.1669617 15654.115234375
+460.1889038 27343.345703125
+468.2218628 47389.51171875
+478.2054443 23916.51171875
+483.7189331 24827.880859375
+484.2185974 16735.439453125
+485.2478638 202208.28125
+486.2515259 69201.6875
+488.187439 56458.78515625
+489.1859741 17245.244140625
+492.2289124 150479.234375
+492.7318726 91977.9140625
+493.2302246 31728.98828125
+495.2261658 60423.51171875
+505.2124634 62592.171875
+506.2042542 58310.578125
+512.2261963 54386.53125
+512.7300415 19954.23828125
+521.2318726 33651.765625
+523.2229614 413151.0
+524.2244873 125249.9921875
+525.2268066 22234.08984375
+541.2280273 18274.654296875
+555.2529907 25924.96484375
+567.2498779 18267.099609375
+567.7591553 20273.802734375
+571.7493896 49246.63671875
+572.2749634 315402.375
+573.2810059 83627.671875
+575.7685547 26661.396484375
+576.2637939 26939.021484375
+576.7633667 36035.0546875
+580.2622681 66453.78125
+580.7557373 2388306.25
+581.256897 1615125.375
+581.7585449 613558.625
+582.2601318 130890.5625
+589.2681274 70730.46875
+589.7694702 49776.44140625
+598.2730713 59100.16796875
+598.7727661 38263.33984375
+599.2785645 37053.78515625
+599.7758789 67960.75
+606.2513428 32556.302734375
+624.2687988 69029.25
+655.3181152 23368.392578125
+673.3250732 407428.0625
+674.3278809 194503.4375
+675.3276367 24319.55859375
+802.3653564 125638.953125
+803.3661499 65177.06640625
+873.4020386 101754.8984375
+874.4055176 40879.73046875
+1001.477356 22367.4453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.239.239.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=239"
+RTINSECONDS=25.78394946
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52620697 62285.12109375
+64.5304718 40265.5
+64.58195496 42789.28515625
+64.5861969 30341.73046875
+64.63825226 18093.662109375
+64.64148712 15298.4482421875
+74.81200409 20813.865234375
+74.816185 13861.6083984375
+77.33517456 12068.68359375
+149.5753174 24535.970703125
+167.0921478 41384.2421875
+169.0601196 30706.96484375
+175.1177826 254751.6875
+176.1204071 17730.005859375
+177.0758057 78303.1171875
+178.0419617 14658.19921875
+178.0601501 338332.625
+178.3383789 59639.109375
+179.0631256 32920.88671875
+179.0912933 16648.962890625
+181.0824585 12514.154296875
+183.0752258 24774.673828125
+186.0863495 114326.5078125
+190.0598602 19494.810546875
+190.107605 16541.591796875
+194.1023254 34791.5234375
+195.0864258 4012387.25
+195.1280212 29057.205078125
+196.0892487 419843.9375
+197.0935669 21205.611328125
+200.1014862 24992.392578125
+201.0860138 22592.904296875
+206.0911713 138377.3125
+207.0931549 22265.29296875
+212.1140442 18480.46484375
+218.1025085 50839.72265625
+222.084259 21619.287109375
+233.1282043 16013.4306640625
+234.0968933 14196.9384765625
+240.0976257 24609.390625
+243.0863342 18811.2265625
+243.5371246 14302.3486328125
+244.1187134 20274.5078125
+246.0969696 612715.0625
+247.0999298 63654.18359375
+257.1230774 119382.625
+260.1127319 106672.359375
+262.1285706 14632.142578125
+270.0970764 131825.53125
+278.1479492 26724.216796875
+283.142395 42227.80078125
+287.1231995 148476.015625
+288.1073608 1554581.5
+289.1100159 225308.625
+290.1104431 15661.7236328125
+295.1500854 27241.34765625
+303.1436462 13950.865234375
+304.1266785 16491.921875
+305.1339722 3076446.75
+306.1190491 1124864.25
+307.1216125 185948.09375
+308.1235046 26616.779296875
+311.1358337 58511.28125
+312.1180115 36755.18359375
+321.1543579 320459.59375
+322.1566772 51788.59375
+323.1443787 1053612.0
+324.1461792 177901.71875
+325.1501465 21080.30078125
+328.1569824 18224.740234375
+329.1445312 35923.6015625
+338.142334 49409.97265625
+338.1806335 394185.0
+338.6463623 16034.3984375
+339.1833191 63954.5703125
+347.1510315 25176.3671875
+349.1576233 25718.091796875
+358.163269 17737.919921875
+359.144043 63094.859375
+366.1860046 119687.421875
+367.1890259 31278.470703125
+369.139801 26881.0078125
+376.1703491 126504.84375
+377.1561279 90626.4140625
+378.1581726 24369.939453125
+386.1636353 35216.015625
+394.1809692 729577.75
+394.2403564 23540.396484375
+395.1828613 128602.4921875
+412.18573 37583.453125
+413.1611023 15636.30078125
+420.6829224 31417.75
+468.2216797 47441.171875
+469.2166443 19652.1953125
+477.2195435 17712.931640625
+478.204895 15445.6064453125
+483.718689 21400.369140625
+485.2471313 197619.171875
+486.2503967 43038.97265625
+488.1862793 60448.03515625
+489.1896667 16324.3671875
+492.2289734 168255.203125
+492.7309265 110181.1875
+493.2348328 28526.333984375
+495.2287598 57123.734375
+503.7197266 17768.80859375
+505.2101746 55419.125
+506.2034912 49770.85546875
+512.2255249 37362.921875
+512.7278442 38452.6015625
+513.2286377 15037.9013671875
+521.2340088 20501.283203125
+521.7405396 19053.640625
+523.222168 450182.15625
+524.2235718 132983.34375
+525.2289429 33090.046875
+554.2709351 15418.6728515625
+559.2474365 19280.662109375
+571.7521362 57627.25390625
+572.2747803 304652.75
+572.7458496 18053.283203125
+573.2802734 89743.296875
+576.2614746 26696.3515625
+576.7602539 24050.392578125
+577.2628784 18585.5
+580.262207 64990.02734375
+580.7548828 2401249.75
+581.2563477 1611789.625
+581.3674927 21156.986328125
+581.7578125 599486.3125
+581.8642578 24847.404296875
+582.2575684 135277.15625
+589.2676392 28761.14453125
+598.2705688 47974.7421875
+598.7730713 35966.4140625
+599.2745972 39373.828125
+599.7774048 92359.8515625
+606.2593994 50368.75390625
+624.2647095 50014.21484375
+625.2681274 20956.376953125
+656.3098145 16617.759765625
+673.3244629 425805.78125
+673.4510498 24451.44921875
+674.3259277 146315.765625
+675.3272095 30983.216796875
+802.3634644 88905.5078125
+803.3660889 53846.70703125
+804.3650513 18065.91796875
+833.6104126 15197.1298828125
+873.3994751 95845.140625
+874.4035645 38455.86328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.240.240.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=240"
+RTINSECONDS=25.8940925
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13438797 20334.560546875
+58.13727951 18889.53515625
+64.52619934 85539.9375
+64.53069305 68705.1796875
+64.58197021 51059.84375
+64.58618164 32395.576171875
+64.638237 18666.705078125
+64.76330566 14249.7958984375
+82.21922302 14302.646484375
+116.9395752 16573.6015625
+119.0632935 15676.8310546875
+122.7749481 17935.775390625
+136.2818146 14154.6181640625
+149.5674591 54387.97265625
+160.6306 16507.234375
+161.1291809 17443.861328125
+167.0913696 34539.3515625
+169.0596771 45436.15625
+175.1019287 28735.853515625
+175.1178131 309660.125
+177.0760803 62564.0625
+178.0437012 24542.85546875
+178.0599365 325820.4375
+178.3439026 104826.28125
+179.0634003 22922.2109375
+179.0915375 38836.70703125
+182.091217 16460.95703125
+183.075943 29435.62109375
+186.0861664 110426.546875
+194.1021729 37041.4921875
+195.0863647 4460518.0
+196.0892029 476919.6875
+197.0914459 30313.171875
+200.1019592 26943.56640625
+206.0910339 165121.921875
+209.1025085 18626.41796875
+212.112381 20443.509765625
+217.1279907 18600.3203125
+218.1026764 48328.68359375
+222.0858765 24074.259765625
+234.0983887 23160.357421875
+239.1123199 27000.078125
+240.0966492 21055.984375
+246.0969238 597433.4375
+247.0995941 74978.328125
+257.1229248 102279.7578125
+260.1125183 121698.8359375
+270.0967102 137028.1875
+283.1426086 55022.70703125
+287.1233215 159860.046875
+288.1073914 1644087.25
+289.110199 242486.96875
+290.1113281 21092.140625
+294.1183777 24589.595703125
+295.1505432 26030.62109375
+303.1434937 34049.8046875
+305.1339417 3328637.25
+306.1190796 1208887.125
+307.1211853 200460.625
+308.1252441 30425.283203125
+311.1348877 62673.328125
+312.1159973 29433.927734375
+321.1537476 334128.21875
+322.157074 58102.40625
+323.098877 25639.544921875
+323.1444702 1164681.5
+324.1461182 190811.0625
+325.150116 19180.0390625
+329.1420898 52996.92578125
+338.1429443 38064.37890625
+338.1803894 459825.75
+339.1834412 83749.328125
+347.1446838 20906.119140625
+349.1582336 24551.37890625
+351.1308594 23784.880859375
+358.1633301 20737.90234375
+359.1437378 70440.515625
+366.1859741 153030.84375
+367.1890869 21791.890625
+369.1398315 45399.48828125
+376.1706238 115597.59375
+377.1568298 90761.875
+386.1683655 21365.576171875
+394.1809692 768351.6875
+395.1818237 153049.390625
+407.1643066 17219.12890625
+412.1855774 35116.51953125
+460.1915894 28835.716796875
+468.2202759 41205.71484375
+469.2208557 18880.541015625
+477.2147522 20427.171875
+483.2294617 21377.501953125
+483.7192688 19822.341796875
+484.2200317 20752.91796875
+485.2478333 241645.421875
+486.2507324 57443.76171875
+488.1871948 54046.42578125
+492.2294312 170288.03125
+492.7299194 94202.546875
+493.2257996 19901.0625
+495.2272644 57286.234375
+503.7189636 22701.46875
+505.2117004 66661.1640625
+506.2046814 71409.25
+507.199646 29061.55859375
+512.2296753 46384.3984375
+520.4464722 17296.951171875
+521.2365723 30328.474609375
+521.7320557 28319.591796875
+523.222229 563477.75
+524.2247925 139246.453125
+525.229248 50612.90625
+529.7504883 25530.474609375
+559.2501831 21072.763671875
+565.7553101 20111.232421875
+571.7490845 70580.8515625
+572.2748413 361449.75
+573.2800293 135548.984375
+576.2613525 26596.17578125
+576.7627563 27807.138671875
+580.2620239 112017.0234375
+580.7550659 2980027.0
+581.2561646 1872269.625
+581.7585449 705042.375
+581.8649292 28720.962890625
+582.258728 163151.203125
+583.2712402 19444.015625
+589.2654419 100522.671875
+589.7615356 44155.30078125
+590.2582397 18994.81640625
+598.2763062 62237.1640625
+598.7747192 38328.69921875
+599.2768555 32843.90234375
+599.7774658 64611.95703125
+606.2600708 44944.28515625
+624.2697144 70196.0234375
+673.324707 451095.8125
+674.328125 148714.828125
+675.3278198 35944.91015625
+693.2913208 29018.474609375
+711.2967529 25718.349609375
+802.3671875 87028.1796875
+803.3687744 63108.5234375
+873.4030151 108585.3046875
+874.4047852 51456.8203125
+1001.448181 30247.94140625
+1058.483398 20236.8984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.241.241.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=241"
+RTINSECONDS=26.00116575
+PEPMASS=598.27001953125
+CHARGE=2+
+55.63237381 14091.8603515625
+64.52613068 54457.3046875
+64.53045654 36579.515625
+64.58201599 43102.21875
+64.58613586 34424.8984375
+76.28124237 16579.572265625
+82.05419159 17498.53125
+149.5676727 50914.39453125
+149.5802307 14284.0703125
+152.8357697 13631.119140625
+161.3133545 16204.095703125
+167.0921326 37760.328125
+169.0587921 28470.0859375
+175.1178131 280103.59375
+176.1200714 25858.42578125
+177.0761871 57039.515625
+178.0599365 323936.34375
+178.3426208 92821.7265625
+179.0628052 27303.87890625
+179.0922852 22641.142578125
+180.3627167 14015.615234375
+183.0754852 25651.712890625
+186.085907 112212.6171875
+187.0919037 15677.890625
+190.0600281 16110.8291015625
+194.1019592 40725.5546875
+195.0863647 4354341.5
+196.0891571 431507.5625
+197.0922241 22557.1875
+200.1020966 24111.439453125
+206.0909729 175278.875
+215.0918427 17136.1171875
+218.1022949 51859.515625
+233.1266327 22028.916015625
+237.1116943 18103.77734375
+240.094986 20360.46484375
+246.0969238 663270.625
+247.0997162 82902.3671875
+249.0962677 25465.078125
+257.1224976 102256.9140625
+260.1122742 98735.828125
+261.1179199 25048.876953125
+267.1080933 15671.2958984375
+270.0970154 116405.015625
+278.1504517 16156.423828125
+283.1431274 41925.72265625
+287.1235046 148583.859375
+288.1073303 1629658.5
+289.1099854 243655.46875
+290.113739 33495.96875
+295.1503906 30867.46484375
+303.1430054 29863.08984375
+304.12677 25375.361328125
+305.1338196 3301467.25
+306.118927 1160585.75
+307.121582 210490.390625
+311.1351318 60327.69140625
+312.1200256 36403.8828125
+321.1539001 375044.75
+322.1564026 68524.8203125
+323.0993042 13486.845703125
+323.1444092 1154603.25
+324.146698 185588.96875
+325.152832 25861.017578125
+329.1450195 46785.6171875
+331.1465454 17692.9296875
+334.0975342 18148.52734375
+338.1426697 40316.86328125
+338.180542 412826.84375
+338.6430969 18836.1328125
+339.1827087 58883.83984375
+346.1702881 15605.095703125
+347.1494751 27100.25
+349.1625977 16812.130859375
+358.1650696 17588.998046875
+359.1443787 65796.8828125
+366.1862183 119658.7421875
+367.1894531 29485.33984375
+369.1393433 44210.18359375
+376.1698303 125472.3984375
+377.1546326 86110.8515625
+386.1658325 22880.3359375
+394.1809082 725242.1875
+394.2402954 26268.818359375
+395.1831665 155235.953125
+396.1856079 25706.427734375
+412.1884155 36365.98828125
+420.6811829 20686.328125
+434.1732483 19179.462890625
+460.1890259 22071.640625
+463.1941833 17812.98046875
+468.2210999 41392.34375
+469.2210693 19545.03515625
+478.2019958 15076.1455078125
+483.7095642 18438.115234375
+485.247406 215655.046875
+486.2486877 54977.5078125
+488.1869812 42218.78515625
+492.2304688 177019.375
+492.7302551 93329.390625
+493.2339783 27202.962890625
+495.2272034 62191.81640625
+496.2271423 28289.482421875
+503.2250977 18607.728515625
+503.7210083 17939.62109375
+505.2111816 63116.87890625
+506.2038574 56510.8828125
+506.7269287 23909.57421875
+512.2277832 42658.1484375
+512.7276611 20463.21484375
+520.7415771 18417.384765625
+521.2380981 26034.779296875
+521.7376099 29156.857421875
+523.2214966 418420.90625
+524.2259521 119014.7109375
+525.2282715 19722.41796875
+529.7443848 18093.67578125
+555.2537842 25350.609375
+559.2541504 16840.919921875
+571.2434082 17152.255859375
+571.7522583 75747.6640625
+572.274353 305452.96875
+572.7492065 21624.509765625
+573.2791138 78242.34375
+576.2592163 16900.923828125
+576.7648315 37066.94921875
+577.2672729 29892.197265625
+580.2611084 71204.375
+580.7547607 2223975.75
+581.2561035 1544059.375
+581.3682861 25188.626953125
+581.7578125 591450.4375
+582.2579346 125531.9921875
+589.2672119 63411.05078125
+589.7625122 32459.40625
+598.2720337 50506.03125
+598.7762451 38189.8125
+599.288147 17798.283203125
+599.7739868 61218.50390625
+606.2557983 32706.904296875
+624.2672119 51341.796875
+673.3241577 370329.9375
+674.3267822 153299.640625
+693.2913208 19246.5390625
+711.2987061 26612.12109375
+802.361145 85062.3515625
+803.3657227 35244.48828125
+873.4018555 101719.9296875
+874.4091187 56538.6171875
+1001.457153 37967.62890625
+1002.477295 17152.703125
+1096.441772 18641.673828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.242.242.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=242"
+RTINSECONDS=26.10941226
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52628326 71359.0
+64.53066254 54528.50390625
+64.58201599 49267.3125
+64.58624268 33277.5859375
+74.8120575 15283.103515625
+80.01882172 14116.3427734375
+89.35784149 16867.171875
+94.42577362 13462.8994140625
+94.99913788 15784.9619140625
+106.5437622 14700.6728515625
+132.3671112 12914.923828125
+147.2170868 13517.9228515625
+149.5679474 56575.23046875
+149.5804291 19205.33984375
+167.0918427 62804.8671875
+175.1019287 29838.234375
+175.1179657 308458.8125
+176.1204224 24663.92578125
+177.075943 70029.15625
+178.0599823 344069.3125
+178.3358612 50001.00390625
+178.355011 31747.84375
+179.0906525 23572.90234375
+182.0907745 18462.080078125
+183.0753174 48110.59765625
+186.0860596 121531.609375
+194.1023407 43450.33203125
+195.086441 4356291.5
+195.1280212 29584.490234375
+196.0893555 431015.78125
+197.092041 19458.52734375
+199.1172943 20448.537109375
+200.1017303 35321.52734375
+206.091217 156608.96875
+207.0934143 32646.703125
+215.0925598 16959.4140625
+218.1022186 61455.18359375
+240.0961761 23387.919921875
+243.0851135 22656.2734375
+246.0969238 677058.125
+247.0990295 74747.71875
+249.096344 26384.810546875
+257.1224976 109284.640625
+258.1283569 18106.287109375
+260.1122742 104422.46875
+270.0968323 132703.296875
+278.1195374 19318.9609375
+278.1499634 24329.115234375
+283.1429443 30800.1171875
+287.1234436 153471.140625
+288.1074524 1674838.875
+289.1104431 263011.65625
+290.1138916 22293.947265625
+294.1177063 19995.583984375
+295.1486816 21727.154296875
+303.1439514 30201.431640625
+305.1340332 3267289.0
+306.0593567 23662.14453125
+306.1190491 1170718.0
+307.1213684 216336.703125
+308.1217957 17890.1015625
+311.1347046 42726.625
+312.1170349 30351.482421875
+321.1540527 329837.53125
+322.1567688 68143.921875
+323.1444397 1154674.125
+323.1886902 30712.619140625
+324.1465149 181492.671875
+329.142395 53205.6640625
+338.142395 60223.71484375
+338.1806641 435572.3125
+338.6446533 17837.099609375
+339.1835022 77286.609375
+347.1491089 21463.525390625
+349.1622925 33576.12109375
+359.1451721 50404.4296875
+366.1865234 123347.59375
+369.1379089 41337.3671875
+376.1699829 133703.4375
+377.1576233 98031.9375
+386.1660767 38074.55078125
+394.1809998 786493.4375
+394.2398987 26621.30859375
+395.1830139 152971.234375
+412.1894226 33608.70703125
+420.680542 22590.240234375
+460.1876221 22111.837890625
+464.1723328 18026.712890625
+468.2226562 44269.078125
+469.2169495 16686.92578125
+477.2195435 19524.5546875
+478.2085876 22942.703125
+479.4467773 19897.34375
+485.2470093 243362.03125
+486.2503967 72466.78125
+488.1856689 60017.19140625
+489.1924133 21512.607421875
+492.2288513 186179.203125
+492.7313232 117771.4296875
+493.2301636 33571.44140625
+495.225708 64596.66015625
+503.2185669 21360.369140625
+503.7156982 23846.673828125
+505.2089539 54790.36328125
+506.2070923 64127.66015625
+512.2285156 25755.611328125
+512.7264404 40242.75
+521.234375 35246.65625
+521.7296753 28202.4765625
+523.1348877 27249.728515625
+523.2223511 503359.96875
+524.2247314 106610.3359375
+525.2307739 46731.890625
+529.7439575 22228.798828125
+554.263855 26027.11328125
+558.7459106 21449.919921875
+568.2544556 17200.060546875
+571.7506714 81907.5078125
+572.2753296 378523.53125
+573.2803955 112731.9140625
+574.2849121 26745.521484375
+576.2618408 60907.5625
+576.7615356 36217.62109375
+577.2606201 30843.7265625
+580.2628784 87467.1484375
+580.7550659 2719434.5
+581.2562866 1827619.125
+581.3683472 32979.70703125
+581.7583008 677267.0
+582.2589722 133449.890625
+589.2674561 62838.7578125
+589.7647095 34903.75390625
+598.2730713 50078.7265625
+598.7700806 26623.404296875
+599.2752075 30001.080078125
+599.7746582 72021.2265625
+606.2612305 35734.80859375
+624.2678223 68789.765625
+655.312439 40717.37890625
+673.3242798 426805.9375
+674.3268433 152234.328125
+675.3261719 21390.68359375
+711.2924805 22121.46875
+802.3689575 80836.453125
+803.3654175 68228.140625
+873.4006348 99660.6015625
+874.3994141 38361.84375
+1001.459839 32707.802734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.243.243.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=243"
+RTINSECONDS=26.21740875
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52637482 62519.05078125
+64.53053284 37904.2421875
+64.58226013 36499.76953125
+64.58617401 28188.34765625
+64.63813782 19047.123046875
+73.15900421 14834.072265625
+76.28091431 17399.41796875
+134.4545441 13311.2705078125
+149.5655823 40911.05859375
+149.5776978 26096.578125
+167.0915985 42258.109375
+169.0598602 45358.21875
+175.1177368 284538.28125
+176.0811157 15375.5087890625
+176.1217957 23325.224609375
+177.0759888 80130.625
+178.0600586 352392.5625
+178.0780945 18685.39453125
+178.3482361 88427.6328125
+179.0635071 17632.044921875
+183.0755005 23837.255859375
+186.0861511 128887.625
+194.1023712 72652.65625
+195.0863953 4260044.5
+195.1281433 23372.662109375
+196.0892792 391041.6875
+197.0890045 22632.298828125
+200.1016998 21931.837890625
+201.0855408 23390.56640625
+206.0912018 162239.15625
+207.0926056 23192.65625
+209.1012115 15994.9970703125
+218.1028595 66924.8203125
+222.0848846 18617.677734375
+239.1130219 31506.517578125
+240.09552 36005.0234375
+243.0863647 15066.6162109375
+244.1168823 19401.103515625
+246.0969238 581644.875
+247.0996094 99407.359375
+249.096756 26916.302734375
+257.1225281 115997.5546875
+260.1123962 120699.9453125
+270.0965576 144676.609375
+271.1022644 17040.216796875
+278.149353 25925.33203125
+279.1262207 14703.5126953125
+283.1427307 36080.24609375
+287.1233826 165706.8125
+288.1072998 1610626.0
+289.1105042 209306.515625
+290.1121521 21610.8125
+294.1167908 29565.185546875
+295.1486511 34326.9140625
+303.1403809 17421.0390625
+304.1272888 16302.482421875
+305.1338196 3248338.0
+306.1190491 1130473.75
+307.1212769 190457.765625
+308.1223145 17736.8828125
+311.1348877 49624.65625
+312.1157837 29155.078125
+321.1538696 326738.1875
+322.1561279 61266.0859375
+323.0987549 17181.353515625
+323.1441956 1090842.625
+324.1459656 193748.234375
+329.1443176 44568.375
+338.1420898 47729.91015625
+338.180481 405645.78125
+338.6451416 30972.83984375
+339.1828003 72932.5234375
+346.1708984 27193.52734375
+347.1481628 28032.115234375
+349.1577148 25149.826171875
+351.1300964 16855.296875
+352.1217957 16448.916015625
+359.1439514 52568.57421875
+366.1866455 137908.28125
+368.1530762 17871.009765625
+369.1381836 30657.427734375
+376.1704712 124411.984375
+377.155426 79385.2421875
+386.1650085 38988.17578125
+389.1549072 16692.380859375
+394.1806641 704425.125
+394.2402039 30011.8046875
+395.1828918 145505.9375
+412.1871643 38075.80078125
+420.6849365 21109.306640625
+460.1923523 20209.5
+468.2188721 56039.5625
+477.2146301 19427.845703125
+485.2469177 191928.640625
+486.2489319 55450.0703125
+488.1847534 32518.052734375
+492.229187 140193.90625
+492.7297668 87374.8125
+493.2320862 25511.494140625
+495.2271423 49375.05859375
+505.2102966 65438.7734375
+506.2092285 45630.875
+512.2277222 34013.71875
+512.7282715 26364.583984375
+521.2365723 45529.01953125
+521.7299194 24285.154296875
+523.2215576 408495.96875
+524.2241211 129805.6171875
+525.2316284 27547.517578125
+529.7496338 23085.11328125
+555.2521362 18021.6875
+567.2539062 22277.62109375
+571.7483521 72556.140625
+572.2749023 315508.375
+573.2819824 82193.9765625
+574.2871704 24200.703125
+576.2597046 57364.6796875
+576.7587891 32085.916015625
+580.2626343 82347.40625
+580.7546997 2294462.75
+581.2556763 1508003.375
+581.3667603 19862.234375
+581.7575073 586927.1875
+582.2582397 110661.4921875
+589.2688599 78822.109375
+589.7615356 35911.921875
+598.2739258 51754.19140625
+598.7758179 32203.240234375
+599.2800903 20273.49609375
+599.7780762 84022.3984375
+606.2559814 34063.64453125
+624.2676392 54380.890625
+655.3171387 26373.181640625
+673.3231201 410865.21875
+674.3258667 169337.65625
+675.3257446 38949.69921875
+693.2940674 23646.59765625
+802.362793 115126.15625
+803.3651123 45238.94140625
+873.3959961 99474.953125
+874.3982544 38583.75390625
+1001.467957 29980.431640625
+1002.452942 20378.390625
+1098.431885 17956.923828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.244.244.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=244"
+RTINSECONDS=26.32563311
+PEPMASS=598.27001953125
+CHARGE=2+
+52.5761795 12150.916015625
+55.3148613 13686.8203125
+63.56430054 14029.1943359375
+64.12243652 11913.8681640625
+64.52632141 63455.33984375
+64.53072357 46654.76953125
+64.58223724 30144.345703125
+64.58617401 27490.12890625
+64.63798523 18479.05859375
+64.64146423 14185.087890625
+74.81164551 12571.142578125
+82.0537796 16245.3994140625
+106.5008392 14165.8994140625
+130.1267853 11536.388671875
+138.0007324 13702.75
+149.5718536 45632.734375
+167.0919952 41095.296875
+169.0598755 37929.35546875
+175.1178589 275873.875
+177.075943 71160.1015625
+178.0600128 354530.875
+178.3509674 69423.96875
+179.0633392 20860.232421875
+179.0911407 23451.48046875
+183.0759735 19337.091796875
+186.0861359 89473.78125
+189.7670898 12768.03515625
+190.0614471 14158.439453125
+194.1024475 48445.8828125
+195.08638 4153536.25
+196.0892334 397144.28125
+197.0914612 20829.236328125
+200.100296 36098.77734375
+201.0846252 27551.373046875
+206.0911102 161867.9375
+215.0913849 25539.87109375
+218.1027069 61370.453125
+234.0997467 15616.4423828125
+240.0973511 21038.55859375
+241.3974152 14642.220703125
+243.086441 18782.517578125
+244.1173248 23793.814453125
+246.0968781 579665.5625
+247.0992889 57703.48046875
+257.1221924 93000.84375
+260.1121826 117100.0859375
+261.1188049 17557.294921875
+270.0966797 134687.390625
+276.1340637 21460.693359375
+277.1390686 15544.0126953125
+278.1179504 21593.638671875
+278.1499023 22584.87890625
+283.143219 50068.83984375
+287.12323 188145.6875
+288.1072998 1586866.0
+289.1104736 247175.796875
+290.1156006 17491.8203125
+294.1173706 27550.8359375
+295.1488342 24649.9921875
+303.1423035 24718.396484375
+304.1257324 22181.7421875
+305.1338196 3266200.0
+306.1189575 1190003.5
+307.1212158 180029.953125
+308.1231384 23279.419921875
+311.134613 50432.890625
+312.1182251 57864.90234375
+321.153717 364704.15625
+322.1562805 53184.58984375
+323.0985718 18454.2890625
+323.1442871 1166216.5
+324.1462402 167524.53125
+325.1493835 26072.5
+329.1443481 45651.57421875
+338.1421204 57774.765625
+338.180481 392791.84375
+338.6418152 14733.1025390625
+339.1832886 67888.453125
+347.1476135 24020.794921875
+349.1587524 23239.544921875
+358.1636047 16657.23828125
+359.144165 60237.66015625
+360.1485901 13792.6025390625
+366.1860962 121556.0703125
+369.1387329 25619.34765625
+376.1705322 104790.7265625
+377.1553345 78428.6171875
+378.1554871 16926.423828125
+386.1642761 31676.9921875
+394.1807861 741850.8125
+395.1828308 146684.03125
+412.1897278 32038.32421875
+420.6801453 20176.09375
+452.184967 15529.037109375
+460.1914978 23365.009765625
+468.2211914 61194.66015625
+483.7189941 19819.87890625
+485.2470398 204363.0
+486.2544861 47945.75390625
+488.1873474 51763.49609375
+492.2292786 155374.25
+492.7316589 86057.8828125
+493.234436 23694.89453125
+495.226532 36602.82421875
+503.7198792 24112.94140625
+505.2104797 49172.94140625
+506.2052307 31356.083984375
+512.2265015 36008.41796875
+521.2211304 16166.3193359375
+523.2219849 431556.96875
+524.2227173 125455.0703125
+525.2340698 28063.669921875
+530.2418213 15359.3017578125
+554.2695312 18529.91015625
+558.7443237 24371.8984375
+559.2399292 17362.7734375
+571.7496338 64320.06640625
+572.2745972 321581.96875
+572.7527466 27279.361328125
+573.2779541 76318.5
+574.2806396 23504.52734375
+576.2607422 36449.08203125
+576.7632446 28890.638671875
+577.2598877 27363.646484375
+580.2644653 59382.37890625
+580.7548218 2286206.25
+581.2560425 1490029.625
+581.368042 24058.115234375
+581.7574463 567764.625
+582.2592163 112577.4296875
+589.2633057 49613.6015625
+589.7642822 25414.0625
+598.2755127 48797.7578125
+598.7734375 61944.00390625
+599.2709961 40207.7890625
+599.7780151 93683.78125
+606.2559204 23929.6328125
+607.2625732 17446.662109375
+624.267395 44533.56640625
+625.2766724 19576.224609375
+673.3230591 418532.96875
+674.3268433 157305.0
+675.3224487 36422.53515625
+711.2966309 25213.7421875
+802.3654175 105323.0546875
+803.3673706 39762.37890625
+873.3962402 95719.0859375
+874.4055786 49485.5
+1001.457153 21102.998046875
+1002.456787 18447.201171875
+1013.635315 14750.0888671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.245.245.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=245"
+RTINSECONDS=26.43501701
+PEPMASS=598.27001953125
+CHARGE=2+
+53.65438461 12867.2060546875
+58.13421249 15734.8310546875
+64.52623749 59469.08203125
+64.53048706 38671.93359375
+64.58195496 41107.421875
+64.58599091 33417.5546875
+64.63809204 17526.947265625
+71.697052 14449.96875
+81.24491119 16197.8095703125
+97.04185486 14191.8623046875
+105.822731 13874.8525390625
+149.5674896 59778.265625
+149.5808411 19148.693359375
+167.0919037 31687.07421875
+169.0597839 35668.8828125
+175.1177979 315176.90625
+176.1203461 23258.83203125
+177.0757446 76690.078125
+178.0600128 347344.6875
+178.3451996 91437.8046875
+179.0635529 34274.94140625
+182.0913086 22489.59375
+183.0748596 19828.83984375
+186.085968 106428.8125
+194.1022339 30476.84765625
+195.0864105 4283546.0
+195.1282349 29369.728515625
+196.0893707 439679.5
+197.0920868 40476.0546875
+200.1013947 20744.474609375
+201.0855713 19738.044921875
+206.0910339 156515.609375
+208.0723114 18425.81640625
+212.1134949 20915.650390625
+218.1023712 58008.79296875
+222.0855103 18571.048828125
+240.0962219 30453.162109375
+243.0857086 24894.91796875
+246.0970154 677034.5
+246.1257324 31465.25390625
+247.09935 86042.375
+249.0956116 17046.24609375
+257.1227112 135294.1875
+258.1242371 20323.56640625
+260.1125183 111783.71875
+270.0968628 133408.875
+271.6334839 17799.421875
+276.1037292 18565.9609375
+283.1447754 45017.27734375
+287.1234436 163393.453125
+288.1074829 1540482.25
+289.1103516 243834.03125
+290.1140442 17827.171875
+303.1443787 27612.169921875
+305.1340637 3224290.5
+306.0592346 20194.82421875
+306.1192627 1112545.75
+307.1208496 195500.984375
+311.1348877 57031.46875
+312.1177979 41797.23046875
+318.1405029 17803.09765625
+321.1541138 314755.125
+322.1572876 53634.92578125
+323.0986938 24068.490234375
+323.1445312 1134537.5
+324.146637 198905.25
+329.1445007 34989.86328125
+338.1425171 52823.57421875
+338.1808777 423039.09375
+338.6460571 26611.615234375
+339.1838989 83562.7265625
+347.1468506 34898.76171875
+349.1575623 35524.74609375
+359.1430664 68739.125
+366.1864624 141353.453125
+367.1874695 20170.935546875
+369.1393127 42152.8203125
+376.1702271 143910.734375
+377.157074 70101.734375
+386.1629639 32639.724609375
+394.1809387 682455.1875
+395.1824036 160423.375
+412.1881104 25556.001953125
+420.6811829 20681.25
+460.1911926 16209.396484375
+468.2210083 59616.32421875
+483.7225647 23912.771484375
+485.2476807 203270.25
+486.2506104 74366.0859375
+488.1867676 41096.78125
+492.2300415 170948.640625
+492.7302856 94440.53125
+493.2339478 26816.427734375
+495.2263794 47399.6171875
+503.721405 21185.10546875
+505.2122498 45849.4921875
+506.2059021 58220.234375
+507.2030945 18693.580078125
+512.2250977 53406.046875
+512.7297363 23883.572265625
+521.2294922 25550.375
+521.7332764 16949.47265625
+523.2226562 472911.09375
+524.2255859 129708.5
+525.2366943 21494.85546875
+558.7498169 22319.68359375
+571.7496338 69095.8203125
+572.2763062 280059.46875
+573.2808838 87349.46875
+574.269165 21924.92578125
+576.2584839 39114.80859375
+576.7565918 24964.703125
+577.2636108 22784.65234375
+580.2602539 59036.46484375
+580.7557983 2172736.0
+581.2567139 1520733.0
+581.7581787 575071.4375
+582.2612915 125104.9609375
+589.2659912 58300.3203125
+589.7666016 22707.419921875
+598.2713623 66379.9140625
+598.7797241 41338.66015625
+599.2741699 31947.298828125
+599.7781982 80602.1171875
+606.2537231 20348.951171875
+624.2694702 44282.46484375
+625.2734985 32571.591796875
+673.3251953 393495.65625
+674.3286743 162129.890625
+675.3317871 19643.916015625
+802.3641968 87072.9140625
+803.3659058 38292.5703125
+873.4013062 93311.4765625
+874.4064941 50079.84765625
+927.1983032 17781.001953125
+1001.464355 32592.693359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.246.246.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=246"
+RTINSECONDS=26.5434472
+PEPMASS=598.27001953125
+CHARGE=2+
+52.10485458 13897.1025390625
+58.1344986 15028.9755859375
+64.52635193 58366.9296875
+64.53072357 46826.62890625
+64.58202362 39757.49609375
+64.58615112 31194.462890625
+64.63825226 16734.369140625
+73.78174591 12045.0634765625
+74.81220245 12622.7978515625
+124.3466568 15257.880859375
+149.570755 58004.96875
+167.0918274 39764.6484375
+169.0594177 46647.63671875
+170.7540436 16881.875
+175.1178589 276751.96875
+176.1197662 17141.435546875
+177.0757904 65106.75
+178.0599518 331150.9375
+178.3419037 83055.4140625
+179.0630646 31153.98828125
+182.0906372 18680.787109375
+183.0754395 21743.48828125
+186.0861816 86619.6796875
+194.1022949 44572.078125
+195.0863953 4170914.5
+195.1282043 22148.123046875
+196.0892334 365734.0625
+197.0919037 29511.423828125
+200.1012115 30797.8125
+201.0861969 17035.51171875
+206.0910492 179989.6875
+207.0939941 17413.685546875
+218.1027222 41182.9453125
+222.0834656 18890.9609375
+234.0973511 15817.8994140625
+240.0960999 25942.205078125
+244.1199188 18257.40234375
+246.0969086 662992.375
+247.0988617 72031.4140625
+248.1105042 14191.4091796875
+249.0968781 19321.3046875
+257.0964355 17900.8359375
+257.122406 101081.421875
+260.112854 119264.03125
+261.1200256 22127.671875
+270.0967102 122292.421875
+277.13974 16646.439453125
+278.1485291 34309.4609375
+283.1431885 51072.3203125
+287.123291 166004.796875
+288.1073608 1680384.125
+289.1099548 228203.609375
+294.1165466 16514.580078125
+295.1503601 22027.376953125
+297.1207581 14455.57421875
+303.1444702 27252.220703125
+304.1252441 21107.173828125
+305.1338806 3263453.0
+306.1188965 1194305.25
+307.1210632 199988.0
+308.1237183 18891.279296875
+311.1339111 46016.40234375
+321.1538391 336126.28125
+322.1563721 63908.01171875
+323.1442871 1149820.75
+324.1470337 207785.296875
+329.1447144 41215.6328125
+331.1479187 15873.5947265625
+332.1395264 15852.2392578125
+338.1423035 53463.01171875
+338.1805725 408115.40625
+338.6470947 26794.32421875
+339.1838074 64954.359375
+347.1513977 25886.548828125
+351.1282654 20904.03515625
+358.1653748 20335.876953125
+359.1434631 62368.0546875
+366.1859436 129300.984375
+367.1899109 20518.16796875
+369.1387329 33707.90625
+376.1701965 133375.265625
+377.1559753 83663.78125
+378.1651001 15958.517578125
+385.2425842 16379.0673828125
+386.164917 33851.6015625
+394.1808167 745066.8125
+395.1832275 173641.71875
+412.1859741 33669.7578125
+413.1659851 18244.041015625
+460.1966858 25196.28125
+468.2227478 51703.75390625
+469.2234497 22562.05859375
+477.2200623 18128.326171875
+483.7148438 21496.099609375
+485.2472534 240437.140625
+486.2484131 54954.5546875
+488.1889648 44108.36328125
+492.2290039 153123.53125
+492.7301636 69165.5703125
+493.2294922 25029.71875
+495.2271118 58767.3515625
+496.2253723 17167.58203125
+505.2106934 40621.20703125
+506.2064514 41599.90234375
+512.2276611 39707.57421875
+512.7271729 21034.263671875
+521.2339478 48088.71484375
+523.222168 465763.4375
+524.2238159 124690.015625
+525.2330933 20183.16015625
+530.2471313 22559.791015625
+558.2629395 18855.07421875
+558.7438354 23511.404296875
+571.7492676 79687.125
+572.2741699 285012.46875
+572.7470703 24370.67578125
+573.2801514 81298.6953125
+574.2832031 34314.1875
+576.2610474 39268.828125
+576.7593384 38181.7734375
+577.2700806 16637.259765625
+577.7647705 23003.833984375
+580.2623291 67565.515625
+580.7548828 2358445.75
+581.2561035 1383651.0
+581.3357544 28280.767578125
+581.7579956 529273.5
+582.2592773 124891.859375
+589.2677612 56253.76953125
+589.7651978 36740.3125
+598.2722778 51578.6484375
+598.7735596 32339.669921875
+599.276001 16780.109375
+599.7763672 56656.7109375
+606.2556763 36707.96484375
+624.265686 32946.92578125
+625.2706299 24111.3515625
+673.3233032 347108.375
+674.3253784 136637.421875
+675.3264771 27376.546875
+693.2918091 33280.734375
+802.3641968 97050.1171875
+803.3686523 55359.4296875
+873.3965454 89257.171875
+874.4014282 38886.25390625
+1001.458374 32503.462890625
+1002.446716 17818.568359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.247.247.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=247"
+RTINSECONDS=26.65209728
+PEPMASS=598.27001953125
+CHARGE=2+
+53.36780548 12452.75
+64.52626038 60632.0859375
+64.53051758 39853.4140625
+64.58196259 43795.78515625
+64.58616638 30004.919921875
+64.63820648 17913.20703125
+64.64141846 17993.31640625
+65.34944916 13246.7119140625
+65.85028839 11280.2236328125
+72.71200562 13052.728515625
+74.81202698 17201.181640625
+81.14875031 12965.50390625
+82.05449677 14219.3095703125
+84.90209961 12333.9091796875
+86.01153564 11857.466796875
+102.1381912 12364.599609375
+104.1081772 14401.47265625
+116.752739 15181.60546875
+143.7498932 11468.857421875
+149.5746918 31053.931640625
+163.158905 13373.943359375
+167.0917816 39689.04296875
+169.0595093 26328.37109375
+175.1178741 308932.0625
+176.120163 21839.765625
+177.0761719 61097.69140625
+178.0599976 319131.71875
+178.342453 84041.8671875
+179.0654449 22600.48828125
+183.0752106 18876.01953125
+186.0861053 112233.6484375
+194.1025085 44536.80078125
+195.0864105 4196142.0
+195.1281281 27668.529296875
+196.089386 398060.90625
+197.0921783 36297.55078125
+199.1175232 15600.228515625
+200.1008759 27131.998046875
+201.0842743 17583.037109375
+202.5632782 12668.8251953125
+206.0911713 140633.5
+212.1137543 15201.013671875
+218.1026917 54150.859375
+222.087265 19047.126953125
+232.1174164 16144.3388671875
+233.1269684 15516.7080078125
+239.1127167 15292.34375
+240.0963593 20956.125
+243.0845184 16509.943359375
+244.1183319 15557.25
+246.0969543 634506.1875
+246.120636 12681.818359375
+246.5075836 15814.603515625
+247.0996857 70896.7578125
+248.1064758 14059.5654296875
+249.0968628 15015.3857421875
+257.1225891 101179.4140625
+258.1257324 21204.27734375
+260.1123047 115263.890625
+261.1163025 20539.984375
+270.097168 118733.4375
+276.1054077 17194.072265625
+278.1493225 21564.25390625
+283.1432495 55668.68359375
+287.1231384 154186.296875
+288.1074219 1611444.75
+289.1101074 231896.78125
+290.1114197 18673.11328125
+294.1172791 18829.873046875
+295.1494751 22708.4296875
+303.1434021 27384.640625
+304.1256714 23781.05078125
+305.1340027 3150559.25
+306.1189575 1140483.125
+307.1212158 193633.8125
+308.1203918 15921.677734375
+311.1338196 52342.9296875
+312.117157 31144.228515625
+321.1541748 352592.90625
+322.1572876 64677.00390625
+323.1444397 1040679.5625
+324.1467896 167462.890625
+325.1531677 17456.7109375
+328.1565552 15506.0
+329.1440735 43447.40234375
+336.2444763 14503.068359375
+338.1422729 52250.7265625
+338.1807251 355410.65625
+339.1833191 61072.90234375
+343.1563416 18941.634765625
+347.1492615 28079.40234375
+349.1585999 21842.6640625
+359.144928 57267.1484375
+366.186554 119222.15625
+367.1887512 29664.845703125
+368.15271 14925.7470703125
+369.1361084 16066.1884765625
+376.1705322 109114.53125
+377.1573792 88477.46875
+378.1582642 16623.08203125
+386.1639099 26019.240234375
+394.1810303 707755.5
+394.2406616 20624.53515625
+395.1829529 134534.296875
+412.1873169 40461.62890625
+421.1837769 28008.328125
+468.221344 48439.47265625
+483.7196655 15860.6083984375
+485.2468262 206437.765625
+486.2485046 45252.578125
+488.1870728 46006.57421875
+489.1847229 14781.236328125
+492.229187 164865.984375
+492.7319336 96213.1875
+493.231781 22977.5625
+495.2272339 65488.3046875
+503.7147217 18287.595703125
+505.211731 54484.65625
+506.2031555 45492.796875
+512.2261963 35316.140625
+512.7252808 28648.923828125
+521.2354126 28008.0390625
+521.7318115 18369.037109375
+523.2221069 419045.375
+524.2244873 121865.578125
+525.227417 34361.11328125
+529.7457275 17829.052734375
+555.2633057 14569.654296875
+558.7498779 19944.70703125
+559.2459106 26390.650390625
+571.7514648 108837.453125
+572.2749634 311897.8125
+572.7528687 19124.677734375
+573.2792969 84375.7109375
+576.2610474 51726.51171875
+576.762085 29632.869140625
+580.260498 77940.7890625
+580.755188 2377283.5
+581.2564087 1614852.5
+581.758606 611750.0625
+581.8638306 17967.87890625
+582.2580566 122853.0078125
+589.2677002 48427.12890625
+589.7675781 17043.4296875
+598.270752 49606.65234375
+598.7767334 43600.6328125
+599.2766113 37437.1953125
+599.7758179 78859.3125
+606.2558594 26444.05859375
+607.258606 15550.4169921875
+624.2664185 52887.5625
+625.2682495 21660.2265625
+673.3242188 438734.90625
+674.328186 158607.015625
+675.3285522 30671.3671875
+693.2930908 20449.9375
+802.3660889 105714.890625
+803.3643188 42293.5625
+873.4020996 88948.234375
+874.4060669 58491.90625
+1049.224243 16632.236328125
+1058.470825 20746.796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.248.248.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=248"
+RTINSECONDS=26.76159661
+PEPMASS=598.27001953125
+CHARGE=2+
+61.12379074 13740.17578125
+64.52622986 70614.078125
+64.53050232 45035.59375
+64.58226013 33099.375
+64.58624268 32608.0546875
+67.30216217 14255.7919921875
+119.516304 14375.4970703125
+142.1099701 14263.916015625
+149.5717163 62045.0546875
+167.092392 34848.9375
+169.0603333 20658.6640625
+175.1178284 304730.625
+177.0761871 56538.15234375
+178.0601807 345853.5
+178.3481598 94183.1171875
+179.0915833 27904.576171875
+186.0863495 119315.8046875
+190.1086884 16684.470703125
+194.1026611 40752.3046875
+195.0864716 4318154.0
+196.0892334 394594.75
+197.0917053 28634.24609375
+199.9739532 15507.474609375
+200.1023254 19896.6953125
+201.0850525 23471.193359375
+206.0912933 164681.21875
+215.0915833 18796.404296875
+218.1025238 67561.890625
+222.0891724 15624.564453125
+234.097229 15909.72265625
+240.0960846 38962.4921875
+243.084137 25276.4765625
+244.1172791 29709.97265625
+246.0970459 640646.75
+246.1257324 34680.14453125
+247.0993805 74124.9453125
+257.1226196 104576.8984375
+260.1124268 110746.03125
+270.0967712 153197.015625
+277.1367493 26026.14453125
+283.1444092 46784.85546875
+287.1239319 144537.796875
+288.1074829 1523527.5
+289.1100464 220413.953125
+290.1141968 22797.494140625
+294.1135254 19217.19140625
+295.1498108 25320.978515625
+302.1344299 20209.8984375
+303.1422119 17575.248046875
+305.1340332 3229026.5
+306.1192322 1101357.875
+307.1213684 202497.71875
+308.122467 18697.705078125
+311.1340942 50153.14453125
+312.1169434 30656.939453125
+321.1538696 335842.09375
+322.15625 60076.640625
+323.1445618 1203657.375
+324.1468506 196497.8125
+325.1458435 16554.451171875
+329.1445007 59750.828125
+331.1504822 20860.02734375
+338.1419067 49391.5546875
+338.1805115 400969.34375
+338.6430054 27113.849609375
+339.1825256 82654.2109375
+347.148468 30461.962890625
+349.162384 20848.498046875
+351.1290894 20645.6015625
+359.1446838 58391.77734375
+366.1858521 106980.1796875
+367.1905212 21605.6171875
+369.1373901 27067.529296875
+376.1699829 143342.140625
+377.1564941 82381.3046875
+386.1652832 40260.7890625
+389.1509705 15928.986328125
+394.1810608 715917.1875
+394.2402954 24168.142578125
+395.1828308 159649.640625
+412.1889954 43156.93359375
+420.6855774 27768.69921875
+468.2190247 38263.09375
+485.2473145 240362.328125
+486.2504883 63327.81640625
+488.1875 43809.82421875
+489.1890259 19913.984375
+492.2293396 156190.09375
+492.7306213 67542.7578125
+493.2293396 22238.921875
+495.2264099 51223.98828125
+503.7201538 19423.908203125
+505.2116394 60314.89453125
+506.2035217 50917.7890625
+512.225769 41033.109375
+512.7298584 26431.58203125
+513.2355347 19653.744140625
+521.2348022 29791.81640625
+521.7313843 28495.439453125
+523.222168 463209.28125
+524.2246704 114727.09375
+525.2335205 29170.2421875
+531.1616821 22322.673828125
+558.742981 20695.546875
+571.7515259 93126.984375
+572.2754517 283072.09375
+573.2816162 85651.0390625
+576.2616577 63125.69140625
+576.762085 37667.20703125
+577.2626953 23401.271484375
+580.2618408 80211.1328125
+580.755127 2291778.75
+581.2564697 1588221.125
+581.3665161 15625.87890625
+581.7580566 542349.25
+581.862915 18942.60546875
+582.2583008 130971.75
+589.267395 70519.8046875
+589.7672119 59880.484375
+598.2756348 40849.015625
+598.7752686 21590.841796875
+599.2803955 24174.798828125
+599.7764893 74157.8984375
+606.2575073 40599.109375
+624.2651367 58567.546875
+673.3244629 443955.0625
+674.3275146 190297.71875
+675.3311157 31817.716796875
+693.2921143 24998.2578125
+711.2949829 21009.62109375
+802.3658447 90671.8046875
+803.3648682 43078.640625
+804.3748779 19477.494140625
+873.3997803 88898.9375
+874.4047241 46039.62890625
+939.4465942 15409.685546875
+1001.469299 26037.580078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.249.249.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=249"
+RTINSECONDS=26.86959274
+PEPMASS=598.27001953125
+CHARGE=2+
+54.71526718 11924.083984375
+58.13433075 17128.96484375
+59.07088089 11468.3056640625
+64.52622986 60980.62890625
+64.53048706 37171.71875
+64.58203888 44924.12109375
+64.58618927 29651.73828125
+64.63822174 18123.271484375
+64.64137268 14606.0283203125
+76.2855072 15067.80078125
+81.04656219 11189.2763671875
+108.692009 13014.8154296875
+118.1194916 11252.43359375
+137.5249023 11773.7998046875
+149.5657196 39688.7421875
+167.0920715 40720.96484375
+169.0600128 22744.1953125
+175.1179657 294167.34375
+175.1320038 9184.9833984375
+176.0805817 13314.5390625
+176.1219635 17291.26171875
+177.0759888 70896.8984375
+178.0601349 338957.9375
+178.0778656 15296.294921875
+178.3398438 68632.515625
+179.0624237 13098.740234375
+179.0916748 27050.490234375
+182.0916748 19920.8515625
+183.0767212 16140.8798828125
+186.0866241 93240.390625
+192.2801056 15967.5947265625
+194.1023712 41959.78125
+195.0865479 3806584.5
+196.0894318 394990.59375
+197.0908966 22897.873046875
+200.1018982 24306.64453125
+201.0866394 28900.080078125
+206.0911713 147748.453125
+212.1128235 16210.529296875
+218.1026764 65870.359375
+219.1050873 17777.390625
+234.097168 23771.353515625
+240.0960693 14690.15625
+243.0865173 20749.900390625
+244.1175232 13826.1611328125
+246.0971832 636058.1875
+247.1000977 72532.0546875
+249.0966949 20491.60546875
+257.1230469 96559.1953125
+258.1265869 19843.48046875
+260.112793 104797.5703125
+270.0970154 119751.9765625
+277.1383057 17080.458984375
+278.1483459 32478.0625
+283.1428833 42496.0625
+287.1239319 139050.375
+288.1076965 1517651.0
+288.289856 13235.716796875
+289.1103516 227363.625
+294.120697 14830.294921875
+295.1476135 17403.7734375
+303.144043 27389.021484375
+304.1300964 17879.619140625
+305.1343079 3008781.0
+305.2159729 16934.826171875
+306.1193848 1134574.375
+307.1218262 153712.4375
+308.1257324 15561.1435546875
+311.1347351 46013.7734375
+312.1156616 23838.251953125
+321.1543579 308855.53125
+322.1567383 47741.62109375
+323.0986938 22134.78125
+323.111908 15990.255859375
+323.1448059 1059316.625
+324.1464233 148412.875
+328.1586609 18196.451171875
+329.1436462 44249.09375
+338.1430664 38432.953125
+338.1809387 375560.53125
+339.1439819 14553.8935546875
+339.1838989 62912.4140625
+347.150177 21736.419921875
+349.1594238 21285.69921875
+359.1451721 59363.58203125
+366.1873474 114590.0078125
+367.1889648 16909.45703125
+369.139679 24947.32421875
+376.1708374 136711.34375
+377.1571655 81934.6875
+386.1654968 34003.8203125
+394.181488 670898.9375
+394.2402039 24072.349609375
+395.1836853 139916.25
+397.683075 17168.7890625
+412.1915588 37865.3515625
+420.6816711 23024.90625
+460.1950073 21151.20703125
+468.2230835 50594.4765625
+477.2122803 19746.427734375
+478.2105103 16222.677734375
+483.7182007 18865.431640625
+485.2477722 201183.078125
+486.2495117 58362.65234375
+488.1860352 63113.71484375
+492.2297058 133253.28125
+492.7314453 59967.32421875
+493.2316895 35081.8046875
+495.2264099 49261.1875
+503.2201843 16268.9208984375
+505.2133484 47633.5078125
+506.2022705 58153.0859375
+512.2271118 42133.640625
+512.7280273 29862.556640625
+513.234436 13813.572265625
+521.2355347 21381.412109375
+522.2362061 17124.02734375
+523.2228394 489452.8125
+524.2243042 129373.0625
+525.2334595 19329.498046875
+554.2628784 17881.576171875
+558.7510986 31803.466796875
+559.7471313 19432.708984375
+571.7504272 75104.6015625
+572.2759399 310744.625
+572.7546997 28156.6171875
+573.2821655 89028.3359375
+576.2615356 29964.240234375
+576.7635498 22047.326171875
+577.2647095 26034.423828125
+580.2632446 74981.40625
+580.7561646 2261389.0
+581.2573242 1622761.0
+581.3660889 27864.84765625
+581.7589722 568513.125
+581.8649902 23479.85546875
+582.260376 113442.3828125
+589.2720337 36092.32421875
+589.7700806 14433.4814453125
+598.2717896 51515.4296875
+598.7731934 36243.1953125
+599.2800293 31363.62109375
+599.7785034 49096.53515625
+606.2585449 34449.34765625
+624.269104 45517.9921875
+625.2763672 24003.646484375
+673.3254395 393995.3125
+674.3296509 146282.6875
+675.336792 30030.23046875
+693.2871094 29202.75390625
+784.3458252 18108.453125
+802.3693848 92303.71875
+803.3754883 39126.546875
+841.3468018 13939.8056640625
+873.4030762 86641.578125
+874.3970947 40920.2890625
+875.4188843 15166.1640625
+974.0338745 14955.7470703125
+1001.459351 27356.185546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.250.250.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=250"
+RTINSECONDS=26.98032272
+PEPMASS=598.27001953125
+CHARGE=2+
+51.18448639 13218.7919921875
+52.17756271 14991.5791015625
+56.82817841 13180.8046875
+58.13444901 18991.703125
+64.52619171 71370.0625
+64.53045654 48279.58984375
+64.58203888 54975.55859375
+64.58616638 37659.3046875
+64.63800812 24629.255859375
+71.38194275 15406.5419921875
+82.05487061 16406.548828125
+101.3986664 14017.4443359375
+112.9551468 14488.7177734375
+123.0290833 17920.6328125
+149.5732269 46693.36328125
+167.0917511 34674.8203125
+169.0593719 40299.91796875
+175.11763 276683.0
+176.1220856 31433.634765625
+177.0761566 67827.5859375
+178.0598755 364661.59375
+178.3340454 25473.908203125
+178.3531036 59905.54296875
+179.0632629 37625.6796875
+179.0918427 24497.564453125
+186.0857086 116012.6171875
+187.0901184 21796.859375
+194.1026764 35610.98828125
+195.0862427 4553380.0
+196.0890656 438062.3125
+197.0927124 20223.3984375
+206.0909576 167107.6875
+207.0937042 17619.412109375
+212.1133881 26115.6796875
+215.0902863 27233.384765625
+218.1018372 44965.9375
+239.1103821 18540.810546875
+240.0958862 19146.197265625
+243.0863647 19898.2265625
+244.1179504 22383.66015625
+246.096756 632267.8125
+247.0996552 82295.09375
+257.1224365 106630.59375
+260.1128235 119576.5859375
+261.1169128 21138.91796875
+266.6023254 15005.525390625
+270.0964966 128240.546875
+278.1160889 18554.205078125
+278.1474609 17640.87109375
+283.142395 40756.51171875
+287.1230164 154050.828125
+288.1070862 1701095.0
+289.1097717 283513.4375
+290.1116638 20489.505859375
+295.1498108 37433.25
+302.1309814 23420.103515625
+303.1441345 32967.3515625
+305.1335754 3335023.5
+306.1187134 1251070.125
+307.1208801 209794.265625
+308.120636 22241.537109375
+311.1342163 67519.5234375
+312.1174927 44851.28125
+321.1538086 403448.28125
+322.1563721 62891.1015625
+323.144043 1145260.0
+324.1466675 181824.515625
+325.1502075 25925.884765625
+328.1617126 24110.591796875
+329.1431885 64868.93359375
+338.1419678 47419.28515625
+338.1800537 407120.09375
+338.6421204 20949.0234375
+339.183075 72957.6328125
+341.1421814 18038.720703125
+359.1427612 54756.28125
+366.1852112 130638.546875
+367.1870422 27460.033203125
+376.1700439 129385.453125
+377.1552734 83886.2890625
+386.1631775 38316.91796875
+394.180603 757738.375
+395.1828918 153387.84375
+412.1876526 20442.3125
+420.6822205 19016.1640625
+434.179657 16400.986328125
+450.2055664 18148.041015625
+460.1895447 27793.712890625
+468.2210388 44843.06640625
+469.2182617 23992.4765625
+477.2213745 26143.99609375
+478.1993713 16367.2431640625
+484.2165833 21005.890625
+485.24646 250631.875
+486.2478943 63108.484375
+488.1854248 41871.67578125
+492.2295227 199212.921875
+492.7290344 97684.171875
+493.2323914 34278.46875
+494.7056885 17929.201171875
+495.2269287 54705.06640625
+503.2207642 27549.416015625
+505.2112427 58262.55859375
+506.2059937 52486.58203125
+512.2254639 65488.57421875
+520.739563 22524.439453125
+521.2348633 29645.359375
+521.7356567 16474.8671875
+523.2209473 562248.0625
+524.223877 138120.703125
+525.2329102 46588.94921875
+529.7462769 17941.244140625
+555.2505493 26604.46875
+558.743103 33807.22265625
+567.2565918 27711.646484375
+571.7471313 70899.390625
+572.2734375 334818.59375
+572.7539673 32370.607421875
+573.2786865 110225.828125
+575.2645264 18768.26953125
+576.258667 46286.01953125
+576.7629395 26098.302734375
+577.2594604 28893.65625
+580.2612305 92745.578125
+580.7542725 2640058.25
+581.2556152 1890261.875
+581.3355713 30785.53125
+581.3657227 27264.671875
+581.7570801 674489.0625
+582.2574463 168129.140625
+589.265564 93644.8515625
+589.7662354 77842.125
+598.2764282 45755.26953125
+598.7723999 44004.5546875
+599.7763062 77521.8359375
+606.2554321 46503.08203125
+607.2520752 33051.77734375
+624.2664185 73169.703125
+673.3226929 425690.75
+674.3264771 184185.6875
+675.3313599 23532.140625
+693.2879028 25981.220703125
+711.2960205 18972.40234375
+802.3636475 115787.25
+803.3665771 35711.73046875
+873.3974609 108597.875
+874.4060669 49319.65625
+875.3998413 23254.111328125
+1001.446655 37775.92578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.251.251.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=251"
+RTINSECONDS=27.08803395
+PEPMASS=598.27001953125
+CHARGE=2+
+52.4287262 12798.0107421875
+53.91488647 12365.9326171875
+58.13422775 11008.279296875
+58.84139633 10896.15234375
+64.52613831 52659.6875
+64.53043365 43221.80078125
+64.5819397 43456.078125
+64.58613586 29602.501953125
+67.34849548 12224.796875
+74.69091797 12866.8544921875
+82.05395508 17078.830078125
+88.60395813 11547.6787109375
+135.6130219 12211.4453125
+149.5759888 34928.3671875
+167.0920105 41301.07421875
+169.0596161 31009.4453125
+175.1176147 299918.375
+177.0755768 62804.7578125
+178.0437622 23448.78125
+178.0597839 316209.40625
+178.3458099 77896.3046875
+179.062561 25330.083984375
+179.0918732 20163.875
+182.0917969 15545.140625
+186.0861053 107438.859375
+194.1020355 41958.60546875
+195.0862427 3967936.5
+195.1032104 68322.8515625
+196.0889893 391795.40625
+197.0919342 24269.0078125
+200.1011658 26697.318359375
+201.0858002 22844.412109375
+206.0910492 151525.59375
+212.1122589 17826.0859375
+213.0861359 14930.796875
+215.092453 18642.5390625
+218.1018219 50568.4296875
+233.1252899 17239.921875
+240.0957794 30085.951171875
+244.1158142 15920.1669921875
+246.0966797 635088.625
+246.1208954 11552.1064453125
+247.099411 67133.40625
+249.0978241 17744.8125
+257.1225586 112313.8984375
+258.1272583 16617.58203125
+260.1125488 125102.4375
+261.1166687 18733.484375
+270.0964966 122292.7578125
+271.1025391 14900.962890625
+278.1492615 31881.52734375
+283.1419067 56434.796875
+287.1234436 157851.65625
+288.1070557 1658794.125
+289.1095581 226760.5625
+290.112854 18358.046875
+295.1499329 20315.13671875
+303.1429138 35110.6953125
+304.12854 19776.990234375
+305.133606 3078289.75
+306.1188354 1097457.25
+307.1213074 176909.515625
+308.1222839 24246.412109375
+311.1342468 57102.953125
+312.1170959 41269.3203125
+321.1535645 335565.90625
+322.1562195 63521.6484375
+323.144104 1034307.0
+324.1463318 177539.6875
+325.1528931 17477.685546875
+328.1611328 14207.1767578125
+329.1427612 48035.921875
+330.1479492 14222.1552734375
+338.1417236 43410.94140625
+338.1801758 399073.3125
+338.6441345 18878.109375
+339.1829224 73885.5078125
+341.1477051 13456.2158203125
+347.146637 16431.2421875
+349.1595764 16960.697265625
+351.1315308 20450.171875
+359.1436768 66249.78125
+366.1859131 126819.125
+367.1881104 23210.78515625
+369.13797 32000.70703125
+376.170166 133687.484375
+377.1556091 76265.6640625
+386.1649475 24773.83984375
+389.1544495 16615.28515625
+394.1804504 700693.625
+395.1820068 151767.703125
+396.1851807 14227.048828125
+398.1681824 20725.958984375
+412.1871033 33483.08203125
+413.162262 16349.8974609375
+420.6836243 22807.28125
+421.1860962 14128.609375
+460.194458 18565.013671875
+468.2205505 46610.7421875
+469.216217 14469.5732421875
+477.2218628 15095.0419921875
+483.7175903 16013.8505859375
+485.2468567 211899.390625
+486.2501831 54666.01953125
+488.1858215 54606.02734375
+492.2281494 167386.09375
+492.7294312 101486.65625
+493.2286377 29793.888671875
+495.2258911 57299.43359375
+503.2180786 25090.603515625
+503.7159729 26433.68359375
+505.210968 40367.640625
+506.2039185 48247.65625
+512.2264404 62649.54296875
+512.7245483 29797.25
+513.230896 23022.451171875
+520.7377319 18408.673828125
+521.2314453 46327.7265625
+521.7330322 16931.32421875
+523.2210083 433660.8125
+524.2226562 114896.2734375
+525.232666 17156.31640625
+529.7437744 14180.7666015625
+554.2697754 16090.5859375
+555.2557983 22694.578125
+558.7495728 28049.08984375
+563.2436523 19276.68359375
+571.7511597 114511.3046875
+572.2730713 326768.5625
+572.7519531 27392.408203125
+573.2779541 99540.9765625
+576.256958 32648.380859375
+576.7648315 25505.625
+577.2696533 19171.861328125
+577.7645264 14412.01171875
+580.2647705 79035.2734375
+580.7541504 2245817.0
+581.2553711 1470343.375
+581.3377686 21619.462890625
+581.3666992 23831.0625
+581.7573853 514431.15625
+582.2585449 105663.546875
+589.2684937 29353.208984375
+589.7664185 16311.0693359375
+598.2738647 37775.91015625
+598.7807617 16944.908203125
+599.2736206 59330.46484375
+599.7761841 84342.7734375
+606.2562866 31413.8828125
+624.2686157 42548.078125
+655.3110352 18045.349609375
+673.3232422 380858.21875
+674.3248291 125036.0546875
+675.3283691 33819.56640625
+711.3008423 30492.404296875
+802.3626099 79595.828125
+803.3644409 21879.54296875
+873.3984985 80830.21875
+874.4005737 37481.14453125
+1001.462158 25535.259765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.252.252.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=252"
+RTINSECONDS=27.19868146
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52633667 64123.7109375
+64.53051758 39201.33203125
+64.58197021 47110.95703125
+64.58614349 35124.6015625
+64.63819885 21321.908203125
+74.81175995 20400.80859375
+82.05428314 16700.962890625
+149.5687561 56946.9140625
+161.8262939 18151.875
+167.0922089 41891.7890625
+169.0595093 27845.951171875
+175.1019287 29363.013671875
+175.1177673 328098.03125
+177.0759888 60041.0859375
+178.04422 17217.748046875
+178.0600281 336295.875
+178.3478851 93672.25
+179.0631409 46350.03515625
+182.0909576 20286.853515625
+183.0744171 34073.1640625
+186.0861511 125721.1953125
+187.0912323 17313.181640625
+194.1028748 38310.84765625
+195.0863647 4479419.0
+195.1280518 37255.71484375
+196.0891418 426442.25
+197.0902557 31451.615234375
+200.1015778 27657.05078125
+201.0861359 17550.607421875
+206.0909729 150755.75
+207.0929718 19027.369140625
+212.1143188 15914.5810546875
+215.0905914 17697.5390625
+218.1023254 51050.5546875
+235.9273834 14949.509765625
+246.0969086 653541.75
+247.0996399 93486.6875
+257.122467 108593.4453125
+258.1227112 22636.3828125
+260.1126709 115604.796875
+270.0965271 125036.6328125
+277.1359558 19910.75
+278.1480103 21595.591796875
+283.1437073 53440.35546875
+287.1236572 168780.953125
+288.1072693 1651999.875
+288.1600037 26454.033203125
+289.1103821 245247.0
+290.1117554 26245.119140625
+303.14151 28092.44921875
+305.1337891 3357015.5
+306.118988 1201774.625
+307.1208191 219175.875
+311.1365662 43728.05078125
+312.1178589 41480.19921875
+321.1537476 332197.28125
+322.1564331 73303.1015625
+323.1442871 1160917.75
+323.1891174 31007.111328125
+324.1462708 188648.859375
+325.1445618 17414.515625
+329.1437988 60775.765625
+331.1474915 27389.890625
+338.1416626 60007.1171875
+338.1804504 422274.1875
+338.6447754 23059.552734375
+339.1833191 82262.5625
+341.1427917 20451.046875
+359.1455994 48862.2578125
+366.1853333 122890.65625
+367.1873169 25545.76953125
+376.170105 102075.0078125
+377.1575623 91631.6484375
+386.1664429 27234.3984375
+394.1200256 21775.630859375
+394.1807251 761526.9375
+395.1828613 183319.1875
+396.1863098 25102.814453125
+397.6830444 19780.068359375
+412.1897583 28151.80859375
+413.1636047 19572.400390625
+420.6827698 32536.28515625
+468.2202759 66704.9375
+477.2145691 20979.7734375
+478.2015381 23278.912109375
+485.247406 206531.875
+486.2503967 69220.40625
+488.1856079 44792.6953125
+489.1947632 17437.548828125
+492.2294006 157983.734375
+492.7281189 96101.265625
+493.2319031 32165.009765625
+495.2267761 66610.9609375
+503.717041 21012.33984375
+505.2105408 68595.6640625
+506.2064209 53699.12890625
+512.2248535 42736.30078125
+521.2363281 32786.78125
+523.2216797 487002.375
+524.225647 130654.359375
+554.2697144 19425.12890625
+555.2559204 23701.7578125
+558.7385864 23951.455078125
+567.2576294 22236.73828125
+571.7462769 70915.53125
+572.2745361 339267.8125
+573.2783203 109047.1171875
+576.2635498 58042.5390625
+576.7637329 32349.41015625
+580.2625122 90838.6328125
+580.7544556 2356734.0
+581.2556763 1690383.0
+581.3356934 30289.853515625
+581.3654785 29002.396484375
+581.7570801 634207.5625
+581.8396606 10910.3349609375
+581.864502 24189.041015625
+582.258667 126723.0078125
+589.2667236 101335.0859375
+589.7668457 85110.65625
+598.2745361 33324.515625
+598.7755737 44336.6171875
+599.2802124 31259.994140625
+599.78125 57814.63671875
+606.255249 46060.33984375
+624.2703857 35583.1875
+625.2685547 21764.326171875
+655.3183594 26784.220703125
+673.3231812 432150.15625
+674.3250732 142883.875
+693.296936 28469.841796875
+711.2982178 31084.962890625
+802.3632202 93908.03125
+803.3659668 47797.23046875
+804.3695679 22967.3359375
+858.3703613 18684.3828125
+873.3983765 100658.4140625
+874.3984985 60008.98046875
+1002.461304 25047.1484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.253.253.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=253"
+RTINSECONDS=27.30597112
+PEPMASS=598.27001953125
+CHARGE=2+
+56.59703827 12429.59765625
+57.80209351 13267.9267578125
+58.13744736 12291.888671875
+64.52638245 56679.078125
+64.53068542 37912.5078125
+64.58226776 30355.80859375
+64.58618927 25171.50390625
+74.8120575 14150.599609375
+74.81642151 12473.51171875
+75.05506897 13541.763671875
+78.80786896 11665.2939453125
+110.5897598 11710.2841796875
+149.5619812 22595.189453125
+149.5761566 34076.37109375
+167.0920868 42491.56640625
+169.0600891 20247.955078125
+175.1180267 300311.8125
+176.1220093 15576.681640625
+177.0757904 71101.09375
+178.0601501 351286.09375
+178.0782166 18085.396484375
+178.3349915 40531.96875
+178.3540039 38751.2109375
+179.0636902 28886.53515625
+179.0923615 15813.3291015625
+182.0904999 18427.55078125
+183.075592 16949.818359375
+186.0860748 94433.109375
+190.0594635 13170.7841796875
+190.1069336 14711.353515625
+194.1023254 39287.53515625
+195.0865631 3837419.0
+195.1281281 17487.07421875
+196.0893707 377513.1875
+197.0922852 24042.142578125
+200.1026001 20930.16796875
+201.0863495 25180.486328125
+205.0597839 14530.2412109375
+206.0912933 157405.0625
+209.1016693 16282.0888671875
+215.0930176 15750.13671875
+218.1022797 47205.2421875
+222.0852356 18919.98828125
+234.0964661 18963.177734375
+239.114212 16685.8125
+240.0956573 24274.361328125
+243.0840912 28486.53125
+246.097229 645581.375
+247.0995636 85371.9453125
+249.8067322 12894.060546875
+257.1229858 105367.84375
+258.1262207 18524.50390625
+260.1130371 113421.9140625
+266.1219482 14954.677734375
+270.0968323 122092.2109375
+271.1030579 15510.4130859375
+276.1355896 13914.501953125
+278.1506042 15048.0166015625
+283.1421814 40091.7421875
+287.1234741 154072.53125
+288.107666 1611342.375
+289.110199 242401.140625
+290.1127319 16605.12890625
+294.1161804 21522.6953125
+295.1482544 15685.1767578125
+303.1450806 27973.95703125
+305.1342773 3055963.5
+306.1193848 1147763.75
+307.1217041 160416.3125
+308.1249084 17068.41015625
+311.134491 49577.49609375
+312.117157 34763.91796875
+321.1542358 322690.5625
+322.1569824 60038.94140625
+323.0988464 27687.998046875
+323.1114502 18367.41015625
+323.1447754 1123124.5
+324.1469727 167137.125
+325.1513672 17337.3125
+329.1438293 45688.3125
+338.1425171 45037.41015625
+338.1809692 411362.59375
+338.6461792 23001.90234375
+339.1828613 72665.71875
+346.1706238 15010.046875
+347.1499939 14786.4921875
+348.9174805 12889.6650390625
+349.1601257 24210.91015625
+351.1316528 22097.96875
+359.1460266 60774.1484375
+366.1873169 97908.125
+367.1886902 15786.6982421875
+369.138855 33883.83203125
+376.1712646 114076.4765625
+377.1578979 64358.13671875
+386.1657104 30231.591796875
+394.1812744 695117.6875
+394.2411194 22287.95703125
+394.2673645 15426.7197265625
+395.1828308 151066.0
+396.1856995 16180.8818359375
+397.6816711 16286.111328125
+412.0777893 11996.1123046875
+412.1891479 29680.359375
+421.1828613 16451.6875
+428.1994019 15106.685546875
+460.1956177 23773.71484375
+464.1809692 14276.5634765625
+468.22229 49616.80859375
+469.2218933 16709.017578125
+477.2228699 18073.1875
+478.1984558 21036.05859375
+485.247467 209304.703125
+486.2518616 64504.1953125
+488.1859436 48471.875
+492.2298279 153546.453125
+492.730896 106046.7421875
+493.2291565 29522.048828125
+495.2301331 48390.21484375
+496.2277832 18122.337890625
+503.7124023 20800.3984375
+505.2128601 59321.04296875
+506.2034912 38356.5703125
+507.2053833 17248.509765625
+512.2263794 24261.310546875
+512.7296143 17914.34375
+521.2307739 27584.509765625
+521.7393799 19223.34765625
+523.2229614 430509.5625
+524.2260132 122324.1875
+525.229248 25759.55078125
+529.7427979 13245.9267578125
+555.2605591 16651.134765625
+558.7502441 22983.068359375
+559.2468262 21211.72265625
+571.7503052 87779.0
+572.2753906 293331.65625
+572.7437134 18551.197265625
+573.2792358 96827.1015625
+574.2833862 19579.83203125
+576.2644653 39204.1171875
+576.7692871 22475.6796875
+580.2608032 67814.203125
+580.7561646 2049867.25
+581.256897 1340750.5
+581.6808472 10553.7412109375
+581.7589111 501105.3125
+582.2602539 86103.578125
+589.2654419 33639.9140625
+598.2738647 46982.72265625
+598.7775879 29591.25
+599.2752686 34429.90625
+599.7778931 66315.2265625
+606.2571411 29317.892578125
+624.2661743 53795.44921875
+655.3096924 20528.033203125
+673.1964111 22058.828125
+673.3253174 350128.1875
+674.3278809 160387.140625
+675.3334351 31111.275390625
+711.305542 18760.8359375
+802.364624 96516.28125
+803.3667603 46471.8515625
+873.4016724 61221.71875
+874.4055176 50144.0078125
+1002.444885 14396.8818359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.254.254.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=254"
+RTINSECONDS=27.41688472
+PEPMASS=598.27001953125
+CHARGE=2+
+60.7007103 15166.5263671875
+64.5262146 64973.02734375
+64.53071594 55679.9921875
+64.58203888 52666.94921875
+64.58622742 30747.626953125
+64.63800049 25029.37890625
+66.65432739 13828.2587890625
+66.85340881 13414.7939453125
+83.7033844 15806.4931640625
+98.22658539 14028.3681640625
+100.5437012 13158.3603515625
+139.0405884 13608.07421875
+149.567215 61954.79296875
+163.2019348 14132.625
+167.0917511 33030.23046875
+168.4211273 17387.0625
+169.0594177 25935.607421875
+175.1179657 304611.6875
+177.0759125 63163.203125
+178.0601501 325986.53125
+178.0783234 22819.166015625
+178.0968323 14640.2685546875
+178.3426819 100232.046875
+179.0625916 33546.0859375
+179.0918121 23343.716796875
+182.0916595 17944.5625
+183.0760956 25960.732421875
+186.0865326 101477.28125
+186.6027222 15517.2763671875
+190.1083374 19354.85546875
+194.1027069 34411.40234375
+195.0865479 4271028.0
+196.0893555 428765.09375
+197.0905914 21388.93359375
+200.1022644 19120.861328125
+203.1624908 14848.162109375
+206.091217 175693.359375
+206.7969055 13743.5888671875
+212.1123199 28393.673828125
+218.1020966 58137.0703125
+222.0843506 17329.84765625
+240.0964203 24893.58203125
+246.0971222 656324.0
+247.1001892 75803.7578125
+249.0964508 17980.3359375
+256.7503052 14712.111328125
+257.1227417 94812.6484375
+260.112915 103344.71875
+270.0974426 128403.5703125
+276.1360168 20539.279296875
+278.1166382 15751.3330078125
+278.1484985 37032.25
+283.1428833 45251.375
+287.1237183 162707.796875
+288.0764465 18506.4921875
+288.1075745 1564558.25
+289.1105042 201554.4375
+295.1529541 26485.19921875
+303.1442566 29470.89453125
+305.1342163 3256180.25
+306.1194153 1131047.75
+307.121582 187157.71875
+311.1351624 51140.171875
+312.1174316 29942.080078125
+321.1542053 327821.84375
+322.1587524 73063.921875
+323.1447144 1147005.75
+324.1465454 169257.109375
+325.1491089 17696.2890625
+329.1447449 29639.642578125
+338.1427002 43744.68359375
+338.1809692 358194.625
+338.6467896 16966.25
+339.1419678 20489.431640625
+339.1838989 66426.90625
+351.1285095 19828.3671875
+359.1458435 53622.83203125
+366.1863708 123387.6640625
+367.1886597 18489.11328125
+369.1384888 23643.6875
+376.1705627 123521.7578125
+377.1567688 75743.40625
+387.1638794 16954.05078125
+394.1813049 702194.4375
+394.239563 29136.55078125
+395.1836548 149277.265625
+396.1820679 22573.9453125
+412.1907654 44171.08984375
+421.1869507 14973.3125
+460.190155 23780.01953125
+468.219696 56292.17578125
+485.2481079 200386.078125
+486.2513123 60824.546875
+488.1835632 44721.64453125
+492.2297058 150091.765625
+492.7287598 80938.375
+493.2359619 32290.59765625
+495.2281189 43195.96875
+505.2128601 52825.26171875
+506.2077942 31250.69140625
+512.2272339 29462.775390625
+523.2230835 446249.5
+524.2261353 129083.203125
+525.2254639 30841.74609375
+528.4503174 17440.49609375
+558.742981 20532.92578125
+559.2415161 25741.0234375
+571.7501831 72751.71875
+572.2756348 301699.53125
+572.7591553 24361.310546875
+573.2791138 107382.7421875
+574.2816772 25107.95703125
+576.2633057 64315.2890625
+576.7648926 34028.16015625
+580.2631226 68219.0546875
+580.7557373 2416707.0
+581.2572632 1703522.875
+581.6497803 22799.419921875
+581.6707764 12228.802734375
+581.758728 705118.125
+581.8636475 23494.044921875
+582.2605591 104568.328125
+589.2665405 105785.21875
+589.7684326 64002.03515625
+598.2745972 47754.47265625
+598.7720947 36304.30078125
+599.7785645 72855.5234375
+606.2602539 24985.21484375
+624.269165 76861.5
+625.2631226 23230.12890625
+655.3167114 23232.224609375
+673.3250732 418151.5
+674.3276978 161319.84375
+675.3324585 18987.9921875
+693.286499 25872.681640625
+802.3641968 91318.5
+803.3641968 40798.0703125
+873.4021606 77594.171875
+874.3961182 41174.8984375
+875.3947754 21327.220703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.255.255.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=255"
+RTINSECONDS=27.52454274
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91482925 14323.0771484375
+57.6605835 14616.7705078125
+61.29958725 11898.3076171875
+64.52619934 63937.60546875
+64.53067017 50958.875
+64.58197784 41392.73046875
+64.58613586 34211.1328125
+64.63815308 15738.625
+64.64144135 16133.7607421875
+82.05426788 18615.337890625
+82.760849 16886.248046875
+149.5672302 55456.6796875
+167.0918274 37121.98828125
+169.0594635 24369.921875
+175.118042 262042.484375
+176.1207733 20947.228515625
+177.075943 65810.9296875
+178.0600433 338184.0
+178.3424225 81870.5
+179.0634918 43025.8125
+179.0918884 33436.1484375
+182.0908508 21382.62109375
+183.0756531 26941.890625
+186.0860901 112632.7578125
+194.1017914 40455.50390625
+195.0864258 4110301.25
+196.0892944 427654.1875
+197.0923157 38630.60546875
+200.1023407 23559.013671875
+201.0858612 24936.162109375
+206.0910339 151667.15625
+212.1125946 15497.8828125
+218.102005 53893.49609375
+233.1264954 20020.5703125
+234.0980377 17645.833984375
+240.0958405 24713.79296875
+243.0858917 29620.154296875
+244.1169434 19606.62109375
+246.0744781 10791.828125
+246.0970764 628195.4375
+247.098587 61053.23828125
+249.0962372 16413.49609375
+257.1229858 105288.671875
+260.1121216 110382.1796875
+270.0973511 127800.9375
+271.1004028 17247.990234375
+278.1487427 25766.4453125
+283.1428528 41316.875
+287.1236267 159115.296875
+288.0778503 19946.04296875
+288.1075439 1552176.375
+289.1102295 205015.390625
+295.1479187 20171.134765625
+303.1426392 28013.455078125
+305.0512695 20966.51171875
+305.1341553 3203469.5
+306.0594177 19045.462890625
+306.1193542 1104241.125
+307.1216431 192388.609375
+311.1360168 43883.3828125
+312.1169128 42023.87109375
+321.15448 335833.25
+322.1576233 56649.44140625
+323.0985718 25754.001953125
+323.1445312 1158127.25
+323.1886292 33474.22265625
+324.1470032 183951.125
+325.1555786 18310.453125
+328.1613464 18569.396484375
+329.1452332 51227.37890625
+338.1427002 43573.2578125
+338.1808472 397338.5625
+338.6460266 19244.697265625
+339.1831665 67490.6484375
+341.1446838 17598.59375
+346.1727295 19707.90234375
+347.1505432 25643.232421875
+349.162262 23410.666015625
+359.14505 68242.8828125
+365.836792 15357.685546875
+366.1871033 137334.703125
+367.1904602 26622.14453125
+368.1486511 20340.443359375
+369.1380615 37003.46484375
+376.1703796 117512.546875
+377.1572571 76578.6171875
+386.1643677 24463.158203125
+394.181366 701313.375
+394.2401733 23303.384765625
+395.1828918 162638.40625
+412.1920471 23476.49609375
+468.2227783 45306.203125
+469.2211304 19078.115234375
+477.218689 22332.091796875
+483.7157288 21228.998046875
+485.2481079 209477.3125
+486.2491455 40712.66015625
+488.1856995 37029.765625
+492.2294617 145678.03125
+492.730835 83307.2265625
+493.2336731 44573.75390625
+495.2243652 53452.78515625
+503.2192688 17609.388671875
+505.2118835 37430.69140625
+506.2031555 49957.74609375
+506.7262878 17764.380859375
+507.2041321 16013.869140625
+512.2313232 45082.32421875
+512.7293701 23526.958984375
+520.7431641 17423.18359375
+521.2327881 24656.9921875
+521.7381592 23909.12109375
+523.2227173 453583.90625
+524.2243652 114263.2265625
+525.2380981 24591.08984375
+525.4158936 16463.236328125
+558.7441406 19499.70703125
+571.7486572 85468.5
+572.2753906 323705.375
+572.7557983 18861.69921875
+573.2825317 88734.2109375
+574.27771 17430.546875
+576.2609253 43249.265625
+576.7615967 43413.62890625
+577.7676392 25547.798828125
+580.2642822 87924.140625
+580.7563477 2366041.25
+581.2573242 1637383.5
+581.7593384 611802.125
+582.2583008 88573.546875
+588.2508545 17578.259765625
+589.2702026 82945.7109375
+589.7613525 25802.6015625
+598.2741089 57796.9453125
+598.7769165 42059.51953125
+599.2797852 25390.65234375
+599.7802124 56413.765625
+606.2581787 33616.28515625
+607.251709 24379.0078125
+624.2696533 47685.31640625
+673.3259277 466516.0
+674.3270264 134186.515625
+675.3262329 24055.7109375
+693.2924805 20475.55859375
+711.3005981 17696.2109375
+802.3671265 108086.078125
+803.3716431 47972.51953125
+873.3997192 119127.734375
+874.4089355 47039.1171875
+1001.458435 28591.498046875
+1168.99585 16789.443359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.256.256.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=256"
+RTINSECONDS=27.63383395
+PEPMASS=598.27001953125
+CHARGE=2+
+50.15011978 16754.052734375
+58.13454819 19415.138671875
+58.13737106 21331.564453125
+64.52623749 71690.296875
+64.53045654 39199.9453125
+64.58226013 45440.921875
+64.58624268 38256.30078125
+74.81577301 19799.560546875
+75.25852203 21401.91015625
+82.05421448 20680.373046875
+140.4244995 17903.97265625
+149.5682678 75621.0390625
+167.0917358 51139.26953125
+169.0586243 30385.14453125
+175.1177521 272827.4375
+176.1215668 29623.01171875
+177.0762787 61983.921875
+178.0600739 329568.5625
+178.3322144 38337.08203125
+178.3509369 94514.9765625
+179.4670715 18343.41015625
+183.0759277 19395.724609375
+186.0862579 118714.0078125
+194.1035614 45617.81640625
+195.0864868 4648337.0
+196.0894318 434520.6875
+197.0906372 19452.1875
+200.1020203 46729.2734375
+206.0908966 145075.703125
+207.9933014 18538.06640625
+212.1042633 17914.2734375
+218.1022797 66481.640625
+234.0980682 21785.001953125
+239.1147461 20788.328125
+240.0939178 29217.66015625
+246.0970764 681185.6875
+247.0997772 84093.875
+257.1227112 135479.921875
+260.1126404 132206.96875
+270.0970764 124852.3828125
+278.149292 35087.51953125
+283.1425171 51938.6640625
+287.123291 136827.234375
+288.1075439 1624936.5
+289.1104126 238934.25
+290.1135559 25119.572265625
+294.1140747 25529.095703125
+303.1457825 25889.826171875
+304.1262817 18764.3203125
+305.1340942 3465555.0
+306.1193848 1219051.875
+307.12146 221490.828125
+308.125824 23545.142578125
+311.1361694 60361.015625
+312.1156311 43572.91015625
+321.1539612 340600.96875
+322.1580811 83986.3125
+323.1445618 1252158.375
+323.1884766 46883.859375
+324.1467896 225172.359375
+329.1443787 45958.30078125
+338.142395 50636.6484375
+338.1805115 427806.09375
+339.1835327 91183.328125
+347.146637 39761.89453125
+349.1623535 22226.392578125
+359.1433105 66078.3125
+366.1856689 107992.75
+367.1863403 22184.162109375
+368.1515808 22613.599609375
+369.1394348 33376.27734375
+376.170166 110484.828125
+377.1574402 78022.8125
+378.1600952 24629.59765625
+386.1659851 31122.970703125
+394.1810608 796542.9375
+395.182312 163344.234375
+396.1858521 22316.8125
+420.6802368 30214.7421875
+468.2221069 43342.2734375
+469.2254333 22834.736328125
+485.2477722 237224.8125
+486.2545166 53107.7265625
+488.1870728 68359.1015625
+492.2294922 138846.6875
+492.7304382 105349.734375
+495.2316284 50792.265625
+505.213562 71594.578125
+506.2034302 45362.62890625
+512.2313232 44445.9609375
+512.7307739 32630.990234375
+513.2333374 22511.69140625
+521.2330322 36688.15234375
+523.2223511 580028.0625
+524.2254639 191204.046875
+525.2241211 28486.115234375
+554.2631836 21405.841796875
+567.2579346 27382.322265625
+571.7543945 60705.94921875
+572.2765503 330100.03125
+573.2799072 99543.6015625
+576.262085 73971.3203125
+576.7606812 27137.013671875
+577.2609253 45304.63671875
+580.2632446 123072.328125
+580.7553101 2512893.75
+581.2567139 1804988.375
+581.3676758 30003.1796875
+581.7584229 766793.75
+582.2583618 128946.109375
+589.2683105 216436.859375
+589.7677002 124224.7890625
+590.2680054 40301.6796875
+598.2739258 57061.34765625
+598.7807007 46072.3359375
+599.776123 39895.1796875
+606.2588501 42809.84765625
+624.269165 51516.046875
+625.2727661 26672.52734375
+656.3081055 23855.291015625
+673.3249512 479754.03125
+674.3297119 183659.59375
+675.3253784 29925.61328125
+693.2926636 32677.701171875
+802.3643799 126349.7890625
+803.3675537 59422.4453125
+845.0025635 19251.4375
+873.3986816 110201.21875
+874.4037476 31658.84765625
+1058.450073 26051.025390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.257.257.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=257"
+RTINSECONDS=27.73896411
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13437271 11851.4296875
+64.52626801 44160.74609375
+64.53066254 35893.31640625
+64.58205414 35225.6328125
+64.58620453 19787.37109375
+64.63819885 15803.4638671875
+74.3134079 10048.5712890625
+96.20386505 9151.0517578125
+101.0915298 10887.19921875
+107.9375 10879.9912109375
+110.6978226 10799.3310546875
+149.5683289 40958.9140625
+160.019577 9103.224609375
+167.0919952 39633.2734375
+169.0592194 25207.8515625
+175.1180267 276226.4375
+175.1356506 13716.1611328125
+177.0760651 73416.0078125
+178.0602112 312012.875
+178.0782471 17824.158203125
+178.3325806 22245.6796875
+178.3520203 51480.01953125
+179.0633545 17474.68359375
+179.0918579 20235.2578125
+183.0753937 29693.53515625
+186.0861664 102335.9375
+190.1072388 12502.07421875
+194.1030121 37708.421875
+195.0650024 21675.419921875
+195.0865326 3465337.75
+196.0892944 347808.84375
+197.0914764 24339.263671875
+200.1014099 13535.0166015625
+206.0913544 159077.640625
+207.0950317 11648.5654296875
+215.0913544 18014.33203125
+218.1022491 41006.5078125
+222.0860443 16782.509765625
+223.0945892 10823.3935546875
+234.0975647 21621.759765625
+240.0955048 21024.41015625
+243.086731 18729.140625
+246.0971375 647330.4375
+247.099823 69178.4296875
+249.0962219 13372.8544921875
+257.1227722 87885.8984375
+260.1126709 116401.6171875
+261.1183777 20348.931640625
+267.109436 14144.7255859375
+270.0971069 98678.140625
+277.1385193 15462.732421875
+278.1489868 27754.9375
+283.1439819 41314.578125
+287.1236877 158499.328125
+288.107605 1504845.875
+289.1104736 254142.25
+290.112793 24163.046875
+302.1325989 11870.3828125
+303.1425476 28549.966796875
+304.1266479 12439.384765625
+305.1341553 2891405.0
+306.1194153 1008607.5
+307.1216125 163598.296875
+308.1261597 14333.234375
+311.1348877 41913.73828125
+312.117157 22367.8125
+318.1414185 14874.3212890625
+321.1541748 329052.3125
+322.1577148 67773.21875
+323.1445923 989526.6875
+324.1470337 157154.296875
+325.1523438 14458.95703125
+328.1596375 17975.572265625
+329.1439209 54573.953125
+338.1421814 49666.3203125
+338.1808472 323996.28125
+338.6463318 28801.232421875
+339.1829224 61650.63671875
+349.1604004 21971.64453125
+351.1330261 18169.7890625
+359.1448669 72699.4609375
+366.186615 120523.28125
+367.1898193 21595.654296875
+369.1376343 30072.5546875
+376.1705933 92930.609375
+377.1571045 84032.6875
+386.1669312 22525.203125
+394.1359253 14511.93359375
+394.1812744 606974.125
+394.2406921 23550.7421875
+395.1830444 126721.75
+412.1916504 34757.265625
+420.6869202 13324.6611328125
+460.1895142 23479.03125
+468.2221069 40161.10546875
+469.2153931 16827.677734375
+478.2041626 14565.32421875
+483.2247009 17744.1640625
+483.7149963 26307.134765625
+485.2476501 204546.109375
+486.25177 60077.2109375
+488.1854858 42561.18359375
+492.2296448 122695.1796875
+492.7307129 87928.796875
+493.2271118 29420.24609375
+495.2273865 53617.33203125
+496.2280884 17272.703125
+503.2166443 14374.125
+505.2125244 48433.1953125
+506.2069397 56319.25
+512.2247925 34662.02734375
+512.7306519 24242.46484375
+513.2318726 16038.775390625
+521.2304077 25497.193359375
+521.7383423 13925.712890625
+523.2224731 395776.875
+524.2254639 99490.6953125
+525.2297974 15936.5263671875
+529.7428589 18607.8515625
+555.2543335 19354.431640625
+558.7398071 23013.189453125
+571.7526855 68807.4140625
+572.2745972 251194.875
+572.7537231 23777.759765625
+573.2811279 84186.9921875
+576.2610474 33516.05078125
+577.2613525 29798.12890625
+580.262207 59006.44140625
+580.7553711 1735804.375
+581.2567749 1166726.25
+581.3672485 16765.482421875
+581.7584229 451437.15625
+582.2589722 80849.1796875
+598.2719727 48688.0
+598.7739868 30936.45703125
+599.2774658 48190.90234375
+599.7789917 59427.375
+606.258667 30128.283203125
+624.2693481 35928.75390625
+625.2791748 17810.36328125
+673.3250732 332937.53125
+674.3269043 101885.2421875
+675.3295898 22756.97265625
+693.2869873 19876.515625
+802.364502 64853.45703125
+803.3677368 26179.904296875
+873.4024048 71002.390625
+874.4070435 30463.912109375
+1001.446777 17766.130859375
+1058.468506 13331.7626953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.258.258.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=258"
+RTINSECONDS=27.85277808
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13442612 18649.134765625
+64.52622223 70009.0625
+64.53046417 42825.87109375
+64.58220673 30781.236328125
+64.58620453 27002.8359375
+64.63827515 18641.970703125
+64.64146423 15376.123046875
+70.69688416 13438.9951171875
+73.86489105 14402.2451171875
+74.81178284 16494.8671875
+74.91426086 13636.0927734375
+82.05379486 17408.873046875
+94.12299347 13088.6279296875
+113.0828476 13953.548828125
+149.5660095 48789.8984375
+167.0918579 41801.0625
+169.0592499 41434.01953125
+175.1178284 286465.0
+176.1215973 16755.138671875
+177.075943 62024.73046875
+178.0434418 28076.25390625
+178.0600891 314091.59375
+178.3455811 95583.0234375
+179.0639954 21778.943359375
+179.0916901 26920.080078125
+183.8644257 13691.267578125
+186.0860291 98326.640625
+190.0596619 17844.552734375
+194.1026917 38557.3046875
+195.0864716 4096725.0
+195.1278076 21269.15234375
+196.0891418 413553.34375
+197.0908051 29278.3359375
+200.101532 17267.46875
+206.0912323 174032.421875
+207.0929108 20738.53125
+215.0914612 21353.943359375
+218.1024933 61274.98828125
+233.1269073 14876.6796875
+234.0976257 17492.80078125
+240.0959778 37601.98828125
+244.1187592 23636.322265625
+246.0971069 636127.875
+247.1000977 76575.4609375
+257.1231384 104158.0390625
+260.1129456 93421.875
+261.116272 17767.814453125
+270.0966797 140637.8125
+271.099762 16918.587890625
+276.1331482 18594.919921875
+278.1166687 18815.0625
+281.0977478 19266.953125
+283.1420593 35542.2734375
+287.1236877 148519.046875
+288.107605 1605009.875
+289.1106262 201009.125
+290.1121826 26741.373046875
+294.1199341 17432.970703125
+295.1517944 14737.8837890625
+302.1305542 15502.0458984375
+303.1436462 24896.703125
+304.1271973 24692.4921875
+305.1342163 3319009.25
+306.1195679 1097349.25
+307.121582 176169.515625
+308.122406 22681.1484375
+311.1347351 61886.76953125
+312.1177979 38295.90625
+321.1544189 385047.28125
+322.157959 55307.46484375
+323.1447144 1117676.875
+324.146759 192864.484375
+325.151947 33570.2890625
+328.1607056 15780.634765625
+329.1445923 52807.30859375
+338.1424561 43243.63671875
+338.1809082 407131.96875
+339.1827087 84025.3671875
+347.1492615 34320.71875
+349.1546021 14758.490234375
+351.1316528 20419.638671875
+359.1429138 60495.1796875
+366.1864624 124577.421875
+367.1908569 18017.640625
+369.1392517 34633.4296875
+376.171051 126388.3671875
+377.1557922 76768.03125
+386.170929 22212.837890625
+394.1813049 707198.1875
+395.1832581 154465.875
+412.1921387 41295.640625
+420.6825256 23733.578125
+468.2226562 50901.01953125
+469.213623 19021.552734375
+477.2174683 17960.048828125
+478.2008667 17217.642578125
+485.24823 220751.328125
+486.2534485 74795.2265625
+488.1852417 29221.630859375
+492.2298584 178037.4375
+492.7312927 106076.46875
+495.2226562 40441.3984375
+503.2224121 21223.9609375
+505.2113953 46262.53125
+506.2008972 52072.6484375
+512.2276001 45534.46875
+512.7296143 33998.63671875
+521.2347412 17045.640625
+521.7372437 19295.6328125
+523.2228394 495889.40625
+524.2254028 123655.2421875
+525.229126 41028.76953125
+558.7463379 28342.427734375
+571.751709 89140.8984375
+572.2756348 327727.34375
+572.7527466 36788.09765625
+573.28125 102351.859375
+574.2811279 25505.560546875
+576.2636108 40191.3515625
+576.7640381 24114.10546875
+580.2637329 95740.046875
+580.7560425 2433811.25
+581.2572632 1463766.125
+581.3655396 26363.99609375
+581.7587891 598279.125
+582.2601929 69911.703125
+589.269104 70973.5859375
+589.7657471 43172.87109375
+598.2733765 63610.1640625
+599.2759399 24697.494140625
+599.7780762 65451.98046875
+606.2593384 28283.95703125
+624.2699585 63487.3203125
+655.3134155 18850.8671875
+673.3259277 382709.03125
+674.3284302 147548.65625
+675.3326416 32484.466796875
+711.3045044 19276.95703125
+802.3652344 91575.2109375
+803.3718262 37324.65234375
+873.4014893 109924.6484375
+874.4047241 53515.69921875
+1001.458252 26946.28125
+1058.482666 18163.302734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.259.259.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=259"
+RTINSECONDS=27.9614669
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13717651 12357.3251953125
+64.52614594 50446.0625
+64.53041077 37361.15234375
+64.5819397 39548.734375
+64.58612061 31103.107421875
+64.63813782 19063.224609375
+149.5671844 45087.046875
+167.0913696 45051.66796875
+169.0597839 31694.689453125
+175.117691 289627.375
+176.1204071 20138.669921875
+177.0757446 73329.296875
+178.0597687 342060.03125
+178.0774384 13738.3232421875
+178.3424988 80459.3125
+179.0637207 24265.302734375
+179.0915833 20179.654296875
+182.091095 17674.826171875
+183.0752869 29016.5234375
+186.0263062 13582.2822265625
+186.0859833 113215.828125
+194.1018677 41061.9921875
+195.0862732 3824821.75
+196.0890045 408160.375
+197.0919647 29791.4140625
+199.118454 16956.48828125
+200.1008148 17684.896484375
+201.0851593 15891.306640625
+206.0909576 145593.71875
+209.102356 14535.0361328125
+218.1017151 47328.78515625
+222.0860748 15933.09375
+234.0983429 19071.123046875
+240.096405 22476.59375
+243.0870819 15641.5517578125
+246.096756 624973.0
+246.1255798 25314.66796875
+247.0995789 76348.1953125
+249.0964813 21469.86328125
+257.1224976 92404.296875
+258.125061 17723.185546875
+260.1122437 115346.328125
+261.1150208 18073.921875
+267.1047668 12108.0673828125
+270.0967102 119416.8046875
+271.1013794 17191.16796875
+276.1320496 12649.0537109375
+278.1187439 17333.9765625
+278.1515198 28107.0859375
+281.1337891 11770.125
+283.1427612 47221.3671875
+284.120636 18634.052734375
+287.1233215 160730.75
+288.1071472 1489998.75
+289.1099243 227569.703125
+290.1125793 21549.53125
+294.1171265 15933.05859375
+295.1461792 14300.9619140625
+303.1434326 24362.390625
+305.133606 3056895.0
+306.1188354 1110650.75
+307.1207581 190427.09375
+311.1342468 42674.4296875
+312.1170654 25253.146484375
+318.142334 20022.7265625
+321.153595 322881.65625
+322.1563721 56019.98828125
+323.1440735 1054640.625
+324.1466064 160500.21875
+325.1492615 14515.00390625
+329.1433411 44502.62109375
+331.1530762 14711.0908203125
+338.1422119 50467.8046875
+338.1802368 379440.375
+338.6456604 29236.609375
+339.1826782 57074.69921875
+347.1493225 22810.46484375
+347.6485901 16588.775390625
+349.1589355 18170.669921875
+359.1434326 62950.1875
+366.1856384 123074.2890625
+367.1873779 16750.017578125
+369.1377258 25697.423828125
+376.1701965 92446.171875
+377.15625 63468.93359375
+378.1587219 13540.66015625
+386.165802 29769.798828125
+394.180603 623033.875
+395.1818542 137422.328125
+396.1853333 18139.880859375
+398.1679077 16809.49609375
+412.1880188 37315.6015625
+413.1713562 14445.9267578125
+420.6809387 16821.861328125
+460.1903687 18187.021484375
+468.2193909 41765.53125
+469.2221985 16143.1923828125
+483.7210083 27082.611328125
+485.246582 212009.53125
+486.250061 67107.5078125
+488.1856995 44603.3671875
+489.1887817 17995.810546875
+492.2289734 131367.65625
+492.7296143 88065.359375
+493.2286682 23226.40625
+495.2275696 46971.375
+503.7172852 20098.25
+505.2118835 43049.90625
+506.2097473 27889.8515625
+507.1965637 15270.5146484375
+512.2234497 14000.22265625
+512.7262573 23707.615234375
+513.2332764 15081.52734375
+521.2353516 34770.38671875
+523.2214966 418901.125
+524.223938 125499.0703125
+525.2296143 32867.4140625
+555.2608643 18102.63671875
+558.7484741 17827.548828125
+559.2469482 16962.068359375
+559.746521 19479.09375
+571.7505493 87306.828125
+572.2741089 288345.34375
+572.7527466 30937.408203125
+573.2797241 89439.6640625
+576.2595215 38044.296875
+580.2634888 43400.48828125
+580.7542725 1956559.5
+581.2554932 1384916.375
+581.335083 23339.44921875
+581.7572632 562393.375
+582.2589722 103286.7890625
+589.2636108 37999.70703125
+589.7700806 32494.8046875
+598.2700806 51087.84375
+598.7752686 29194.2421875
+599.2773438 27949.607421875
+599.7750244 60260.90234375
+606.2617798 17253.3671875
+607.2568359 15117.8291015625
+624.2687378 47880.8828125
+655.3112793 16733.09375
+673.3230591 366216.28125
+674.3253174 154152.046875
+675.3272705 35455.09375
+802.3638916 80150.0390625
+803.3631592 38747.0546875
+873.3979492 80596.328125
+874.402832 50505.54296875
+875.4052734 18571.62890625
+952.2052002 15832.9091796875
+1001.460693 30674.806640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.260.260.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=260"
+RTINSECONDS=28.07204725
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13431168 14213.154296875
+63.94538116 13600.951171875
+64.52622223 54884.125
+64.5304718 42172.625
+64.58198547 38346.68359375
+64.5861969 31016.4609375
+64.63809967 19383.28515625
+64.64151764 18324.03125
+74.81641388 16013.1640625
+82.05457306 12534.8896484375
+110.5821686 17188.619140625
+110.592598 12153.6318359375
+127.421257 13722.755859375
+141.4868622 13598.345703125
+149.5615692 19558.1640625
+149.5739136 46901.875
+167.0924225 33201.06640625
+169.0594025 45601.453125
+175.117691 327056.15625
+177.0755463 57648.40234375
+178.0597382 349341.78125
+178.0727844 7720.3642578125
+178.3465881 88130.421875
+179.0630646 18063.42578125
+179.0911102 15550.49609375
+182.0914764 20914.3828125
+183.0744781 23760.0390625
+186.0861664 117727.4375
+190.0598755 20969.7265625
+194.1025696 38807.95703125
+195.0863342 4161960.5
+195.1279297 19234.79296875
+196.0890808 407171.21875
+197.0919342 36887.6796875
+200.1017151 21772.396484375
+201.0849915 16934.978515625
+206.0910187 159074.0
+213.0851746 14812.646484375
+215.0909119 18791.130859375
+218.102066 53053.6640625
+234.095932 16518.173828125
+240.0957947 20553.2265625
+246.0968933 621909.0625
+247.0998993 72158.0234375
+257.1225586 81254.5234375
+258.1251221 22020.8671875
+260.1122437 112112.8046875
+261.1190186 19088.412109375
+262.1286926 16697.494140625
+270.0967407 119883.15625
+270.283783 16268.7509765625
+271.1004028 20849.7578125
+277.1372986 19872.80859375
+283.1423645 27357.671875
+284.1207581 18050.08984375
+287.1236267 172480.03125
+288.1073303 1705538.0
+289.1099243 235879.71875
+290.1138611 18218.849609375
+294.120575 20958.837890625
+295.1494751 28630.544921875
+303.1433716 22490.376953125
+305.1338196 3187703.0
+306.0596619 20542.09765625
+306.1191406 1132201.125
+307.1209717 201508.21875
+308.1210022 18596.076171875
+311.134552 50712.703125
+312.1174316 36872.8046875
+321.1539307 334817.5
+322.1564026 60146.54296875
+323.1443176 1152444.5
+324.1469727 195738.765625
+329.1438599 38200.50390625
+334.5070801 16510.953125
+338.1422424 49980.84375
+338.1804199 399998.59375
+338.641571 25063.140625
+339.1830444 82733.7890625
+347.1493835 22738.427734375
+349.1610413 15182.9697265625
+358.1625061 14581.4970703125
+358.4604797 14680.1552734375
+359.144165 65969.9921875
+360.1448059 17062.423828125
+366.1856384 122659.765625
+369.1380005 36945.40625
+376.1702271 113968.5546875
+377.1559753 90757.5234375
+386.1659241 18024.85546875
+394.1807556 756125.125
+394.2406921 29972.404296875
+395.1825256 154753.828125
+396.183075 18183.71875
+412.1853943 29783.94921875
+434.172821 18312.498046875
+460.1927185 22703.8203125
+468.2224731 54571.1171875
+469.2221375 20940.2265625
+477.2176514 18963.34765625
+483.7150574 20112.35546875
+485.247406 190344.40625
+486.2502136 56886.9453125
+488.1842957 41327.71484375
+492.2289429 154464.359375
+492.730896 121210.5078125
+493.2333679 30430.103515625
+495.226532 46392.078125
+503.7165833 24274.861328125
+505.2160645 43632.6171875
+506.2079773 57763.95703125
+512.2263794 34571.5078125
+512.7249756 31781.330078125
+521.2368164 20367.57421875
+523.2218018 486317.59375
+524.2247925 111379.390625
+525.2330322 21628.46875
+529.7470703 21196.318359375
+558.7443848 17364.927734375
+559.7451172 17762.4921875
+571.7485962 77970.609375
+572.2751465 313800.9375
+572.7476807 23936.0390625
+573.2801514 83942.890625
+574.2775269 21596.638671875
+576.258667 26393.03515625
+576.7633057 28382.78515625
+580.2624512 100482.4921875
+580.7550049 2347513.75
+581.2561646 1558789.125
+581.7579346 576899.8125
+582.2578735 110848.8515625
+589.269043 52755.98828125
+589.7660522 38338.4765625
+598.2741089 61991.46484375
+598.7728882 32038.681640625
+599.7746582 58439.5234375
+606.2515259 27511.953125
+624.2689819 51780.1015625
+673.3238525 407855.84375
+674.3269043 134730.4375
+675.3264771 25737.26953125
+711.2921143 27726.400390625
+802.362854 104739.65625
+803.3656006 45583.53515625
+873.3986206 86661.8203125
+874.4019165 52554.4140625
+1001.440369 18567.72265625
+1058.480835 20725.94140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.261.261.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=261"
+RTINSECONDS=28.18094566
+PEPMASS=598.27001953125
+CHARGE=2+
+63.5008316 14262.994140625
+64.15678406 16593.658203125
+64.52626801 67337.71875
+64.5304718 46973.4453125
+64.58202362 49447.21484375
+64.58618164 37371.9375
+64.64139557 15056.8955078125
+79.1582489 14758.5439453125
+79.43105316 17327.990234375
+82.05429077 22985.642578125
+126.4284744 15133.85546875
+134.907608 13560.0791015625
+149.5658112 55343.3359375
+167.0928345 41818.953125
+169.059967 35961.4296875
+175.1178894 262122.9375
+177.0754852 80794.671875
+178.0599518 368077.1875
+178.0734253 10528.1513671875
+178.3443909 110755.6953125
+179.0617523 24022.59765625
+179.092514 26841.96875
+183.0755157 29458.869140625
+186.0862885 115351.734375
+187.0928192 16091.4208984375
+190.1077728 22984.48828125
+191.1551056 17316.05078125
+194.1026917 36163.234375
+195.0863953 4471203.5
+196.0891876 442212.875
+197.0913544 19985.138671875
+200.102066 23352.42578125
+201.0844574 24455.28515625
+206.0911102 129451.328125
+212.1120605 20012.68359375
+217.1278839 20699.611328125
+218.1025085 69133.140625
+232.119278 17639.609375
+239.1126709 28755.35546875
+244.116684 17804.033203125
+244.8257904 16757.0078125
+246.0969238 686303.875
+247.0999451 95257.0234375
+257.1230774 103331.75
+260.1126099 105426.515625
+266.0063171 15590.646484375
+270.0968933 137769.828125
+278.1181641 18128.693359375
+278.1493835 24077.95703125
+283.1425781 46894.34375
+287.1231079 173436.265625
+288.1073303 1657333.625
+289.1102295 240196.296875
+290.1106567 21722.14453125
+295.1507263 25314.830078125
+303.1421509 30084.64453125
+305.1339111 3363773.5
+306.1191711 1158016.0
+307.1217041 194996.671875
+308.1227722 29275.025390625
+311.1353149 60642.24609375
+312.1179199 53195.6484375
+321.1538391 356247.09375
+322.1565552 75402.015625
+323.1443787 1150066.75
+323.1887512 36611.7109375
+324.1467896 198214.8125
+329.1453247 55220.5859375
+330.1459045 20065.986328125
+331.1498108 23288.685546875
+338.1422119 53258.60546875
+338.1803894 444862.96875
+338.6456604 23569.505859375
+339.1839294 74237.8046875
+342.6622925 17353.744140625
+349.1601562 19355.78515625
+359.1430664 61868.7734375
+366.1866455 129350.4453125
+367.1920471 27334.728515625
+369.1398621 25645.705078125
+376.1698914 124922.6875
+377.1570435 96832.1484375
+386.1633606 53079.22265625
+394.1805725 756858.375
+395.1835632 163014.125
+421.1830444 21247.1953125
+464.1754456 27375.767578125
+468.2208862 82024.59375
+477.2193298 21556.28515625
+485.2469482 231909.625
+486.2487793 48534.28515625
+488.1842041 57397.01171875
+492.2289734 180707.375
+492.7306213 96298.1875
+493.2304382 23489.3828125
+495.2282104 61928.78515625
+503.7194824 20462.810546875
+505.2115784 61230.84375
+506.2059326 51313.875
+512.2271729 43326.9296875
+512.7322388 20737.787109375
+521.2336426 21822.806640625
+523.2213135 462310.78125
+524.2246094 139188.21875
+525.2264404 22960.353515625
+558.7458496 23703.576171875
+571.7515259 83681.625
+572.2745361 303605.0
+572.7512817 26421.51953125
+573.2800293 77980.140625
+576.2619629 54783.359375
+577.2623291 26435.412109375
+580.2611694 59195.44140625
+580.7548218 2387658.25
+581.2560425 1701521.875
+581.7577515 570673.6875
+582.2593384 136298.359375
+589.2671509 114618.78125
+589.7645264 50121.8203125
+598.2758179 64908.09375
+598.7735596 27842.13671875
+599.7782593 47092.109375
+606.2626343 35543.78515625
+624.2696533 50386.375
+625.2799683 21538.982421875
+673.3242188 383255.21875
+674.3284302 170999.140625
+675.3289795 23530.189453125
+693.2835083 25664.21875
+802.3657227 103372.2421875
+803.3655396 50491.765625
+873.3998413 108068.984375
+874.4036255 40746.83984375
+875.3966064 21724.166015625
+1001.456848 26548.115234375
+1058.486572 29601.9609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.262.262.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=262"
+RTINSECONDS=28.28801526
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52633667 54743.3671875
+64.53073883 42202.703125
+64.58226776 31685.26953125
+64.58624268 23899.39453125
+64.63787079 26542.201171875
+64.64122009 14515.8505859375
+66.87082672 13547.1298828125
+72.27858734 13998.7255859375
+99.42164612 14783.751953125
+108.2378235 13382.921875
+127.5419693 11749.5927734375
+149.5704803 56972.02734375
+167.0916748 38156.55078125
+169.0598755 36522.55859375
+175.1021118 24582.29296875
+175.1180115 303754.25
+176.1217804 25551.4296875
+177.0608368 11914.04296875
+177.075943 75218.609375
+178.060257 351030.8125
+178.3405762 74868.1640625
+179.0636292 33821.59765625
+179.0922394 16633.92578125
+183.0760345 23296.255859375
+186.0862885 94546.921875
+194.1029968 29887.1015625
+195.0865326 3922803.75
+195.1281891 27260.7421875
+196.0892639 410562.09375
+197.0911865 32898.23046875
+200.1017609 28922.58984375
+201.0859222 12487.2333984375
+206.0911255 140704.078125
+207.0936584 17103.765625
+212.1148376 16499.484375
+213.086319 15703.2275390625
+218.1024475 40650.7578125
+221.1005554 16814.732421875
+226.1068268 12582.818359375
+239.1157227 18395.91796875
+240.0956421 19316.525390625
+243.0868835 19918.0078125
+244.1167603 15976.53125
+246.0743256 10432.49609375
+246.0971069 619195.875
+247.1000214 67282.390625
+257.1228943 78206.5703125
+260.1126404 98512.1796875
+270.0968018 105622.3203125
+277.1383667 12303.9873046875
+278.1499939 25508.529296875
+283.1431274 50832.3203125
+287.1236877 148094.3125
+288.0775757 22312.193359375
+288.107605 1548763.25
+289.1103516 227768.203125
+290.112854 25013.833984375
+295.1489868 21023.7890625
+303.1442261 38172.61328125
+304.1271973 15681.9306640625
+305.1341858 3020521.0
+306.1194458 1044280.5
+307.1216736 164088.203125
+308.124054 19904.25390625
+311.1352234 42171.2265625
+312.1180725 40767.86328125
+321.1541748 336944.4375
+322.1557007 48450.3671875
+323.1446838 1014140.4375
+324.1468811 192143.390625
+325.1509094 21261.15234375
+328.1605835 14794.35546875
+329.1443787 36282.53515625
+330.1491089 17511.28125
+338.1421204 52924.94921875
+338.1809387 379297.375
+338.6452942 20797.263671875
+339.1835022 90881.109375
+341.1423035 15916.8828125
+349.159668 23218.15234375
+351.1280823 16956.828125
+359.1443481 66623.2578125
+366.1858521 117948.2265625
+367.1923523 12895.3525390625
+369.1390686 35160.3671875
+376.1704102 103844.109375
+377.157074 84004.3515625
+386.1642456 37382.96484375
+394.1811523 666206.875
+394.2398987 22833.822265625
+395.1829224 129028.0703125
+412.1889038 26681.4375
+460.1907043 19550.158203125
+468.2218628 49945.21875
+477.2173157 18141.7734375
+483.2173767 20308.11328125
+483.7175903 17996.232421875
+485.2479248 184065.9375
+486.2492371 56849.8828125
+488.1866455 42536.26171875
+492.2297668 148316.578125
+492.7315674 88092.515625
+493.2327271 43144.78125
+495.2268982 54918.71875
+505.2114563 58966.94140625
+506.2095947 44327.73046875
+512.227356 28441.76953125
+512.7280273 19435.177734375
+520.7493896 13866.513671875
+521.232605 25461.80078125
+523.2224731 446289.375
+524.2255859 110964.21875
+525.2337646 14817.591796875
+529.7412109 18045.603515625
+558.7404785 23515.98828125
+571.7503052 81083.1953125
+572.2745972 276609.46875
+572.7509766 19223.263671875
+573.281311 87186.4296875
+574.2764282 17376.8046875
+576.2643433 25308.98828125
+577.2651367 21613.755859375
+580.2653198 52845.3359375
+580.7555542 2167327.0
+581.2567139 1381644.375
+581.7584229 585794.0
+582.260437 108884.4765625
+589.2657471 37411.4921875
+598.2739868 63237.1015625
+598.7785645 25583.513671875
+599.2757568 34723.59375
+599.7776489 55343.10546875
+606.2601318 38875.69140625
+624.2675171 50375.87109375
+656.3061523 14193.0693359375
+673.1973267 21456.736328125
+673.3250732 366763.9375
+674.3272705 139702.109375
+675.3234253 21207.78515625
+693.2938232 24034.80859375
+711.296814 16791.4375
+802.3635864 85757.046875
+803.3638306 33540.70703125
+804.3776245 17930.697265625
+873.4022827 97831.8203125
+874.4069214 34273.12109375
+922.1582031 15501.6767578125
+1001.44397 20284.216796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.263.263.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=263"
+RTINSECONDS=28.39844931
+PEPMASS=598.27001953125
+CHARGE=2+
+50.95722961 13533.333984375
+57.01780701 12690.2119140625
+64.52627563 54783.98046875
+64.53042603 39104.7578125
+64.58203125 48432.43359375
+64.58618164 27631.58203125
+64.638237 16723.080078125
+64.64155579 15204.9873046875
+104.6416473 12641.4140625
+149.5730438 58496.03515625
+167.0922546 30174.06640625
+169.0593109 26573.060546875
+175.1178436 274770.0
+177.075943 58992.76171875
+178.0436249 24466.35546875
+178.0598907 329687.0625
+178.0768433 10278.923828125
+178.335083 43125.21484375
+178.3542786 49043.7578125
+179.0635986 41368.7734375
+179.0903015 15449.44140625
+180.8377686 12207.64453125
+183.0758057 27798.341796875
+186.0861359 102407.5546875
+194.1024017 43092.86328125
+195.0452881 20895.373046875
+195.0863495 4156572.0
+196.0891418 446449.75
+197.0930023 30067.25
+200.101059 22941.333984375
+206.0910645 159403.515625
+216.9476013 14638.8017578125
+218.1024628 55221.96484375
+222.0863037 17056.05859375
+234.0974884 16775.259765625
+239.1136169 20319.546875
+242.1005096 16695.3046875
+243.0856934 32565.66015625
+244.117218 18972.25390625
+246.0968018 682955.0
+246.1203613 8845.369140625
+247.0994568 84710.90625
+257.1222534 120179.25
+260.1122742 112448.015625
+270.0964355 126149.8828125
+276.1063843 22920.009765625
+283.1430054 52462.72265625
+284.118103 15646.3427734375
+287.1235352 147852.484375
+288.1072083 1523875.5
+289.1098022 243101.78125
+290.1127014 28359.203125
+294.1176453 27534.900390625
+295.1474304 16475.796875
+296.0790405 15215.8095703125
+303.1439209 35057.46484375
+305.133667 3212900.75
+306.118927 1152793.625
+307.1213379 184699.4375
+308.1228943 23169.138671875
+311.1343689 61268.14453125
+312.1173401 28933.009765625
+321.153717 349305.53125
+322.1564026 60940.6171875
+323.0980835 19161.92578125
+323.1440125 1171072.25
+324.1464233 165611.296875
+325.1505737 17376.79296875
+329.1447144 50250.95703125
+331.1468811 20612.09375
+338.1418152 57609.63671875
+338.1803284 361486.15625
+338.6446228 24566.669921875
+339.1832581 63411.75
+341.1434021 20787.794921875
+347.1481628 22076.556640625
+349.159668 31272.119140625
+351.1300354 21196.603515625
+358.164093 18902.2109375
+359.1435852 66471.0625
+361.1631775 16457.404296875
+366.1864319 112832.046875
+367.186676 18970.90625
+369.1366882 18950.58984375
+376.1696167 142557.375
+377.155304 98380.234375
+386.1631775 22955.869140625
+389.1576843 15781.689453125
+394.1804199 699913.625
+394.2397766 24635.720703125
+395.1828003 159390.1875
+396.1800842 23857.46875
+398.1796875 13866.51953125
+412.1854858 38453.6328125
+420.6829224 23112.935546875
+450.2092285 20104.314453125
+460.1888733 30386.80859375
+468.221283 53765.546875
+478.2052307 21250.23828125
+485.2469482 200219.828125
+486.2505798 54689.1328125
+488.1880188 47839.453125
+492.2290955 169419.1875
+492.7313232 95056.5234375
+493.2304077 14165.212890625
+495.2264404 49672.00390625
+496.2302856 16054.3017578125
+503.713562 20593.8984375
+505.2105408 55609.4921875
+506.2037048 54894.01171875
+512.2263184 28064.6796875
+512.7261353 30419.732421875
+523.2212524 446196.0
+524.2235718 120227.546875
+525.225769 34252.59375
+529.7529907 16270.1806640625
+571.7475586 65138.73828125
+572.2739258 267417.0
+572.7390747 24679.35546875
+573.2791138 99100.0234375
+576.2599487 38455.46484375
+576.7619629 24150.654296875
+577.7631226 18712.998046875
+580.262146 71041.6484375
+580.7540894 2193567.5
+581.2554321 1596802.75
+581.3363037 24926.35546875
+581.6508789 20404.51171875
+581.7565308 538024.8125
+582.2585449 102855.2265625
+589.2658691 88066.640625
+589.7692261 17316.310546875
+598.2750244 44374.24609375
+598.7748413 20818.64453125
+599.2800903 18728.306640625
+599.7752686 47039.8359375
+606.2579346 35801.09765625
+624.2667847 40041.7734375
+655.3144531 26746.263671875
+673.3225098 402959.375
+674.3259277 130851.3203125
+675.3233643 29636.798828125
+693.2908325 27546.265625
+802.3624268 97709.7421875
+803.369873 43444.63671875
+873.4008179 90880.671875
+874.3927612 54436.66015625
+1001.450684 33136.70703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.264.264.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=264"
+RTINSECONDS=28.50738685
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 64380.48828125
+64.53045654 45452.80078125
+64.58227539 37315.6171875
+64.5861969 31989.740234375
+64.63825989 21387.267578125
+64.64157104 18684.974609375
+71.59408569 15935.2236328125
+94.60123444 17689.830078125
+111.0636292 12682.572265625
+117.4486923 14290.671875
+121.1588745 13903.130859375
+149.5718384 56350.2265625
+167.0921326 33253.609375
+169.0598907 28664.107421875
+175.1177673 294244.21875
+176.1213531 24934.8984375
+177.0760345 61596.0546875
+178.0599518 325257.09375
+178.3443909 108362.765625
+179.0634613 36209.34375
+186.0862579 121173.125
+194.1026917 32313.794921875
+195.0863953 4302955.0
+195.1280823 22147.05078125
+196.0892487 419778.65625
+197.0918579 39884.24609375
+200.1018066 24152.982421875
+201.0859833 20587.943359375
+206.0911102 156094.953125
+207.0933685 20096.333984375
+218.10289 78240.65625
+226.4465942 15550.240234375
+234.09758 21430.7265625
+240.0984192 20858.26953125
+243.0861053 25473.806640625
+244.1184845 22121.916015625
+246.0970001 587088.1875
+247.0999756 72048.9296875
+249.0960388 24402.212890625
+257.1228638 94461.5078125
+260.1123657 128836.0
+270.0966797 121120.5546875
+277.1382751 18010.9765625
+283.143158 49556.2890625
+287.1234131 160176.25
+288.1073608 1631814.25
+289.1099854 247101.09375
+290.1125488 23004.783203125
+295.1496887 22882.828125
+302.1290588 23166.318359375
+303.1443787 32015.935546875
+305.1339111 3224985.75
+306.1191406 1167758.25
+307.12146 194636.796875
+311.1352539 48359.91796875
+312.1170349 44195.7734375
+317.3947754 16631.13671875
+321.1541748 305999.1875
+322.157196 56134.14453125
+323.0989075 26246.69921875
+323.1443481 1145123.125
+323.1887512 29329.615234375
+324.1466675 164884.25
+325.1518555 20938.453125
+329.14328 43560.3984375
+338.1419983 57286.64453125
+338.1806641 389816.5625
+338.644989 20582.93359375
+339.1828918 74365.484375
+341.144928 21324.1640625
+347.1470947 23417.453125
+349.1564331 20343.537109375
+351.1318054 20471.638671875
+359.1445007 65612.8984375
+366.1861877 136337.0625
+367.1887207 21541.763671875
+369.1402588 43694.375
+376.1699524 111118.1015625
+377.157074 73012.6015625
+378.1564026 17984.052734375
+386.1645203 31590.033203125
+394.1808167 727157.3125
+394.2395325 32912.609375
+395.1833496 145409.75
+412.1877747 24466.216796875
+460.1881714 20401.0546875
+468.2224731 59597.734375
+477.2174683 18251.39453125
+483.7220764 22179.396484375
+485.2470398 225665.734375
+486.2485962 49339.6015625
+488.184845 50975.890625
+492.2287903 143288.484375
+492.7299194 107429.3671875
+495.2287903 58458.01953125
+503.7222595 31739.005859375
+505.2123718 54405.3125
+506.2093201 45951.80859375
+511.7241516 19163.875
+512.2254028 40792.91015625
+512.7192993 21491.73828125
+521.2328491 59823.0390625
+521.7363892 20011.505859375
+523.222229 469164.1875
+524.2250366 138761.703125
+525.2324219 20587.265625
+554.2601318 20414.212890625
+559.2537231 20639.890625
+571.7504883 68121.171875
+572.2750244 297704.34375
+572.7539673 26219.13671875
+573.2797852 110332.171875
+576.2589111 43142.44140625
+576.7683105 32898.47265625
+577.2657471 37380.19921875
+580.2627563 89405.3046875
+580.755127 2379657.25
+581.2562256 1512033.5
+581.7581177 615462.875
+582.2585449 113056.734375
+589.2669678 84305.0
+589.7639771 61467.99609375
+598.2717285 59877.4140625
+598.7765503 29860.3828125
+599.2835693 25558.517578125
+599.7769165 70959.234375
+606.2592773 40694.25
+624.2697754 50594.88671875
+625.2706299 22914.216796875
+673.3244629 394011.5625
+674.3275146 173106.75
+675.3215942 35327.3984375
+693.2819824 22484.64453125
+711.3074951 23157.44140625
+802.3624268 89487.328125
+803.3652954 40084.76171875
+873.4009399 109819.984375
+874.4033813 76720.3671875
+897.6745605 18986.126953125
+1001.459717 26776.408203125
+1058.476318 18096.8671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.265.265.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=265"
+RTINSECONDS=28.61505021
+PEPMASS=598.27001953125
+CHARGE=2+
+50.00646591 19911.53125
+64.52637482 89668.5
+64.53054047 47649.84375
+64.58202362 70463.4140625
+64.58616638 46319.75390625
+64.63845825 27801.6484375
+64.6418457 25752.576171875
+72.30975342 19958.99609375
+75.98741913 21306.755859375
+84.15071106 20389.375
+90.8737793 22409.662109375
+107.647583 19077.2421875
+132.8002167 20018.044921875
+149.5702209 75849.8828125
+167.0922699 29965.345703125
+169.059906 38530.66015625
+175.1178894 320801.34375
+176.1208496 30625.78515625
+176.5612488 20907.271484375
+177.0769958 55690.91015625
+178.0600281 353486.96875
+178.3428497 122331.984375
+179.0633698 29152.609375
+179.0915527 22974.78515625
+183.0760956 22621.931640625
+186.0861053 120257.1875
+195.0865173 4892073.5
+195.1283264 31816.3515625
+196.0895081 479696.9375
+197.0917511 28151.12109375
+200.1010895 39529.3359375
+201.0852661 32289.21875
+206.0911407 147917.84375
+218.1026154 73979.25
+222.0851898 23115.427734375
+246.0970764 641758.5
+246.7830048 24108.306640625
+247.1000061 75799.8125
+257.1227112 135410.8125
+260.1129456 113664.1015625
+261.1168823 36862.65625
+270.0969849 151803.03125
+276.1365051 25647.435546875
+283.1445007 40891.78125
+287.1237488 147437.78125
+288.1075439 1775173.75
+289.1106873 269897.28125
+290.1136169 32089.24609375
+294.1156006 25639.40234375
+303.1442871 34223.359375
+305.1341248 3609983.0
+306.0587769 32893.13671875
+306.1193237 1321490.75
+307.121521 231266.921875
+308.1226807 30156.43359375
+311.1353455 56770.421875
+312.1169739 36040.41796875
+321.1540527 397846.4375
+322.1564331 69278.71875
+323.1447449 1272098.25
+324.1463318 214262.78125
+325.1481628 30797.91015625
+329.1457825 52545.25
+338.1424255 64012.57421875
+338.180603 428480.53125
+338.6469116 24176.84375
+339.182312 80089.875
+348.1685181 28458.376953125
+349.1585083 26793.3046875
+359.1455994 66222.046875
+366.186554 115510.515625
+367.1897583 28279.736328125
+369.1369324 30945.22265625
+376.1706543 173825.953125
+377.157959 75285.5390625
+386.1616516 32378.9453125
+394.1372375 15769.77734375
+394.1810608 835371.9375
+395.1829224 175023.046875
+396.1849365 32835.05859375
+412.1878967 37883.15625
+420.6799927 37663.1328125
+460.1933899 24054.818359375
+468.2221985 68485.625
+485.24823 232839.953125
+486.2526245 45834.3203125
+488.190033 57265.046875
+492.2303162 176510.9375
+492.7308655 68924.546875
+493.2324829 43388.09375
+495.2289734 52452.57421875
+505.2114563 64143.7109375
+506.2010803 54936.62109375
+512.2289429 28427.767578125
+512.7258301 42838.5234375
+521.2354736 62120.18359375
+521.7369385 28732.173828125
+523.222229 550524.0625
+524.2240601 159993.5625
+525.2260742 26907.62109375
+571.7492676 58258.40625
+572.2755737 352568.5625
+572.7510986 44684.93359375
+573.2818604 122207.7890625
+574.2879028 25364.806640625
+576.2642822 92321.5625
+576.7584229 37553.359375
+580.2648926 111928.7265625
+580.7555542 3240555.5
+581.2565308 2196842.25
+581.7585449 872352.5
+582.2594604 143803.359375
+589.2675781 268013.78125
+589.7661743 198846.03125
+590.2699585 30355.59375
+598.2749634 78441.953125
+598.7749023 69165.90625
+599.7756348 27558.072265625
+606.2611084 29052.9765625
+624.2698975 66183.046875
+625.274231 25139.849609375
+673.3249512 583389.3125
+674.3290405 220933.078125
+675.324707 30718.677734375
+802.3641968 134198.703125
+803.3607788 44967.67578125
+873.4006348 124672.84375
+874.4014893 80432.796875
+1001.457764 35741.984375
+1059.483154 26328.72265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.266.266.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=266"
+RTINSECONDS=28.71921754
+PEPMASS=598.27001953125
+CHARGE=2+
+54.69573975 10298.2880859375
+58.13422775 18832.501953125
+58.13706207 11732.3056640625
+64.52620697 64146.6171875
+64.53044891 37000.31640625
+64.58203888 42049.83203125
+64.58618927 29359.205078125
+64.63820648 18898.8046875
+64.64137268 12024.59765625
+74.8121109 13407.8056640625
+75.74114227 10414.732421875
+82.05422211 13531.8193359375
+125.9991684 10844.2734375
+145.1802368 12748.5068359375
+149.5715027 49793.0625
+167.0913086 35439.9765625
+169.0596313 23262.826171875
+175.1177826 279184.21875
+176.1208954 24948.43359375
+177.0759735 66992.109375
+178.0437469 23465.185546875
+178.0599976 308783.0625
+178.076767 11540.111328125
+178.3438721 85797.875
+179.0634918 24812.96484375
+179.0912628 18269.642578125
+182.0915375 18740.44140625
+183.0750275 29570.642578125
+186.0860138 121944.5078125
+194.1037292 21380.517578125
+195.086441 3854246.75
+195.1282501 17748.77734375
+196.0893555 381513.15625
+197.0908661 34339.6484375
+200.1020508 20077.23828125
+200.5798187 12342.125
+201.0859833 20569.19921875
+206.0910797 158910.859375
+209.1028442 15672.64453125
+215.091507 14423.1806640625
+218.1026001 56853.2421875
+234.0975952 20772.3671875
+243.0870056 23657.171875
+244.1174011 16116.8349609375
+246.0970001 639424.1875
+247.0996094 67519.8125
+257.1225281 107972.8359375
+260.1129761 97359.828125
+267.111908 13113.8603515625
+270.0969238 152077.671875
+271.102417 13461.35546875
+278.1499939 18450.65234375
+283.144043 31650.666015625
+287.1234436 132847.765625
+288.1074829 1593788.375
+289.11026 237383.484375
+290.1134949 17132.5234375
+294.1174011 20497.341796875
+295.1512146 27708.419921875
+303.1445618 25072.076171875
+304.1272888 16620.3828125
+305.1340637 2918396.5
+305.2166748 19240.255859375
+306.1190796 1105874.75
+307.1216125 175352.609375
+308.1251221 17176.4140625
+311.1343384 49400.84765625
+312.1187134 35586.98046875
+319.1500549 16295.94140625
+321.1540222 325207.90625
+322.1567383 52266.96875
+323.0983582 18274.029296875
+323.1445618 1033874.3125
+324.1470032 180243.765625
+325.1512756 19493.158203125
+329.1429443 50013.625
+331.149353 18324.5390625
+338.1422729 37583.8671875
+338.1806946 368479.1875
+339.1834412 56981.0859375
+349.1602173 27409.150390625
+351.1323853 18835.84765625
+359.1456299 59122.3125
+366.186554 119554.734375
+367.1880188 26026.96484375
+369.1390991 36279.44140625
+376.1701965 99878.7734375
+377.1563721 86219.3828125
+378.1549683 20228.306640625
+386.1607666 28303.44921875
+394.1810303 684994.375
+394.2400513 25270.1484375
+395.1824341 144441.296875
+412.1864319 36783.59765625
+413.1668396 27163.8671875
+460.1911011 15630.716796875
+468.2185364 48966.4140625
+469.2187805 19992.009765625
+483.7210083 23175.109375
+485.2479553 209347.390625
+486.2516174 48897.2734375
+488.1850281 64133.14453125
+489.190033 15598.162109375
+492.2294922 176839.28125
+492.7313232 102600.75
+493.2319641 30477.830078125
+495.2303162 44759.15234375
+499.1986694 14228.3837890625
+503.7167053 20739.376953125
+505.2110596 62084.19921875
+506.2053528 50886.68359375
+507.2065735 13829.673828125
+512.2265015 45121.22265625
+512.729187 33538.97265625
+521.2313843 19436.328125
+523.2224731 432399.5625
+524.2244873 135048.71875
+525.2275391 22519.166015625
+555.2550659 17778.40625
+558.7456665 23624.263671875
+567.2531738 15209.216796875
+571.7491455 78420.03125
+572.2751465 326645.84375
+572.7542725 22599.515625
+573.2802124 116949.7421875
+574.2799683 28649.4765625
+576.2644043 44027.6640625
+576.7647705 28705.05078125
+577.2647095 25031.744140625
+577.7666626 15233.71875
+580.2636108 71909.109375
+580.7553101 2313429.0
+581.2564087 1529884.0
+581.3659058 21582.056640625
+581.7582397 558999.5625
+581.864624 21980.435546875
+582.2583618 104529.4453125
+589.2672119 31889.484375
+598.2727051 40199.2265625
+598.7720337 29912.421875
+599.2731934 30090.375
+599.7772217 110797.078125
+606.2562866 20334.349609375
+624.2694702 50854.2421875
+625.2670898 17829.974609375
+673.3249512 440934.9375
+674.3278198 162217.59375
+802.3652344 82101.65625
+803.3705444 35757.62109375
+873.3999023 85552.2421875
+874.4009399 36973.6953125
+1001.449463 18858.673828125
+1002.452515 17509.77734375
+1058.484253 14531.2705078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.267.267.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=267"
+RTINSECONDS=28.83024349
+PEPMASS=598.27001953125
+CHARGE=2+
+55.03382874 9663.9296875
+58.13437271 13192.84765625
+58.13716888 14500.0166015625
+64.52625275 55570.3359375
+64.53049469 31411.5390625
+64.58224487 27423.4296875
+64.58625031 25440.111328125
+64.63818359 14574.3466796875
+64.64160156 13197.224609375
+72.81663513 12119.9755859375
+74.81195068 13327.2001953125
+81.04711914 11798.0703125
+82.05412292 18575.23828125
+107.4754715 10875.8095703125
+111.8711777 11390.7705078125
+149.5682526 39359.52734375
+155.0805054 12377.236328125
+167.092041 40302.50390625
+169.0596313 33955.265625
+175.1179352 312406.6875
+175.1353912 13615.08984375
+176.1214294 17818.181640625
+177.0761566 55865.54296875
+178.046402 7784.1499023438
+178.0601044 308290.21875
+178.3365784 44857.57421875
+178.355484 20724.23828125
+179.0632935 31204.447265625
+179.0919647 19540.357421875
+182.0913696 17626.123046875
+183.0757141 18639.072265625
+186.0861664 110872.8828125
+194.1030121 30853.982421875
+195.0865021 3727436.5
+195.1282196 25600.0
+196.0893097 358108.34375
+197.0918579 24929.69921875
+200.1013184 15938.4755859375
+206.0913696 159470.40625
+209.1013641 13346.6259765625
+215.0921021 14713.98046875
+218.1025238 47879.7109375
+234.0964813 17642.021484375
+243.0858154 15307.2177734375
+244.1172943 14615.0244140625
+246.0970612 594405.8125
+247.0998688 81520.8671875
+249.0975037 15815.6689453125
+257.1227722 100591.234375
+258.1255798 17701.751953125
+260.1127014 107204.7734375
+261.1174622 19740.59375
+267.1152954 12703.9814453125
+270.0968323 129896.4375
+278.1506653 22194.92578125
+283.1436768 46592.55859375
+284.1216736 12599.814453125
+287.1234741 131973.546875
+288.1075134 1572840.875
+289.1104126 239456.265625
+290.1127625 22359.8515625
+294.117981 17754.044921875
+295.1483459 22640.390625
+302.135376 12993.79296875
+303.1419067 20337.921875
+304.1270447 22187.359375
+305.1340942 2865350.0
+305.2163391 15916.2724609375
+306.1194153 1052172.25
+307.121582 184369.234375
+308.1248169 20166.916015625
+311.1347656 49733.1328125
+312.117218 33943.296875
+320.1335754 14338.8681640625
+320.172699 18115.078125
+321.1539917 321815.46875
+322.1576538 53904.53515625
+323.0978394 19398.359375
+323.1445618 1011141.0
+324.1469421 170580.71875
+328.160553 16456.328125
+329.1436157 54745.9140625
+331.1463623 24231.900390625
+338.1425781 38927.62109375
+338.1807556 371822.90625
+338.644989 26981.150390625
+339.1833801 65391.43359375
+341.1472473 17645.44140625
+346.1713257 13436.0029296875
+347.1489258 22716.529296875
+347.6495667 12211.6494140625
+349.1573181 17185.611328125
+351.1331787 17508.6640625
+358.165802 15097.013671875
+359.1444702 53002.03125
+366.1867981 130676.1171875
+367.1867065 12270.4326171875
+369.138916 30330.17578125
+376.17099 114768.75
+377.1555176 66256.2265625
+386.1612549 24358.111328125
+394.1811829 615233.375
+394.2401428 22871.154296875
+395.183075 108833.6953125
+396.1842957 19278.3203125
+412.1877441 20591.263671875
+420.680481 15291.171875
+460.1886597 15349.9384765625
+464.1720886 14024.12109375
+468.2211304 51585.73828125
+477.2220764 23023.40625
+478.2076721 18408.95703125
+483.2238159 15140.451171875
+483.721283 17754.58203125
+485.247406 206209.625
+486.2505798 51194.6953125
+488.1857605 39022.19140625
+492.2294312 164179.96875
+492.7294922 79192.84375
+493.231781 38687.58984375
+495.2268982 52536.30078125
+505.2133789 59387.76171875
+506.2047729 51003.8125
+512.2255859 35003.75
+512.7286987 27189.763671875
+513.2285767 15874.07421875
+520.7417603 17366.3984375
+521.2319946 15786.16015625
+521.7321777 17996.015625
+523.2229004 381291.59375
+524.2237549 112287.984375
+525.2278442 20209.48046875
+529.7454834 16617.146484375
+554.2677002 12570.63671875
+555.2556763 17756.630859375
+559.7484131 20942.0625
+571.7491455 76826.6875
+572.2749023 252871.59375
+573.2811279 85077.4609375
+574.2794189 17910.44921875
+576.2644043 27359.783203125
+580.2640381 61587.1484375
+580.7553711 1858270.875
+581.2565918 1262011.75
+581.7581787 489295.59375
+582.2609253 89997.1015625
+598.2736816 32419.166015625
+598.7778931 30730.03515625
+599.2780151 36578.9921875
+599.7772217 73546.6015625
+606.2584839 29499.833984375
+624.2692871 41260.59375
+655.3212891 21849.6171875
+656.31073 23415.28125
+673.3248291 361883.625
+674.3274536 131656.234375
+675.331665 32410.69140625
+711.2946777 19245.7578125
+802.366333 84369.0546875
+803.3699341 31395.134765625
+873.4039307 71088.7421875
+874.40802 32417.185546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.268.268.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=268"
+RTINSECONDS=28.94262226
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1342659 22973.09375
+64.52623749 92575.03125
+64.53050232 59205.8359375
+64.58219147 40028.0078125
+64.63802338 24654.392578125
+81.04651642 21985.486328125
+85.28994751 21091.6171875
+91.08388519 23009.09375
+140.3313141 26167.6796875
+149.5687103 96925.9140625
+167.0916138 37772.13671875
+175.1178436 327863.65625
+177.0760803 77079.2109375
+178.059967 341888.125
+178.3308105 42602.765625
+178.3491516 127341.421875
+179.0628204 33351.953125
+182.0924377 30460.767578125
+183.0743561 22575.150390625
+186.0866241 108632.1015625
+194.1022186 43683.37890625
+195.0863953 4962643.0
+196.0892639 455704.0625
+197.0921631 32938.9765625
+199.743042 20597.841796875
+206.0910034 158446.203125
+212.1125031 26155.904296875
+218.1025696 42852.61328125
+239.1131897 23929.287109375
+240.0973663 21348.453125
+246.0969543 656912.8125
+247.0993652 83565.75
+257.1231689 107588.6484375
+260.1126404 130163.4140625
+270.0966492 130491.5703125
+283.1422424 41877.15625
+287.1239319 176251.09375
+288.1073608 1617701.375
+289.1103516 207231.453125
+290.1149292 29213.064453125
+305.1339417 3590172.5
+306.1191101 1296385.25
+307.1212463 241131.875
+311.1367493 51386.4375
+321.1542358 410559.5
+322.1575623 52240.35546875
+323.1445618 1257925.25
+323.1886292 45893.56640625
+324.1468506 217742.140625
+329.1437988 55874.59375
+338.1422424 67129.109375
+338.1806946 469922.34375
+339.183075 71315.1015625
+347.1488647 36519.41796875
+359.1445618 68728.0859375
+366.1862183 129760.46875
+367.190155 35341.375
+376.1707764 128361.4453125
+377.1504517 47721.29296875
+386.1652222 29183.01171875
+394.1807861 805083.3125
+395.1825256 210347.046875
+468.2212219 43085.0078125
+477.2062988 24417.42578125
+485.247467 238463.078125
+486.2503662 83694.703125
+488.1867981 47536.04296875
+492.2285156 161341.53125
+492.7294312 84507.046875
+493.2336731 36846.24609375
+495.2294312 63246.85546875
+503.7198792 44765.7578125
+505.2105713 66600.5859375
+506.2079773 42254.31640625
+512.2255859 70429.46875
+512.7220459 34085.51171875
+521.2320557 38107.09765625
+523.222229 515686.8125
+524.2249146 150479.421875
+525.2271118 35971.28515625
+559.2462769 32628.265625
+571.7495728 73417.4765625
+572.2764282 380527.21875
+573.2826538 112615.03125
+576.2620239 95056.4140625
+576.7686157 33843.73046875
+577.2567139 30949.07421875
+580.2612915 85325.375
+580.755188 3131976.75
+581.2563477 2160820.75
+581.7583008 810271.375
+582.2584229 214611.859375
+589.2686768 359549.34375
+589.7662964 251927.390625
+590.2641602 52497.34375
+598.274353 107157.9140625
+598.7775269 56147.6875
+599.2745972 27508.95703125
+606.2715454 29419.21484375
+607.2648315 28288.34375
+624.2649536 45953.6875
+673.3242188 550261.9375
+674.3268433 214363.796875
+675.3334351 34831.640625
+711.2911377 34653.05078125
+802.3641357 135920.703125
+803.3660278 66090.453125
+873.4022217 125388.4765625
+874.4019165 81155.7734375
+1001.443726 60735.59765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.269.269.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=269"
+RTINSECONDS=29.0459928
+PEPMASS=598.27001953125
+CHARGE=2+
+50.97903061 10542.8505859375
+58.13445663 11571.4775390625
+58.13725281 13345.107421875
+63.58826828 10726.7724609375
+64.52624512 52113.35546875
+64.53062439 39503.21875
+64.58198547 36337.578125
+64.58612061 25051.5234375
+64.63824463 13972.431640625
+64.64182281 11367.533203125
+74.81197357 11029.0458984375
+74.81639099 15566.9990234375
+75.64009094 10612.169921875
+76.28118134 10647.1962890625
+82.05399323 16915.927734375
+149.5652924 33860.40234375
+167.0918579 40609.65625
+169.0602722 23018.53515625
+175.117981 291144.15625
+177.0759277 60011.7109375
+178.0600891 315591.78125
+178.0783997 15668.3828125
+178.3435669 68138.3671875
+179.0637207 22123.69140625
+179.0919189 23853.134765625
+182.0920715 16674.7734375
+183.0751038 28705.642578125
+186.0864716 106871.71875
+194.1023712 39021.46484375
+195.0865173 3616494.25
+195.1280212 23906.86328125
+196.0895233 406524.875
+197.0909576 15305.19921875
+200.1023102 19971.287109375
+201.0862885 18709.025390625
+206.0911865 157146.4375
+215.0908813 16972.4453125
+218.1021423 55020.0390625
+219.1067047 11368.6806640625
+222.0857239 12514.08984375
+233.128418 11346.11328125
+234.0971222 18763.78125
+235.103363 12143.0546875
+239.1130829 13122.0517578125
+240.0955658 27769.82421875
+243.0865021 22340.646484375
+246.0971527 637685.5625
+247.0997772 78459.8046875
+249.0964355 16844.318359375
+253.6784668 11617.4521484375
+257.1228027 105752.3359375
+260.112793 100354.171875
+261.116333 24745.10546875
+262.1268005 15050.537109375
+267.10495 11771.146484375
+270.0973816 108480.1328125
+271.1016846 19330.677734375
+278.1195679 14439.8759765625
+278.1489563 28211.111328125
+283.1421509 40584.78515625
+287.1239014 151279.015625
+288.0777893 20992.75
+288.107605 1525350.5
+289.110199 232610.46875
+290.1115723 23874.970703125
+294.116394 15336.201171875
+295.1495056 25439.533203125
+302.1313477 15533.3251953125
+303.144043 22070.619140625
+305.1342163 2930544.25
+306.1196899 964849.1875
+307.1213989 186300.78125
+308.1226501 15741.0859375
+311.1349487 55102.98046875
+312.1168823 25958.1484375
+318.1432495 17716.3125
+321.1544189 367024.9375
+322.1575317 44193.609375
+323.0978699 14833.7626953125
+323.1446838 919300.8125
+324.1471863 162302.46875
+329.1445312 38791.98828125
+331.1494141 16622.373046875
+337.1604614 14486.357421875
+338.1425476 43495.3125
+338.1808777 349569.125
+338.6473083 21114.984375
+339.1832581 63457.61328125
+346.1668091 15562.708984375
+347.1499939 27527.830078125
+349.157959 14956.5341796875
+358.1647034 18889.845703125
+359.1442566 63825.2890625
+366.1867371 109888.9609375
+367.1959839 13588.734375
+369.1377258 25372.548828125
+376.171051 112792.6171875
+377.1559753 80389.234375
+386.1650696 30144.537109375
+387.1704102 12238.529296875
+394.1812744 619918.875
+394.2405396 23760.126953125
+395.1826782 123949.2421875
+396.187561 16223.4755859375
+412.1918945 25489.435546875
+420.6794434 16336.8525390625
+434.170929 19337.02734375
+450.2156677 13637.486328125
+452.1782532 14020.3330078125
+453.0700684 12988.2705078125
+460.1906433 26255.619140625
+468.2198792 50788.4140625
+469.2215881 18073.607421875
+477.2195129 15465.1591796875
+478.2098999 13938.6240234375
+482.1867981 14532.0791015625
+483.7182617 23340.609375
+485.2478333 208611.34375
+486.2514648 47183.55078125
+488.188385 53187.03125
+492.2294922 171492.953125
+492.7319031 86996.578125
+493.2305603 23676.328125
+495.2272339 53461.19921875
+496.2328186 14202.259765625
+503.2238464 22019.42578125
+504.2211914 18603.34375
+505.2122192 69544.4609375
+506.2042236 41169.640625
+512.2282104 44079.0625
+513.2236938 17330.662109375
+520.7382202 20405.611328125
+521.2359619 12349.9033203125
+521.736145 20015.693359375
+523.2227173 393332.1875
+524.2249146 112244.25
+525.232605 22519.841796875
+529.7455444 13329.6015625
+541.2371216 17137.69140625
+555.2581787 14010.67578125
+558.744812 17980.0625
+567.2597656 16171.3671875
+571.7507324 92123.265625
+572.2752075 299543.65625
+573.2814331 90914.1640625
+574.2713623 15019.46875
+574.7510986 12928.2744140625
+576.2632446 48973.73828125
+576.7669678 35698.22265625
+577.267395 22280.185546875
+580.2659302 63606.1640625
+580.7558594 2053226.625
+581.257019 1374140.125
+581.7588501 490576.53125
+582.2592773 107629.0546875
+589.2716675 16854.197265625
+598.2736816 51275.72265625
+598.7745972 24522.998046875
+599.2764282 59432.078125
+599.7779541 54238.0703125
+606.2593384 40710.8359375
+624.2697754 53565.62109375
+655.3134766 17286.62890625
+656.3106689 16529.189453125
+673.3254395 363074.65625
+674.3284912 141476.390625
+675.322998 33622.35546875
+711.3025513 22231.986328125
+784.3547974 13457.8759765625
+802.3656616 101735.265625
+803.3707886 27382.349609375
+873.3991089 62720.90234375
+874.4024658 31934.171875
+954.6160889 11737.935546875
+1001.462891 22683.6015625
+1058.490601 15734.25
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.270.270.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=270"
+RTINSECONDS=29.15887602
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13760376 15559.5966796875
+58.31010056 16269.2568359375
+64.52622223 70637.796875
+64.53045654 54033.1328125
+64.58194733 47412.390625
+64.58612823 37556.86328125
+132.624054 16490.1328125
+149.5719452 58506.3046875
+167.0917664 47692.70703125
+169.0597382 39381.203125
+175.1178436 356551.84375
+176.1209869 18569.716796875
+177.0764465 65267.3203125
+178.0599213 337034.875
+178.0767975 9896.6591796875
+178.3362732 75199.8515625
+178.3564606 43541.54296875
+179.0643616 22162.4375
+179.0912781 15991.9482421875
+183.0747528 15367.994140625
+186.0859528 133663.65625
+190.1067963 16492.85546875
+194.1022034 41330.5703125
+195.0864105 4553335.0
+195.1283569 22474.373046875
+195.2806702 17729.564453125
+196.0893402 409222.3125
+197.0922394 25090.5546875
+200.4082794 14261.8896484375
+201.0862427 15062.8291015625
+206.0909729 150775.421875
+215.0906525 28395.51171875
+218.102066 67193.5078125
+221.3026428 15892.7314453125
+234.0979462 19432.078125
+237.1088104 20078.259765625
+240.0959015 24916.376953125
+243.0836029 20007.63671875
+244.1190186 22220.134765625
+246.0970001 639138.625
+246.125473 38554.8203125
+247.0992279 71127.3828125
+257.1229553 132815.625
+260.1132202 114157.359375
+270.0969849 125206.921875
+271.102478 20367.775390625
+276.1329346 26885.34375
+278.1193542 23353.44921875
+278.1496582 27943.34375
+283.1431885 45500.12890625
+287.1234741 151903.34375
+288.1075134 1673355.375
+289.1107178 241834.3125
+294.1169434 26526.4140625
+295.1483459 25792.111328125
+302.1377563 16455.658203125
+303.1454468 20641.54296875
+305.1340637 3481094.5
+306.1192017 1198172.625
+306.1976318 19911.1484375
+307.1219482 211087.0625
+311.1346436 47800.546875
+312.1191101 49310.91796875
+321.1542664 359702.21875
+322.157135 67134.7265625
+323.0985107 25034.046875
+323.1445312 1202135.25
+324.1470947 217270.21875
+329.1430054 66613.078125
+338.1421204 38569.30859375
+338.1807251 405626.75
+338.6462708 30127.82421875
+339.1831665 70958.0234375
+349.1621704 29151.716796875
+359.1446228 62655.53515625
+366.1864624 116295.2421875
+367.1869507 24780.4453125
+369.1398621 19715.921875
+376.1710205 127853.9609375
+377.1570129 99076.921875
+386.1651306 35682.82421875
+394.1813049 741871.4375
+395.1821289 149962.359375
+412.186676 30616.666015625
+413.1619263 23079.962890625
+460.1897583 23778.943359375
+468.2220459 72835.359375
+483.7239075 22701.12890625
+485.2472534 223170.265625
+486.248291 62118.57421875
+488.1882324 44218.1640625
+492.2294617 185914.421875
+492.7301941 127428.1484375
+495.226593 64164.17578125
+503.7189636 33625.99609375
+505.2108765 60300.0
+506.2021484 49983.68359375
+512.2300415 39299.7265625
+521.2325439 23800.818359375
+523.2227783 548284.5
+524.2243042 143324.75
+529.7420654 22462.755859375
+567.260437 28115.90625
+571.7484741 59509.3515625
+572.2758789 354769.125
+572.7519531 23845.294921875
+573.2821045 85553.5625
+576.2607422 26033.76171875
+576.7637329 24773.751953125
+580.2643433 80241.109375
+580.7557983 2834174.5
+581.2571411 1977613.125
+581.3656006 32479.998046875
+581.6777954 13257.8359375
+581.7589111 706397.5625
+582.2615967 132403.578125
+589.2684326 108665.453125
+589.7650146 65097.34765625
+590.2626953 20989.931640625
+598.2769165 59012.59765625
+598.7728271 58376.75390625
+599.7789917 61587.7421875
+606.2597656 45548.21484375
+624.2694092 68764.2578125
+673.3251953 531048.3125
+674.328186 165920.875
+675.3283691 46385.7578125
+693.2913208 29047.384765625
+802.364624 115275.984375
+803.3650513 41501.23046875
+873.4013672 135611.984375
+874.4008179 56850.38671875
+1001.456421 23542.49609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.271.271.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=271"
+RTINSECONDS=29.26566067
+PEPMASS=598.27001953125
+CHARGE=2+
+54.40512466 11404.271484375
+57.02172852 14961.2216796875
+58.13405991 15102.685546875
+64.52623749 58481.26171875
+64.53066254 44587.5
+64.5819397 44803.98046875
+64.58621216 28290.341796875
+64.63825226 17389.6171875
+64.64146423 17620.720703125
+82.05431366 14330.34375
+123.0400696 12003.8271484375
+145.1826324 15463.4833984375
+149.5628662 27062.025390625
+149.5765686 30981.12890625
+167.0913849 37582.78515625
+169.0595093 27651.53515625
+175.117569 282701.375
+176.1213226 15573.2236328125
+177.0758209 62234.55859375
+178.0597839 339542.40625
+178.3410339 79479.5859375
+179.0634003 24920.978515625
+179.0910645 19676.642578125
+182.0912781 20501.033203125
+183.0748291 20884.318359375
+186.0858459 94968.8203125
+194.1019897 41193.1484375
+195.0862122 4136969.75
+195.1281128 20712.91015625
+196.0889435 404358.65625
+197.0919189 38500.74609375
+200.1020203 23344.587890625
+201.0853882 25795.525390625
+206.0907745 158919.21875
+208.4869232 11839.6875
+212.1122742 17444.75
+218.1026306 58906.26171875
+221.1004791 13147.71875
+232.1183472 15248.6845703125
+234.0955658 17231.52734375
+240.095871 28819.294921875
+244.1177673 16001.7548828125
+244.4313354 13823.42578125
+246.0967407 618894.375
+246.1255646 30098.96875
+247.0994873 78881.03125
+249.0957031 28479.306640625
+257.1223145 105980.921875
+260.1121521 125376.3515625
+270.0965271 140429.109375
+271.0982056 17995.03515625
+276.1064758 14742.119140625
+277.1364441 21172.71875
+278.1177368 22376.96484375
+278.1489868 26078.42578125
+283.1429749 64384.2265625
+287.1228638 144459.515625
+288.1070557 1530600.25
+289.1097107 232350.890625
+290.111145 23974.978515625
+295.1504211 28991.76953125
+303.1439819 29248.822265625
+304.1292725 21744.029296875
+305.1335449 3043910.0
+305.215332 19950.7265625
+306.1186218 1176382.875
+307.1208801 187226.796875
+308.1230774 17469.033203125
+311.1338806 53973.15625
+312.1144714 24001.62109375
+321.153595 334218.59375
+322.1568909 63483.125
+323.1439819 1097963.5
+324.1464844 166538.96875
+325.1499939 18501.328125
+329.1437988 57953.43359375
+338.1419373 60849.50390625
+338.1802673 384245.59375
+339.1827698 80567.1171875
+347.1431274 20430.818359375
+349.1601257 29765.91796875
+358.1585999 19146.982421875
+359.1433411 55530.19921875
+366.1856995 105189.109375
+367.1899414 17548.08203125
+369.1387329 20228.501953125
+376.1699219 130694.4453125
+377.1555176 83807.65625
+378.1575623 19705.3203125
+386.163208 39730.59375
+389.1523743 20298.630859375
+394.1802063 712718.3125
+395.181427 134927.125
+412.1896973 42628.984375
+468.2209167 41023.30859375
+469.2197571 15583.47265625
+474.7120361 17296.796875
+478.1999512 17008.869140625
+485.2466736 216316.828125
+486.2464294 47710.3984375
+488.1853943 58174.39453125
+489.1858215 18842.576171875
+492.2287598 205638.109375
+492.7302551 73406.3046875
+493.2297058 31706.41796875
+495.2257385 54298.28125
+496.2325134 14848.8935546875
+503.7146912 27393.560546875
+505.2120056 50529.51171875
+506.2057495 50919.5625
+512.2269897 29674.0625
+512.7340088 14758.1552734375
+521.230835 44413.3359375
+521.7379761 26986.736328125
+523.1340942 28645.033203125
+523.2211304 460856.9375
+524.2235107 151279.25
+525.2335205 26201.703125
+529.7427368 16652.470703125
+530.24646 16855.548828125
+554.2694092 17532.15234375
+558.7453003 40401.4921875
+571.7516479 61014.72265625
+572.2723999 332647.28125
+572.7476196 19133.2265625
+573.2788696 103006.7421875
+576.2597656 36203.97265625
+576.7636108 23311.94921875
+580.2608032 66669.484375
+580.7541504 2355071.25
+581.2554321 1620183.375
+581.756897 615798.1875
+582.258606 113451.75
+589.2640381 44802.48046875
+589.7722168 24126.57421875
+598.2723999 49014.0859375
+598.7720337 37413.8203125
+599.2769775 36855.359375
+599.7771606 111420.8359375
+606.256958 45959.4765625
+624.2639771 64715.953125
+625.2700195 25970.703125
+655.3148193 16932.21484375
+656.307373 14802.66015625
+673.3225098 397174.375
+674.3253174 148144.515625
+675.3306885 24627.1796875
+802.3616333 107438.34375
+803.3649902 35046.5078125
+873.3972778 93306.5859375
+874.4058838 46290.4453125
+875.4008179 17066.328125
+1001.468262 20328.25390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.272.272.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=272"
+RTINSECONDS=29.37523149
+PEPMASS=598.27001953125
+CHARGE=2+
+52.54109573 13451.6923828125
+54.07917786 15397.068359375
+64.52620697 72779.515625
+64.53061676 54352.62109375
+64.58200836 44384.05859375
+64.5861969 31464.05859375
+64.63806152 26547.587890625
+73.98820496 17947.86328125
+76.16254425 14126.9404296875
+82.05436707 15150.189453125
+108.1274261 15325.365234375
+133.1962433 18667.728515625
+149.5632477 37550.5078125
+149.5772095 27398.185546875
+167.0915985 35662.73828125
+169.0599365 39102.015625
+175.1179352 301141.4375
+176.1208954 20786.64453125
+177.0758972 73224.5
+178.0600739 387188.46875
+178.3466034 108734.1015625
+179.0643158 19628.47265625
+179.0923004 20180.8671875
+182.0906219 27603.111328125
+183.0758514 25779.99609375
+186.0861053 112147.8046875
+194.1033325 36610.65625
+195.0864716 4377569.5
+196.0892944 480904.96875
+197.0929565 33605.80078125
+200.1014709 24462.5703125
+206.0913239 172028.34375
+207.0942383 22324.767578125
+218.1021118 59648.515625
+239.1119843 23887.6640625
+240.0957031 37749.5546875
+243.0858459 25186.6640625
+246.0970764 585404.0625
+247.0999756 77914.6484375
+247.8098907 17844.708984375
+249.0990448 22298.99609375
+257.1228943 117772.8046875
+260.1125793 134310.578125
+270.0968628 132964.140625
+278.1496887 31065.626953125
+283.1425781 49114.9765625
+287.1238708 122841.7578125
+288.1075134 1653685.875
+289.110199 271585.25
+293.1359558 18509.0703125
+294.1194458 22247.423828125
+303.1446838 34308.19140625
+304.1288452 26407.501953125
+305.1340942 3292651.25
+306.0589905 20224.197265625
+306.1192932 1168375.875
+307.1214905 171686.953125
+308.124054 23013.65234375
+311.134552 51763.0625
+320.1319275 16616.75390625
+321.1540833 375361.3125
+322.1560059 33940.2734375
+323.1445312 1186554.5
+324.146698 180542.796875
+329.1428833 45409.28125
+338.1420898 44239.5078125
+338.1807556 446588.375
+338.6504211 16946.80859375
+339.18396 85456.6015625
+347.1504822 31806.41015625
+359.1453552 65863.1328125
+366.1862488 143740.84375
+367.1870728 19262.7421875
+369.1394958 27891.203125
+376.1703796 109606.6171875
+377.1550598 70878.453125
+378.1555176 21082.689453125
+394.1809998 741559.0625
+395.1822815 152985.78125
+412.189209 46207.11328125
+418.4324036 18171.3671875
+460.1890259 23984.4609375
+468.2241821 34235.24609375
+474.714386 17378.173828125
+478.2053528 27265.486328125
+485.2474976 182062.03125
+486.2498169 74817.5625
+488.1865845 53060.765625
+492.2294922 169072.34375
+492.7315674 110001.875
+493.2273254 31983.033203125
+495.2276001 61517.0859375
+496.2282715 22265.076171875
+505.2116699 55645.76953125
+506.2022705 49276.78125
+512.2259521 47631.63671875
+512.7263184 31709.001953125
+513.2293091 21952.26171875
+520.7409058 25464.330078125
+521.229187 41644.19140625
+521.7367554 19096.89453125
+523.2225342 425854.0
+524.2248535 144265.25
+525.2247925 29070.3671875
+571.7509766 129934.546875
+572.2749023 301426.5625
+572.7518311 42005.296875
+573.2789917 77856.1171875
+576.2612305 65849.796875
+577.2629395 20956.533203125
+580.2633667 113288.109375
+580.7553101 2602316.25
+581.2566528 1679310.5
+581.368042 28296.2265625
+581.758606 568265.0
+582.2592163 140084.21875
+589.2678833 92560.4453125
+589.7680664 54937.21875
+590.2650146 22350.916015625
+598.2731323 60420.0390625
+598.7698364 25520.642578125
+599.2717285 34230.0078125
+599.7766724 71312.3125
+606.2596436 33392.6015625
+624.2683716 57156.3203125
+673.3250732 418944.65625
+674.3295898 157722.859375
+675.3234863 25244.279296875
+693.2947998 36820.94140625
+802.3635864 139339.84375
+803.3666992 50510.6875
+873.397644 91304.3828125
+874.4037476 54122.2578125
+982.7042236 19263.30859375
+1001.444275 23094.556640625
+1058.472656 25413.21484375
+1226.591064 18425.291015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.273.273.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=273"
+RTINSECONDS=29.48266645
+PEPMASS=598.27001953125
+CHARGE=2+
+53.26727295 12876.5419921875
+58.13446808 21869.099609375
+64.52626801 72849.390625
+64.53063965 49784.69140625
+64.5819931 43271.59375
+64.58615875 29698.3828125
+70.15942383 12819.1328125
+102.0122528 15881.75
+149.5746765 34239.88671875
+167.0920563 32261.015625
+169.0591736 28417.513671875
+175.1177063 275454.4375
+175.1336975 10121.4267578125
+176.1202698 16448.810546875
+177.0759583 55794.14453125
+178.0600281 372777.59375
+178.0781555 17036.11328125
+178.3348846 42397.7265625
+178.3536835 51208.25390625
+179.0631104 26494.49609375
+179.0940247 17362.912109375
+186.0864105 103840.34375
+194.1018677 41561.03125
+195.08638 4118044.75
+195.1278839 34439.37890625
+196.0893707 419927.21875
+197.0920563 22352.646484375
+200.1010742 20452.22265625
+201.0855408 29813.814453125
+206.0909424 160713.8125
+207.0938568 18736.087890625
+212.1129913 19476.5625
+213.0846252 15451.95703125
+215.0914612 21968.82421875
+218.1017303 56895.93359375
+222.0861206 22846.15625
+234.0963593 17776.75
+240.0959778 29303.548828125
+243.0858459 21452.19921875
+246.0969238 617442.625
+247.0999756 73731.1875
+257.1229248 102853.3984375
+260.112793 96438.625
+261.1173706 21881.396484375
+270.0967102 120309.9453125
+278.1488037 24160.578125
+283.1439819 38019.59765625
+287.1233215 141691.5
+288.1073303 1543971.25
+289.1100464 241161.609375
+289.8036804 14251.4580078125
+290.1115112 20012.40625
+294.1174927 28995.55078125
+295.1487122 19624.85546875
+303.1440125 17610.482421875
+304.1286926 19129.55078125
+305.1339111 3119295.0
+306.1191101 1131577.0
+307.1215515 180845.984375
+308.1231995 15342.0556640625
+311.1345215 53214.4609375
+312.1161499 25953.208984375
+321.1537476 325862.125
+322.1580505 55273.2265625
+323.1443787 1038856.0625
+324.1462097 207631.453125
+329.1435852 50710.84765625
+338.1427612 46090.84375
+338.1805725 366922.8125
+339.183136 72269.1796875
+346.1698303 15858.1513671875
+349.1593018 22683.041015625
+358.163208 23894.208984375
+359.1442261 68998.9453125
+366.1861877 127739.5859375
+367.193573 14552.0625
+369.1371765 27669.3828125
+376.1705017 110673.40625
+377.1552429 90314.296875
+386.1630249 31222.005859375
+394.1806641 730092.375
+394.2406006 25556.3984375
+395.1824951 130164.609375
+412.1899719 19250.869140625
+420.6844788 23349.294921875
+449.2561951 13859.3359375
+460.1906433 18236.908203125
+468.2224731 52861.63671875
+469.2150879 14041.396484375
+483.7178955 25048.83984375
+485.247406 228322.78125
+486.249054 61487.65625
+488.1878052 43139.69921875
+492.2292175 172715.765625
+492.7294006 111956.1875
+493.2332764 32610.302734375
+495.2261047 51123.265625
+503.7103882 19746.91015625
+505.2122803 68137.796875
+506.2026672 50555.515625
+512.2283325 55200.859375
+512.7258911 29175.705078125
+513.2331543 19928.2109375
+520.7376099 17810.10546875
+521.2294312 32279.1953125
+521.7294312 19693.359375
+523.222168 472884.1875
+523.3095093 28949.3828125
+524.2241821 134826.046875
+525.2261353 40088.81640625
+530.2421265 14917.28125
+567.2615356 20216.568359375
+571.7501221 107811.3125
+572.2753906 335434.5
+573.2805176 94599.0859375
+574.2834473 19946.798828125
+576.2623291 49560.671875
+576.760498 26393.00390625
+577.263916 21306.38671875
+580.2623901 100117.5078125
+580.7548828 2454750.0
+581.2561646 1686245.875
+581.7576904 591278.4375
+582.258667 134543.046875
+589.2675781 50637.8671875
+589.7697754 28036.142578125
+598.2710571 67734.765625
+598.7797241 32745.7890625
+599.2730713 34848.7578125
+599.7769775 75745.2734375
+606.2589722 19544.6328125
+624.2683716 39208.4375
+625.2686157 19607.501953125
+655.3104858 16526.08203125
+673.3240967 468488.65625
+674.3265381 161013.03125
+675.3280029 47569.96875
+712.2893066 16910.876953125
+802.3638306 85975.9296875
+803.3654785 34680.55859375
+815.7391968 17508.361328125
+873.3973389 81727.3125
+874.4038086 43462.10546875
+1002.451233 19324.150390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.274.274.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=274"
+RTINSECONDS=29.59207506
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13739014 18124.23046875
+58.26329422 13529.66796875
+58.79296112 13346.8271484375
+64.52631378 65724.484375
+64.5304718 44416.8203125
+64.58198547 50363.6328125
+64.58609772 35832.75
+64.63824463 18741.080078125
+65.60253906 16569.138671875
+66.20619202 13797.35546875
+79.87303925 15799.9482421875
+94.52124786 13489.2744140625
+99.9145813 13107.5849609375
+137.5758057 14771.7841796875
+144.4884338 15986.9853515625
+149.5707855 57753.140625
+167.0917511 42094.80078125
+169.0596161 44543.125
+175.1177216 299223.40625
+176.1198578 35492.84765625
+177.0758514 66341.8984375
+178.0600433 334037.4375
+178.3437042 99967.4375
+179.0636902 24743.755859375
+182.0921783 24699.072265625
+183.0758667 22488.240234375
+186.0860291 109882.796875
+194.1029205 46394.859375
+195.08638 4487369.5
+196.0891418 445388.1875
+197.0913239 37670.44140625
+200.1019745 20252.857421875
+206.091217 149476.296875
+207.0944977 22453.609375
+215.0904694 19974.740234375
+218.1021576 51887.3125
+222.0857697 17496.474609375
+230.1612549 13012.2978515625
+234.0965271 19039.099609375
+240.0957336 39424.609375
+243.0842743 23664.435546875
+244.1152954 14413.1552734375
+246.0969391 664930.6875
+247.0995789 96292.3515625
+257.1225281 124740.125
+260.1122742 129161.4140625
+270.0971069 143082.6875
+278.1483765 29250.267578125
+283.1438904 59430.6015625
+287.1234131 176366.8125
+288.1072998 1658621.375
+289.1100159 226705.953125
+290.1119995 21639.357421875
+294.1157837 14934.884765625
+303.1427307 16485.37890625
+304.1287842 31921.68359375
+305.1339722 3354454.75
+305.2161865 20301.5859375
+306.1191406 1167129.125
+307.1213989 226307.015625
+308.1236572 17557.328125
+311.1356812 41319.2734375
+312.1167908 40797.61328125
+321.1542969 355650.9375
+322.1548767 49959.41796875
+323.1443481 1222554.25
+324.1464539 202435.609375
+328.1608887 20507.259765625
+329.144928 63054.89453125
+338.1417847 62357.58984375
+338.1809692 381564.25
+339.1828003 63648.00390625
+347.148468 24522.337890625
+349.1579285 20441.361328125
+351.1292114 16245.615234375
+359.14328 68669.4921875
+366.185791 126875.4453125
+367.1850281 28231.84765625
+368.9967346 14364.1318359375
+369.1361389 23172.326171875
+376.1703796 127854.296875
+377.1581116 67979.5078125
+378.1556702 18547.796875
+386.1639709 32337.140625
+394.1810303 792755.1875
+395.1826782 158378.375
+412.1912842 24402.099609375
+434.7671509 17519.1640625
+450.2062378 21898.791015625
+452.1896667 17506.37109375
+460.1891174 25280.31640625
+468.222168 59713.4609375
+483.7133484 26614.435546875
+485.2471924 245972.1875
+486.2514343 65160.90234375
+488.1864014 52455.54296875
+492.2297363 198486.921875
+492.7310486 108312.9609375
+493.2275696 17821.6484375
+495.2255249 65783.46875
+505.2115784 47995.70703125
+506.2060852 40424.8125
+512.227478 54501.31640625
+512.7263794 29597.888671875
+520.7398071 20858.455078125
+521.2336426 29452.255859375
+523.2223511 499946.21875
+524.2241821 118519.8671875
+525.2301025 19042.583984375
+529.7420044 20170.318359375
+558.743103 29910.609375
+559.2427368 28768.755859375
+567.2418213 21479.8984375
+571.7470093 77368.5
+572.2751465 367528.40625
+572.75 36292.86328125
+573.2808228 86581.3515625
+576.2578735 55923.36328125
+576.7614136 43118.9921875
+577.2592163 29960.9296875
+580.2615967 102599.5390625
+580.7550049 2531996.5
+581.2563477 1721885.125
+581.3672485 27641.546875
+581.7584229 654960.375
+582.2594604 132405.5625
+589.2661743 74824.5234375
+589.7611694 30482.4375
+598.2758789 42820.9921875
+599.2791748 30978.10546875
+599.7797241 45621.3984375
+606.2554932 27835.064453125
+624.2683716 54860.1640625
+655.3040161 20648.583984375
+673.3240967 408118.1875
+674.3273315 136964.53125
+675.3275757 46577.828125
+693.2764893 26763.228515625
+802.3638916 83627.65625
+803.3630981 35602.359375
+858.3847046 19017.900390625
+873.3999634 105077.25
+874.4025269 49310.52734375
+965.831665 18161.01953125
+1001.466187 21882.51953125
+1058.476685 24042.404296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.275.275.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=275"
+RTINSECONDS=29.70015326
+PEPMASS=598.27001953125
+CHARGE=2+
+50.10783386 14356.64453125
+50.37095261 17051.369140625
+53.78049469 15155.84765625
+54.56058502 14227.4150390625
+64.52630615 77280.875
+64.53073883 51034.1328125
+64.58200073 56134.7890625
+64.58621216 35807.83984375
+64.63822937 25834.048828125
+64.64174652 17945.42578125
+74.81206512 17106.44140625
+74.81636047 16831.875
+94.2408371 14331.994140625
+95.13324738 16771.037109375
+149.5683899 63523.640625
+167.0919952 28644.140625
+169.0596313 32899.21875
+175.1179199 321506.03125
+176.1215363 22980.1328125
+177.0760345 56528.0234375
+178.0600586 353584.1875
+178.077179 15657.146484375
+178.3416901 110821.2734375
+179.063446 35714.40234375
+182.0914001 21129.875
+183.0755615 24171.66796875
+186.0865021 112217.53125
+194.1032104 33673.89453125
+195.0865173 4609066.5
+196.0892487 469315.84375
+197.092804 26403.970703125
+200.1009979 24899.529296875
+206.0909576 167096.484375
+215.0936584 21981.318359375
+218.1031799 58787.3359375
+222.0860748 20211.572265625
+234.0981445 22604.0859375
+240.0960999 27383.029296875
+243.0863037 20266.5234375
+246.0970306 650790.3125
+247.0996857 81023.2421875
+249.0972443 23570.9296875
+257.1231079 109945.8203125
+258.1250305 28382.052734375
+260.112793 109487.59375
+270.0967712 126076.765625
+271.1017761 21657.0546875
+278.1489258 40898.51171875
+283.1426392 59379.234375
+283.4229126 20233.71484375
+287.1237793 173462.921875
+288.107605 1664607.875
+289.1104431 246295.203125
+290.1161194 20551.40234375
+294.1192932 29944.66796875
+295.1502075 25368.619140625
+303.1459961 24046.40234375
+304.1279907 22342.04296875
+305.1341553 3299069.75
+306.1188965 1300909.125
+307.1213684 239162.734375
+311.1353455 72763.1640625
+312.1210327 52891.32421875
+319.1545105 17907.404296875
+321.1541748 327492.03125
+322.1565552 73321.3515625
+323.1445923 1169923.0
+324.1470642 191981.8125
+325.1491699 22531.8203125
+328.1601868 22717.84375
+329.1444092 69603.171875
+331.1496277 17414.478515625
+338.1426086 51779.44140625
+338.1808167 442355.5625
+338.645874 20333.201171875
+339.1825562 86187.2890625
+346.1704407 23500.669921875
+349.1600952 23955.478515625
+358.1661682 22045.80078125
+359.1438904 73423.03125
+366.1862793 146177.671875
+367.1867981 24893.681640625
+369.1377869 34822.59375
+376.1699524 116237.765625
+377.1554871 70937.28125
+386.1651611 30420.970703125
+394.1812744 769307.5625
+394.2394714 34001.01171875
+395.183197 163782.40625
+412.1943665 20487.041015625
+412.6410522 17002.22265625
+420.6868286 24221.4296875
+460.1909485 23067.041015625
+468.222168 88511.453125
+477.2174683 20267.431640625
+478.2068481 27072.373046875
+483.7200012 23640.107421875
+485.2469177 244553.03125
+486.2488403 60201.9765625
+488.1836548 39400.65625
+492.2294617 174360.21875
+492.7331848 77474.828125
+493.2312012 26952.203125
+495.2252502 56306.97265625
+496.2262268 18625.0703125
+503.2238464 26920.64453125
+503.7203979 23291.916015625
+505.2144165 54636.37890625
+506.2044678 54138.046875
+506.7270813 27898.060546875
+512.2280884 25442.029296875
+512.7283936 38116.07421875
+521.2336426 28159.76171875
+523.2224731 509602.28125
+524.2243042 118837.859375
+525.2266235 19430.125
+529.7474976 25870.697265625
+537.2327881 18856.267578125
+555.2572632 36468.72265625
+558.7484741 19235.12890625
+571.7508545 86990.1953125
+572.2740479 332744.875
+573.2810059 120188.296875
+574.2858276 28014.85546875
+576.2617798 71775.6015625
+576.7595215 44264.7265625
+580.2633057 99004.0859375
+580.7553711 2769803.0
+581.2564697 1861183.125
+581.7579956 728384.6875
+582.2596436 130639.3046875
+589.2686768 135370.34375
+589.7648315 72380.296875
+590.2764282 23667.9765625
+598.2728882 55770.7421875
+598.7745361 58693.3359375
+599.7810059 49352.59765625
+606.2540283 54113.94140625
+624.2685547 56072.296875
+625.2744141 34953.44921875
+655.3187256 25264.357421875
+673.3244019 490802.8125
+673.4510498 31405.984375
+674.3261108 184612.328125
+675.3326416 28844.890625
+802.3630981 100857.4140625
+803.3696899 31688.16796875
+873.4024658 111197.1484375
+874.4030151 55499.9921875
+1001.456604 37014.8359375
+1061.923584 16877.73046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.276.276.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=276"
+RTINSECONDS=29.80679757
+PEPMASS=598.27001953125
+CHARGE=2+
+53.5723381 13524.2998046875
+58.13434601 19324.1640625
+58.13723755 16163.8564453125
+64.52630615 65140.30859375
+64.53050232 40000.16796875
+64.58203888 46940.59375
+64.58612061 35997.15234375
+64.63803864 30156.8984375
+64.64130402 15470.6953125
+103.5213699 15093.6376953125
+119.094368 14392.1328125
+120.6968613 19502.9140625
+130.4410553 15170.44921875
+149.565094 39162.4375
+167.0921173 38936.82421875
+169.0601654 36216.7890625
+175.1179047 300003.15625
+177.0759277 57108.3125
+178.0601501 375711.0
+178.0779724 25474.5390625
+178.3523712 63159.51171875
+179.064621 23686.193359375
+179.0921326 19667.451171875
+182.0917816 14824.8173828125
+183.075119 27167.357421875
+186.08638 113076.53125
+194.1029663 29682.55078125
+195.0864716 4451184.5
+195.128006 31810.013671875
+196.0892639 420066.21875
+200.1030426 25399.271484375
+206.091217 160446.234375
+209.1027069 22514.861328125
+212.1127777 22536.875
+215.0925903 19139.9140625
+217.1282959 24563.509765625
+218.1020355 56334.91796875
+234.0969391 17559.908203125
+239.1125336 21131.830078125
+240.0960846 22944.796875
+246.0970154 659466.0625
+247.1003571 88105.9140625
+248.1108551 17499.990234375
+249.0970459 20296.009765625
+257.1226196 101759.4609375
+260.1125183 107318.6875
+270.0966492 123985.203125
+271.1013184 20796.39453125
+278.1500244 26595.74609375
+283.1437683 40538.83203125
+287.1232605 167444.5
+288.1074524 1658835.25
+289.1099854 229667.453125
+290.1124573 26429.498046875
+294.1176147 32514.970703125
+295.1148682 16450.09765625
+295.1502686 34237.33203125
+303.1437988 20963.34765625
+304.1263123 22901.689453125
+305.1339722 3221863.75
+306.1192322 1197321.625
+307.1216431 190591.34375
+308.1226501 21085.333984375
+311.1357727 59823.88671875
+312.1169128 43971.77734375
+318.1412354 17710.03125
+321.1542053 383528.75
+322.1585083 60698.0078125
+323.1444092 1161806.125
+324.1466675 201944.5
+325.1488647 19064.64453125
+328.163269 16984.84765625
+329.1416626 35987.3828125
+338.1425476 44146.0625
+338.1805115 430272.15625
+339.1826172 81311.203125
+341.147644 22473.91015625
+346.1739197 18340.5078125
+347.6438293 21196.900390625
+359.144104 57285.234375
+360.149353 19781.4609375
+366.1862488 135869.65625
+367.1800842 17002.552734375
+369.1384888 41780.7890625
+376.1703491 116419.046875
+377.1578369 75033.4140625
+386.1638794 19591.72265625
+394.1808777 783865.9375
+394.2408142 24701.78515625
+395.1824646 168318.0
+412.1870422 27483.400390625
+460.1875 28062.26953125
+468.2200012 55112.640625
+478.203125 21041.53125
+485.2475281 208852.640625
+486.2503052 75769.8984375
+488.1852722 62997.72265625
+489.1899719 19504.94921875
+492.2289734 167194.515625
+492.7300415 93495.6796875
+493.2314758 23244.81640625
+495.2293396 53943.94140625
+503.7142334 22621.66796875
+505.2121582 61754.79296875
+506.2050171 54731.9765625
+512.2267456 32448.525390625
+512.7271729 46981.48046875
+521.2351685 28322.841796875
+523.222229 475673.03125
+524.2249756 138990.71875
+525.2341919 35753.453125
+529.7483521 20351.85546875
+555.2487183 25752.44921875
+558.7399902 46977.14453125
+559.2409668 23205.333984375
+571.7480469 83777.4140625
+572.2739258 303006.90625
+573.2789917 102989.84375
+576.258667 27526.146484375
+576.760437 23238.458984375
+580.2624512 85891.203125
+580.7548218 2484606.0
+581.2561646 1630731.75
+581.7571411 644948.8125
+581.8355103 14929.5087890625
+581.8627319 26745.58203125
+582.258606 108507.890625
+589.2677612 76244.359375
+589.7702026 39632.66015625
+598.272583 62820.2890625
+598.7734985 43550.72265625
+599.2744141 19700.75390625
+599.7762451 86676.65625
+606.2556763 44253.78125
+624.2669678 73523.6875
+673.3234253 394678.75
+674.3259888 168188.453125
+675.3207397 30674.56640625
+693.2868652 23868.9140625
+711.3021851 33642.25
+802.3623657 124464.84375
+803.3657227 49890.703125
+873.3978882 94783.84375
+874.4052734 70647.9765625
+955.7247314 16400.5
+1001.462463 24207.97265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.277.277.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=277"
+RTINSECONDS=29.91473979
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58519363 14864.8681640625
+64.52624512 61158.1484375
+64.53068542 49808.1171875
+64.5821228 49082.80078125
+64.58614349 33281.96875
+64.63800049 15701.9677734375
+64.6415863 16536.8125
+67.86225128 14512.4755859375
+70.22669983 16124.6552734375
+76.28100586 14974.494140625
+76.2853775 14767.6787109375
+79.17501831 15983.0654296875
+85.88285828 16145.16015625
+135.9615021 15093.1650390625
+149.570816 52724.30078125
+167.0919189 42892.31640625
+169.0601501 43561.13671875
+175.117981 301573.59375
+176.1220551 19270.025390625
+177.0756836 73905.6796875
+178.0601501 327750.53125
+178.3455353 104336.5234375
+179.0632172 25217.4921875
+179.0914307 23785.78125
+183.0746613 29087.6171875
+186.0861053 114454.6328125
+194.1042938 32503.39453125
+195.0864868 4464169.0
+195.1282959 25141.482421875
+196.0892487 431075.15625
+197.0918427 24324.193359375
+200.1004944 25729.205078125
+201.0862274 18440.625
+206.0910645 136497.796875
+207.0944214 18447.1953125
+212.113205 16079.2705078125
+215.090271 18965.830078125
+218.1025238 54687.22265625
+221.100647 14836.5595703125
+239.1148529 19191.85546875
+240.0957031 33493.33984375
+243.0862122 25432.662109375
+244.1174316 18342.078125
+246.0970154 691513.1875
+247.0996399 78730.4453125
+248.1121674 21099.978515625
+257.1229248 91568.2109375
+258.1231384 18911.71484375
+260.1128845 143380.046875
+269.2005005 16488.33203125
+270.0969849 141554.5
+273.1225891 16755.146484375
+278.1495361 29892.412109375
+283.1445923 40690.078125
+287.1234131 162517.078125
+288.1075134 1676119.875
+289.1102295 218458.71875
+290.11203 25291.056640625
+294.1159668 30626.38671875
+303.1452026 35920.60546875
+304.1290894 17711.7265625
+305.1340332 3331658.25
+305.2165527 26199.806640625
+306.1190796 1204064.75
+307.1217346 209974.390625
+311.1345215 63541.14453125
+312.1157532 30828.255859375
+321.1539917 333589.84375
+322.1567383 50239.6796875
+323.1445007 1166692.125
+324.1471558 184222.25
+325.1505737 15738.2109375
+329.1443787 58669.8984375
+331.1489868 18394.712890625
+338.1419373 55926.0546875
+338.1808472 452079.90625
+339.1837463 86297.6015625
+347.1506042 20084.328125
+359.1433716 68364.40625
+366.1861572 151641.15625
+367.1846008 16490.482421875
+369.1390381 25944.97265625
+376.1712952 126580.5703125
+377.1578064 77379.9609375
+386.1647339 29579.9296875
+394.1810608 749256.6875
+394.2396545 24170.748046875
+395.1824646 139312.390625
+412.1879883 30975.775390625
+413.164093 17468.263671875
+420.6849976 16420.822265625
+468.2211609 48884.17578125
+477.2137756 18275.681640625
+483.7167358 17680.544921875
+485.2476501 196413.765625
+486.2516785 58253.19921875
+488.1871033 51278.86328125
+492.2293701 159918.625
+492.7309875 69647.1171875
+493.2309875 36127.0859375
+495.2252808 59727.3984375
+505.2128906 54325.765625
+506.2120361 51319.63671875
+507.2208252 22291.685546875
+512.232666 36873.26953125
+521.2345581 33254.78125
+521.7358398 25270.47265625
+523.222168 423035.0
+524.2259521 103164.6875
+555.2518921 21878.94921875
+558.7453613 51594.41796875
+567.2595215 25184.0859375
+571.7507935 94705.8984375
+572.2757568 300692.09375
+572.7628174 20174.1640625
+573.2805786 75740.9296875
+576.2614136 47350.625
+576.7637329 32035.64453125
+577.2609863 36079.10546875
+580.2620239 76334.8515625
+580.755188 2424463.5
+581.2563477 1670043.875
+581.3668823 19248.953125
+581.7581787 593064.5
+582.260437 106976.15625
+589.2674561 83642.46875
+589.7702026 55881.4375
+598.2722778 55764.19140625
+598.7719116 20245.115234375
+599.272522 30059.0
+599.7774658 81494.015625
+606.2640991 34037.15234375
+624.2687988 68808.03125
+625.2733154 19121.7734375
+673.324585 470542.5625
+674.3269653 148222.3125
+675.3233032 27862.39453125
+711.2949829 19774.529296875
+802.3648071 100362.6484375
+803.3676758 31513.521484375
+873.4001465 111465.5546875
+874.4021606 65773.171875
+1001.458862 27739.548828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.278.278.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=278"
+RTINSECONDS=30.02216243
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13439941 13791.2158203125
+64.52623749 51613.52734375
+64.5304718 33101.3515625
+64.58205414 34969.5234375
+64.58624268 28956.1796875
+64.63811493 21223.181640625
+64.64147186 12378.296875
+65.4886322 10735.7177734375
+71.32408142 13080.1689453125
+74.81181335 15530.466796875
+136.7115631 12259.5869140625
+149.5641632 20077.650390625
+167.0915222 50500.6796875
+169.0604248 29877.314453125
+175.1018524 8661.28515625
+175.1180267 274328.84375
+176.1208801 24577.53515625
+177.0762787 73263.796875
+178.0601807 322110.21875
+178.3387299 69142.0078125
+179.0637512 33694.78125
+183.0742035 22357.673828125
+186.0862732 107819.6953125
+194.1022797 53152.49609375
+195.0865631 3889925.75
+196.0894012 456853.40625
+197.0923157 30599.947265625
+200.1012115 25901.08203125
+201.0854034 16360.740234375
+206.0912628 150107.28125
+209.1015778 21678.541015625
+215.0928802 11984.134765625
+218.1028595 66506.9296875
+233.1250763 13196.162109375
+234.098175 17785.986328125
+244.118454 16384.814453125
+246.0972137 669914.9375
+247.1003571 91667.6484375
+249.0968781 23854.62109375
+257.1230164 93873.3671875
+260.1130371 112108.1640625
+261.118927 15748.5517578125
+270.0971069 150996.203125
+278.1193237 16810.24609375
+278.1497803 24286.2890625
+283.1433411 47366.0546875
+287.1236267 135210.09375
+288.1076965 1618703.75
+289.1103516 250800.75
+289.1430664 21103.98046875
+290.1135559 16082.505859375
+294.1164551 17366.79296875
+295.1494751 20952.353515625
+302.135437 14089.310546875
+303.1444702 38052.53515625
+304.1269531 19073.4765625
+305.1343079 3012582.0
+306.1194763 1110939.125
+307.1217346 185986.84375
+308.1240845 17669.197265625
+311.1345825 42673.09375
+312.1174316 35668.73046875
+320.1696472 19290.669921875
+321.1544495 305666.4375
+322.1575012 65022.1484375
+323.1448669 1061014.875
+324.1471558 177619.453125
+328.1627502 20228.552734375
+329.1438599 53922.6640625
+338.1429749 44840.5234375
+338.1809082 396546.78125
+339.1839294 90024.96875
+347.1491394 22580.181640625
+347.6514282 23832.404296875
+349.163208 29653.15625
+358.1657715 14311.1396484375
+359.1451111 76020.0
+360.1450195 13948.4814453125
+366.186676 131225.328125
+367.1873169 16347.5693359375
+369.1393127 44667.23046875
+376.1708069 109092.046875
+377.1567383 84597.9140625
+386.1638794 22351.330078125
+394.1366882 13172.962890625
+394.1813965 696972.0625
+394.2406311 21644.361328125
+395.1834106 151837.609375
+396.1843262 19726.548828125
+397.6824341 19616.43359375
+412.1833801 28370.341796875
+420.6822205 14317.376953125
+434.1697998 18697.19140625
+442.1860657 13506.8955078125
+468.221405 55428.82421875
+477.2204285 28872.11328125
+483.7206421 17037.625
+485.2481689 217755.328125
+486.251709 71092.0546875
+488.1864319 58138.6015625
+489.1890259 21776.4296875
+492.2299194 167732.546875
+492.7323608 74803.4375
+493.2329712 33065.73828125
+495.2259521 56090.01171875
+503.7131653 20815.853515625
+505.214447 52286.6015625
+506.2093201 51024.9375
+512.2264404 48163.1875
+512.727356 18270.33203125
+520.7427368 16891.35546875
+521.2297363 19507.119140625
+521.7345581 13401.029296875
+523.2232056 436128.40625
+524.2249146 129855.0859375
+525.2271118 20508.3046875
+529.7468872 14621.146484375
+555.2588501 19659.93359375
+567.2574463 23210.794921875
+571.7501831 79379.6328125
+572.2764893 282115.21875
+573.2803955 85779.796875
+574.2861328 16325.947265625
+576.2591553 27533.955078125
+576.7645874 45048.3984375
+577.2658691 28942.173828125
+580.2643433 66192.8203125
+580.7564087 2020482.0
+581.2572021 1340479.5
+581.6504517 16296.8896484375
+581.6791382 9818.7177734375
+581.7587891 513428.0625
+582.2615356 80369.0078125
+589.2713623 38005.0546875
+589.7717896 22219.23046875
+598.2718506 53018.5078125
+598.7758179 29378.423828125
+599.2758789 38719.9453125
+599.7781372 76471.3984375
+606.2600098 34765.1328125
+624.2684326 41515.609375
+625.2739868 19514.16796875
+673.1969604 25139.17578125
+673.3255615 401919.09375
+674.3271484 138542.609375
+675.3343506 24530.70703125
+693.2946777 21115.330078125
+711.2985229 17664.982421875
+802.3674316 83628.0546875
+803.366272 33576.42578125
+873.4038696 73416.8984375
+874.406189 34913.45703125
+1001.456543 14814.701171875
+1058.493774 20493.3828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.279.279.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=279"
+RTINSECONDS=30.13261355
+PEPMASS=598.27001953125
+CHARGE=2+
+50.69949722 14913.3349609375
+64.52629089 65521.13671875
+64.53069305 46744.3984375
+64.58197021 49424.14453125
+64.58615112 34604.87890625
+64.63825226 24190.87109375
+64.64156342 21487.142578125
+74.8120575 20270.328125
+74.81619263 14158.84375
+77.84340668 14443.3291015625
+82.05417633 18851.53515625
+108.7135162 16218.5478515625
+149.5682373 55700.30078125
+167.0919495 47966.43359375
+169.0593414 29353.89453125
+175.1177063 305942.53125
+175.1348114 9878.8408203125
+176.1216583 17165.736328125
+177.0758972 53073.63671875
+178.0600433 366517.15625
+178.3368073 55823.19921875
+178.355896 26246.744140625
+179.0626678 23836.841796875
+179.0919952 26312.9921875
+183.075943 20662.908203125
+186.0861206 118522.890625
+194.1027069 37137.265625
+195.0863647 4220102.0
+195.1281586 23414.87890625
+196.0890808 427983.46875
+197.0930023 21783.041015625
+200.1004791 23274.810546875
+206.0912476 183244.75
+218.1022034 51162.41015625
+234.0959625 20834.978515625
+239.1121368 14869.47265625
+240.0966492 17283.427734375
+243.0861816 20152.208984375
+244.1176605 20525.96484375
+246.0969238 659281.5
+247.0988159 68884.8359375
+257.1223755 107052.8046875
+260.1123962 121357.203125
+261.1177063 23951.306640625
+270.0970154 146676.859375
+271.1026611 15686.685546875
+278.1483459 26136.291015625
+283.1430054 35312.59765625
+287.123291 194702.53125
+288.1073303 1636549.125
+289.1101685 309551.03125
+290.1125183 21229.314453125
+294.1181335 23465.775390625
+295.1485901 24575.419921875
+303.1433411 24316.220703125
+304.1274109 17573.341796875
+305.1338196 3258864.75
+306.1191711 1171431.125
+307.1211853 196529.8125
+311.1347351 48823.04296875
+312.1159058 21079.01953125
+318.1418457 21659.791015625
+321.1538696 369899.0625
+322.1557617 55897.51953125
+323.0985718 19252.375
+323.1442566 1087132.75
+324.1466064 178473.359375
+325.148468 20032.703125
+328.1609497 16684.791015625
+329.1446838 53652.5234375
+337.1607971 15418.783203125
+338.1419067 56458.41796875
+338.1804199 412204.84375
+339.1827393 72734.6484375
+347.1479797 19847.75
+349.1585388 30475.701171875
+358.166626 21687.92578125
+359.143158 66067.2578125
+366.1860962 127598.1015625
+369.139679 27957.638671875
+376.1699829 131545.0
+377.1555176 75190.828125
+386.166687 23072.060546875
+394.1807251 703984.125
+394.2399902 25689.828125
+395.1822205 142552.84375
+396.186676 17368.607421875
+412.188446 39448.00390625
+413.1619263 23180.548828125
+450.210083 19547.080078125
+460.1884155 18876.5703125
+468.2218323 43641.84765625
+477.2145996 17380.994140625
+485.2469482 210571.96875
+486.249176 70337.046875
+487.1978149 17399.025390625
+488.1860657 51727.58984375
+489.1872864 21283.76171875
+492.2293091 173166.96875
+492.7301941 95518.21875
+493.2304077 22994.876953125
+495.2273254 55010.4453125
+503.7154846 23430.494140625
+505.2122803 60158.30078125
+506.1983337 33760.26953125
+512.225647 47304.43359375
+512.7247925 21161.529296875
+513.2247925 20405.171875
+521.2332153 48859.63671875
+521.7352295 35041.13671875
+523.2216187 430108.90625
+524.2235107 118712.328125
+525.2302246 38485.75390625
+558.750061 18866.603515625
+571.7504883 74085.1171875
+572.2737427 316826.75
+572.7543945 39166.3671875
+573.2773438 86314.5703125
+574.2794189 28533.53515625
+576.2588501 56248.234375
+576.7612305 25571.68359375
+580.2618408 102103.1171875
+580.7546387 2494838.5
+581.2558594 1673162.125
+581.3668823 20473.33203125
+581.7578735 666136.1875
+581.8640747 27942.2109375
+582.2572632 101641.109375
+589.2679443 46678.65625
+589.7660522 29830.044921875
+598.2695312 39615.29296875
+598.7720947 58143.171875
+599.2731934 29490.779296875
+599.7783813 66441.53125
+606.2598267 33108.515625
+624.2677002 53575.60546875
+655.3181763 29625.359375
+673.3237915 444042.4375
+674.3250732 167294.640625
+675.3264771 19707.2421875
+693.2931519 22675.666015625
+802.3619995 118696.359375
+803.3706665 45300.62890625
+873.4014893 106267.5
+874.4040527 43191.1796875
+1002.474915 21877.0078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.280.280.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=280"
+RTINSECONDS=30.24092917
+PEPMASS=598.27001953125
+CHARGE=2+
+51.11883545 15304.505859375
+54.31010056 13959.6123046875
+64.52636719 62461.73046875
+64.53068542 46697.07421875
+64.58203125 46012.15625
+64.58625031 28101.52734375
+64.63806152 27832.88671875
+64.64134216 15195.59375
+74.73524475 15209.2197265625
+88.36737061 14138.7919921875
+117.2957153 13966.041015625
+138.5236206 18955.173828125
+141.6895599 16874.8359375
+149.5720367 57867.0625
+167.0914764 48040.96484375
+169.0601196 42305.921875
+171.6068878 17525.513671875
+175.1181335 300696.125
+175.1353302 14531.45703125
+176.1207123 14249.83984375
+177.0762787 66220.203125
+178.0602112 348994.375
+178.3433075 105834.1328125
+182.2822571 17588.103515625
+183.0746613 25049.09375
+186.0862122 113255.2578125
+190.059906 18393.408203125
+190.1068878 20555.810546875
+194.1034393 22913.740234375
+195.0866089 4460596.5
+195.1279144 21199.912109375
+196.0895996 451191.875
+197.0915833 28123.259765625
+200.1023407 34205.53125
+201.0847778 17669.76171875
+206.0913544 142818.046875
+218.1022034 67688.203125
+222.0868378 19689.861328125
+239.1140594 18102.513671875
+240.0965118 33948.1171875
+243.0844269 20123.591796875
+246.0972137 673137.0625
+247.0996399 68630.1484375
+249.0986481 20857.36328125
+257.12323 102661.2421875
+260.1130371 116319.9296875
+270.097229 124912.0078125
+277.1391602 21303.837890625
+278.118927 25393.330078125
+278.1512756 31734.48828125
+283.1424866 48285.4453125
+287.1238708 163157.484375
+288.054657 25107.4453125
+288.1076965 1556431.625
+289.1106567 209126.953125
+290.1118774 20566.34375
+294.1194153 38112.98046875
+295.1488953 24874.544921875
+303.1427307 33374.4375
+305.1342773 3300341.0
+306.1193237 1145469.625
+307.1217346 212652.234375
+308.1226196 24223.509765625
+311.1355896 56028.1953125
+312.1176147 42348.90234375
+321.15448 348896.09375
+322.1573181 79312.0625
+323.1448059 1179039.5
+324.146759 183339.1875
+325.1492004 20798.3046875
+329.1423035 50026.7421875
+331.1498718 22185.125
+338.1422424 64198.45703125
+338.1809082 415468.6875
+339.1838989 82468.2109375
+341.1460266 23037.22265625
+346.1759949 20374.1328125
+347.1484375 17152.5859375
+349.1599731 23196.453125
+351.1351624 21079.33203125
+359.1446838 53357.07421875
+366.1863403 143323.90625
+369.1376648 21747.1484375
+376.170929 147777.234375
+377.1572266 87853.109375
+378.1590576 26358.150390625
+386.1651001 34573.50390625
+394.120697 20901.728515625
+394.1813354 802709.25
+394.240448 22004.8671875
+395.1828003 149691.84375
+412.1905823 46840.015625
+434.1796265 18353.333984375
+468.222229 52928.84765625
+469.2270508 19836.76171875
+477.220459 23958.05078125
+478.2051697 20409.66015625
+483.7144165 19195.197265625
+485.2476501 226899.65625
+486.2506104 44571.47265625
+488.1865845 49854.48046875
+492.2295532 179185.375
+492.7320251 91973.3515625
+495.2274475 54425.27734375
+503.2200928 23225.3046875
+505.2112122 69614.1640625
+506.2127991 53212.62890625
+512.2294922 44108.515625
+512.7267456 33023.8046875
+513.2316284 17753.833984375
+521.2321777 35319.6015625
+523.2228394 444199.4375
+524.2252808 125914.34375
+525.2213135 25490.16796875
+559.2451172 21223.158203125
+567.7563477 19645.01953125
+571.7520752 87658.1640625
+572.274292 295441.0
+572.7578735 18471.634765625
+573.2814331 94273.96875
+576.2640381 46989.53125
+576.7600708 26869.142578125
+577.2605591 34878.54296875
+580.2631226 80711.28125
+580.7557373 2425831.25
+581.2568359 1647178.875
+581.6739502 15927.2177734375
+581.7588501 715862.625
+582.2595215 100136.0078125
+589.2681885 80947.6484375
+589.7671509 56688.1796875
+598.274292 46216.671875
+598.7747803 28780.70703125
+599.7786865 74133.703125
+600.0652466 19549.8671875
+606.2572632 30340.291015625
+624.2678833 44830.12890625
+625.2666626 23319.55859375
+673.3248291 480285.6875
+674.3288574 174407.625
+675.3236084 20935.283203125
+693.2937012 32766.927734375
+711.303772 35590.484375
+802.3653564 94515.5859375
+803.3681641 41929.16015625
+841.857605 18506.119140625
+873.3997192 114979.7890625
+874.4030762 61564.03125
+1001.461975 21670.375
+1193.434692 18598.732421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.281.281.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=281"
+RTINSECONDS=30.34808067
+PEPMASS=598.27001953125
+CHARGE=2+
+56.46723175 15841.0498046875
+64.52622986 74994.53125
+64.53051758 49950.24609375
+64.5819931 48634.484375
+64.58620453 34597.546875
+64.63825989 26661.478515625
+64.6414566 15709.9931640625
+149.5758209 37763.484375
+167.0918274 32215.6796875
+169.0595551 34569.15234375
+175.1177826 341637.25
+176.1206665 17296.875
+177.0757446 67082.9375
+178.0600281 327167.0625
+178.3365784 64876.140625
+178.3555145 27841.255859375
+179.0632782 34129.50390625
+179.0922089 20442.44921875
+183.075531 22620.4375
+186.0859375 134307.234375
+194.1030731 39522.16015625
+195.08638 4340898.0
+196.0890503 474481.9375
+197.09198 30830.830078125
+199.1179657 21716.703125
+200.1023407 23725.087890625
+206.091095 170853.8125
+209.0775452 18120.66015625
+212.0998688 19219.40625
+218.102356 68501.71875
+234.0974426 16750.173828125
+240.0954285 23836.0
+246.096817 677438.0
+247.0995636 94568.40625
+257.1226807 103219.125
+260.1122742 95935.828125
+266.2876282 17507.6953125
+270.0964355 139561.203125
+278.1184692 20278.125
+278.1489868 29575.0234375
+283.1434021 48516.58984375
+287.1234131 142374.765625
+288.1072998 1609678.875
+289.1100464 213201.078125
+290.1137695 30033.5703125
+294.1191101 23389.3125
+295.1487732 22642.541015625
+302.1323853 14765.900390625
+303.1427002 24177.244140625
+305.1338196 3299040.75
+306.118988 1192367.875
+307.1210022 185944.4375
+308.1221924 18700.52734375
+311.1335144 35812.359375
+312.1150208 21958.44140625
+321.1536255 393046.90625
+322.1566467 56240.40234375
+323.0986938 23270.07421875
+323.1442871 1185140.25
+324.1465759 178089.609375
+325.1518555 20401.107421875
+329.143219 48747.4765625
+331.1492004 21110.55859375
+338.1421814 52819.0390625
+338.180481 446575.96875
+339.182312 66848.6796875
+347.149292 21894.80078125
+349.1603699 24464.998046875
+351.1295776 21766.53515625
+359.1437988 67948.4609375
+366.1860352 121152.9375
+367.1913757 26784.87109375
+369.1383972 32721.115234375
+376.1699219 113988.234375
+377.156189 92354.2265625
+386.1629639 28062.791015625
+394.1204529 19240.85546875
+394.1806335 730972.5
+395.1827698 162179.46875
+420.6827393 29644.29296875
+460.191803 23928.958984375
+468.2218018 38951.9609375
+477.2168579 25576.87890625
+483.2269897 15392.2001953125
+485.2468262 226543.71875
+486.2496338 58744.3203125
+488.1855774 55911.10546875
+492.2298889 135785.984375
+492.7305603 75409.6796875
+493.2273865 38295.796875
+495.2264404 67071.1796875
+501.2297363 19738.130859375
+503.2189941 30216.193359375
+505.2120667 62099.66796875
+506.2063293 54913.61328125
+512.2293701 56189.80859375
+512.7243652 45843.65234375
+521.2352295 44355.32421875
+521.7340698 32833.62109375
+523.2214966 508614.4375
+524.2246094 137528.328125
+525.2301025 25894.513671875
+559.241394 22428.087890625
+571.7485352 85052.7578125
+572.2748413 339972.6875
+572.7536621 18709.88671875
+573.2789917 88975.7421875
+576.2605591 46330.01171875
+576.7615356 33142.16796875
+577.2593384 36397.2265625
+580.263855 74060.953125
+580.7543945 2711965.75
+580.8391113 35362.7421875
+581.2559814 1841180.0
+581.3669434 27367.0703125
+581.7572021 673539.4375
+582.2590332 140483.46875
+589.2672119 79609.7578125
+589.767395 41341.4609375
+598.2709351 68101.734375
+598.774292 56859.5625
+599.2754517 38522.69921875
+599.7766724 100652.09375
+606.2540894 35682.16015625
+624.2678223 77263.8828125
+655.3192749 23973.869140625
+673.3237915 425226.96875
+674.3264771 164010.78125
+675.3308716 33161.87890625
+693.2846069 26837.025390625
+694.2955933 16768.828125
+711.2973633 21227.3671875
+802.3622437 100244.671875
+803.3640137 74048.0859375
+864.472168 17041.025390625
+873.3991089 98957.0859375
+874.4019775 53892.203125
+875.4026489 19097.244140625
+1001.441833 25324.552734375
+1002.448303 21239.365234375
+1030.718384 17309.169921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.282.282.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=282"
+RTINSECONDS=30.45607157
+PEPMASS=598.27001953125
+CHARGE=2+
+55.13260651 12259.9775390625
+58.13441849 16985.25390625
+58.13727951 16382.091796875
+59.69701767 13855.5380859375
+60.94255066 12934.9931640625
+64.52619171 70602.1640625
+64.53070068 46963.28125
+64.58201599 46671.48828125
+64.58615112 26983.583984375
+64.63800049 24799.85546875
+64.64130402 14602.189453125
+82.05400085 22126.427734375
+101.4073639 15229.171875
+149.5738068 47345.80859375
+167.0913391 49699.125
+169.0601807 39728.40625
+175.1178894 353517.5
+177.0760803 64134.37109375
+178.0600281 334527.375
+178.3499603 80946.953125
+179.0640717 36070.4765625
+179.0919647 25272.5703125
+183.0756073 25270.2265625
+186.0859985 105618.59375
+194.1029816 24751.1171875
+195.0864563 4241693.0
+196.089386 444333.78125
+197.0926361 28781.525390625
+200.1021576 20527.462890625
+201.0862274 15480.6533203125
+206.0911713 184081.15625
+218.1022491 51564.33203125
+234.0978546 17495.0546875
+240.0967102 34645.4765625
+243.0860748 31481.638671875
+246.0969391 680949.25
+247.1005402 78836.15625
+257.1225891 118464.0234375
+260.1124878 96148.890625
+265.1024475 16462.744140625
+270.0971069 111143.0625
+271.0999756 18435.59765625
+278.1481323 21999.857421875
+283.1428833 36473.71484375
+287.1235046 173381.328125
+288.1074524 1638055.0
+289.1104736 268751.78125
+290.1135254 17861.8203125
+302.1325989 14290.3662109375
+303.1413269 29866.140625
+305.1339722 3306673.75
+306.1192017 1179119.75
+307.1209717 186935.421875
+308.1238098 20017.505859375
+311.0569763 14121.5625
+311.1343384 52840.57421875
+312.1163025 27556.6640625
+321.1539917 397901.71875
+322.1553955 45926.4140625
+323.1444702 1116194.25
+324.146759 195282.9375
+325.1513367 26759.482421875
+329.1437683 58157.25
+338.1424255 61780.38671875
+338.1805725 446735.34375
+338.6447144 17721.74609375
+339.1826477 61343.14453125
+347.1505737 29077.13671875
+349.1636963 20651.521484375
+358.1618652 20100.384765625
+359.1451416 52513.44921875
+366.1867065 128869.3359375
+369.138031 30141.4921875
+376.1700745 99505.8203125
+377.1566772 72909.328125
+378.1578369 17732.869140625
+386.165863 27796.1796875
+394.1810303 726567.3125
+395.1832581 163164.0625
+412.1878967 29338.072265625
+420.6865234 17663.720703125
+421.1841431 20682.26171875
+434.1695251 14524.4287109375
+460.1906128 33324.80078125
+461.1930542 13669.509765625
+464.1739502 15940.603515625
+468.2206421 42794.12890625
+469.2185669 21919.37109375
+477.2176819 19884.265625
+478.2017822 24854.603515625
+485.2472534 235555.34375
+486.2506714 73718.6171875
+488.1871948 70135.3828125
+492.2285461 174928.6875
+492.7287903 93033.3046875
+493.232605 26764.677734375
+495.2255249 61032.296875
+503.7200012 19582.71484375
+504.2221375 19294.619140625
+505.210968 45474.94921875
+506.2035828 54811.45703125
+512.7311401 18940.767578125
+513.2301636 17515.5546875
+520.7431641 19429.318359375
+521.2297363 40268.734375
+523.2219238 481144.40625
+524.2258911 111287.5234375
+525.2285767 24493.234375
+529.746582 17718.986328125
+540.809021 17653.25
+558.7435303 26718.939453125
+567.2514038 17389.1484375
+571.7493286 96269.375
+572.2753296 365992.28125
+573.2811279 113446.484375
+576.2646484 47732.609375
+577.2614136 26188.55078125
+577.7672729 18807.357421875
+580.2593384 115249.125
+580.7547607 2403964.75
+581.2562256 1518121.25
+581.7576904 620833.3125
+581.8637085 25290.533203125
+582.2589111 142430.46875
+589.2654419 62446.7109375
+589.7671509 34827.16015625
+598.2735596 54908.0078125
+598.776062 39172.21875
+599.2738647 23665.603515625
+599.7768555 76470.203125
+606.2545166 24392.529296875
+624.2677002 57342.328125
+673.324585 387563.53125
+674.3287354 142088.203125
+675.3292236 33236.40234375
+711.3037109 20783.271484375
+802.3638306 88731.6484375
+803.3747559 30932.712890625
+873.3966675 86939.2421875
+874.4036865 42791.625
+1001.443054 18760.509765625
+1002.46875 19675.259765625
+1059.465942 26690.576171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.283.283.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=283"
+RTINSECONDS=30.56466019
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436508 16003.05859375
+58.13722992 15651.162109375
+64.52628326 42382.51171875
+64.53049469 29022.859375
+64.58203125 33642.734375
+64.5861969 20813.3359375
+81.04639435 12108.08203125
+82.05419922 12626.8115234375
+137.2798309 10034.6279296875
+149.5762024 25737.890625
+167.0914764 40528.83984375
+169.0600281 29873.923828125
+175.117981 275028.03125
+175.3633881 10025.1103515625
+176.1201477 16104.423828125
+177.0761108 58242.875
+178.0601349 356147.125
+178.0783386 22507.552734375
+178.3468018 72436.6953125
+179.0633392 22904.625
+179.0918121 22200.376953125
+183.0762482 20484.974609375
+186.0861359 103412.3828125
+193.9244537 12108.0390625
+194.1026001 39597.33203125
+195.0865021 3647735.25
+196.0893402 375715.96875
+197.0916138 14495.123046875
+200.1021118 24827.42578125
+201.0868073 16160.5947265625
+206.0911102 160689.625
+207.0931396 13526.076171875
+209.0769653 12750.439453125
+209.1013794 12572.9970703125
+213.0854492 14126.8447265625
+215.0921936 20381.408203125
+217.1290131 12497.6171875
+218.1025391 54127.42578125
+221.1021576 16322.6611328125
+222.085495 13647.0986328125
+232.1194 11708.9033203125
+234.0970459 13250.0498046875
+239.112915 10669.2900390625
+240.0956268 23613.48828125
+242.1027222 15884.1142578125
+243.0862732 14763.1337890625
+244.1186829 17023.072265625
+246.0970306 624274.125
+247.100296 74806.2890625
+249.0965271 19427.54296875
+257.1224365 91340.46875
+258.1274719 20592.970703125
+260.1126099 107399.390625
+261.1180725 13665.580078125
+262.1253967 12520.2080078125
+267.106842 14291.185546875
+270.0971985 122984.359375
+271.1040955 16642.705078125
+276.1345825 11509.3349609375
+278.1160889 13699.650390625
+278.149231 23857.263671875
+283.1429443 48784.4765625
+287.1235962 130918.8671875
+288.1074829 1558993.625
+289.11026 245754.34375
+290.1109619 13320.44140625
+294.1160889 19598.953125
+295.1500549 20281.79296875
+303.1426086 23063.9140625
+305.1340637 2904361.75
+306.1190796 1087318.875
+307.1215515 179634.625
+308.120575 24481.345703125
+311.1343079 49007.78125
+312.1167908 37900.0546875
+320.1735535 12898.93359375
+321.1540222 326223.0
+322.1126404 11416.0498046875
+322.1557922 65314.8203125
+323.1444702 1091205.625
+324.1460876 158028.734375
+325.1472778 15408.357421875
+329.1427917 41706.51171875
+338.1418457 55948.86328125
+338.1806641 410627.375
+338.2171936 8151.0366210938
+338.6454163 33967.6796875
+339.141571 12175.955078125
+339.1826172 75509.03125
+347.1481323 15526.7392578125
+347.6481934 11549.0703125
+349.1618958 17550.44140625
+351.132019 14574.1669921875
+353.1477661 18624.6484375
+358.1715393 11752.025390625
+359.1438599 59532.85546875
+366.1862183 107588.75
+367.1865234 22492.6328125
+368.1512146 14244.8583984375
+369.1368408 26740.744140625
+376.1707764 131514.375
+377.1555176 70923.1328125
+378.1605835 21049.845703125
+386.1620789 16770.53515625
+389.1521606 15884.5302734375
+394.1809998 658645.9375
+395.1825562 144417.6875
+396.1867371 19913.791015625
+412.1887207 17636.302734375
+420.6814575 15976.8740234375
+450.2119446 12246.92578125
+460.1900024 17202.478515625
+468.2204285 57495.2890625
+469.1977234 11849.154296875
+478.20047 15594.212890625
+483.7198181 17210.05859375
+485.2475891 168260.328125
+486.25 55459.03125
+488.1872559 50111.84375
+492.2293396 153098.625
+492.7306519 111296.109375
+493.2326965 15765.8759765625
+495.2269592 49012.6171875
+496.2272644 20815.220703125
+503.7189636 13905.9150390625
+505.2116699 46020.453125
+506.2060242 48180.2578125
+506.7290955 12638.73828125
+507.2175598 13274.857421875
+512.2286987 17036.119140625
+512.7260742 16511.201171875
+520.7365723 13765.0185546875
+521.2332153 25798.986328125
+521.7337646 13404.0498046875
+523.2219849 391214.25
+524.2247925 104712.125
+525.2300415 24508.94921875
+529.7427979 11077.658203125
+530.2373657 13686.736328125
+531.1623535 12097.0458984375
+554.2683716 11873.044921875
+558.7495728 28607.685546875
+560.2332764 14631.015625
+562.232605 13841.5068359375
+567.2622681 15215.7900390625
+571.7507324 82302.1171875
+572.2751465 248716.4375
+572.7481689 15811.95703125
+573.2797241 88623.3046875
+576.2606812 32887.16796875
+576.762085 26997.64453125
+577.2630615 20102.408203125
+580.2617798 59682.6015625
+580.7548218 1737522.625
+581.2561646 1198494.5
+581.3681641 17716.126953125
+581.7578125 448798.59375
+582.2593994 81088.2578125
+589.269104 20528.58203125
+591.2536621 14186.95703125
+598.2722778 57120.74609375
+598.7747192 40993.671875
+599.2746582 45405.5546875
+599.7768555 61656.171875
+606.2623291 28577.24609375
+624.2651978 42566.3984375
+655.3122559 15262.14453125
+673.3232422 323265.125
+674.3262329 124655.53125
+675.3287354 35711.734375
+693.2903442 16718.095703125
+711.3007812 13752.8466796875
+773.4811401 11941.666015625
+802.364502 78495.9296875
+803.3618774 39002.4375
+858.3646851 15037.3046875
+871.3678589 11663.8662109375
+873.3985596 72874.625
+874.4067383 34574.80859375
+1002.439941 13720.1328125
+1058.490845 14315.2021484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.284.284.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=284"
+RTINSECONDS=30.67794706
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52638245 84109.4765625
+64.53051758 47182.8046875
+64.5821228 51855.64453125
+64.58625793 38447.87890625
+84.85935974 18085.26171875
+102.6036911 16767.54296875
+128.8618317 17322.58203125
+149.5735168 57965.1953125
+167.0918427 50468.171875
+169.060257 48457.0390625
+175.1180878 318428.6875
+176.1215973 17863.1484375
+177.0760345 58098.89453125
+178.0604095 351977.15625
+178.3374634 76041.421875
+178.3563995 42673.5390625
+179.0642242 17673.263671875
+179.0918732 25562.236328125
+183.0751648 26354.345703125
+186.0865326 118320.0625
+194.102417 50696.84375
+195.0866852 4730149.0
+195.1282196 23893.568359375
+196.0895996 437176.40625
+197.0915222 23419.615234375
+200.1026764 34659.25390625
+201.0848236 22643.26171875
+206.0914154 174997.671875
+207.0947876 17997.392578125
+209.1030884 23056.30859375
+218.1009064 40326.45703125
+234.0981293 26339.34375
+239.1097412 19735.236328125
+246.097229 675507.5625
+246.1257935 34825.828125
+247.0998688 70939.6328125
+249.3366089 15323.8623046875
+251.9715424 18714.79296875
+257.1232605 129690.5390625
+260.1130371 125812.5703125
+270.0974121 123288.0
+278.1481934 30453.8828125
+283.1428528 32001.3515625
+287.1239929 137686.4375
+288.0769958 22398.236328125
+288.1078186 1737310.25
+289.1107178 281269.75
+290.1122742 28301.59765625
+294.1195374 29788.94140625
+295.1522522 25040.0625
+303.1444092 39478.9375
+305.104126 65939.984375
+305.1344299 3419801.0
+306.0586853 22413.353515625
+306.1197815 1205052.5
+307.1218872 187437.015625
+308.1220093 25202.36328125
+311.1353149 46824.87890625
+312.1180725 45553.72265625
+321.1545715 367982.375
+322.1574402 67734.203125
+323.1448975 1309180.875
+324.1470032 197429.5
+325.1522827 31402.736328125
+329.1437073 45910.24609375
+338.1421204 53119.5
+338.1812744 420959.84375
+338.6485291 21314.666015625
+339.1830444 86485.9453125
+347.1461182 21648.39453125
+349.1584167 27830.099609375
+359.1454468 63859.33203125
+366.1867981 147246.5625
+367.1892395 34029.31640625
+369.1421204 42151.76171875
+376.1703491 135750.390625
+377.1571045 84212.0625
+378.1561584 17870.94921875
+386.1618042 36294.4375
+394.1370544 12793.3271484375
+394.1814575 791752.875
+394.2400208 24996.080078125
+395.1832275 157700.546875
+398.1779785 30526.0703125
+412.1907349 19897.84765625
+420.6802063 23037.130859375
+460.1925964 30939.322265625
+468.2213135 51816.7734375
+477.2165527 25710.193359375
+478.2065125 23797.724609375
+483.7198181 31754.50390625
+485.2480469 272007.125
+486.2507629 87846.1171875
+488.184021 40193.203125
+492.2297363 207090.921875
+492.7301636 89520.6953125
+493.2341309 36931.37890625
+495.2287598 70151.625
+503.2182312 24879.46875
+505.2141418 55960.19921875
+506.2099915 56173.32421875
+512.225769 45677.171875
+512.7266846 36651.00390625
+513.2310181 30120.357421875
+521.2346191 37605.26171875
+521.7387085 35071.765625
+523.2230225 531127.875
+524.2260132 159623.5625
+525.2279053 27598.71875
+558.7512207 26126.033203125
+571.7512207 74688.78125
+572.2765503 342286.59375
+572.7507324 29928.408203125
+573.28125 99603.5234375
+574.279541 29530.197265625
+576.262146 49288.32421875
+577.267395 32796.3984375
+580.2631836 108043.578125
+580.7559204 2727065.25
+581.2571411 1787299.625
+581.7592163 746280.6875
+582.260376 111453.1171875
+589.2699585 113508.9375
+589.7658691 106598.9453125
+598.272522 51848.00390625
+598.7750854 50423.12109375
+599.2692871 25030.970703125
+599.7811279 65009.3125
+606.2615356 38403.37109375
+624.2720337 49788.1171875
+655.3141479 28377.34375
+656.3096313 20314.4921875
+673.3252563 441215.5625
+674.3275757 144105.734375
+675.3300171 36863.390625
+697.4740601 20032.509765625
+802.3673706 100974.96875
+803.3712158 39768.20703125
+873.4003906 118665.7109375
+874.4016724 47269.1171875
+1001.454041 30757.033203125
+1058.482666 21662.337890625
+1059.488159 23631.63671875
+1111.804077 19755.47265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.285.285.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=285"
+RTINSECONDS=30.78445773
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52636719 75834.359375
+64.53052521 45541.4140625
+64.58224487 40417.58984375
+64.58612823 45758.61328125
+64.63786316 21493.302734375
+64.6414032 21830.1796875
+77.66576385 21975.33984375
+86.46453857 17033.4375
+107.3903885 16939.33203125
+149.5682373 59927.0546875
+167.0917511 36963.140625
+169.0596313 32254.216796875
+175.1181183 307449.125
+176.1209412 17820.390625
+177.076355 70960.0703125
+178.0602264 295945.375
+178.3504791 105902.625
+179.0634155 20514.396484375
+179.0914459 21787.2421875
+182.0909424 19430.40234375
+186.08638 90852.484375
+190.05867 18411.1484375
+194.1026917 35528.07421875
+195.0650024 48371.05859375
+195.0865936 4689239.0
+196.0894318 504909.625
+197.0908356 20860.75390625
+200.1004791 30108.9296875
+201.0853882 24921.560546875
+206.0914612 138294.046875
+218.1027222 67524.4921875
+234.0955963 24320.109375
+240.0953064 34776.1875
+243.0868835 24785.564453125
+246.0971527 686925.0625
+246.1255646 41797.8125
+247.0998077 78374.7890625
+249.0959473 19121.4375
+257.1230774 107918.8828125
+258.1243286 18369.26171875
+260.1131592 97224.375
+270.0970764 123935.390625
+271.0994873 23839.455078125
+283.14328 55011.28515625
+287.1233521 132820.78125
+288.1077271 1651788.5
+289.1107483 261202.015625
+290.112793 31284.67578125
+303.1433105 37362.5859375
+305.1342773 3466260.75
+306.1193542 1232909.125
+307.1220398 182677.171875
+311.1353149 42828.96875
+312.1161499 36816.6875
+321.1547546 365645.75
+322.1571045 65627.40625
+323.1447754 1272148.625
+323.1889648 40433.55859375
+324.1468201 216078.375
+325.1483154 39701.859375
+329.1446838 54253.11328125
+331.1481018 28140.71875
+338.1430054 57168.98828125
+338.1809082 455048.9375
+338.6444702 32244.544921875
+339.1836243 63666.58984375
+346.1690369 27767.546875
+347.152771 22169.666015625
+359.1448059 55356.6640625
+366.1862793 166661.75
+367.1842041 24306.39453125
+369.1376343 29989.9140625
+376.1708374 134676.625
+377.1570435 82057.2421875
+386.163269 43738.46484375
+394.1372375 14978.640625
+394.1815186 833627.125
+395.1828613 136456.8125
+412.1920166 29473.5859375
+468.2202454 69242.1796875
+478.2099609 23067.62109375
+485.2478943 213477.46875
+486.2502747 51347.421875
+488.1885071 60702.8125
+492.2304382 143170.6875
+492.7312317 97561.5390625
+493.234375 30141.75
+495.2268982 58816.09375
+503.713562 22756.037109375
+505.2122803 76708.1953125
+506.1995544 49520.65625
+512.2254028 36010.890625
+521.2332153 51389.7734375
+523.2231445 470821.4375
+524.2249756 142230.28125
+525.2243652 28709.875
+558.7423706 26974.189453125
+571.7550049 76316.65625
+572.2759399 330445.0
+572.7539062 29526.71484375
+573.2808838 110921.296875
+576.2612305 74177.1015625
+577.2640381 55558.64453125
+580.2634277 114029.8046875
+580.7559814 2948171.0
+581.2574463 1921288.5
+581.7587891 770575.875
+582.2600098 168616.984375
+589.2688599 159718.03125
+589.7667236 156045.15625
+590.2651367 47762.48046875
+598.2751465 81800.34375
+598.7747803 66489.6171875
+606.260437 42712.44921875
+624.2716675 46099.26953125
+673.3259277 488736.625
+674.3282471 162186.53125
+675.3340454 55466.90625
+711.3004761 27630.388671875
+802.3662109 120278.3203125
+803.369751 73930.25
+873.4036865 117477.796875
+874.404541 79445.6484375
+1298.091919 21158.5546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.286.286.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=286"
+RTINSECONDS=30.88942608
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13444901 14390.6298828125
+61.56153488 9239.1376953125
+63.58853531 12124.34375
+64.52624512 45320.828125
+64.53063202 32536.0234375
+64.58200836 31673.205078125
+64.58616638 20290.349609375
+64.63829041 15276.3916015625
+64.64144897 13539.1376953125
+75.99104309 9972.859375
+76.00574493 8877.0048828125
+82.0541153 13565.970703125
+98.48262024 11291.138671875
+123.526001 9922.6474609375
+139.1598816 9104.9931640625
+148.9692688 9446.021484375
+149.5630035 20643.931640625
+149.5768433 19383.541015625
+167.0920258 43875.66015625
+169.059433 31718.017578125
+175.1179047 271490.875
+176.1222076 14781.5146484375
+177.076004 72891.2109375
+178.0599976 310703.9375
+178.0781097 17049.462890625
+178.3507996 48504.66796875
+179.0637207 15041.1240234375
+179.0906525 16097.71875
+183.0756378 33005.05859375
+186.0860748 110562.1875
+190.0604248 11021.48828125
+190.1077423 11419.212890625
+194.1023407 40112.47265625
+195.0864105 3408340.0
+196.0893097 374200.4375
+197.0914001 24215.462890625
+200.1019287 33844.734375
+201.0856476 20189.296875
+201.4295044 9330.8994140625
+206.0911713 155256.84375
+207.0942688 11319.388671875
+209.0796509 10634.5595703125
+212.1134644 14617.7451171875
+215.0909576 16596.658203125
+217.1299744 11925.6357421875
+218.102417 65083.1484375
+222.0856323 13886.6591796875
+232.1175537 11168.9130859375
+234.0979309 8957.8828125
+240.0962067 30832.67578125
+243.0861359 14531.6083984375
+244.1176605 12612.84375
+246.0969696 552174.1875
+247.0998383 80579.0078125
+249.095993 15979.4287109375
+257.1228027 87166.9140625
+258.1247559 12989.9423828125
+260.1123047 101422.65625
+261.1159363 13149.12890625
+266.12323 11581.552734375
+267.1092224 16694.572265625
+270.0967407 123957.9609375
+277.138916 18850.345703125
+278.1491089 18489.89453125
+283.143219 39711.265625
+287.1233826 140871.03125
+288.1074524 1538725.375
+289.1101379 213937.5
+290.1126404 27351.13671875
+294.1162415 15768.71875
+295.1513672 17378.86328125
+302.1278687 13044.2177734375
+303.1430359 21905.876953125
+304.1295471 19850.462890625
+305.1340027 2764062.0
+306.1192627 932129.0625
+307.1212769 151667.765625
+308.125 26345.787109375
+311.1350403 54627.26171875
+312.117218 38242.078125
+320.1342163 16585.123046875
+321.1121216 17528.783203125
+321.1542969 313854.71875
+322.1571655 58108.09375
+323.0988464 11977.05078125
+323.1444702 956451.625
+324.1466675 148936.828125
+328.159729 13272.041015625
+329.1432495 51136.58203125
+331.1490479 19869.146484375
+338.1418762 54181.3671875
+338.1808167 326151.34375
+338.6476135 21007.966796875
+339.1830139 50157.87890625
+341.147522 11356.3408203125
+347.1495972 12873.8974609375
+349.1597595 25625.3125
+359.144928 73860.3203125
+366.1865234 108159.4296875
+367.1899719 16588.353515625
+369.1383057 23653.7890625
+374.6679993 11130.359375
+376.1706848 109336.7265625
+377.1555786 64629.65625
+386.1645813 23312.697265625
+394.1809998 638417.375
+395.1822815 114089.703125
+412.1850586 32235.537109375
+460.1906433 18047.025390625
+468.2236328 36605.30078125
+470.2215576 10636.984375
+477.2177124 16630.78125
+483.7239075 19626.787109375
+485.2477112 192605.296875
+486.2502441 58426.07421875
+488.1864929 58787.01953125
+492.2296753 136127.46875
+492.73172 89243.8046875
+493.2316284 38242.19921875
+495.2242737 45167.50390625
+503.2246704 12586.9931640625
+505.2117004 55638.7421875
+506.2035828 37759.81640625
+512.2301636 33456.73828125
+512.7279663 24091.44140625
+521.2325439 26524.294921875
+521.7338867 13562.5595703125
+523.22229 383241.25
+524.2243652 108533.8203125
+525.2357178 22339.166015625
+555.2559814 14505.8193359375
+558.7420654 28110.869140625
+559.2466431 12859.9404296875
+571.7504272 80227.578125
+572.2750854 294488.96875
+572.7523804 15934.2294921875
+573.2813721 78494.3515625
+574.2788696 16846.06640625
+576.2592773 28263.416015625
+580.2630615 72012.6875
+580.755188 1738410.125
+581.2564087 1163441.5
+581.7583618 504241.0
+582.2593994 90176.2265625
+598.2736816 47675.74609375
+598.7719727 20815.427734375
+599.2764893 74783.78125
+599.7780762 84812.265625
+606.2601929 24671.38671875
+624.2698975 41101.91015625
+625.2774658 21884.171875
+655.315979 17290.947265625
+656.3050537 15153.87109375
+673.3244629 320482.1875
+674.3280029 103129.3671875
+675.3242798 16892.90234375
+693.2867432 15502.171875
+784.3536377 11408.8515625
+802.3654785 58733.1640625
+803.3609009 30851.548828125
+873.4002686 64245.44140625
+874.4066772 31124.412109375
+1001.453491 10714.2880859375
+1058.477783 12985.5859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.287.287.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=287"
+RTINSECONDS=31.00491218
+PEPMASS=598.27001953125
+CHARGE=2+
+62.74560165 15501.001953125
+64.52624512 64445.51171875
+64.53052521 43275.5625
+64.58205414 51699.203125
+64.58625793 31445.208984375
+64.63802338 18533.42578125
+74.81217194 17674.416015625
+82.054039 24299.767578125
+100.5221634 15554.259765625
+149.5648041 52333.546875
+155.0834198 15278.384765625
+167.0918427 36311.75
+169.060379 41485.140625
+175.1178284 314205.375
+177.0754242 69549.1953125
+178.0599365 350179.3125
+178.336853 71258.3671875
+178.3552856 26967.16015625
+179.0639496 32017.994140625
+179.0912628 18304.02734375
+182.0923767 19221.005859375
+183.0747681 24196.7890625
+186.0858917 128707.671875
+194.1029053 45859.91796875
+195.086319 4608711.0
+195.1279449 39872.59765625
+196.0890961 461020.375
+197.0909882 27393.6015625
+198.500412 14908.1806640625
+201.0862274 15671.7998046875
+202.0621643 18610.630859375
+206.0910797 176517.875
+207.0931244 23820.939453125
+213.0857239 18602.90234375
+215.091629 18895.111328125
+218.1020203 65204.69140625
+239.1139069 20078.76171875
+240.0962524 32287.380859375
+246.0968018 682172.0625
+247.0993958 59846.4140625
+257.1223755 114000.296875
+258.1235657 32099.4296875
+260.1122131 113220.7734375
+261.1195374 21548.36328125
+270.0967712 139001.671875
+274.0561829 17285.236328125
+278.1484985 29233.431640625
+283.1451416 42819.57421875
+287.1232605 161249.96875
+288.1071167 1608372.625
+289.110199 280885.4375
+303.1416626 51467.76953125
+305.0509644 26770.875
+305.1336975 3308942.0
+306.1189575 1211933.875
+307.1211853 202039.375
+308.1243896 21060.890625
+311.1344299 55600.1953125
+312.1166687 24474.625
+321.153595 350578.625
+322.157135 53720.984375
+323.0996399 16430.265625
+323.144165 1151444.75
+324.1462402 204619.390625
+325.1491699 24451.625
+329.1448059 52942.5390625
+329.5782166 18563.158203125
+338.1419983 44140.34765625
+338.1803284 422572.15625
+338.6443481 27966.40625
+339.1825867 70809.8828125
+347.1499634 28081.748046875
+349.1585999 35954.0078125
+351.1381226 16688.7734375
+359.145813 63149.98046875
+366.1857605 147347.765625
+367.1903381 32788.61328125
+369.1379089 24487.63671875
+376.1698914 136865.28125
+377.156311 85312.578125
+386.1632996 21212.439453125
+394.120575 22074.171875
+394.180542 816454.375
+394.2400818 31149.900390625
+395.1824036 159604.140625
+412.1905212 27552.083984375
+420.6790771 19950.37890625
+428.2030945 18302.10546875
+430.1879272 19560.185546875
+452.1952209 16755.7578125
+460.1930542 34225.66796875
+468.222168 54486.0859375
+477.2167053 29139.89453125
+485.2465515 185885.15625
+486.2507019 56650.75390625
+488.1838989 52541.1640625
+492.2287292 165956.46875
+492.7294006 82316.1484375
+493.2297363 46324.26953125
+495.2251282 47151.20703125
+496.2311401 19385.302734375
+505.2107849 61247.2734375
+506.204071 46144.3515625
+512.2284546 29714.103515625
+512.725769 24724.56640625
+521.2338257 35526.0
+523.2211914 439890.8125
+524.2244263 123063.9375
+525.2316895 23184.826171875
+530.2415771 22448.34375
+547.5105591 19475.458984375
+555.244812 24418.630859375
+571.75 69912.8203125
+572.2744141 326764.59375
+572.7461548 31807.669921875
+573.2796631 122985.3515625
+576.2593994 35773.3984375
+576.7564697 28858.271484375
+580.2617188 98459.9765625
+580.7542725 2536719.25
+581.2555542 1704253.25
+581.3373413 27753.314453125
+581.3651123 25839.337890625
+581.7571411 573551.0
+582.2573242 144358.96875
+589.2666626 130037.28125
+589.7686157 61235.89453125
+598.2730713 73403.109375
+598.776123 28988.71875
+599.7746582 76728.1484375
+606.2543335 25028.248046875
+624.2667236 64570.6640625
+625.270752 27974.94921875
+673.3225708 446783.125
+674.3254395 157416.90625
+675.3310547 28100.001953125
+711.2918701 27705.326171875
+802.3607788 116489.5859375
+803.3661499 43954.1484375
+873.3986206 114758.875
+874.4009399 64671.8203125
+1001.461121 32381.1953125
+1298.802612 18508.712890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.288.288.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=288"
+RTINSECONDS=31.11180115
+PEPMASS=598.27001953125
+CHARGE=2+
+59.42428207 13797.8330078125
+64.52635193 51149.3203125
+64.53050995 29529.33203125
+64.58205414 40602.015625
+64.58618164 22625.294921875
+64.63809204 16608.935546875
+67.21527863 15045.8984375
+67.67284393 10214.1015625
+70.27674103 12776.1337890625
+74.81201172 11199.44921875
+74.81659698 11352.5625
+117.7977371 13186.0830078125
+149.5643616 33325.62890625
+167.0923004 48121.0
+169.0602417 33312.0859375
+175.1179962 250171.625
+176.0620728 13966.9013671875
+177.0762177 62172.203125
+178.0601501 320725.40625
+178.0779114 20751.484375
+178.3501129 62663.953125
+179.0638428 22463.603515625
+179.0914612 21427.462890625
+182.0917511 18039.9609375
+183.0751648 24991.076171875
+186.0865631 106012.796875
+190.1073914 12194.3720703125
+194.1026611 45704.44921875
+195.0865631 3801149.0
+195.1280975 20435.41796875
+196.089386 428207.8125
+197.0922852 27920.7421875
+200.1010132 25337.67578125
+201.0861664 29238.828125
+206.0913391 154379.09375
+209.1031494 16411.916015625
+212.1131287 17589.08203125
+215.0918427 13881.11328125
+218.1022186 64567.953125
+221.1005859 16651.787109375
+233.1274109 17402.814453125
+240.0962524 23286.646484375
+246.0971069 681033.0
+247.1000061 89160.4453125
+248.1143341 13799.607421875
+249.096756 26443.662109375
+257.1229248 96428.859375
+258.1246643 14095.232421875
+260.112793 110857.109375
+261.1180725 14201.017578125
+270.0968933 135517.140625
+277.1395264 11365.9580078125
+277.5159302 10666.1884765625
+278.1177063 12027.2841796875
+278.1481018 32313.513671875
+283.1432495 50852.81640625
+287.1237488 155609.21875
+288.107605 1675720.875
+289.1105652 245726.53125
+290.1110535 20475.31640625
+294.1178284 18894.77734375
+295.1491699 27202.943359375
+302.1298828 14738.83984375
+303.1443787 31677.009765625
+304.128418 18003.40625
+305.1342163 2956509.75
+306.1194153 1104233.375
+307.1219788 164009.8125
+308.126709 28891.943359375
+311.1340332 53352.6015625
+312.1142883 25612.4375
+321.1542969 294875.53125
+322.1571655 48339.30859375
+323.1446228 1091731.875
+324.146759 187650.390625
+325.1486511 14973.990234375
+329.1417542 39517.578125
+338.1421204 55225.15234375
+338.1809387 372583.25
+339.1837158 77892.765625
+341.1521301 15847.4775390625
+346.1722107 17288.943359375
+347.1497803 15665.638671875
+349.158844 26927.4765625
+358.1651306 18038.134765625
+359.1451416 59156.37109375
+360.1507874 16771.125
+366.1860657 120080.203125
+369.1401062 33775.54296875
+376.1707764 120400.1953125
+377.1563721 83001.8984375
+378.1504211 13180.95703125
+386.1662598 31251.677734375
+394.1203308 13522.94140625
+394.1811218 683309.75
+394.2408142 21757.8828125
+395.1837463 129430.265625
+412.1885986 34250.390625
+413.1659851 14229.3330078125
+420.6820679 23579.96875
+450.2097473 17610.50390625
+452.1829224 10985.4794921875
+460.1914673 19400.595703125
+468.2216492 54191.625
+483.2279968 17442.375
+483.7165222 16341.6513671875
+485.2478027 203310.125
+486.2498169 67634.6953125
+488.1871643 58831.55859375
+489.1846313 18734.896484375
+492.2294922 169093.359375
+492.7306213 74463.7265625
+493.2267761 27461.083984375
+495.2270203 57686.3359375
+503.7185669 19603.609375
+505.2133179 59870.9765625
+506.2081909 49763.8046875
+512.2298584 38552.1484375
+512.7288208 15050.216796875
+513.2283325 18543.8984375
+521.2358398 31092.267578125
+523.2226562 446531.8125
+524.2255249 113844.6640625
+525.2318115 28917.853515625
+529.7450562 13259.21484375
+549.7412109 13936.5478515625
+555.2565918 17839.4453125
+558.7403564 18713.640625
+559.2521973 22767.078125
+571.7514648 88490.3125
+572.2747192 304194.71875
+572.7477417 20608.837890625
+573.2814331 91767.375
+574.2839355 15560.1484375
+576.2613525 42311.02734375
+576.7645874 14718.73828125
+577.260498 19047.642578125
+580.2620239 73662.9375
+580.7553711 1968524.375
+581.2564697 1415159.625
+581.7582397 523329.15625
+582.258606 114085.2734375
+589.2629395 19315.9375
+598.2720947 38813.31640625
+598.7744141 36551.8671875
+599.276123 63696.4296875
+599.7776489 94289.4609375
+606.256897 29985.763671875
+624.2695312 61734.8125
+655.3084106 21942.751953125
+656.3000488 17832.533203125
+673.3247681 350651.15625
+674.2044067 21659.673828125
+674.3276978 147650.28125
+675.3273926 33480.7734375
+693.2895508 21972.828125
+711.2969971 14625.765625
+802.3653564 87100.96875
+803.3701782 27510.107421875
+873.4002686 85742.2734375
+874.4052734 41647.8046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.289.289.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=289"
+RTINSECONDS=31.22391173
+PEPMASS=598.27001953125
+CHARGE=2+
+53.61264038 25788.8203125
+57.17243195 26399.521484375
+64.52626801 96433.515625
+64.5303421 72601.046875
+64.58224487 50071.16796875
+64.58623505 56654.5234375
+109.0864639 30123.556640625
+149.5657654 81711.953125
+149.5781097 34825.53125
+152.9956512 30125.89453125
+156.1598358 29503.427734375
+167.0922852 49674.12890625
+169.0599213 56464.83203125
+175.1177368 334607.96875
+177.075058 70360.1875
+178.0599976 397693.96875
+178.3394165 144392.0625
+179.0631866 42814.28125
+182.0916443 25770.525390625
+186.0859222 113524.5625
+194.1024017 46710.46484375
+195.0863342 5410405.5
+196.0891571 507207.125
+206.0910187 165492.21875
+212.1123199 42028.52734375
+218.102829 31343.455078125
+220.7931061 28734.26953125
+234.094574 31897.833984375
+246.0967407 741506.4375
+247.0995636 76444.1640625
+257.1224365 155231.171875
+260.1127625 115572.453125
+270.0971069 168433.296875
+283.1437378 36696.59375
+287.1227112 179595.328125
+288.1072083 1858646.875
+289.1098633 263068.40625
+305.1337585 3968199.75
+306.1188049 1412279.625
+307.1216125 221476.109375
+311.1356201 53975.78125
+312.1174316 34265.65234375
+321.1538086 424581.375
+322.1561279 38113.234375
+323.1443787 1485755.875
+323.188446 44688.234375
+324.1454163 246875.609375
+329.1417847 63585.07421875
+338.1413574 65814.3515625
+338.1802368 478330.25
+339.1834717 100272.609375
+347.149231 38511.5390625
+349.1591492 34313.140625
+359.1456299 79882.5703125
+366.1856384 157289.234375
+376.1689148 146722.421875
+377.1590576 88200.6640625
+386.1637573 51962.23046875
+394.180603 995807.6875
+394.2396851 33828.66015625
+395.1830444 205376.5625
+398.1716003 29717.9375
+412.1905518 48967.55078125
+468.2220764 65035.80078125
+485.2460632 280504.875
+486.2515564 52686.9140625
+488.1842041 57822.58984375
+492.2294617 154688.3125
+492.7277527 100716.75
+493.2297668 38559.5703125
+495.2289429 41596.16796875
+503.7200317 48962.640625
+505.2153625 61043.2109375
+506.2013855 73871.5703125
+512.2250366 61293.83203125
+521.2318726 108586.71875
+523.2221069 637935.75
+524.2267456 152276.65625
+525.2299805 30507.595703125
+555.2636719 31959.708984375
+571.7521362 46894.61328125
+572.2756958 429330.0625
+573.2796631 120029.8125
+576.2640381 83193.0234375
+580.2615356 154579.96875
+580.7545776 3262547.75
+581.2557373 2064372.0
+581.7577515 817959.0
+582.2587891 179317.28125
+589.2669678 545735.75
+589.7670898 363705.71875
+590.2661133 105993.8203125
+598.2755127 89706.2890625
+598.7721558 79451.09375
+624.2623901 51961.90234375
+673.3239746 506349.15625
+674.3253784 202281.703125
+675.3265991 71887.0234375
+802.3634644 130867.2109375
+803.3655396 64711.0390625
+873.3998413 172513.84375
+874.4001465 66649.7265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.290.290.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=290"
+RTINSECONDS=31.32578483
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91504669 10212.89453125
+63.58490372 10278.3408203125
+64.52622986 37249.375
+64.53062439 28136.0390625
+64.58200836 30076.494140625
+64.58618927 17794.21875
+64.63813019 7922.3447265625
+76.28128052 10869.5224609375
+79.76649475 7849.3618164063
+81.04673004 7591.2866210938
+149.5746155 25925.955078125
+167.0918274 42096.203125
+168.075119 7418.4672851563
+168.0923157 7375.568359375
+169.0597839 31531.87109375
+170.220108 7734.63671875
+175.1002808 8783.9091796875
+175.117981 249641.59375
+175.1356201 8869.0185546875
+176.1205444 22721.486328125
+177.0760498 59924.17578125
+178.0601196 287641.8125
+178.078125 10117.31640625
+178.3461914 54403.57421875
+179.0635681 22430.16015625
+179.092453 23936.736328125
+180.1155243 8695.462890625
+182.0911102 19757.572265625
+183.0756836 17695.578125
+186.0861359 92268.8828125
+186.4005432 7787.5249023438
+190.0598907 10121.0615234375
+190.1049652 11148.5517578125
+194.1026764 37760.43359375
+195.0865631 2881339.5
+195.1281586 12666.5048828125
+196.0894623 311219.34375
+197.0917053 24166.87109375
+199.1171417 8958.16015625
+200.1019592 29198.173828125
+201.0856628 18688.5078125
+202.0589294 9734.123046875
+206.0912628 134173.46875
+207.0935516 13694.408203125
+207.1138306 8142.59375
+212.1132202 9338.0517578125
+213.0855408 11473.4716796875
+215.091156 18771.87890625
+218.1027527 51871.125
+222.0865173 15833.845703125
+233.1269379 10874.73046875
+234.0970459 15752.8994140625
+239.1119843 9943.609375
+240.0966339 19131.822265625
+243.084259 17081.490234375
+244.1183929 12443.6787109375
+246.0971527 579763.0625
+247.0999298 77587.484375
+248.1042938 10188.7158203125
+249.0965424 24917.533203125
+257.1228638 86231.8515625
+260.1127014 111272.8828125
+261.1193237 10008.22265625
+267.1085815 7833.0478515625
+270.0973206 122431.46875
+276.135437 8862.4365234375
+278.1170959 10559.8720703125
+278.1497803 22806.787109375
+283.1430359 39123.38671875
+287.1237183 123275.2578125
+288.1076355 1433048.125
+289.1105042 210439.546875
+290.1146851 18604.6796875
+294.1157837 12802.748046875
+295.1166992 10216.1708984375
+295.1517334 14915.8271484375
+303.1430054 22724.53125
+304.1304932 12485.9951171875
+305.1342163 2542419.75
+306.1194153 929846.4375
+306.1971436 10585.6357421875
+307.1217041 142037.203125
+308.1241455 16584.9375
+311.135498 36981.02734375
+312.1187134 23762.71484375
+314.1243896 8810.1728515625
+320.132843 13884.7763671875
+321.1541748 307567.46875
+322.1568909 51227.59375
+323.1446838 853610.3125
+324.1469421 149679.140625
+325.147583 23919.390625
+328.1600952 14788.580078125
+329.1444702 44143.16015625
+331.1495667 18558.515625
+338.1427002 37334.86328125
+338.1809692 303759.21875
+338.6454163 13106.1884765625
+339.1828308 56231.63671875
+341.1474609 11605.9716796875
+346.1711121 16378.765625
+347.1504517 18934.9453125
+349.1600342 23997.826171875
+351.1289673 10959.474609375
+358.1668396 13496.1630859375
+359.1445618 59081.03125
+366.1865234 105346.5390625
+367.1896973 12279.9912109375
+368.1523438 9226.8818359375
+369.1382446 21857.251953125
+376.1702271 84148.9765625
+377.1553345 73165.6640625
+386.1637573 18354.58984375
+389.1541138 12248.3876953125
+394.1813354 537870.75
+394.2407837 15126.2578125
+395.1829834 106200.3515625
+396.1882324 11089.7255859375
+412.1863098 23213.869140625
+413.1678467 10226.8525390625
+420.6809387 11665.3193359375
+434.1783142 12411.6708984375
+460.1915894 26055.01953125
+464.1728516 9720.5732421875
+468.2214355 48828.15234375
+469.215332 12748.91015625
+477.2173767 12571.4638671875
+479.2003174 11197.15234375
+483.2222595 14253.5068359375
+483.7227478 11228.4287109375
+485.2476196 183663.640625
+486.2502136 49892.25
+488.1861877 51964.94921875
+489.1907654 15560.7548828125
+492.2299194 117541.6953125
+492.730835 82048.75
+493.2327881 25861.193359375
+495.2281189 36396.671875
+496.2328796 8394.1162109375
+503.2204895 14438.8779296875
+503.7131042 11989.927734375
+505.2145081 36517.96484375
+506.2034912 32818.1484375
+512.2255859 25415.482421875
+512.7307739 23483.6015625
+521.2409058 10411.3994140625
+521.7332153 12025.2294921875
+523.2224731 302441.5
+524.2247925 94018.40625
+525.230957 29005.42578125
+529.7408447 12225.8916015625
+530.2490845 10695.6591796875
+531.1629028 9301.6884765625
+558.7458496 18775.630859375
+559.244873 19057.255859375
+567.2474365 11732.9814453125
+567.7606812 11316.033203125
+571.7507935 64722.75
+572.2748413 235294.46875
+572.7532349 23163.263671875
+573.2839966 68809.6796875
+574.2822876 13356.5185546875
+576.2605591 21932.412109375
+580.2636108 33407.97265625
+580.7554321 1380007.375
+581.2568359 954580.3125
+581.7584839 347024.90625
+582.2584229 75094.21875
+598.2721558 44542.390625
+598.7755737 32670.900390625
+599.2772827 52715.375
+599.777832 63675.32421875
+606.2553101 21146.681640625
+624.2678833 34666.61328125
+673.3253174 248796.875
+674.3286133 117179.9921875
+675.3227539 15320.8515625
+693.2823486 10876.880859375
+711.2942505 14162.583984375
+802.366394 58293.31640625
+803.3666382 11902.3759765625
+873.4009399 53057.10546875
+874.3972778 24800.78125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.291.291.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=291"
+RTINSECONDS=31.44559254
+PEPMASS=598.27001953125
+CHARGE=2+
+56.24725342 20608.501953125
+59.78721619 20102.98046875
+64.52633667 93419.421875
+64.53044891 58452.23828125
+64.58223724 50194.71875
+64.58612061 51579.25390625
+64.6381073 31881.87890625
+64.64146423 22270.4765625
+111.3036728 22918.119140625
+149.5627289 42996.66015625
+149.5764465 53097.81640625
+167.0920868 26789.064453125
+169.0598907 32444.05859375
+175.1177216 345641.34375
+176.1208496 32145.095703125
+177.0755005 73075.5859375
+178.0436707 36206.46875
+178.0599213 375574.9375
+178.3340759 49638.1484375
+178.3527832 104186.296875
+179.0637207 37573.22265625
+179.0905609 27299.3984375
+183.0750122 32781.41015625
+186.0858612 109323.625
+194.1026917 42811.21875
+195.086319 5288323.5
+196.0891418 501466.84375
+200.1012878 32133.423828125
+206.0908051 160146.71875
+218.1024628 76153.390625
+222.0872955 26807.46875
+240.0959473 39740.765625
+243.0857391 27140.3203125
+246.0968781 754296.625
+247.0989227 86345.2578125
+257.1223145 118953.46875
+257.8780518 29677.76171875
+260.1125183 124992.8515625
+270.0959167 122621.7890625
+276.1325378 28826.9453125
+278.1489563 38217.7421875
+283.1427612 33500.5546875
+287.1235352 189527.421875
+288.1072083 1765714.375
+289.1097717 290289.1875
+295.1482544 43886.7734375
+303.1434937 42755.0546875
+305.1337585 3726853.25
+306.118927 1370723.375
+307.1211548 265661.09375
+308.1229248 28602.33203125
+311.1357117 48891.9609375
+312.114563 31879.076171875
+321.1537781 398071.875
+322.1560974 67614.3359375
+323.1442261 1352181.125
+324.1463013 218506.890625
+329.1438599 44776.6953125
+338.1419678 61855.4609375
+338.1804199 533607.5625
+339.1835938 93330.53125
+359.1448059 59691.5234375
+366.1853333 184170.8125
+367.190155 39291.421875
+376.1700745 158227.40625
+377.1575317 104324.46875
+386.1644897 28301.98828125
+394.180603 923112.25
+394.2400818 38338.8671875
+395.1829529 167315.90625
+396.1883545 25902.560546875
+412.1893921 42115.44140625
+468.2159424 51023.53515625
+477.2163696 32027.708984375
+483.7170715 25998.40234375
+485.2470703 237944.203125
+486.2502441 74692.484375
+488.1843872 46709.76171875
+492.2284851 204854.9375
+492.7282715 111779.328125
+495.2257385 61398.56640625
+505.2089233 63545.515625
+506.2058105 68276.8359375
+512.2280884 46817.5234375
+512.725647 39214.0
+521.2329712 58407.2734375
+523.2211914 561570.9375
+524.223938 143662.890625
+525.2284546 48413.34765625
+529.7418823 29162.388671875
+530.7424927 24406.80078125
+571.7513428 79959.625
+572.2761841 398924.6875
+573.2806396 136803.171875
+576.2596436 75387.4453125
+580.2630005 120724.84375
+580.7545166 3473962.5
+581.2556763 2183926.75
+581.3354492 33988.6171875
+581.3667603 27566.734375
+581.7573853 873583.5625
+582.2579956 157170.734375
+589.2669678 416892.34375
+589.7670898 216771.296875
+590.2643433 54101.8359375
+598.2715454 77367.015625
+598.7751465 77730.7890625
+599.2803345 31570.79296875
+606.260437 39149.73828125
+624.2679443 62378.9921875
+673.3239746 548896.125
+674.3255005 196859.265625
+675.3377075 32749.595703125
+802.3638306 134033.59375
+803.3678589 51020.5859375
+873.3986206 144035.578125
+874.4107056 54076.8046875
+899.8192139 23721.408203125
+1001.463257 42759.4375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.292.292.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=292"
+RTINSECONDS=31.54919338
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52624512 56348.81640625
+64.53050232 35876.390625
+64.58203125 38789.40625
+64.58618164 31338.6328125
+64.63830566 16737.431640625
+72.00050354 17138.92578125
+74.81168365 24174.412109375
+81.23474121 12891.4599609375
+130.067337 15486.0947265625
+131.6606293 12409.8369140625
+149.5681 50661.50390625
+152.0338745 14590.9052734375
+158.8531494 11576.1181640625
+167.0919952 47658.11328125
+169.0592194 36070.41015625
+175.1004181 13095.0361328125
+175.1179504 319948.03125
+176.1213074 19206.935546875
+177.0760498 68037.84375
+178.0436554 24868.22265625
+178.0600281 351495.59375
+178.078125 16457.607421875
+178.334671 36728.80078125
+178.3538513 49244.796875
+179.0907288 16348.7626953125
+182.091095 15799.9306640625
+183.0754242 27577.66796875
+186.0861511 122688.390625
+190.0593109 14549.0068359375
+194.1022034 38553.02734375
+195.0864716 4103665.25
+195.1281586 23959.62109375
+196.0893402 431612.71875
+197.0918579 29021.279296875
+200.1020966 31065.626953125
+201.0859833 27397.001953125
+206.0910645 167564.171875
+207.0941772 27115.94140625
+215.0905304 21584.978515625
+218.1026154 52140.63671875
+222.085907 21049.669921875
+243.0856323 21613.705078125
+244.1173706 17177.265625
+246.0970306 613553.5
+247.1002045 62701.2734375
+248.1116333 16097.1376953125
+249.0942993 15076.482421875
+257.1230164 107726.4140625
+260.1127625 146324.71875
+261.1184998 18694.234375
+267.1056213 15892.1640625
+270.0969849 103999.9609375
+278.149353 19220.658203125
+278.2316589 14703.353515625
+283.1429749 50142.640625
+287.1234741 150728.1875
+288.1074829 1642020.375
+289.1102295 220802.78125
+290.1117554 22126.220703125
+294.119812 17231.666015625
+304.1253357 21201.171875
+305.1340942 3210079.5
+306.1191406 1154216.25
+307.1212158 185308.359375
+308.1250305 21032.060546875
+311.1343079 45294.85546875
+312.1153259 23331.669921875
+321.1543884 326672.09375
+322.1561279 49873.90234375
+323.1444397 1129396.375
+324.146759 185460.0
+325.1498108 35727.6875
+329.1446228 46441.3125
+338.1418152 77713.3359375
+338.1807861 411587.34375
+339.1833191 89700.765625
+347.1492615 17883.107421875
+349.1598816 25764.900390625
+359.1439819 61169.8828125
+360.144043 16787.40625
+366.186554 106719.78125
+367.1852112 27937.44921875
+369.1403198 28599.99609375
+376.1704407 123567.3203125
+377.155426 85639.1796875
+386.1661682 34497.27734375
+394.1809387 704896.8125
+395.1831665 153567.671875
+396.1889343 17470.916015625
+397.6768188 16777.201171875
+412.1903076 29317.62890625
+413.1771545 19441.9296875
+420.6818848 16034.177734375
+421.1777344 13944.7578125
+428.2016602 14741.0732421875
+460.1899719 20839.837890625
+468.2218323 53828.09375
+469.2271729 14517.5205078125
+477.2182312 15784.3623046875
+478.2092285 18539.5546875
+482.1877441 18335.955078125
+485.2477417 220382.015625
+486.2510071 44654.390625
+488.1860352 51791.92578125
+492.2288208 114068.0546875
+492.7313843 85093.84375
+495.2276917 47326.26953125
+505.214386 40258.48828125
+506.2089539 43003.953125
+512.2275391 32160.380859375
+512.7260742 38932.84765625
+513.225708 19540.33203125
+521.2305908 39437.75
+521.7403564 19778.72265625
+523.2229004 406783.3125
+524.2255859 102153.7421875
+525.232666 15433.4931640625
+554.263855 21724.4453125
+555.2581177 16918.107421875
+558.7436523 26879.66015625
+571.7495728 66103.0234375
+572.2741089 299206.4375
+572.7521362 28441.7578125
+573.2773438 72002.4375
+574.2799072 26751.98828125
+576.2611694 40510.3984375
+576.7692871 26274.38671875
+577.2623901 18246.48828125
+577.7683105 20276.93359375
+580.262085 69636.453125
+580.755188 2121607.75
+581.2566528 1485293.0
+581.3682251 15680.6865234375
+581.7584229 555695.5625
+581.8647461 24265.962890625
+582.2593994 130951.90625
+589.2672729 53760.06640625
+589.7600708 21121.740234375
+598.2766113 42891.06640625
+598.7738037 20107.74609375
+599.2762451 25334.857421875
+599.7773438 78549.625
+606.2607422 31693.06640625
+624.2684937 40147.70703125
+625.2754517 22617.42578125
+655.3134155 34330.703125
+673.324585 432875.4375
+674.3254395 152945.59375
+675.3314819 21671.666015625
+693.2921753 32554.3515625
+711.2948608 24395.212890625
+802.3660278 74167.2578125
+803.3659058 57573.47265625
+873.401001 92083.484375
+874.4024658 44783.9609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.293.293.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=293"
+RTINSECONDS=31.65872653
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52616119 55913.125
+64.53064728 46346.11328125
+64.58196259 41470.65234375
+64.5861969 30775.98828125
+64.63786316 27627.068359375
+64.64130402 21542.685546875
+67.42378998 13045.7138671875
+74.81171417 18272.072265625
+112.3396988 13436.6826171875
+141.3992004 14968.5732421875
+149.5631409 25363.703125
+149.5769958 29938.1015625
+167.0918121 30596.130859375
+169.0594635 30974.30078125
+175.1177521 313707.625
+176.1201935 19801.9453125
+177.0762329 70920.484375
+178.0436859 25767.021484375
+178.0600281 355757.96875
+178.0782166 15742.037109375
+178.3435822 87689.1328125
+179.0634308 18876.96484375
+181.1069183 13157.880859375
+182.091156 18916.056640625
+183.0762634 36078.93359375
+186.0859985 87710.53125
+194.1017303 41255.5390625
+195.08638 3979799.0
+195.1283112 19897.09375
+196.0892181 387846.65625
+197.0916595 37561.1015625
+200.1014252 16011.873046875
+201.0864868 20426.416015625
+206.0911713 177849.0
+207.0935974 31436.13671875
+209.0757751 12988.0048828125
+218.1027069 48867.45703125
+240.0960236 13318.9306640625
+240.7166443 13047.046875
+243.0866852 22731.333984375
+244.1174011 16294.486328125
+246.0969238 663942.4375
+247.0997467 93725.171875
+257.1226807 107524.296875
+258.1246338 18224.51953125
+260.1121826 115902.0234375
+261.1196899 19561.69140625
+270.0966187 134399.4375
+278.1503906 21833.818359375
+283.1436768 59652.7578125
+284.1218262 20137.201171875
+287.1236267 165196.796875
+288.1073303 1629109.875
+289.1101379 233472.921875
+290.1097107 20138.314453125
+295.1500244 22560.52734375
+303.1424561 17662.25390625
+305.1339417 3015068.0
+306.1190491 1106343.375
+307.1213684 162407.40625
+308.1228638 23541.96484375
+311.134613 56909.98046875
+312.1159668 39386.3359375
+321.1537781 344388.28125
+322.1560974 53566.76953125
+323.098938 26954.7578125
+323.1444092 1098461.625
+323.1888428 31247.001953125
+324.1465149 158082.625
+325.1480713 21525.564453125
+328.1607056 17918.76953125
+329.1438904 41687.046875
+338.1423645 50260.86328125
+338.1808167 408344.125
+338.6488647 21710.666015625
+339.1832581 58038.0078125
+346.1701965 17445.654296875
+347.1485291 22561.46484375
+347.6528931 26531.8671875
+349.1604309 23808.8046875
+351.130188 19930.4375
+357.7783508 13714.7197265625
+358.1654968 17358.138671875
+359.1448975 58004.234375
+366.1859131 116250.53125
+367.1867371 26681.44140625
+369.1387939 27401.25390625
+376.1705933 117907.375
+377.1561584 78511.6328125
+378.1552124 14127.6259765625
+386.1642456 23880.53125
+394.1809692 738284.625
+394.240448 20523.19140625
+395.1825867 162127.578125
+398.1721497 14458.5361328125
+412.1904297 37269.57421875
+460.1919556 23098.09765625
+464.1750183 19262.9453125
+468.2210388 35802.05078125
+469.216156 15750.2333984375
+483.7148743 21422.783203125
+485.2473145 212130.890625
+486.2509766 57445.2421875
+488.1865234 40143.69921875
+492.2294312 215793.140625
+492.7316284 75978.4453125
+493.2283325 20851.6953125
+495.2276306 59093.35546875
+503.7209473 20637.24609375
+505.2111816 58880.21484375
+506.2102966 31464.9296875
+512.2260132 51376.30078125
+512.7262573 27216.853515625
+521.2379761 33544.24609375
+521.7310791 15917.7705078125
+523.2221069 418633.625
+524.223938 107001.640625
+525.2314453 24255.95703125
+529.7470703 17926.8515625
+541.2288208 17828.005859375
+558.7453613 19212.40625
+571.7508545 87006.9296875
+572.2744141 329312.09375
+572.7501221 27632.728515625
+573.281311 87133.2734375
+574.2784424 16258.201171875
+576.2598877 44088.67578125
+576.7630005 29015.65625
+577.2598877 28977.361328125
+580.2622681 79401.8046875
+580.755249 2268372.5
+581.2564087 1478887.125
+581.7581177 624158.875
+582.2585449 120726.6953125
+589.2610474 17268.9921875
+598.2727661 59717.42578125
+598.7741699 26211.7734375
+599.2754517 32019.625
+599.7776489 83618.6015625
+606.262207 27138.80078125
+624.2648315 44156.4453125
+625.2695923 17963.517578125
+655.3129272 16705.380859375
+673.3241577 448179.4375
+674.3269653 170071.65625
+694.2975464 19722.671875
+711.2949829 19381.1484375
+784.34729 19339.265625
+802.3627319 85539.125
+803.3692017 38708.1875
+804.3751221 16772.572265625
+873.4016724 123762.9921875
+874.4064941 38048.6796875
+1059.484985 15737.2099609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.294.294.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=294"
+RTINSECONDS=31.76872333
+PEPMASS=598.27001953125
+CHARGE=2+
+60.36997986 19449.982421875
+64.52631378 78489.5
+64.5304718 46822.60546875
+64.58206177 58321.7578125
+64.58625793 41562.71875
+64.63825226 20750.1875
+64.64131927 18198.470703125
+76.28041077 20252.642578125
+80.35704041 16926.962890625
+92.99936676 18669.67578125
+115.2631073 16829.775390625
+115.9548416 22326.814453125
+149.5634766 44699.8203125
+167.0920563 48563.15625
+169.0600433 39794.1953125
+175.1015015 12551.38671875
+175.1178284 315505.8125
+176.1210938 23716.521484375
+177.0759583 57349.19140625
+178.0433807 33422.13671875
+178.0598602 339928.4375
+178.3355408 62273.94921875
+178.3547516 37120.06640625
+179.0631714 36741.4375
+179.0912628 20252.287109375
+181.7416687 14758.673828125
+183.0751648 25338.419921875
+186.0860748 115565.7265625
+194.1020203 55178.2109375
+195.0863495 4917804.0
+196.0893097 500082.40625
+197.0910492 32280.455078125
+200.1019287 32566.654296875
+206.0907593 159534.640625
+217.91362 18263.673828125
+218.1027222 52934.578125
+233.9237671 26748.25390625
+240.0955048 22511.98046875
+243.0860138 21837.3046875
+246.0968475 712430.8125
+247.0995026 84975.7890625
+249.0975342 21156.8984375
+257.1230774 127974.1875
+258.1256714 23862.263671875
+259.7387695 17124.806640625
+260.1125183 117045.5390625
+261.1167297 20803.107421875
+270.0968933 120653.6796875
+278.150177 39904.6015625
+283.1424866 40158.125
+287.1235962 161160.984375
+288.1072083 1683719.5
+289.1097412 333062.28125
+295.1531677 31747.65234375
+303.1444397 34147.18359375
+305.133728 3621678.75
+306.1188049 1327753.5
+307.1210632 195754.328125
+311.1341248 46703.1875
+312.1176147 32466.494140625
+321.1538391 380684.59375
+322.1565857 63689.9765625
+323.0987549 27176.2265625
+323.1441345 1348223.875
+324.1465759 226484.25
+329.1405945 42256.76953125
+338.1417542 61514.16015625
+338.1802979 438730.9375
+338.646637 39671.58984375
+339.1824646 71159.90625
+359.1425171 62973.265625
+360.1471863 23565.16015625
+366.1858826 170523.875
+367.1880798 28772.533203125
+369.1378479 31754.826171875
+376.1703491 162767.84375
+377.1552124 79371.203125
+386.1643372 37551.9140625
+394.1805725 910958.125
+395.182251 160866.953125
+412.1881104 28863.951171875
+468.2199707 58683.609375
+469.210968 39724.578125
+478.1961365 25381.673828125
+485.247406 226865.671875
+486.249115 77931.140625
+488.1853943 45558.78515625
+492.2294922 189516.09375
+492.7296753 151867.984375
+493.2254333 28458.048828125
+495.2253418 61068.71875
+503.7125244 27166.89453125
+505.2114868 58859.03125
+506.2054443 37684.4296875
+512.2272949 29311.013671875
+512.7229004 29713.4609375
+521.2310181 38867.59765625
+523.2211304 557623.9375
+524.223999 161216.96875
+525.2303467 36408.78515625
+558.7405396 37908.0234375
+559.2453003 25484.314453125
+567.2542725 23407.759765625
+571.7484131 87168.796875
+572.2744141 337817.34375
+573.2787476 108215.328125
+574.2836914 27544.244140625
+576.2594604 47312.23828125
+577.2645874 29599.814453125
+580.2612305 92364.2890625
+580.7543335 2800542.25
+581.2556152 1810921.625
+581.757019 735285.125
+581.8643188 28215.751953125
+582.2582397 121063.40625
+589.2670288 188735.640625
+589.7662964 100902.5703125
+598.274353 40694.125
+599.2770996 30294.40234375
+599.7771606 76983.015625
+606.2507324 39727.46484375
+607.2531738 28092.126953125
+624.2647095 57992.90234375
+625.272644 24995.001953125
+655.312561 30775.630859375
+673.322998 465372.40625
+674.3259888 177151.75
+675.3244019 23019.03125
+693.281189 21198.56640625
+802.362854 121507.8359375
+803.3566895 36935.84375
+873.4001465 122250.140625
+874.4074707 50908.0546875
+1001.460571 23295.32421875
+1216.326294 20324.408203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.295.295.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=295"
+RTINSECONDS=31.87489232
+PEPMASS=598.27001953125
+CHARGE=2+
+50.48414993 11693.1494140625
+58.13444138 16543.61328125
+58.13722992 17133.0390625
+64.52628326 49858.8359375
+64.53051758 32786.46875
+64.58203125 44978.0625
+64.58614349 27587.5703125
+64.63816833 19403.248046875
+64.6413269 14939.3134765625
+70.0266037 11652.7734375
+73.0531311 10584.4951171875
+81.04593658 11116.1455078125
+121.0900116 11991.2373046875
+149.5738678 34681.71875
+162.8981171 11004.7431640625
+167.0917511 27123.1640625
+169.059433 34568.36328125
+175.1180725 308956.0625
+176.1214905 25016.765625
+177.0761566 72788.8046875
+178.0601196 347794.5
+178.0780182 22965.1953125
+178.3356323 46730.484375
+178.3546906 31447.755859375
+179.0639343 36269.96484375
+179.0901642 15834.0751953125
+182.0904236 13949.0888671875
+183.0759888 27864.888671875
+186.0861816 120909.34375
+190.0606842 15467.083984375
+194.1025391 32431.59375
+195.0865631 3906449.75
+195.1280212 25799.787109375
+196.0894623 414926.1875
+197.0917511 34056.05859375
+200.1018372 33442.7421875
+201.0866699 18738.71875
+206.0912323 168739.375
+207.0947418 17728.75
+212.1147003 13998.2841796875
+218.1018982 43813.09765625
+222.0863953 20325.236328125
+233.1266785 16804.033203125
+240.0949554 25042.162109375
+243.0861969 28801.6953125
+246.0971985 633066.375
+247.099762 77082.28125
+257.1231995 102963.7890625
+258.1263428 17669.79296875
+260.1128845 127756.2734375
+270.0971069 138783.5
+278.1504517 21070.296875
+283.1442261 58896.03125
+284.1204834 16411.07421875
+287.1235657 155155.6875
+288.1077271 1570133.25
+289.1106262 239825.78125
+294.1171875 21538.66015625
+295.1528931 21122.234375
+303.1425781 32187.10546875
+304.1256104 19106.966796875
+305.1343079 3049660.25
+306.1194763 1100336.0
+307.1217651 192508.09375
+308.1227112 17333.662109375
+311.1346741 61225.875
+312.1182251 43035.79296875
+320.1300049 14136.4052734375
+320.1686401 13971.021484375
+321.1545715 300610.84375
+322.1564331 58012.42578125
+323.1448364 1012856.0625
+324.1474304 178158.78125
+325.1549683 16188.80859375
+329.1429138 46662.63671875
+338.1426086 47964.67578125
+338.1810303 409911.75
+338.644165 16845.03125
+339.1844177 65961.203125
+341.1467896 16057.2568359375
+349.1604919 26192.921875
+351.1330261 17982.2421875
+358.1633301 12406.8564453125
+359.1456909 55618.734375
+366.1870422 124185.609375
+367.1887207 25350.392578125
+369.1393127 26015.173828125
+376.1706238 105247.484375
+377.1571045 76874.6796875
+386.1653442 20513.021484375
+394.1204224 17581.740234375
+394.1326599 11128.376953125
+394.1815186 649546.625
+394.2400818 22099.2109375
+395.1832275 143111.234375
+412.1907349 24001.263671875
+413.1659241 16854.73828125
+420.6866455 23405.16015625
+460.1918945 26943.974609375
+463.1950989 15176.1748046875
+468.2225647 46035.84765625
+469.2162781 11685.6220703125
+477.219574 15689.55859375
+483.7192993 39029.9296875
+484.2192993 14605.7802734375
+485.2483215 204995.75
+486.2502136 49807.23046875
+488.1860962 47360.15625
+492.2297058 174772.921875
+492.7314453 95696.890625
+493.2306824 48985.74609375
+494.7165222 17224.794921875
+495.230896 46194.44140625
+503.7175293 20163.95703125
+505.2139587 52362.140625
+506.2026367 35828.66796875
+512.2283325 37887.6484375
+512.7250977 18074.576171875
+521.2356567 45316.4296875
+521.7371216 13642.447265625
+523.2227783 414035.09375
+524.2264404 105845.03125
+525.2294312 22482.478515625
+529.7453003 15165.544921875
+530.2337036 17456.048828125
+555.2555542 16152.8759765625
+558.7435913 15857.07421875
+571.7509155 92461.6796875
+572.2746582 315052.25
+572.7532349 21831.08203125
+573.2799683 94101.6484375
+576.2611084 49473.51171875
+576.7637939 21844.158203125
+577.2634277 32377.076171875
+580.2626343 69526.953125
+580.7564087 2049204.375
+581.2571411 1564939.0
+581.7590942 562250.6875
+582.2615967 125480.078125
+598.2768555 27372.490234375
+598.7728271 30733.759765625
+599.2800293 51476.37890625
+599.7793579 82748.546875
+606.2634888 38087.5078125
+607.2589111 14250.93359375
+624.2683716 37078.98046875
+625.2787476 17217.734375
+673.3255005 398489.875
+674.3291016 130394.84375
+675.3291626 25884.62890625
+693.289917 23450.482421875
+802.3677979 83002.421875
+803.3673096 42190.0390625
+873.4017944 81578.734375
+874.40802 42953.05859375
+875.4080811 15950.28125
+901.7666016 13529.013671875
+1001.472351 21593.3359375
+1058.468018 18599.158203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.296.296.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=296"
+RTINSECONDS=31.98636797
+PEPMASS=598.27001953125
+CHARGE=2+
+53.68148804 18243.654296875
+58.13431168 20731.833984375
+64.52629089 68736.0078125
+64.5304718 48169.91015625
+64.58196259 61745.27734375
+64.58612823 46934.8359375
+64.63816833 23918.49609375
+64.64146423 25362.400390625
+73.49567413 19814.193359375
+82.65700531 20219.01171875
+83.92151642 18941.826171875
+128.4859467 20526.84765625
+149.5633545 46982.38671875
+149.5770569 34212.125
+167.0924683 47603.7421875
+169.0593719 39754.8984375
+175.1176453 313886.71875
+177.0758667 67445.6796875
+178.0598602 350210.40625
+178.3325195 48978.44921875
+178.3516693 92604.8984375
+179.0629883 27489.525390625
+179.0917664 25197.78515625
+186.0859985 105243.546875
+194.1026764 51436.3203125
+195.0862885 5036532.0
+195.1031494 87997.5625
+195.128006 27080.447265625
+195.3266907 17950.75390625
+196.088974 460675.90625
+196.9906769 19505.3515625
+197.0915833 34932.21484375
+200.352066 22282.71484375
+206.0908966 164674.46875
+209.1003723 30292.78125
+213.0868225 22031.1953125
+218.1022797 59081.7890625
+222.0857086 24710.541015625
+225.2277222 19024.0546875
+246.0967712 661242.6875
+247.0998535 70869.75
+249.135376 24982.0390625
+257.1226807 103202.8984375
+260.1119995 116147.859375
+260.889679 19541.865234375
+270.0963745 144907.359375
+283.1443787 52152.328125
+287.1227722 169553.34375
+288.1071167 1703912.75
+289.1095581 254517.0
+295.150177 24992.201171875
+303.1434937 25359.70703125
+305.1335449 3683538.25
+306.1186829 1388550.5
+307.1210632 237259.90625
+308.1236267 33499.09375
+311.1342773 49442.890625
+312.1152649 44555.35546875
+321.1535339 415099.53125
+322.1546021 53328.40625
+323.144104 1356415.5
+324.1464844 219341.09375
+329.14505 63739.6484375
+338.1411438 92879.3046875
+338.1802673 446454.5625
+339.183197 82875.71875
+341.1437073 21958.81640625
+347.6516418 27138.54296875
+358.1650696 24746.998046875
+359.1438904 61939.3125
+366.1861572 132073.734375
+366.2318115 27158.875
+369.1401367 33147.95703125
+376.1697998 137353.5625
+377.1555176 83797.1171875
+378.1593018 23133.91796875
+386.160614 31281.6640625
+394.1803589 868564.75
+395.1820679 179815.484375
+396.1852417 35173.4296875
+397.6816711 26372.21484375
+412.1846924 34667.1484375
+420.6812439 26014.94140625
+452.1830139 18808.8359375
+460.1912231 40388.55078125
+468.2189026 53668.83203125
+483.7195435 33380.828125
+485.2465515 220777.484375
+486.250061 51854.7109375
+488.1807251 23831.388671875
+492.2290039 205727.234375
+492.7312012 82029.6171875
+493.232605 53236.74609375
+495.2322998 43251.5546875
+503.7210999 26602.73828125
+505.2096558 61540.76953125
+506.2023926 67464.765625
+512.7249756 26768.015625
+516.2505493 23320.529296875
+520.7440186 26035.58984375
+521.2320557 66553.5
+521.7313843 32749.951171875
+523.2213745 507825.25
+524.2241821 131370.234375
+525.2305908 23064.169921875
+571.750061 57981.10546875
+572.2731323 331114.84375
+573.281311 96180.703125
+576.2610474 65018.625
+576.7588501 52187.1015625
+580.2622681 71567.765625
+580.7540894 2918692.25
+580.840332 34811.75390625
+581.2554321 2004353.0
+581.3363647 30460.896484375
+581.3670044 25371.615234375
+581.7570801 753261.0625
+582.2576904 158723.28125
+589.2669678 204991.375
+589.765564 111306.15625
+590.2663574 29801.25390625
+598.272583 61579.8046875
+598.776123 46865.09375
+599.7749634 47319.4609375
+606.2575684 50979.73828125
+624.2683716 75642.7109375
+656.3128052 26699.296875
+673.3225708 520560.3125
+674.3242188 189555.0
+675.3292236 28057.1796875
+711.2995605 47294.77734375
+802.3606567 135426.390625
+803.3716431 45389.4296875
+873.3936157 121780.78125
+874.4006348 64284.9453125
+1001.445801 26246.2109375
+1002.448547 26020.189453125
+1059.481079 28213.1640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.297.297.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=297"
+RTINSECONDS=32.0910449
+PEPMASS=598.27001953125
+CHARGE=2+
+54.06609726 9920.3193359375
+54.93612671 10630.0849609375
+58.13445282 13429.97265625
+64.52630615 42502.1484375
+64.53073883 42143.36328125
+64.58195496 31890.185546875
+64.58622742 22960.830078125
+64.6383667 14168.8203125
+64.64150238 11730.9658203125
+74.81190491 12629.2373046875
+74.81609344 13630.11328125
+76.28146362 12658.908203125
+90.13195038 12018.4501953125
+113.6431503 11204.259765625
+149.5650177 27887.740234375
+152.0058441 11461.3154296875
+162.7328644 10380.2080078125
+167.0922852 43407.6328125
+169.0597229 31726.625
+175.1180878 298484.65625
+176.12146 23172.5703125
+176.7873535 10561.7060546875
+177.0761108 76411.65625
+178.0601807 353221.09375
+178.0780792 21785.693359375
+178.3318939 22855.259765625
+178.3505402 55177.8359375
+179.0634918 28837.46484375
+179.0908508 18269.501953125
+182.0914917 17141.74609375
+183.0752106 24733.72265625
+186.08638 117066.15625
+194.1026306 35300.5
+195.0865784 3615469.25
+195.1284943 18509.013671875
+196.0895996 402124.0
+196.8327637 11230.654296875
+197.0915375 16118.005859375
+200.1010742 18792.986328125
+206.0911865 153954.4375
+212.1121216 14039.2607421875
+215.0912628 21785.59375
+218.1027069 49075.94921875
+233.1270447 19318.583984375
+234.0979309 18300.390625
+237.1058655 16697.9453125
+240.0968628 26136.525390625
+243.0854645 24033.845703125
+246.0973053 604138.1875
+247.1002655 82986.4296875
+249.0966492 16801.197265625
+257.1233215 106490.53125
+260.112854 106038.984375
+261.1184082 19891.578125
+270.097168 120727.1796875
+271.1030579 11738.98828125
+272.1127014 12865.9951171875
+276.1335449 22720.8046875
+278.1509399 21658.705078125
+283.1438293 48045.7265625
+287.1234741 155381.0
+288.1077576 1617593.75
+289.1107178 226171.46875
+290.1132202 24033.583984375
+295.1488342 19450.580078125
+302.130249 15080.400390625
+303.1441345 29145.544921875
+304.1288757 16421.607421875
+305.1343689 2852880.0
+306.1194763 1061600.25
+307.1224365 158114.921875
+308.1271667 18668.3515625
+311.1356506 46429.65234375
+312.1163025 21104.380859375
+318.14505 17514.38671875
+321.15448 342791.96875
+322.156189 42020.02734375
+323.0982666 16763.712890625
+323.1448975 965619.9375
+324.1465149 159990.53125
+325.1529846 16042.25
+329.1439819 44767.36328125
+331.1480713 13929.3984375
+338.1425476 49186.3046875
+338.1812439 330892.65625
+338.6465149 19394.66015625
+339.1442871 14142.453125
+339.1838684 61970.6640625
+341.1435852 13844.37109375
+346.1697998 17584.068359375
+349.1604614 33211.59765625
+351.1291199 17700.51953125
+359.1453247 62302.43359375
+366.1871338 119187.5546875
+367.1924133 11314.6728515625
+369.1395874 33799.22265625
+376.1707153 108508.5546875
+377.1588135 75902.2734375
+378.1564941 15615.4404296875
+386.1652527 17234.8828125
+389.1553345 17335.193359375
+394.1206665 17563.79296875
+394.1360168 12245.98046875
+394.1815796 652436.0625
+394.2409363 23280.478515625
+395.1837463 110002.53125
+412.1889343 29998.869140625
+420.6856995 15607.2158203125
+434.1794434 14028.0048828125
+460.1907043 17794.451171875
+468.2218018 52358.19140625
+469.2175903 15694.1328125
+477.2188416 20508.576171875
+485.248291 158430.765625
+486.250824 61627.18359375
+488.1882019 45077.4140625
+489.1900635 16098.6259765625
+492.230011 165129.609375
+492.7316589 64655.95703125
+493.23349 21961.70703125
+495.2269287 65701.9140625
+496.2322693 16046.908203125
+505.2138977 42930.4453125
+506.2042236 44313.00390625
+512.2285767 37115.29296875
+512.7258301 22184.99609375
+521.2368164 24557.615234375
+521.7324829 21990.845703125
+523.2230835 374911.15625
+524.2252808 115170.984375
+525.225647 20198.166015625
+554.2629395 18165.31640625
+558.7478638 29210.74609375
+567.7562256 13945.87890625
+571.751709 82588.59375
+572.2759399 238245.59375
+572.7539673 30026.546875
+573.2816772 72440.8359375
+574.2865601 19241.16015625
+576.265686 31866.892578125
+576.7689209 20844.763671875
+577.2686157 14167.0302734375
+580.2635498 52403.18359375
+580.7567139 1772504.625
+581.2576904 1200882.75
+581.7593994 452583.59375
+582.2607422 103517.2578125
+589.7661743 12263.078125
+598.2746582 41633.69140625
+598.7772217 30285.955078125
+599.2749634 53889.9921875
+599.7774048 95787.5625
+606.2614136 31939.009765625
+624.2706299 47565.2734375
+656.3049316 16014.1279296875
+673.3260498 381980.9375
+674.3292847 136472.4375
+675.3267212 22675.53515625
+693.2925415 20500.49609375
+711.2958374 15706.4140625
+802.3677979 68669.8203125
+803.3735352 30761.876953125
+873.4033203 74623.046875
+874.4052734 38656.98046875
+966.7695312 13099.9619140625
+1001.470703 19013.697265625
+1002.478943 14431.712890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.298.298.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=298"
+RTINSECONDS=32.20391749
+PEPMASS=598.27001953125
+CHARGE=2+
+52.66144943 14559.306640625
+58.13445282 17329.033203125
+63.58494949 14944.0390625
+63.58868027 13045.57421875
+64.52641296 70076.65625
+64.53076935 49165.43359375
+64.58204651 48192.8671875
+64.58628082 24735.998046875
+64.63811493 22896.9921875
+74.8121109 15854.9794921875
+114.438797 13098.6796875
+116.549263 13029.28515625
+128.4805603 13736.5498046875
+140.116272 13391.6845703125
+149.5639801 23294.677734375
+167.0917816 50872.21484375
+169.0599823 38528.7109375
+175.117981 322118.375
+176.1217651 20497.3359375
+177.0758057 74825.4375
+178.0601349 341531.0625
+178.0780487 22099.490234375
+178.344223 92866.03125
+179.0629883 24273.3046875
+179.0916748 28652.9609375
+183.075531 34543.046875
+186.0864258 107058.609375
+194.1026917 44062.28515625
+195.0650024 24033.0
+195.0865631 4422175.0
+196.0894928 431063.71875
+197.0921631 34701.796875
+199.1167297 16240.1552734375
+200.1012421 24199.09765625
+201.0868835 15836.7578125
+206.0913239 167831.578125
+209.1024017 18101.060546875
+215.0912476 17427.240234375
+218.1025238 66732.734375
+235.1028442 15399.482421875
+236.8367004 14024.435546875
+237.1102448 15546.74609375
+239.1112823 17761.80859375
+240.0964355 27459.427734375
+243.086319 24080.021484375
+244.1189728 23538.591796875
+246.0971222 662444.625
+247.1005249 61022.76953125
+248.1144257 18328.162109375
+257.1229858 119352.8046875
+258.1272278 17961.9609375
+260.1128235 137161.734375
+270.09729 125768.453125
+277.1395874 21992.44921875
+278.1200867 18176.486328125
+283.1430969 56133.48828125
+287.1232605 159736.46875
+288.107666 1714995.75
+289.1100769 259793.703125
+290.1127625 27798.162109375
+295.151062 17301.73046875
+303.1437378 33113.5390625
+304.1272278 25758.451171875
+305.1342163 3298788.75
+306.1195068 1192974.875
+307.1219788 199530.484375
+308.1238403 24266.205078125
+311.1349487 42241.859375
+312.1174011 29518.09375
+318.1408386 22942.8515625
+321.1544189 384350.8125
+322.1561279 54181.3671875
+323.1446533 1157163.875
+324.1469421 194142.328125
+325.1539612 22918.068359375
+329.1441956 64230.328125
+338.1427917 50558.37890625
+338.1807861 425023.4375
+338.6446838 18668.0703125
+339.1833801 90055.015625
+347.1499939 30259.953125
+349.1578979 21335.607421875
+358.1679077 18799.3359375
+359.1456909 67794.625
+360.144989 16705.234375
+362.6440125 14834.2919921875
+366.1864014 131032.6484375
+367.1838379 22357.40625
+369.1360474 22750.08984375
+376.1707458 115625.78125
+377.1575317 95451.8359375
+378.1582031 21343.310546875
+386.1643372 27571.365234375
+394.1811829 747751.75
+394.2402344 26654.55859375
+395.1829529 160203.78125
+396.1804199 16509.70703125
+412.1892395 34460.69140625
+413.1747742 14202.7060546875
+420.6844177 23688.810546875
+434.1713257 17440.595703125
+460.1912842 30822.57421875
+463.2008057 16716.55078125
+464.1750793 18737.1171875
+468.2215271 52102.80859375
+474.709137 17096.79296875
+477.2187195 18806.734375
+478.2068787 20594.71875
+483.7188721 25041.658203125
+485.2472839 258009.96875
+486.2505798 69041.7734375
+487.2080078 22575.59375
+488.1864624 57266.046875
+492.2292786 191673.265625
+492.7321472 111291.875
+493.2315369 29992.0390625
+495.2270813 57046.4765625
+501.234436 18379.689453125
+505.2118225 59304.33203125
+506.2053833 63848.30859375
+512.2272949 54694.16796875
+512.7269287 32021.10546875
+521.2230225 16001.54296875
+521.7364502 25142.33984375
+523.2226562 531592.6875
+524.2249756 145870.359375
+525.2297363 33631.55859375
+555.2556763 23056.634765625
+559.2484131 26947.814453125
+571.7514648 77404.6953125
+572.274231 337913.0
+572.7513428 42746.42578125
+573.2803955 93258.6796875
+576.2612305 56482.40625
+576.763855 29914.935546875
+577.269165 19796.6875
+580.2624512 110527.9296875
+580.7556152 2630462.25
+581.2567749 1606596.375
+581.7585449 659361.0625
+582.2581177 117825.0859375
+589.267395 57489.91015625
+598.274231 74083.3515625
+598.7833862 28792.509765625
+599.2808838 33806.3203125
+599.7770996 74773.2421875
+606.258667 43080.25
+607.2481079 17127.890625
+624.2681274 47602.3515625
+625.2736816 22789.69921875
+655.3145142 21881.83984375
+673.3248901 444682.1875
+674.3272705 180027.09375
+675.3292847 31870.03125
+711.2938843 23270.130859375
+802.3650513 95614.84375
+803.3648682 56590.16015625
+873.4020386 105952.7109375
+874.401062 41944.8203125
+1001.459778 31707.59375
+1002.458008 20782.73828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.299.299.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=299"
+RTINSECONDS=32.31265595
+PEPMASS=598.27001953125
+CHARGE=2+
+56.63985062 19059.76953125
+59.49414062 16861.642578125
+60.45267105 16214.142578125
+64.52632904 81539.984375
+64.53055573 48700.62890625
+64.58204651 53739.94921875
+64.58625031 30940.603515625
+64.63820648 32666.22265625
+64.64164734 31868.927734375
+71.46569824 17481.337890625
+72.48989868 18225.400390625
+82.05464935 18297.087890625
+88.97022247 18367.19140625
+116.0364609 18252.087890625
+119.2883301 16947.849609375
+133.867569 18569.234375
+145.3089142 17524.01953125
+149.5620422 33794.25
+149.574234 53451.56640625
+167.0917511 26518.859375
+169.0606079 26259.96875
+175.1180267 358782.0625
+176.1207581 18272.60546875
+177.0763855 57944.44921875
+178.0601807 373870.375
+178.3360901 61280.94921875
+178.3549805 38425.84375
+179.063736 38780.6640625
+182.0920715 24618.43359375
+183.0756683 35836.6796875
+186.0861816 108427.0078125
+189.2746887 20824.59375
+194.1026154 47098.35546875
+195.0865326 4837793.5
+196.089386 493833.59375
+197.0913544 30276.326171875
+200.101181 31390.111328125
+201.0869751 31878.369140625
+206.0912933 148460.6875
+218.1018372 73204.65625
+222.0852051 24146.458984375
+234.0974731 23197.68359375
+240.0960236 33691.25
+243.0851746 31286.234375
+246.0971222 674137.875
+247.1005249 82766.6875
+257.1225891 104662.7421875
+260.1125183 115983.9453125
+270.0969849 142848.609375
+278.1495361 25852.615234375
+283.1419678 48735.2890625
+287.1234436 171216.9375
+288.0543823 29519.607421875
+288.1076355 1681871.375
+289.1104126 231904.78125
+305.1042175 77321.8125
+305.1342163 3528358.5
+306.1192627 1280425.0
+307.121582 226853.0
+311.1348267 41787.62890625
+312.1160278 35456.66796875
+321.1540833 342668.0625
+322.1569824 56508.21875
+323.1446533 1275387.0
+324.1465149 193060.625
+325.1508484 21835.767578125
+329.1435242 44879.9921875
+338.1442871 37122.34765625
+338.1807861 415590.5625
+339.182312 72646.59375
+359.1451111 63283.0078125
+366.1856384 143209.40625
+369.1381836 48696.921875
+376.1703491 120672.46875
+377.1570129 101456.75
+386.1659546 31450.755859375
+394.1811829 881443.6875
+395.1833801 206325.078125
+412.1896057 40987.1484375
+420.6815796 23992.552734375
+468.2223206 50247.31640625
+474.7192078 18953.0078125
+483.7157898 24062.736328125
+485.2473755 240412.828125
+486.2494202 64144.328125
+488.1906433 51314.51171875
+492.2289734 194053.875
+492.732605 89165.703125
+493.2315674 25058.6328125
+495.230896 66945.140625
+503.7235718 25598.623046875
+505.2113953 86182.671875
+506.2009583 33665.5546875
+512.2296143 56782.49609375
+512.7279663 53523.625
+521.236084 53913.30859375
+521.7349243 31887.31640625
+523.2228394 564890.875
+523.3092041 35532.30859375
+524.2254028 151530.796875
+529.7506104 30123.818359375
+568.2662354 20236.873046875
+571.7506104 96080.3828125
+572.2750854 332687.75
+573.2821655 142037.203125
+576.2570801 52362.08984375
+576.7644043 25635.947265625
+580.2634277 108321.9375
+580.7556152 2989632.75
+581.256897 2109567.0
+581.7589722 789074.375
+582.2580566 122454.125
+589.2681885 219836.671875
+589.765686 101510.0
+590.2650146 39048.9765625
+598.2736206 81238.484375
+598.7752075 54155.390625
+599.7820435 68985.3203125
+606.2588501 41924.4375
+624.2672729 81267.375
+673.3244629 444028.21875
+674.3242798 138786.09375
+675.3248901 32409.431640625
+711.3016357 40922.00390625
+802.3648071 132138.109375
+803.3734741 63565.4296875
+873.401001 155292.0
+874.4037476 54642.8984375
+875.4198608 22840.99609375
+1001.449707 26888.58984375
+1058.490234 29242.509765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.300.300.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=300"
+RTINSECONDS=32.41821824
+PEPMASS=598.27001953125
+CHARGE=2+
+56.72854996 10144.5888671875
+58.13447952 13784.4873046875
+58.13739014 13825.572265625
+64.52619171 51260.14453125
+64.53057861 40786.99609375
+64.58196259 41057.50390625
+64.58611298 24554.279296875
+64.63798523 21029.654296875
+68.93767548 11022.9892578125
+74.81213379 12928.6259765625
+82.05410004 17439.478515625
+140.7406464 12514.232421875
+147.4171448 10963.3701171875
+149.569931 43921.8203125
+159.8956909 10492.5
+167.0915985 36671.4296875
+168.0755005 10166.3251953125
+169.0593262 18642.125
+175.1178436 299095.0625
+176.1207886 23293.0703125
+177.0761261 73684.84375
+178.0599365 344152.09375
+178.0779724 20069.322265625
+178.3516846 53948.96875
+179.0631561 15017.607421875
+179.0920105 22463.892578125
+182.0902557 18341.099609375
+183.0753632 21220.18359375
+186.0861969 97063.046875
+190.0605469 12780.4150390625
+194.1022797 40343.21484375
+195.08638 3720656.75
+196.0892487 406441.65625
+197.0921173 33599.2890625
+200.1016846 35796.78515625
+201.0856323 21094.05859375
+206.0909882 163115.671875
+207.0936279 16114.3935546875
+212.1143951 13404.255859375
+213.0861969 12852.328125
+215.0906219 15767.9609375
+217.1265717 13818.509765625
+218.1018677 54367.41796875
+222.0848999 13247.6796875
+232.1181641 13107.9296875
+234.0974731 19654.87890625
+240.0969543 27766.693359375
+243.0859222 18144.154296875
+244.1163788 13154.111328125
+246.0969391 649010.875
+247.0999756 69249.734375
+248.1057587 11713.6865234375
+257.1228943 104603.671875
+258.1244507 16112.5888671875
+260.1126709 120532.296875
+262.1226501 16059.7470703125
+270.0967712 114126.546875
+271.1021118 18664.0859375
+277.1405334 13869.82421875
+278.1502686 26951.095703125
+283.1444702 45472.6796875
+287.1233521 146658.84375
+288.1073914 1622856.875
+289.1102905 244890.875
+290.1130066 20494.111328125
+294.1172791 19119.19140625
+295.1485291 22524.052734375
+303.1439514 30302.564453125
+304.1264038 13253.1201171875
+305.1339722 2986699.25
+306.1193237 987540.0625
+307.1212463 163635.953125
+308.1225586 19027.1015625
+311.1334839 50026.80859375
+312.1180115 41683.58984375
+321.1538391 303053.125
+322.1567383 64393.8828125
+323.1444702 1044570.4375
+324.1462097 168520.671875
+325.1496277 16627.90625
+329.1440125 43585.68359375
+338.142395 54223.890625
+338.180603 378207.5625
+338.6445923 22967.1953125
+339.1409912 16835.283203125
+339.1837158 59041.44140625
+347.1502075 17165.822265625
+348.1670227 14025.044921875
+351.1271362 19351.080078125
+359.1437988 57790.28125
+366.1863098 129907.1796875
+367.1871948 14710.9658203125
+369.1390381 29843.013671875
+376.1699829 128658.3125
+377.1568604 67051.96875
+386.1648254 28985.98828125
+394.1201782 12042.46875
+394.1808777 695288.0625
+395.1821594 131680.125
+396.1856079 17621.140625
+411.6799927 13347.1904296875
+412.1869202 31859.826171875
+420.6897888 20446.34765625
+450.2098389 15107.1318359375
+468.2203674 46064.22265625
+478.203064 14851.443359375
+483.7179871 19570.546875
+485.2473145 220275.71875
+486.2505188 48015.34765625
+488.1846619 46535.6015625
+492.2293091 187943.921875
+492.7308044 83916.875
+493.2310791 42934.4609375
+495.2275391 71565.4921875
+503.7215271 20432.564453125
+505.2121277 49272.6328125
+506.2080994 53224.25
+507.2060852 13131.396484375
+512.2279053 28532.3984375
+512.7226562 32770.65625
+521.2293701 29464.517578125
+523.222168 466565.875
+524.2249756 113923.8046875
+525.2260742 18452.80078125
+554.2661133 15419.072265625
+555.258728 21298.23828125
+559.2518921 17629.591796875
+571.7488403 81506.234375
+572.2750854 311134.1875
+572.7531128 26751.99609375
+573.2803345 104278.8359375
+576.2587891 37350.8828125
+576.7590332 20933.125
+577.2624512 27143.037109375
+577.7667847 18177.001953125
+580.2615967 76629.7578125
+580.7550659 2084355.375
+581.2564697 1339149.5
+581.7580566 534234.1875
+581.8646851 21697.775390625
+582.2598267 89611.3046875
+598.270752 42640.13671875
+598.7763672 47924.48046875
+599.2749023 59238.38671875
+599.7779541 94246.2890625
+606.2583618 43184.35546875
+624.2698975 54053.19921875
+625.2682495 17528.90625
+673.3245239 387866.5
+674.3268433 140689.21875
+675.3362427 22765.32421875
+693.2886963 17747.48828125
+711.3004761 21486.005859375
+784.3561401 14990.7353515625
+802.3641357 67477.3046875
+803.3670654 36154.24609375
+804.3532715 12919.9912109375
+873.4015503 83930.0078125
+874.40271 51960.01171875
+966.8945923 12683.2197265625
+1001.466064 17621.390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.301.301.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=301"
+RTINSECONDS=32.53021395
+PEPMASS=598.27001953125
+CHARGE=2+
+60.23503494 17421.970703125
+64.52624512 70592.25
+64.53068542 54776.640625
+64.58226013 32329.259765625
+64.58621979 36822.3984375
+64.63816833 21582.875
+64.64135742 20704.322265625
+72.35840607 15803.7744140625
+78.63986969 15261.07421875
+107.2221222 15620.43359375
+116.9269714 14911.4736328125
+149.5743561 48620.80078125
+167.0914154 38163.17578125
+169.0596161 28847.34375
+175.1178436 283218.96875
+176.1200867 19867.037109375
+177.0766907 51130.70703125
+178.0600433 360174.375
+178.3482056 94593.25
+179.062027 17124.123046875
+179.0916443 21605.173828125
+182.0920868 19473.544921875
+183.0749512 23667.962890625
+186.0861969 91052.515625
+194.1027985 46672.92578125
+195.0863953 4555167.0
+196.0891418 437606.09375
+197.0911255 26790.630859375
+200.101532 37666.2421875
+201.0843201 34084.18359375
+206.0913391 151687.1875
+207.0923462 19537.107421875
+215.0935516 16576.080078125
+218.1026001 72646.1484375
+234.0962372 20459.09375
+235.104187 21474.515625
+240.0958252 22706.34765625
+246.0968475 695071.875
+247.0991211 78940.9453125
+247.4328156 17837.326171875
+249.0982361 26361.1953125
+257.122467 103246.4140625
+260.1126099 110677.8203125
+270.096344 141949.25
+277.1373291 28323.962890625
+278.1500549 25488.552734375
+283.1432495 52782.91796875
+287.1235352 176977.921875
+288.1073608 1683656.625
+289.1098938 277767.1875
+303.1416321 24132.82421875
+305.1339417 3433705.0
+306.1189575 1234460.625
+307.1213074 180709.71875
+308.1257324 21683.91015625
+311.1352234 35454.125
+312.1187744 40073.48046875
+321.1538086 383472.5625
+322.1557617 57911.6328125
+323.0982971 23183.56640625
+323.1443787 1263273.0
+324.1471558 191288.453125
+325.1506958 28273.783203125
+328.1620178 20321.783203125
+329.1435242 53646.953125
+338.1424866 43683.57421875
+338.1805115 405376.5
+338.6453247 27099.3828125
+339.1827087 101827.9453125
+359.1438293 59744.328125
+366.1860352 138512.484375
+367.1844788 18527.98046875
+369.1395569 21635.978515625
+376.170105 157321.21875
+377.1555786 92986.0859375
+386.1665039 26041.826171875
+394.1806946 870006.875
+394.2402344 31900.732421875
+395.1825867 172986.546875
+412.1845093 30601.5078125
+413.164093 21590.927734375
+420.6765442 17428.267578125
+434.1730652 24276.875
+460.1898193 29084.796875
+468.2222595 60134.93359375
+485.2478027 238298.84375
+486.2508545 75618.3671875
+488.1872253 44582.41796875
+492.2289124 181952.875
+492.7324524 83310.40625
+493.2345276 20701.205078125
+495.2253113 47747.5
+496.2292175 21808.1796875
+505.2115784 62298.59765625
+506.2042236 62411.80859375
+512.2285156 49948.83984375
+521.2390137 21657.357421875
+521.7373047 26405.814453125
+523.2220459 458843.84375
+524.2259521 134827.234375
+525.2277222 28296.53125
+530.246582 25762.177734375
+554.2564697 22383.353515625
+558.7424316 24179.744140625
+567.2523804 25709.798828125
+571.7518921 97297.6171875
+572.2750244 320831.59375
+573.2816162 114150.859375
+576.2611694 24391.865234375
+576.7645874 28598.609375
+577.2562256 25561.611328125
+577.7619019 26176.359375
+580.2582397 70439.8046875
+580.7548218 2547643.0
+581.2562866 1720114.25
+581.3678589 26002.798828125
+581.7581177 718275.6875
+582.2598267 146917.21875
+589.2667236 108652.6953125
+589.7692871 70671.6953125
+598.2722168 60134.80859375
+599.274353 27036.21484375
+599.7750854 55653.37109375
+606.2564087 35954.15625
+624.2694702 72901.1953125
+673.322998 421464.09375
+674.3291626 147097.109375
+675.3266602 23952.9296875
+711.3015747 19779.38671875
+802.3641968 117035.484375
+803.3684082 46798.1484375
+873.3978271 86866.3671875
+874.4053345 72879.3515625
+1058.473267 32870.19140625
+1059.486084 21031.732421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.302.302.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=302"
+RTINSECONDS=32.63690278
+PEPMASS=598.27001953125
+CHARGE=2+
+50.7538147 11679.5009765625
+58.13446426 13800.49609375
+58.13731766 13722.349609375
+64.52626801 50348.03125
+64.53063202 40214.31640625
+64.58200836 40241.16796875
+64.58618164 25171.5859375
+64.63814545 17989.9296875
+76.28109741 11317.0185546875
+118.9958191 14254.1103515625
+149.5710602 47940.5625
+167.0919037 52663.6171875
+169.0593872 27979.623046875
+175.1178589 294612.4375
+176.1199799 18582.71484375
+177.0758972 76984.5859375
+178.0600281 334413.71875
+178.3473511 75176.21875
+179.0645447 17290.296875
+179.0926819 18190.77734375
+182.0912628 28034.05859375
+183.0752563 17964.544921875
+186.0862732 96728.3125
+190.0599976 18761.69921875
+190.1071014 15692.9375
+194.1027069 42824.28125
+195.0864563 3847053.25
+195.1280518 30141.197265625
+196.0893555 403466.40625
+197.0922852 26062.01171875
+200.102005 35941.875
+201.0853424 19438.962890625
+206.0911407 151920.796875
+207.0930023 15821.544921875
+209.0998993 13361.1865234375
+212.1126556 21710.904296875
+213.0858917 20070.951171875
+218.1022034 69207.3046875
+232.1177063 13733.2158203125
+234.0977783 14468.1943359375
+240.0966187 24529.669921875
+244.1181641 22539.0703125
+246.0970764 641230.375
+247.1004333 66522.0546875
+257.1229248 98406.5546875
+260.1127625 105968.6328125
+260.5896301 12081.3876953125
+261.1189575 18849.615234375
+262.2555237 13092.6015625
+267.1092834 15368.3603515625
+270.097229 127370.8359375
+278.1491699 29288.462890625
+283.1431885 55372.65234375
+284.1229858 13222.4580078125
+287.1234741 161528.328125
+288.1075134 1559053.625
+289.1103516 221756.9375
+290.112915 20911.271484375
+294.1184692 18477.060546875
+302.1322327 18296.56640625
+303.1455383 19696.7109375
+303.6323242 13317.6845703125
+304.1298523 13866.703125
+305.1340332 3033140.5
+306.1192627 1071761.875
+307.121521 195796.171875
+311.1352539 53628.44140625
+312.1182556 40827.69140625
+316.7939758 11958.826171875
+321.1540222 312873.75
+322.157135 58904.703125
+323.1445007 983262.125
+324.146637 171200.4375
+325.1494751 26565.111328125
+329.1428528 46431.875
+331.1495361 25258.533203125
+338.1425781 52844.09765625
+338.1809082 380733.375
+338.6426392 13483.126953125
+339.1831665 54809.09375
+346.1708374 15685.23046875
+347.1532288 20792.349609375
+349.1599121 31254.6953125
+359.1451111 67207.359375
+360.1507874 12245.857421875
+366.1864014 121350.4140625
+367.1882324 23129.029296875
+369.1406555 27921.75
+376.17099 109994.5
+377.1572876 74239.375
+378.1591187 13359.755859375
+386.1620483 26554.169921875
+394.1811218 678830.125
+394.2409058 20633.0390625
+395.1832581 134497.109375
+396.1853638 26865.490234375
+412.1880493 30834.484375
+420.6826172 19759.7265625
+460.191864 31104.74609375
+468.2220459 59923.12109375
+469.2244568 18331.51171875
+485.2474976 177774.734375
+486.2499084 54674.58203125
+488.1860962 58841.09765625
+492.2294922 115778.34375
+492.7301331 90295.9765625
+493.2303772 34395.52734375
+495.2265625 49044.06640625
+501.2394409 14454.923828125
+505.2103882 50632.8984375
+506.2035217 34704.3984375
+512.2270508 41603.71484375
+512.7249146 21024.328125
+520.7385254 13762.7373046875
+521.2348022 33391.49609375
+521.7351074 23765.212890625
+523.1342163 23953.921875
+523.2226562 433351.0
+524.2232666 87286.78125
+525.2269287 33542.453125
+558.7459717 29323.4375
+567.7501221 16377.9765625
+571.7489624 79173.0859375
+572.2747192 263073.96875
+572.7489014 20019.7890625
+573.2791138 88972.8984375
+574.2782593 24228.48046875
+576.2587891 44838.0
+576.7587891 25152.974609375
+580.2626343 75747.859375
+580.7550659 1935308.5
+581.2564087 1234982.875
+581.3677368 14865.6455078125
+581.7581787 451653.65625
+581.8629761 16738.69921875
+582.2592163 110254.2890625
+589.2672729 34197.703125
+598.274231 34138.8203125
+598.7780151 28962.203125
+599.2770996 43279.17578125
+599.7771606 96218.6171875
+606.2597656 24183.98828125
+624.2682495 46607.84765625
+625.2601929 16061.6201171875
+655.3164673 18476.025390625
+673.324585 338015.125
+674.3272705 111559.0
+675.3280029 22772.078125
+802.3623657 76363.2421875
+803.3713379 26927.46875
+873.3988037 85259.515625
+874.395874 25769.203125
+875.397583 17215.21875
+1001.454041 15266.0654296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.303.303.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=303"
+RTINSECONDS=32.74847055
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 87264.203125
+64.53048706 51896.83984375
+64.5822525 47222.03125
+64.58622742 50882.55078125
+64.6381073 32242.15625
+76.68553162 25878.826171875
+103.1286011 23644.064453125
+149.5749817 68642.15625
+167.0918121 67691.6796875
+167.7433167 23255.876953125
+169.0598297 42232.60546875
+175.1177521 358668.5625
+176.1197357 30348.140625
+177.0760193 81314.9375
+178.0600281 325508.53125
+178.3341522 46754.37890625
+178.3528442 85369.15625
+179.0623627 26496.724609375
+183.0750885 28798.130859375
+186.0859528 114916.0390625
+194.1031036 58093.37890625
+195.0863647 5083978.5
+195.1285095 37977.265625
+196.0892487 468820.75
+200.1013031 38205.2890625
+201.0850677 26969.205078125
+206.0910187 183059.375
+218.1022797 43088.1484375
+240.0955658 42644.3203125
+243.0884857 28583.283203125
+246.0968781 707444.8125
+247.0987854 67938.9921875
+257.122345 132331.546875
+258.1270752 31853.732421875
+260.11203 153941.046875
+270.0975952 129148.546875
+278.1472473 26729.17578125
+283.1433105 47551.27734375
+287.1230469 194937.078125
+288.1073608 1750616.125
+289.1103516 278092.5625
+303.1443481 24003.283203125
+305.1338501 3493891.5
+306.118866 1302263.875
+307.1213379 255801.421875
+311.1345825 42446.0703125
+312.1166382 57489.26953125
+321.1539917 376872.5625
+322.1558228 76739.296875
+323.1443481 1360589.375
+324.1462402 176595.28125
+325.1484985 31993.435546875
+329.1423035 42169.29296875
+338.1420593 58584.08203125
+338.1804199 471332.03125
+339.1831665 87758.2578125
+349.1601868 24200.771484375
+359.1428223 52631.828125
+363.1357727 25327.84765625
+366.1858521 160432.3125
+369.1352844 33504.6328125
+376.1703186 153698.09375
+377.155426 95632.1171875
+386.1620483 34220.6953125
+394.1808472 913269.75
+395.1830139 177037.125
+396.1878052 25130.232421875
+412.1880188 64479.8046875
+420.6811829 42217.17578125
+468.2213135 55863.00390625
+483.7184753 26806.6484375
+485.2469482 257251.421875
+486.2513123 70480.6953125
+488.1856079 75841.4140625
+492.2286682 169778.75
+492.7304077 109919.3203125
+493.2319641 44170.28125
+495.2272339 61418.515625
+505.210022 89703.734375
+506.2076111 44881.34765625
+512.2279053 52658.13671875
+521.230835 38371.48046875
+523.2219849 551884.3125
+524.2245483 157706.296875
+525.2282715 26586.904296875
+558.7468872 51158.2578125
+571.7486572 74056.21875
+572.2747803 311493.3125
+573.2787476 101664.1796875
+576.2606201 67066.8984375
+576.7634888 57045.609375
+577.2612305 62992.875
+580.2637329 93876.5234375
+580.7548218 3095312.25
+581.2563477 2099455.5
+581.7578735 810207.125
+581.8638306 27985.6484375
+582.2591553 183143.34375
+589.2672119 301223.25
+589.7658081 165866.09375
+590.2648926 42686.31640625
+598.2697754 84298.203125
+598.7747803 70692.4296875
+624.2698975 64740.51953125
+673.3234863 516307.1875
+674.3248901 205455.03125
+675.3236084 26384.55078125
+693.2929688 29543.982421875
+711.2930298 26977.427734375
+744.0535278 23324.62890625
+802.3642578 129341.84375
+803.3642578 41633.4765625
+873.3969727 170167.921875
+874.4054565 71371.0703125
+1058.49292 35557.9609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.304.304.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=304"
+RTINSECONDS=32.85223973
+PEPMASS=598.27001953125
+CHARGE=2+
+51.22538376 11009.1845703125
+58.13444138 16182.9580078125
+64.52623749 63820.4609375
+64.53066254 41351.52734375
+64.58201599 40215.31640625
+64.58612061 27351.533203125
+64.63821411 19035.984375
+74.81629181 15280.416015625
+82.05388641 19032.001953125
+96.4480896 11047.6767578125
+141.7318268 12331.15234375
+149.5614166 13230.2314453125
+149.5731354 43444.07421875
+167.0918732 50544.2265625
+169.0597076 40026.3125
+175.1178894 302024.125
+176.1199799 19424.400390625
+177.0759888 60655.62109375
+178.0601044 325365.96875
+178.0779266 18784.318359375
+178.3358917 48064.9609375
+178.3548889 27831.71875
+179.0643616 23324.498046875
+179.0919952 18552.595703125
+182.0907898 20456.77734375
+183.0749969 23403.990234375
+186.0864868 96726.5078125
+194.102356 44597.24609375
+195.0865021 3928589.5
+195.1279297 28509.193359375
+196.0894012 430866.53125
+197.0913239 24227.80078125
+200.1009521 22876.0546875
+201.0862274 21285.357421875
+206.0910339 165154.03125
+218.1027069 72438.1328125
+222.0857086 17834.416015625
+234.096405 22125.5625
+239.113266 16398.158203125
+240.0952606 23553.16015625
+243.0857849 21569.271484375
+243.9027557 12030.9130859375
+246.0971985 654244.75
+247.0998535 74265.9375
+249.0962067 14924.3828125
+257.1226807 111115.484375
+258.1242676 16208.552734375
+260.1127625 111546.1171875
+270.0975342 123214.5234375
+271.0988464 20403.193359375
+277.1380005 21008.0234375
+278.1484375 32716.5234375
+283.1427917 45095.2578125
+287.1235352 146388.75
+288.107605 1552660.5
+289.1102905 227761.5625
+290.1134338 24242.869140625
+294.1165466 21146.87109375
+295.1496582 32062.00390625
+303.1426697 22767.43359375
+305.1342163 3102865.5
+306.1194458 1075907.125
+307.1214905 185618.140625
+308.1225281 24366.447265625
+311.1343384 56329.2265625
+312.1191101 44329.01171875
+321.1544495 296792.0
+322.1576843 52101.45703125
+323.1448364 1080019.5
+324.1472168 176913.71875
+325.1462708 17774.671875
+329.1430359 32148.69140625
+338.1419678 55834.6640625
+338.1809692 357902.65625
+338.6468811 17578.517578125
+339.1835632 63247.2890625
+347.1494141 23942.255859375
+349.1591187 26337.484375
+358.166687 24014.865234375
+359.1444397 64649.92578125
+366.186554 125070.6328125
+367.1896667 29781.25390625
+369.1399231 15900.0029296875
+376.1706543 109434.484375
+377.1573486 80510.6796875
+386.1629333 25162.857421875
+394.1813354 684619.3125
+394.2406921 24763.556640625
+395.1826477 132418.59375
+412.1895752 29014.54296875
+420.6854553 12974.109375
+460.1939392 21852.662109375
+468.2227783 52126.06640625
+469.2270508 13177.5625
+483.7177734 25694.9296875
+484.7137146 14846.4150390625
+485.2476807 175775.921875
+486.2507629 45912.55859375
+488.1895142 59540.07421875
+492.2293396 137627.921875
+492.7315979 102374.4296875
+493.2307129 29183.650390625
+495.2290649 53373.34375
+496.2285767 17124.85546875
+503.7131958 17812.59765625
+505.2116394 36676.76171875
+506.2038269 60169.94921875
+512.229126 33558.65234375
+512.7288208 18192.951171875
+513.234314 13448.3671875
+520.7384033 21458.2265625
+523.2230835 400192.90625
+524.2260742 122988.4296875
+525.2341309 18348.884765625
+555.2553711 23592.318359375
+558.7454224 24863.681640625
+567.25 20639.099609375
+571.7536011 66384.640625
+572.2757568 304874.21875
+572.7545166 32408.677734375
+573.2800293 102367.640625
+576.2613525 42484.796875
+576.7689209 24410.30859375
+577.2601929 22448.837890625
+580.262085 86657.0078125
+580.7559204 2237428.5
+581.2570801 1472713.75
+581.7588501 505473.15625
+582.2600708 100070.75
+589.2655029 32861.91015625
+589.7675171 18484.283203125
+598.2736816 44312.5
+598.7733765 28461.8359375
+599.2779541 23730.73828125
+599.7787476 86900.125
+606.2565308 29397.689453125
+607.2548218 22840.544921875
+624.2694092 57585.6015625
+625.2709351 23642.9765625
+655.3167725 19015.7421875
+673.3253174 424269.28125
+674.3293457 155358.96875
+675.3200684 20559.443359375
+693.2890625 17261.3359375
+802.3634644 86842.7265625
+803.3718872 40291.296875
+873.4056396 69950.7265625
+874.3972168 35596.703125
+932.2896118 12967.5634765625
+1001.455811 17876.40234375
+1002.439453 14033.5478515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.305.305.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=305"
+RTINSECONDS=32.96309147
+PEPMASS=598.27001953125
+CHARGE=2+
+51.8087616 12137.4638671875
+58.13725662 15833.3388671875
+64.52616882 56057.1953125
+64.53048706 37519.16015625
+64.58198547 43891.04296875
+64.58615112 28923.68359375
+64.63804626 17237.26171875
+64.6413269 13517.5869140625
+81.5671463 13055.017578125
+136.9535828 12014.1669921875
+147.9046936 12568.2880859375
+149.5749512 39634.91015625
+154.6932983 13973.3486328125
+167.0919037 37509.91796875
+169.0597992 29991.18359375
+175.1177521 289812.0625
+176.12146 17144.494140625
+177.0759125 59917.859375
+178.059967 379775.25
+178.3321381 24371.52734375
+178.35112 60272.63671875
+179.0641479 22539.10546875
+179.0917053 26086.173828125
+182.0913849 13111.072265625
+183.0764313 28340.330078125
+186.0859375 97740.65625
+186.4823151 12488.0771484375
+194.1024323 47934.87109375
+195.0863495 4196400.0
+195.1278839 19006.39453125
+196.0890961 399198.34375
+197.0921936 37455.8359375
+200.1026001 17668.6015625
+201.0852051 15670.326171875
+206.0911102 173751.375
+212.1141205 16466.087890625
+218.1027374 56229.4765625
+222.0869141 17208.828125
+234.0971985 14400.3349609375
+240.0938416 15001.3388671875
+243.0851898 23707.455078125
+246.0968781 691948.375
+247.0994568 75297.6015625
+257.1226807 103415.8046875
+258.1254272 15370.1259765625
+260.1122131 119263.625
+267.1055298 13543.9482421875
+270.0965576 131570.84375
+276.1325989 20223.17578125
+277.1368103 15455.8486328125
+278.1184082 18291.39453125
+278.1495056 29263.345703125
+283.1427612 61040.5703125
+287.1233521 171764.9375
+288.1073303 1624475.875
+289.1100769 244017.84375
+290.1150208 25468.638671875
+294.115509 18151.95703125
+295.1499634 21518.462890625
+303.144165 32952.3359375
+304.1262207 15288.8955078125
+304.8684387 14012.5185546875
+305.1338501 3246086.0
+306.1188965 1198500.25
+307.1213989 191546.375
+308.1237793 29241.67578125
+311.134491 44731.140625
+312.1169739 28607.919921875
+318.1435547 20217.06640625
+321.1537476 357703.78125
+322.1572266 55983.7109375
+323.1442871 1137500.875
+324.1468201 175838.453125
+325.1464844 22422.05078125
+328.1594238 22807.5078125
+329.1436768 48604.7421875
+331.150238 17850.84765625
+338.1421509 56110.640625
+338.1804199 403120.125
+338.6463318 14870.7548828125
+339.1820679 77381.4375
+341.1455994 18616.408203125
+347.149231 35388.82421875
+351.1309509 19544.572265625
+359.1444092 65167.24609375
+360.1479187 20965.373046875
+366.1860962 118731.9765625
+367.1910706 21480.919921875
+369.138031 34117.30859375
+376.1702271 144334.890625
+377.1578674 73346.0859375
+378.1555481 27229.978515625
+386.1644897 41921.05078125
+394.1808167 732799.375
+394.2397156 25422.607421875
+395.1823425 147060.859375
+396.1876831 26554.3203125
+412.1882629 21905.314453125
+420.6885376 19404.166015625
+452.1783142 20510.28125
+460.191803 27011.923828125
+461.1689453 14578.189453125
+468.2210083 54783.7109375
+477.2176208 19997.4765625
+478.2088928 16510.984375
+485.2470398 216142.046875
+486.2488708 62317.46875
+488.1871033 41568.64453125
+492.2293091 159839.5
+492.7290039 73256.3828125
+493.2280884 24690.97265625
+495.2277527 65809.1796875
+503.2165222 16726.623046875
+503.716095 25864.171875
+505.2102051 50028.9296875
+506.2050171 50403.31640625
+512.2259521 65376.54296875
+512.7279663 30578.232421875
+513.234375 17420.529296875
+521.2316895 18483.0859375
+521.737793 20726.880859375
+523.2218628 436131.625
+524.2241211 141697.390625
+525.2302856 37354.8671875
+529.7423096 15495.0537109375
+555.2544556 24681.8359375
+558.7490234 14311.462890625
+571.75 92823.0
+572.2737427 303682.875
+573.2797852 96570.28125
+574.2802124 25696.5625
+576.2606201 33303.54296875
+576.7624512 27102.470703125
+577.2650757 47097.80859375
+580.2623291 98400.484375
+580.7547607 2107990.25
+581.2561035 1408041.375
+581.3662109 29615.380859375
+581.7576294 547601.25
+582.2589111 112467.25
+589.2661133 23709.0859375
+598.2739258 56364.109375
+598.770752 21259.69921875
+599.2740479 46009.50390625
+599.7780762 78687.3125
+606.2559204 35399.34765625
+624.2681274 50162.1796875
+673.1966553 21818.564453125
+673.3236694 394533.8125
+674.3280029 153498.015625
+675.3268433 27737.56640625
+711.2954712 19042.0703125
+802.3619385 91160.1875
+803.3670044 43958.5390625
+804.3771973 17300.880859375
+873.4038086 87773.7109375
+874.4044189 36616.4140625
+875.4151611 18264.84375
+1001.46283 18546.921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.306.306.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=306"
+RTINSECONDS=33.07297506
+PEPMASS=598.27001953125
+CHARGE=2+
+51.64597702 14904.57421875
+64.52632141 66034.0078125
+64.53052521 34552.86328125
+64.58198547 53288.7421875
+64.58616638 31923.84765625
+64.63829803 26791.626953125
+74.81161499 15957.419921875
+79.2815094 16935.677734375
+124.366684 18639.0703125
+149.5756683 58842.15234375
+167.0925598 40276.98828125
+169.0601196 21914.845703125
+175.1179199 286085.0625
+176.1217041 25814.544921875
+177.0761566 76929.4609375
+178.0599976 381691.96875
+178.3391571 90288.46875
+179.0641785 23190.75390625
+179.0924683 25928.79296875
+186.0862885 118922.453125
+194.1027374 41332.76953125
+195.0864868 4883701.0
+195.1281433 27363.4296875
+196.0892029 466627.21875
+197.0911102 36342.62109375
+200.101593 33723.9921875
+201.0858307 32637.595703125
+206.0913391 181444.921875
+218.1016541 72858.4375
+233.1273346 22986.015625
+235.8958435 16567.802734375
+239.1119995 23750.693359375
+240.0962677 25269.701171875
+244.1159821 27485.181640625
+246.0969696 713660.4375
+246.1254578 41116.18359375
+247.099884 80552.5859375
+249.0951996 25150.693359375
+257.1228027 135476.140625
+258.1261902 24654.77734375
+260.1126099 146749.53125
+270.0971069 129769.0
+271.1008301 31057.056640625
+276.1374817 25178.1484375
+278.1490173 28892.5390625
+283.1434021 54218.19140625
+287.123291 179924.796875
+288.1075134 1755704.75
+289.1102295 245216.84375
+290.1126404 22067.5625
+303.1444092 26687.564453125
+305.1340637 3582952.25
+306.1192627 1277654.125
+307.1213989 203354.125
+308.1216736 20950.08984375
+311.1350403 41352.6015625
+312.117157 67032.9765625
+321.1539612 366257.46875
+322.1557922 71902.109375
+323.1445312 1331030.375
+324.1462708 212290.578125
+329.1448059 47546.91796875
+338.1415405 66289.0
+338.1806335 485824.0
+338.6464844 21863.53515625
+339.1828918 79680.21875
+347.1502991 21693.015625
+349.1602478 26173.74609375
+358.161377 21197.115234375
+359.1446838 42972.9296875
+366.1865845 146420.484375
+367.1876831 25752.29296875
+376.1712036 140267.78125
+377.1578064 87071.9453125
+386.164978 25903.064453125
+394.1809692 869748.3125
+394.239563 26201.9375
+395.1824646 167710.890625
+412.1903687 26499.462890625
+420.6764526 18795.63671875
+421.1828003 26173.072265625
+460.1954346 19951.771484375
+468.2195435 52144.96484375
+483.724762 23951.841796875
+485.2476196 251159.9375
+486.2496948 55610.59765625
+488.1870728 55712.41015625
+492.2290955 235302.53125
+492.7296448 134298.296875
+493.2286682 29098.962890625
+495.2250977 80110.9921875
+503.7240906 37638.85546875
+505.2119751 58263.32421875
+506.2048035 65059.046875
+512.2253418 25679.892578125
+512.7288818 31095.15234375
+521.2355957 53129.3359375
+523.222229 573005.8125
+524.2258301 137032.609375
+525.2338257 31765.662109375
+530.2467651 24716.2734375
+555.2492065 24697.740234375
+571.7496338 65356.921875
+572.2753296 392645.25
+573.2796021 116484.6171875
+574.2810669 28090.822265625
+576.2590942 66705.2265625
+577.2643433 42088.890625
+580.2632446 75980.03125
+580.755127 2460246.5
+581.2561646 1897031.875
+581.3689575 23694.392578125
+581.7581177 626894.75
+582.2598267 110534.78125
+589.2687988 109322.3125
+589.7654419 69687.125
+598.2730103 80968.0390625
+598.7807007 54257.16796875
+599.2727661 24250.73046875
+599.7780762 72181.921875
+606.2592773 44351.1796875
+624.265625 44857.15234375
+625.2717896 20665.384765625
+655.3130493 18671.21484375
+673.3242188 446999.59375
+674.3272095 168375.296875
+675.3361206 34463.86328125
+711.3053589 26483.609375
+784.3511963 21779.875
+802.3658447 99355.828125
+803.3666992 43218.52734375
+873.3972778 109237.828125
+874.4053955 71818.9609375
+1001.447144 24889.841796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.307.307.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=307"
+RTINSECONDS=33.1793112
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 74183.34375
+64.53070068 56299.546875
+64.58203125 52149.11328125
+64.58621979 36563.03125
+64.63824463 20357.369140625
+82.05446625 16002.3583984375
+149.5747833 37172.46484375
+167.090744 38411.76171875
+169.0590973 32086.548828125
+175.1178284 280141.28125
+177.0760956 67694.3125
+178.0600891 357614.8125
+178.0780792 22469.751953125
+178.3428955 109775.953125
+179.0635986 29461.3828125
+183.0751038 19148.791015625
+186.0861511 132929.0625
+190.0602875 23503.89453125
+190.1073456 21899.51171875
+194.1037292 34597.3828125
+195.0313416 19235.75390625
+195.086441 4873900.0
+196.0892487 471182.15625
+197.0927887 28110.708984375
+206.091156 145293.296875
+207.0940857 20700.92578125
+209.1040802 20745.978515625
+218.1025848 54750.80078125
+240.0974884 26028.04296875
+243.0856781 38580.65625
+244.9215546 18839.03125
+246.0970001 712560.25
+247.1002045 88906.34375
+257.1228027 88270.0703125
+260.1126709 124207.2265625
+270.0974426 145213.84375
+277.1377869 18944.57421875
+278.1160583 17820.560546875
+278.1495361 22179.3359375
+283.1446228 42780.31640625
+287.1235352 163146.796875
+288.1074524 1746423.0
+288.1598511 27191.876953125
+289.1097107 259691.3125
+290.1115112 21011.990234375
+290.186554 17078.138671875
+303.1434326 28313.935546875
+305.1340637 3536254.75
+306.1192322 1231843.875
+307.1222229 182893.21875
+311.1352234 62284.94140625
+312.1175232 36600.98828125
+320.133728 22664.568359375
+321.1544189 396311.8125
+322.1553345 52637.28125
+323.1445007 1307981.125
+323.2079468 24209.95703125
+324.1461792 199373.9375
+329.1437378 60789.97265625
+338.1428528 41809.19921875
+338.1807861 387411.625
+338.6440735 34793.796875
+339.1408386 24628.083984375
+339.1833191 94821.25
+347.147644 29297.357421875
+358.1663818 22074.958984375
+359.1437988 41295.41015625
+366.1861267 166857.234375
+369.1404724 40712.5546875
+376.1695862 125014.6875
+377.1564941 84985.5078125
+378.1565857 21331.919921875
+386.1648254 30852.423828125
+386.5687561 19143.818359375
+394.1809387 813269.875
+394.2405396 33384.54296875
+395.1833191 178030.546875
+412.1923523 39804.12890625
+420.6829834 18968.341796875
+460.1923523 25242.74609375
+468.2236328 69031.25
+478.2095642 32016.24609375
+478.2913208 20891.5
+485.2475586 248091.265625
+486.2506104 65404.02734375
+488.1866455 58387.27734375
+492.2294617 208597.296875
+492.7314758 136765.609375
+493.2290955 33877.5625
+495.2266541 68393.1875
+503.2252502 37487.60546875
+505.2114258 56961.00390625
+506.2060852 56493.0625
+512.2243042 67683.9375
+512.727356 37405.61328125
+521.7324219 36004.10546875
+523.22229 571671.6875
+524.2249756 132650.359375
+525.2293091 31771.6171875
+555.2509155 26101.693359375
+558.7433472 20771.220703125
+571.7498169 85907.6015625
+572.2741089 373403.5625
+572.7561035 18512.45703125
+573.2821045 100311.078125
+576.2608032 50351.00390625
+576.7619629 28944.55859375
+577.2626343 28642.40234375
+580.263916 101101.125
+580.7553711 2994693.25
+581.2567749 2035169.125
+581.7581787 732530.625
+581.8641357 24798.49609375
+582.2590332 105408.4296875
+589.2694092 142908.265625
+589.7666016 83778.9296875
+598.2730713 65044.25
+598.7731323 51442.90234375
+599.2770996 38768.75
+599.779541 58645.9765625
+606.2583618 27776.130859375
+624.2697144 53779.81640625
+625.272583 19365.1875
+670.9451294 21740.43359375
+673.3250122 499744.75
+674.3272095 188730.515625
+675.3226929 30008.576171875
+693.2908936 33833.76171875
+717.7345581 19918.267578125
+802.3650513 117079.78125
+803.3721924 44980.65234375
+873.4005127 120519.25
+874.4022827 58782.3515625
+1002.468018 30139.078125
+1058.476929 34214.94921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.308.308.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=308"
+RTINSECONDS=33.28531672
+PEPMASS=598.27001953125
+CHARGE=2+
+51.87342453 16680.587890625
+51.96051025 13430.1943359375
+55.95898056 15354.3994140625
+63.39985657 14824.2412109375
+64.52631378 61980.0859375
+64.53052521 44129.37109375
+64.58200073 50120.70703125
+64.58621979 29984.5234375
+64.63803864 17636.203125
+111.233078 15802.009765625
+149.5649872 36074.44140625
+161.1060181 16979.548828125
+167.0921783 36461.2578125
+169.0615692 32513.064453125
+175.1178131 332191.6875
+177.0758667 81207.140625
+178.0601807 348480.5
+178.3422089 91407.328125
+179.0634918 26679.220703125
+183.0757294 19554.177734375
+186.0859985 128418.0625
+194.1026917 50804.3671875
+195.0864563 4549820.5
+196.0892181 459681.40625
+197.0917511 36034.5703125
+200.1017914 32127.431640625
+201.0846863 17472.009765625
+206.0912476 172486.90625
+212.1118469 23398.990234375
+215.0898743 15862.3369140625
+218.1015778 53671.92578125
+234.0968475 22967.205078125
+240.0980682 22177.0625
+244.1166229 16524.138671875
+246.0970612 650146.1875
+247.0997925 79607.3203125
+257.1229858 127891.6640625
+260.1127625 102947.953125
+267.1055298 19740.025390625
+270.0969543 132284.921875
+271.1008301 28693.052734375
+278.1488037 33613.1328125
+283.1436462 39360.6484375
+287.1238098 149078.0625
+288.1074219 1617086.625
+289.1102905 240657.046875
+295.1150513 19957.25
+295.1499023 40421.53125
+303.1412354 22187.814453125
+304.1260681 16352.248046875
+305.1339722 3353251.5
+305.6342773 16576.208984375
+306.1191711 1220072.0
+307.1214294 178776.28125
+308.1246643 24830.083984375
+311.1351013 52686.92578125
+312.1176453 46497.37109375
+321.1540833 340661.125
+322.1564941 77307.2265625
+323.0986938 20530.455078125
+323.1445312 1198739.375
+323.1887207 36360.53515625
+324.1470947 222601.5
+325.134552 15465.3330078125
+329.1437073 49962.26953125
+338.1426392 56941.921875
+338.1808777 399960.875
+339.1837463 72823.7734375
+341.1441956 15943.208984375
+346.1730957 21040.98828125
+347.1474609 19666.5
+351.1309814 18692.416015625
+358.1663818 22434.291015625
+359.1447144 78474.9453125
+360.145752 20153.5859375
+366.1864929 129750.78125
+369.1383057 22062.8515625
+376.1705322 129512.8046875
+377.1557617 66455.5546875
+386.1646729 24434.814453125
+394.1203308 20667.841796875
+394.1809998 823127.3125
+394.2400818 28847.13671875
+395.1826477 150387.40625
+396.1813965 16914.15234375
+412.1882935 34810.63671875
+420.6842346 21268.685546875
+468.2215576 55695.2109375
+485.2470703 243006.15625
+486.2488708 51079.91015625
+488.1867981 52106.54296875
+492.2294922 159398.203125
+492.7321472 108918.1484375
+495.2294312 56484.64453125
+503.2229614 22636.89453125
+503.7168884 18248.587890625
+505.2132263 64905.22265625
+506.2034607 61981.4609375
+512.2285156 34956.40625
+512.7268677 34294.828125
+521.2324829 37824.38671875
+523.2221069 416478.875
+524.2246094 149689.234375
+525.2263794 26995.94140625
+571.7496948 63462.921875
+572.2750854 332776.96875
+572.7521973 30137.36328125
+573.2827148 96298.765625
+574.2799683 26045.962890625
+576.2625732 52955.37890625
+576.7567139 22456.24609375
+577.2612915 24409.302734375
+580.2651367 72793.1796875
+580.755127 2398853.0
+581.2562866 1753566.25
+581.7579346 603245.4375
+582.2588501 92818.1484375
+589.2669067 78123.84375
+589.7644653 32216.283203125
+598.2741089 73318.6640625
+598.7758179 27109.142578125
+599.2802124 30444.685546875
+599.7779541 66614.6171875
+606.2640991 30391.8828125
+624.2710571 45056.44140625
+655.3145752 18903.353515625
+673.3238525 489822.0625
+674.3273315 168686.421875
+675.3272095 25532.369140625
+711.289978 25713.3359375
+802.366272 89450.09375
+803.3734131 43266.0
+873.401001 107797.4765625
+874.4075928 47476.2109375
+875.4203491 29754.197265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.309.309.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=309"
+RTINSECONDS=33.3925565
+PEPMASS=598.27001953125
+CHARGE=2+
+54.02497101 14350.546875
+58.13438034 20719.392578125
+64.52630615 76185.09375
+64.53071594 53569.62109375
+64.58200073 58972.953125
+64.58618164 31116.759765625
+64.63811493 21297.4921875
+64.6416626 17126.81640625
+65.33467102 15968.71875
+74.8115921 20917.28125
+77.77555084 17015.419921875
+149.5679016 56643.06640625
+150.505188 18060.884765625
+167.09198 35737.734375
+169.0603027 40096.6953125
+175.1021271 29949.44140625
+175.1180573 329438.78125
+177.0762024 66492.21875
+178.0600739 322799.0
+178.0778656 21405.931640625
+178.3423157 104574.4921875
+179.0623169 17718.931640625
+179.0918121 24795.31640625
+183.0740967 35301.4296875
+186.0863495 126423.625
+187.7942352 17622.8125
+194.1029053 35776.92578125
+195.0865479 4560503.0
+195.128418 25276.060546875
+196.0894012 445236.09375
+197.091568 26210.765625
+200.1017456 33130.2578125
+201.086792 23567.51171875
+206.0910797 142049.078125
+212.111969 34001.82421875
+218.1024017 67345.5234375
+222.0858612 19923.873046875
+234.0979614 22127.189453125
+240.0973358 25641.251953125
+242.1017151 18103.26171875
+243.0853119 37592.69140625
+244.1197205 19040.5625
+246.0971069 707815.3125
+247.1000214 102280.3671875
+251.2745056 18786.421875
+257.0956421 15875.365234375
+257.1227112 109078.1640625
+258.1277466 23589.6640625
+260.1131897 131098.53125
+270.097168 146203.78125
+278.1183472 23355.158203125
+278.1499329 30595.619140625
+283.1431274 59341.546875
+287.1233826 154988.21875
+288.1076355 1668861.25
+289.110199 269865.78125
+294.3158569 16051.9443359375
+295.1481018 25314.828125
+302.1315002 16618.986328125
+303.144104 29609.892578125
+305.1341858 3385214.5
+306.1191711 1219143.625
+307.1213684 186843.046875
+311.1356506 53869.32421875
+312.117218 32015.669921875
+321.1542969 361717.09375
+322.1572876 93083.546875
+323.1447754 1179875.25
+323.188446 38726.453125
+323.2093506 20554.65625
+324.1469116 199540.5
+325.1515503 25058.978515625
+329.1443481 51334.30078125
+331.1493835 23428.8984375
+338.142334 56790.69921875
+338.1809387 416369.21875
+338.6439209 33756.1171875
+339.18396 88676.0
+347.1485901 25808.84765625
+349.161377 23258.044921875
+359.1451416 68539.546875
+366.1870117 140896.734375
+367.1873474 32078.5078125
+376.1701965 159774.140625
+377.1584473 77701.796875
+378.157959 18678.5
+386.1660156 22720.5
+394.1374512 17325.134765625
+394.1812744 771269.375
+394.2393188 35300.65625
+395.1830444 159217.765625
+396.1854553 24789.017578125
+411.2148743 17241.244140625
+412.187439 37592.53125
+420.6833496 37749.9765625
+434.163269 19368.080078125
+468.2217407 71679.9609375
+483.7173767 20555.19921875
+484.2146606 21521.234375
+485.2474365 242346.015625
+486.2502136 63176.84765625
+488.1867981 58790.90625
+492.2294006 160210.5625
+492.7297058 77401.265625
+493.2229004 27478.486328125
+495.2251892 56004.37109375
+503.2183838 22340.611328125
+503.7152405 23379.310546875
+505.2106628 60866.625
+506.2064819 45296.59765625
+512.2252808 52294.58203125
+512.7252808 37678.81640625
+521.2387695 30119.849609375
+523.2224731 518119.21875
+524.2246094 129714.875
+525.2224121 32653.939453125
+555.2565918 21096.89453125
+558.744812 35403.984375
+559.2420654 21400.791015625
+571.7518921 93478.53125
+572.2745361 316783.40625
+572.7554932 29850.486328125
+573.2819824 118438.9140625
+576.2587891 65521.30859375
+576.7658081 25191.7421875
+577.7610474 21925.318359375
+580.2631226 69100.0234375
+580.7554321 2674402.5
+581.2567749 1901897.0
+581.7583618 667451.0
+581.864624 24075.009765625
+582.2598877 166963.484375
+589.2672119 107201.7890625
+589.7661743 49481.93359375
+590.2573242 23301.16015625
+598.2748413 66282.21875
+598.7756348 38564.2890625
+599.776123 93476.75
+606.2573242 33723.9765625
+624.269165 66251.9609375
+655.3181763 21733.578125
+673.3249512 483143.4375
+674.3291016 172694.625
+675.3314209 29913.728515625
+693.2875977 23741.28515625
+711.302124 20620.708984375
+785.3590698 23210.6484375
+802.3649292 119400.6875
+803.3689575 57820.0234375
+873.4047852 103517.046875
+874.4015503 53097.76171875
+875.4072266 21110.005859375
+1001.468506 25438.955078125
+1002.456299 27115.330078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.310.310.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=310"
+RTINSECONDS=33.49922578
+PEPMASS=598.27001953125
+CHARGE=2+
+53.92411423 11146.978515625
+58.1342926 13149.9052734375
+58.13710022 14210.4326171875
+59.14089584 12470.623046875
+64.52626038 54640.015625
+64.53066254 37897.59765625
+64.58201599 41412.4375
+64.58620453 24095.162109375
+64.63824463 13960.6865234375
+67.09275055 12230.75
+74.81195831 14633.9326171875
+82.05414581 17066.775390625
+115.5782318 12254.068359375
+146.5503998 13881.7861328125
+149.5701141 51342.3671875
+167.0920563 41037.3046875
+169.0601807 43958.9609375
+175.1180878 279879.03125
+176.1209717 16983.830078125
+177.0762482 71588.7734375
+178.060257 341106.625
+178.3435974 80273.8671875
+179.0632019 42626.50390625
+182.0922241 21600.68359375
+183.0763855 26645.173828125
+186.0863342 127698.4921875
+190.0599823 13465.2900390625
+194.104538 27299.388671875
+195.0319214 14524.6162109375
+195.0865936 3988931.75
+195.1283569 20598.59375
+196.0895386 392685.3125
+197.0911255 23799.455078125
+200.1027832 18283.337890625
+206.0913086 151928.953125
+207.0936127 15315.736328125
+213.0852966 17430.208984375
+215.0920105 17989.783203125
+218.1024017 58774.7421875
+222.0858002 18389.29296875
+233.1269836 15168.1650390625
+234.0973511 19502.75390625
+239.1130524 15515.5498046875
+240.0979004 20990.9921875
+243.0860138 22573.853515625
+244.1188812 23915.751953125
+246.0972595 669968.375
+247.1001892 63969.69140625
+248.1113434 12027.6064453125
+257.1226807 111766.53125
+257.1492615 18334.578125
+260.1127625 100087.4609375
+261.1200256 15101.33984375
+270.0975952 130816.9765625
+271.1025085 15845.21875
+277.1392212 15729.830078125
+278.1186829 17217.822265625
+278.1503296 35248.3984375
+283.1440125 52743.59765625
+287.1236267 152755.71875
+288.1077576 1516814.5
+289.1106567 232645.9375
+294.1161194 19790.740234375
+295.1498413 28351.9609375
+303.1433105 25555.53125
+304.129425 18718.966796875
+305.1343079 3124560.75
+306.1195068 1153173.375
+307.1216431 183621.921875
+308.1235962 25934.474609375
+311.1360474 59410.01171875
+312.1172485 22625.765625
+318.1445923 21118.724609375
+320.1701965 16749.841796875
+321.1545715 311414.125
+322.1576538 54671.62109375
+323.0983582 15654.95703125
+323.1448669 1056903.0
+324.1470337 178813.421875
+325.1510925 18293.28515625
+329.1444397 35433.40625
+338.1419678 64084.390625
+338.1810913 385574.34375
+338.6472473 20989.123046875
+339.1835327 54162.0859375
+347.1493835 37810.56640625
+349.1628113 15425.0205078125
+351.1300049 19556.896484375
+359.144989 66794.875
+366.1868896 131500.140625
+367.1854553 23884.81640625
+369.1416016 24098.259765625
+376.1708984 99604.953125
+377.1554871 69532.6875
+378.1571655 18999.3203125
+386.1607666 28043.4375
+394.1814575 643014.875
+394.2398682 22780.62890625
+395.1832886 126163.1015625
+396.1897888 17215.6484375
+412.1899719 25224.853515625
+413.1656494 16422.87890625
+420.6838684 13465.7333984375
+460.1916504 21084.107421875
+468.2207336 56381.81640625
+469.2189636 15737.2958984375
+478.2044067 21599.873046875
+483.7177734 24694.994140625
+485.2481384 203339.890625
+486.2518311 50171.7265625
+488.1869202 37813.89453125
+492.2295532 119024.234375
+492.7312927 83082.625
+493.2341003 24652.947265625
+495.2285156 55451.9296875
+503.7193604 17773.7421875
+505.2117615 52597.90625
+506.2056274 46531.70703125
+512.2255249 35590.95703125
+512.7338867 24620.48828125
+521.2369385 19825.193359375
+523.2228394 415519.78125
+524.2247314 136975.53125
+525.2286377 29850.59375
+555.2575684 15149.251953125
+558.7429199 26424.22265625
+571.7508545 78021.1015625
+572.2753296 279822.0625
+572.7503662 24575.080078125
+573.2791748 85737.171875
+576.2587891 29347.791015625
+576.7642212 28922.9296875
+577.260376 20181.361328125
+580.2630615 70272.078125
+580.7561035 1978073.375
+581.2573853 1365126.875
+581.677002 12496.7939453125
+581.7590942 504840.03125
+581.8626709 25094.28515625
+582.260376 93523.0625
+598.2745361 38509.4453125
+598.774353 23791.623046875
+599.2770996 47979.49609375
+599.7782593 74696.9765625
+606.2616577 30017.880859375
+624.2720947 49200.875
+655.3145142 26317.515625
+673.3255615 403702.21875
+674.3288574 142886.28125
+675.3297729 26741.701171875
+693.284729 15551.966796875
+779.3352051 13800.4453125
+802.3674316 90214.1796875
+803.3693237 40085.59375
+804.3728638 13102.7744140625
+873.4037476 86767.34375
+874.4026489 32598.494140625
+1001.476624 21882.328125
+1058.466187 19494.87109375
+1144.729492 12869.421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.311.311.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=311"
+RTINSECONDS=33.6097244
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13739777 10925.8427734375
+64.52629089 56673.37890625
+64.53062439 37564.64453125
+64.58202362 39377.828125
+64.58617401 21667.740234375
+74.81202698 11527.849609375
+74.81599426 12276.4208984375
+75.88626099 12101.494140625
+77.4132843 10242.24609375
+93.89015198 10566.64453125
+149.5657654 36284.5
+165.1194763 11430.9697265625
+167.0917664 37238.8515625
+169.0602417 29209.2734375
+175.1179962 281502.375
+175.1324615 7931.6337890625
+175.2252502 12366.576171875
+176.1201172 20226.80078125
+177.0763092 62088.06640625
+178.0602112 350739.125
+178.0778198 17965.986328125
+178.34021 59393.2890625
+179.0636444 26941.615234375
+179.092514 13020.0732421875
+182.0912323 13795.2958984375
+183.0753326 26989.751953125
+183.0930634 9624.1357421875
+186.0863953 115396.828125
+190.0604553 20004.375
+190.1073151 13060.12890625
+194.1027527 38946.41015625
+195.0647583 27227.17578125
+195.0865936 3595814.0
+195.1282196 23978.5078125
+196.0894012 380636.9375
+196.1106567 15597.6552734375
+197.0911713 30986.623046875
+200.1021729 24880.419921875
+201.0863647 26933.669921875
+206.0913391 162722.34375
+207.9355011 11423.2060546875
+209.1014099 19386.427734375
+212.1027374 15051.0087890625
+213.0849457 13071.8994140625
+218.1028137 60535.6796875
+222.0854034 15601.337890625
+234.0975189 12946.7861328125
+240.0964813 23308.78515625
+243.0858917 15224.9541015625
+246.097229 600436.8125
+247.0997162 71148.5546875
+255.2277222 11799.2421875
+257.1233215 96418.203125
+258.1253967 19624.15234375
+260.1130676 101218.21875
+261.118988 18705.4609375
+270.097229 122870.578125
+276.1340637 17661.453125
+278.1164246 16767.26171875
+278.1496277 22761.416015625
+283.1427612 38201.44140625
+287.1239014 157334.5
+288.1076965 1606339.125
+289.1104736 235469.03125
+290.1125183 22246.20703125
+294.1170044 24025.890625
+295.1487427 19832.611328125
+303.1443176 29803.51171875
+304.1295471 15905.884765625
+305.1039124 46364.1171875
+305.1343689 2922479.0
+306.1196594 1010036.875
+307.1217346 167747.890625
+308.12323 17325.173828125
+311.1352234 56303.8046875
+312.118103 45972.2734375
+321.1545715 326836.59375
+322.1580811 65502.796875
+323.1448364 970362.125
+324.1471252 145467.234375
+329.1445007 50633.36328125
+338.1427612 40220.44921875
+338.1810303 375138.6875
+338.6450195 21098.5703125
+339.1838684 63736.890625
+341.1491699 11839.4951171875
+347.1504211 23147.15234375
+349.1581116 14742.0537109375
+351.1328735 18995.376953125
+358.1669312 16245.1708984375
+359.144928 53192.58984375
+360.1460876 14307.19921875
+366.1872253 120301.375
+369.1372375 22550.458984375
+376.1706848 101654.015625
+377.1578674 68077.640625
+386.165741 24488.978515625
+394.1814575 613881.25
+394.2389832 23948.087890625
+395.1827698 126046.9921875
+396.1876831 16000.7763671875
+398.1737671 15111.0224609375
+412.1893616 30178.125
+416.3470459 12305.2509765625
+421.184906 17289.064453125
+428.2024841 11957.55859375
+434.1685486 14206.0439453125
+460.1919556 22022.216796875
+464.1777344 14279.4404296875
+468.2218018 53021.6796875
+469.2215881 18119.04296875
+477.2179871 13929.24609375
+478.2071228 17285.59375
+485.2479248 228345.8125
+486.2511902 57610.3203125
+488.1874695 56347.29296875
+489.1851196 13047.11328125
+492.2298889 132244.578125
+492.7315674 96313.328125
+493.2342529 26128.099609375
+495.2275085 55893.56640625
+503.7212524 19844.955078125
+505.2124329 47603.046875
+506.2044983 45106.4296875
+512.2271729 20986.6015625
+512.7289429 26483.275390625
+513.2348633 14098.4228515625
+520.7406616 14064.9169921875
+521.2340088 25689.333984375
+521.7345581 25890.27734375
+523.2230835 411105.8125
+524.2249146 103088.6328125
+525.2342529 31803.662109375
+555.2584229 14618.419921875
+558.748291 17772.193359375
+571.7506104 90331.3203125
+572.2756958 304748.4375
+573.2814331 83900.2109375
+574.282959 20504.08984375
+576.2639771 39189.4296875
+576.7623291 30217.05078125
+580.2599487 92370.6484375
+580.7564087 2009904.875
+581.2575684 1378015.125
+581.7590942 478564.125
+582.2603149 104946.2734375
+589.2573853 14186.9931640625
+598.2738037 39194.546875
+598.7774658 30266.994140625
+599.2766724 77780.671875
+599.7785645 95200.6796875
+606.2572021 31311.13671875
+624.2698364 49229.296875
+655.3135986 13949.9912109375
+673.3256836 424483.1875
+673.4301147 8372.0791015625
+674.3271484 142489.84375
+675.3312378 18052.419921875
+690.5494995 12775.2822265625
+693.2901001 20587.810546875
+711.2955933 13265.2373046875
+802.366333 78759.03125
+803.3701172 32257.384765625
+873.4016724 69348.859375
+874.4038696 38707.81640625
+1001.455078 24485.41015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.312.312.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=312"
+RTINSECONDS=33.72285352
+PEPMASS=598.27001953125
+CHARGE=2+
+64.16902161 28820.08203125
+64.52632904 84216.4609375
+64.5304718 55158.2578125
+64.58219147 51504.9375
+64.58607483 48194.53125
+64.63819885 31753.50390625
+108.8874969 26545.296875
+149.5622559 52213.796875
+149.5761719 64200.98828125
+159.2229919 24962.62890625
+167.0916748 35384.0234375
+175.1176605 319086.40625
+177.0765839 71125.9609375
+178.0598297 345081.28125
+178.3474274 158236.96875
+186.0862579 140762.703125
+194.1023712 38513.73046875
+195.0862732 5546487.0
+196.0891418 514780.78125
+197.0917511 52542.9140625
+200.1009674 30810.166015625
+206.0909424 171200.359375
+207.0945892 28473.728515625
+218.1029816 80694.234375
+243.083374 31112.458984375
+246.0966492 701169.25
+247.0995331 87913.4609375
+257.1228333 156657.140625
+260.1126709 107165.9375
+270.0966492 149363.9375
+271.0986328 28781.017578125
+278.1468811 31360.001953125
+287.123291 167637.53125
+288.1070557 1827715.375
+289.1091614 264751.90625
+294.1139221 29205.7734375
+303.1411743 32720.927734375
+305.1335449 4047407.0
+306.1186829 1366279.75
+307.1208801 186777.46875
+311.1351013 79440.296875
+312.1170654 41596.15625
+318.1428528 27365.384765625
+321.1535339 439046.9375
+322.1569214 45187.40625
+323.1439514 1427495.0
+323.1886292 41683.4453125
+324.1460571 213764.1875
+329.1426697 47618.125
+336.6836853 26209.36328125
+338.1417847 55967.26171875
+338.1797791 459102.90625
+338.6420593 32020.4140625
+339.1824951 105038.546875
+347.148468 45382.28515625
+349.1541138 33949.0390625
+359.1456299 70402.1171875
+366.1863098 203091.203125
+369.1384277 30314.126953125
+376.1693726 138906.0625
+377.1578674 111769.515625
+386.1630859 48657.1171875
+390.6550598 25259.609375
+394.1802979 982057.125
+395.1808472 186855.953125
+412.1862183 38839.3828125
+442.6865845 26856.27734375
+468.2190247 67560.21875
+483.7140808 39435.23828125
+485.2466736 252738.859375
+486.2480164 65080.796875
+488.1837769 59845.09375
+492.2289124 232082.8125
+492.7287598 89424.78125
+493.2325745 50945.87890625
+495.2276917 82903.9296875
+503.7149963 38087.7734375
+505.2146301 65597.3125
+506.20578 65231.28125
+512.2265015 54183.8125
+512.7287598 57746.17578125
+521.2297974 42154.30078125
+523.2209473 640107.6875
+524.2246094 156520.75
+525.2272949 58366.94921875
+529.7417603 37545.2578125
+571.7527466 84961.859375
+572.2740479 344626.5625
+573.2791138 113458.40625
+576.2625122 57130.87890625
+576.7677002 40228.8671875
+577.2645874 40973.16796875
+580.2623291 110297.53125
+580.7539062 3192218.5
+581.255188 2146259.0
+581.7562256 804340.4375
+582.2572021 150935.75
+589.2662964 400618.25
+589.7645264 306209.90625
+590.2603149 55401.02734375
+598.2753906 68492.1953125
+598.7722168 59376.15234375
+606.2557373 58461.02734375
+624.2639771 51653.4375
+673.3216553 523718.3125
+674.3237915 197179.46875
+675.3364868 32529.169921875
+802.3606567 144445.296875
+803.3692627 58674.4375
+873.4017944 136941.375
+874.4040527 60911.0234375
+1001.43103 31227.88671875
+1002.449097 35751.40234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.313.313.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=313"
+RTINSECONDS=33.82547725
+PEPMASS=598.27001953125
+CHARGE=2+
+56.07691193 15431.79296875
+59.89522171 15490.9296875
+64.52632141 67515.59375
+64.53068542 52288.234375
+64.58200073 54061.51953125
+64.58618164 30488.39453125
+64.6381073 21447.78125
+64.64160156 27569.791015625
+82.05427551 20222.6171875
+130.3523254 16993.953125
+147.6888733 18854.775390625
+149.5755768 31035.193359375
+167.0913544 38490.31640625
+169.0598755 33277.28125
+175.1177368 339437.15625
+176.1211395 17206.646484375
+177.0757599 81195.4765625
+178.0600128 334583.5625
+178.3403625 98622.390625
+179.0634308 22021.51171875
+186.0861664 120922.3984375
+194.1022491 45555.82421875
+195.0863495 4778278.0
+195.1277618 24032.583984375
+196.0892487 495376.6875
+197.0910187 33484.06640625
+200.1008911 20442.017578125
+201.0843201 26039.52734375
+206.0910645 188737.4375
+218.1024933 63835.2890625
+240.0960388 33083.2578125
+243.0864563 24402.828125
+246.0738831 14893.3916015625
+246.0969543 723742.5
+247.0993347 93124.203125
+249.09552 23324.46875
+250.557251 17260.962890625
+257.1227722 141146.328125
+260.1123657 138399.1875
+270.0965271 131285.671875
+278.1496277 23131.556640625
+283.1434631 52189.15234375
+287.1234131 153555.984375
+288.1073303 1741519.875
+289.1104126 276739.1875
+294.1167908 30191.1796875
+295.1491699 34189.19140625
+303.1440735 27067.619140625
+304.1315308 16059.8232421875
+305.1339111 3572420.5
+306.118988 1352217.25
+307.1212158 194881.171875
+308.1183472 19426.296875
+311.1342163 58756.6484375
+312.118103 45376.2265625
+318.1452942 19419.21484375
+321.1538086 363529.53125
+322.1569824 70258.5546875
+323.1443787 1237035.25
+324.146637 213520.546875
+328.1647339 22724.818359375
+329.1437378 57041.875
+338.142334 72531.2421875
+338.1805725 471020.78125
+338.6468811 18674.712890625
+339.182312 83300.625
+341.1428833 22393.890625
+347.1496582 21659.806640625
+349.1589355 25843.44140625
+351.1288147 24239.724609375
+359.1440125 61240.3984375
+366.1861877 130697.4921875
+367.1837769 17138.55078125
+369.1376343 30255.671875
+376.1704102 139789.71875
+377.1558228 103030.9453125
+386.1640015 33734.57421875
+394.1808777 827107.375
+394.2402954 30858.857421875
+395.1828613 161852.9375
+412.1856689 36961.3125
+421.1838989 18882.46484375
+423.1487427 19303.359375
+460.1883545 33055.53125
+468.2232361 53899.80078125
+469.2211609 21155.564453125
+483.712616 34412.328125
+485.2478027 250707.34375
+486.2501221 70979.140625
+488.1875305 68953.53125
+492.2288818 218099.59375
+492.7309265 121601.9140625
+493.2331238 20262.5
+495.225647 72500.6015625
+503.7184143 17760.732421875
+505.2099915 56668.29296875
+506.2052307 48886.81640625
+512.227478 46948.77734375
+512.7246094 33595.78515625
+521.2330322 50493.0546875
+521.7340698 32286.55859375
+523.2214966 562487.125
+524.2247925 164379.109375
+525.2314453 24700.4609375
+529.7434082 23861.572265625
+541.2335815 22903.697265625
+555.2572021 21199.486328125
+558.7509766 29798.54296875
+567.7542725 25260.322265625
+571.7493286 110386.125
+572.2745361 378634.65625
+572.753418 41064.62109375
+573.27948 124139.125
+574.281311 35291.70703125
+576.2689209 30108.982421875
+576.7657471 38615.3828125
+577.2626343 25788.3046875
+580.2615967 118711.7890625
+580.755127 2765615.75
+581.2561035 1972332.0
+581.7580566 732921.0
+582.2609863 119073.0078125
+589.2645264 61199.49609375
+589.7639771 40992.5703125
+598.2720947 69561.7265625
+598.7727661 44533.0703125
+599.2741699 39626.54296875
+599.7771606 68061.53125
+606.260376 41638.77734375
+624.2664795 76842.5078125
+640.0969238 17852.833984375
+655.3135986 24095.048828125
+673.3242798 449461.90625
+674.3258057 153458.109375
+675.3318481 38282.8671875
+802.3655396 99009.3515625
+803.3700562 35115.078125
+869.3527832 18819.5078125
+873.401001 124332.28125
+874.4049072 61370.26171875
+875.4158936 20306.203125
+1001.454895 19129.654296875
+1059.461182 20019.455078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.314.314.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=314"
+RTINSECONDS=33.93215848
+PEPMASS=598.27001953125
+CHARGE=2+
+55.78771591 15475.609375
+58.13459015 14032.646484375
+58.13751221 15716.18359375
+63.58900833 12104.96875
+64.52629089 57854.4140625
+64.53048706 40425.40234375
+64.5819931 44548.328125
+64.58617401 33916.58984375
+64.638237 14739.53515625
+64.64162445 14769.78515625
+74.81613159 16529.76171875
+76.28123474 17650.330078125
+76.83476257 13980.9033203125
+80.09133911 15218.6005859375
+82.05389404 16977.91796875
+119.2950821 15533.478515625
+130.3133392 13500.447265625
+149.5686798 58730.16796875
+167.091568 38354.359375
+169.0596619 39029.81640625
+175.118042 348768.875
+176.1213684 28557.45703125
+177.0757904 71458.4921875
+177.5447235 13834.921875
+178.0600433 338218.40625
+178.3340149 27513.25
+178.3530731 56553.515625
+179.0646362 30688.76171875
+179.0918732 23424.83984375
+182.0916443 26234.76171875
+183.0750885 32632.302734375
+186.0860291 111642.8828125
+194.1024323 46406.80859375
+195.0647125 29140.869140625
+195.0864868 4294107.5
+196.0892334 433942.78125
+197.0921478 32633.72265625
+200.1021271 27321.814453125
+201.0856018 21286.962890625
+206.0912018 155233.546875
+207.0924225 15756.970703125
+208.1804352 16105.8994140625
+209.1027222 23202.916015625
+212.1125946 22975.7578125
+218.1024628 69967.484375
+234.0964355 19069.876953125
+240.0963287 27502.962890625
+246.0972137 635754.0625
+247.1002655 77817.28125
+249.0959473 16614.240234375
+257.1228333 117030.5078125
+260.1122742 124069.453125
+270.0972595 124679.8828125
+276.105896 16809.21484375
+278.1491699 34736.60546875
+283.1426697 55973.4296875
+287.1238403 155994.109375
+288.1076965 1653901.125
+289.1104431 277250.78125
+290.1131897 30903.35546875
+294.1163025 24536.78125
+303.1429749 33657.42578125
+304.1283875 22686.216796875
+305.1044617 62179.609375
+305.1342773 3204469.5
+306.1195679 1153020.0
+307.1210632 208912.890625
+308.1223145 18542.330078125
+311.1352539 53911.41796875
+312.1171875 31711.244140625
+321.1543274 350810.875
+322.1566772 72532.078125
+323.1447754 1112323.625
+324.1468201 173808.25
+325.1551208 18368.515625
+329.1441345 42773.6171875
+331.1513672 18276.0390625
+338.1424866 44490.65625
+338.1810608 407297.125
+338.6461182 25397.1796875
+339.1840515 89744.3359375
+346.1743774 19200.0625
+349.158783 21789.6328125
+359.1451416 67806.7265625
+366.1863403 148718.671875
+367.1870117 18988.94921875
+369.1401672 31380.33203125
+376.1714172 138669.875
+377.1558838 68811.3359375
+386.1618042 30094.62109375
+394.1815186 760947.25
+395.1833801 161360.65625
+396.190033 19341.875
+412.1904602 32088.763671875
+460.1915283 25148.294921875
+468.2229919 58051.69921875
+477.214325 15757.4384765625
+478.2037048 15728.197265625
+485.2478333 198941.609375
+486.2495422 45825.1796875
+488.1874084 63246.484375
+492.2296143 157562.765625
+492.7302856 90671.484375
+493.2326355 20835.59375
+495.2298889 55406.44140625
+496.2318726 15762.2138671875
+503.7149658 17677.615234375
+505.2137756 64905.59375
+506.2080383 49106.046875
+512.2271118 40016.51171875
+512.7261353 22495.80859375
+521.2336426 42045.15234375
+523.2230225 479255.46875
+524.2266235 139434.921875
+525.2333374 27672.587890625
+530.2479248 26203.193359375
+541.2515259 15026.17578125
+555.257019 22904.302734375
+558.7459106 16837.46875
+559.2457275 17180.1484375
+567.2539673 16829.82421875
+571.749939 76355.03125
+572.2766724 317282.0
+572.7589722 20128.048828125
+573.2821045 89968.375
+574.2837524 23697.03515625
+576.2612305 35297.03515625
+576.7603149 22634.412109375
+577.2639771 34678.57421875
+580.2627563 76119.1171875
+580.7565918 2304913.75
+581.2575073 1604883.875
+581.6799316 12156.4921875
+581.7591553 623107.75
+581.8626709 19512.369140625
+582.2601318 80485.640625
+589.2645874 72088.484375
+589.767334 26003.59375
+598.2723389 51223.95703125
+598.7788086 30027.921875
+599.2755737 41182.2890625
+599.7803345 67858.921875
+606.2573242 30991.376953125
+624.2702637 38352.39453125
+655.3084717 18330.095703125
+673.3256836 417888.40625
+674.3289185 143173.40625
+675.3289185 31210.185546875
+802.3658447 105051.4296875
+803.3636475 42851.546875
+873.4047852 106344.1796875
+874.4058838 45229.359375
+1001.440308 24214.109375
+1059.486572 22250.744140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.315.315.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=315"
+RTINSECONDS=34.04032715
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632141 75488.0078125
+64.5307312 54055.41015625
+64.58202362 48108.5703125
+64.58616638 33972.10546875
+64.64160156 16412.54296875
+82.0541153 18813.671875
+99.5947113 15532.5244140625
+128.698822 17335.0625
+149.5717926 61595.03125
+167.0912933 45797.0078125
+169.0588531 31081.48828125
+175.1176758 324961.78125
+176.1212921 31155.15234375
+177.0760498 75933.109375
+178.0599518 344513.25
+178.3440704 102705.40625
+179.0636292 34918.28515625
+179.0917511 20426.787109375
+183.0751038 32304.572265625
+186.0863495 120047.1328125
+194.1024323 29836.607421875
+195.086319 4657919.0
+195.1278687 35153.44921875
+196.0891418 476250.28125
+197.0918884 28218.7890625
+200.1020966 28298.01171875
+201.0855865 19725.341796875
+206.0911255 145025.046875
+207.0945587 19238.43359375
+207.1149597 17862.7265625
+208.9621582 16289.7373046875
+212.111496 19777.166015625
+218.1026917 60282.984375
+222.085144 20496.8046875
+223.0934601 18176.6171875
+232.1192932 18381.220703125
+240.0962982 27282.21875
+243.0858459 20962.3515625
+244.116684 15975.3525390625
+246.0967407 704024.5
+247.0997772 90781.34375
+257.1228943 87733.921875
+260.1120605 96168.2421875
+270.0968323 103337.9140625
+278.1499634 20063.412109375
+283.1420593 43831.48828125
+287.1230164 153949.78125
+288.1071167 1740057.625
+289.1097717 231965.265625
+290.1107483 23520.4140625
+294.1183472 30474.955078125
+295.1509399 38796.70703125
+303.144104 24885.796875
+304.1265259 18284.552734375
+305.133667 3323693.25
+305.2164917 21792.57421875
+306.1187744 1243484.875
+307.1210327 195527.734375
+311.1338501 46263.6640625
+312.1158142 28773.759765625
+321.153656 373521.9375
+322.1578979 51096.6953125
+323.1441345 1174898.75
+324.146637 187418.609375
+329.1433411 54148.44140625
+338.1421204 59220.1328125
+338.1803284 393039.03125
+338.6445007 19810.908203125
+339.1378174 16809.171875
+339.1817932 72920.40625
+346.1711731 20638.10546875
+349.1587524 29358.87890625
+359.1429138 54882.17578125
+366.1852722 130315.46875
+367.1893005 28903.626953125
+369.1410828 18342.01171875
+376.169342 152749.328125
+377.1573792 93808.0859375
+378.1575317 20625.158203125
+386.1645813 36760.1875
+394.1802063 690546.75
+395.1824646 184280.8125
+412.1881104 34457.08984375
+420.6817017 34133.89453125
+434.173584 20858.2578125
+468.2202148 58074.890625
+469.219635 23948.73046875
+477.2175903 18014.111328125
+478.203186 30538.4609375
+485.2462769 229821.34375
+486.2490234 45532.7265625
+488.1842041 71240.53125
+492.2286072 185658.671875
+492.7285767 87725.8828125
+493.2313843 41200.44140625
+495.2240601 49090.85546875
+496.2276611 18838.931640625
+505.2102051 65737.8359375
+506.1998291 50117.62109375
+512.2321167 32706.892578125
+512.7269897 34985.828125
+521.2341919 45516.05859375
+523.2209473 442539.875
+524.2234497 119485.84375
+525.2305298 21304.259765625
+558.7421265 32203.052734375
+571.7489624 76738.046875
+572.2739868 332053.625
+573.2791748 102816.359375
+576.2600098 75354.9765625
+576.7634277 43189.21484375
+580.2624512 69050.25
+580.7540894 2657985.75
+581.255249 1867800.375
+581.3359375 29476.40234375
+581.6497192 20165.466796875
+581.756897 689620.375
+582.2590942 137240.671875
+589.2657471 72472.5390625
+589.7653198 41157.89453125
+598.2694092 26634.390625
+598.7778931 46763.95703125
+599.2762451 26201.34375
+599.7758179 76636.640625
+606.2597046 35009.34375
+624.2670898 57998.20703125
+625.2720947 19214.1171875
+673.197876 25312.587890625
+673.322998 435872.375
+674.3256836 176534.09375
+675.3284912 28807.091796875
+693.2840576 23238.197265625
+802.3612061 117442.265625
+803.3614502 42411.9375
+804.3538818 17372.791015625
+873.3982544 93987.6484375
+874.4029541 39365.9765625
+1001.455688 32458.751953125
+1002.451599 18547.470703125
+1058.455078 21702.3828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.316.316.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=316"
+RTINSECONDS=34.14765979
+PEPMASS=598.27001953125
+CHARGE=2+
+53.65280151 9855.109375
+58.13441467 11421.9013671875
+58.13767624 13371.5166015625
+63.58839417 9640.1552734375
+64.52630615 46037.4609375
+64.53063202 33786.3984375
+64.58196259 35602.671875
+64.58616638 22183.81640625
+64.63813782 15921.400390625
+64.64156342 12469.5146484375
+68.40119934 11398.8505859375
+82.05415344 15181.7724609375
+149.5700073 41886.7734375
+167.0918274 49760.29296875
+169.0594177 29810.884765625
+175.1180115 275015.40625
+176.1207123 17808.666015625
+177.0761719 59009.046875
+178.0601349 314159.09375
+178.0755157 9801.4072265625
+178.3336945 19007.404296875
+178.3524933 47328.69921875
+179.0632477 25994.669921875
+179.092041 14212.962890625
+183.0749512 30467.94140625
+183.6380005 11282.9873046875
+186.0863953 111685.7109375
+190.0601196 14830.3408203125
+190.1091614 11876.3740234375
+194.1025391 31115.85546875
+195.0865631 3625786.5
+195.1282349 22579.595703125
+196.089447 393010.625
+197.0908508 18172.7265625
+200.1011047 20694.4609375
+201.0851135 22102.3359375
+206.0912628 178015.765625
+207.0940399 19528.578125
+212.1134338 19572.240234375
+213.0851288 20420.015625
+215.0911255 17253.87109375
+218.1026764 56300.37890625
+221.1017151 11502.330078125
+222.0849304 16388.392578125
+233.1259003 20123.322265625
+234.0966187 20194.166015625
+240.0950317 22501.140625
+243.0865936 30639.609375
+244.1184692 15164.0263671875
+246.0970917 655213.4375
+247.0995026 72881.8515625
+249.0970459 13479.3642578125
+257.1231079 105006.953125
+258.1231079 19109.8984375
+260.1129761 106547.984375
+261.1181946 25628.83984375
+270.097229 125387.6171875
+271.1020813 17278.962890625
+276.1342773 14121.2509765625
+278.1183167 15909.662109375
+278.1495667 25742.349609375
+283.1434326 45013.90234375
+287.1235962 172895.0625
+288.107666 1596487.75
+289.11026 236860.546875
+290.1126404 14041.740234375
+294.116394 14928.451171875
+295.1495361 20748.291015625
+303.1442261 24724.056640625
+304.1267395 18162.7265625
+305.1342468 2986241.0
+306.1195374 1077247.875
+307.1214294 161847.984375
+308.1246948 12665.587890625
+311.1347046 52825.61328125
+312.1160583 24238.103515625
+321.1543884 306157.625
+322.156311 65040.6171875
+323.1447449 1054350.5
+324.1472778 174853.703125
+325.1503296 15106.6640625
+328.1620483 11901.7109375
+329.1434021 46344.9765625
+331.1482544 16572.234375
+338.1426392 52750.46484375
+338.1809082 367601.59375
+338.6449585 22041.197265625
+339.18396 62138.8671875
+341.1456604 19786.052734375
+347.1478271 16935.625
+349.1596375 21824.373046875
+351.1295776 17736.7890625
+358.1678772 20070.90234375
+359.1450806 72271.0234375
+366.1862793 106921.3828125
+369.1411743 29576.0703125
+376.1707153 99535.28125
+377.1559448 78162.9921875
+378.1576538 12423.857421875
+386.1646118 23958.294921875
+394.1812134 680605.125
+395.1824341 113238.015625
+396.1922607 20178.10546875
+412.1868591 24646.52734375
+413.1747437 14222.7568359375
+420.6820679 21004.849609375
+450.2100525 12302.0390625
+460.1927795 24143.080078125
+464.1758423 12465.4150390625
+468.2209778 54240.2734375
+477.2183838 20926.8046875
+478.2020569 12996.609375
+483.7214355 16198.68359375
+485.2472229 217265.578125
+486.2511292 55874.85546875
+488.1877747 56115.22265625
+489.1907654 20443.228515625
+492.229187 162636.859375
+492.7314148 109264.296875
+493.2297363 24485.052734375
+495.227478 62868.83203125
+496.2308044 16863.630859375
+503.7152405 19233.623046875
+505.2128906 52558.90234375
+506.208252 54348.3515625
+512.2265015 40678.74609375
+512.729126 35097.6328125
+513.2289429 23031.07421875
+520.7442017 15187.3310546875
+521.2346191 32344.666015625
+521.7374268 31756.884765625
+523.2225342 401706.875
+524.2260132 103421.984375
+525.2351685 22697.62890625
+529.7406006 16698.97265625
+532.5983887 12711.48046875
+541.2290649 15588.9140625
+555.2512207 18624.181640625
+558.7435303 19990.484375
+559.2369385 18744.6640625
+571.2440186 12836.7275390625
+571.7511597 106636.6171875
+572.2757568 287342.71875
+572.7554932 14303.552734375
+573.2825928 63823.859375
+574.2731934 13425.158203125
+576.2584839 27732.11328125
+576.765625 17575.671875
+577.2658691 21562.830078125
+577.7681274 16219.8466796875
+580.2597656 46516.1640625
+580.7555542 1877974.25
+581.2566528 1293533.5
+581.6506958 12390.1796875
+581.7584229 432241.84375
+582.2596436 111038.7109375
+598.274353 49740.234375
+598.7750244 29954.119140625
+599.2774658 70289.5546875
+599.7783203 85722.2265625
+606.2514648 23565.23828125
+607.2507324 15657.5166015625
+624.267395 53956.6328125
+625.267395 20162.416015625
+655.3126831 15433.2568359375
+673.3251953 333896.71875
+674.3282471 106060.3984375
+675.3311157 24599.966796875
+802.3627319 68447.875
+803.3678589 28807.517578125
+873.4035034 75461.15625
+874.4058228 37582.7578125
+1001.458496 14632.3310546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.317.317.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=317"
+RTINSECONDS=34.26055333
+PEPMASS=598.27001953125
+CHARGE=2+
+60.46277618 31731.12109375
+64.52639771 88340.03125
+64.53050232 51807.6171875
+64.58232117 51757.828125
+64.58633423 46039.20703125
+65.47263336 23544.927734375
+79.59153748 24423.0625
+89.24178314 23536.841796875
+96.36105347 22619.1953125
+102.2588577 22432.923828125
+149.5662231 83887.8359375
+167.0917358 57506.28515625
+169.0591888 50276.92578125
+175.1180725 309996.53125
+177.0756378 44734.27734375
+178.0603027 346955.59375
+178.3453674 147103.984375
+179.0636444 35099.33203125
+179.0915833 31818.736328125
+186.0863342 130919.921875
+194.1027679 52303.84765625
+195.0865631 5156831.5
+196.0894623 503298.1875
+197.0922699 30118.357421875
+200.1018524 42412.93359375
+206.0912781 165234.328125
+218.1028137 49611.69140625
+246.097168 719620.0625
+246.1259003 44170.875
+247.1001587 86041.8046875
+257.1226807 106103.109375
+260.1130066 120871.7109375
+270.0973206 146963.671875
+283.1422729 49830.41015625
+287.1236267 177796.4375
+288.1075439 1757701.125
+289.1110229 262578.71875
+294.1154175 29143.89453125
+295.1477966 24321.525390625
+305.1341858 3704605.0
+306.1194458 1327499.25
+307.1218872 230727.421875
+308.1233826 29805.71484375
+311.1355896 42580.9453125
+312.1159363 32342.146484375
+321.15448 366921.65625
+322.1565247 68543.7265625
+323.1446228 1346119.625
+323.1888733 49715.30078125
+324.1471252 249864.96875
+325.1534424 27841.552734375
+329.1443481 65104.3203125
+338.142334 62095.9453125
+338.1807861 505305.375
+339.1837463 94793.3984375
+347.151123 49947.58984375
+359.1453552 71319.875
+366.1863403 173899.078125
+369.1389771 36971.75390625
+376.1703186 142186.921875
+377.156189 96508.7890625
+386.1645508 44587.6328125
+394.1813049 960967.0
+395.1819458 192912.4375
+402.1934204 27596.69921875
+468.2212524 45741.140625
+485.247345 227702.09375
+486.2468872 67405.21875
+488.1854858 35355.2734375
+492.2296448 147745.9375
+492.7301636 94821.34375
+493.2326965 33623.9453125
+495.227478 62064.3203125
+503.721283 28984.81640625
+505.2119446 73802.703125
+506.2019348 45413.06640625
+512.225769 54995.703125
+523.2226562 540068.9375
+524.2247925 143477.765625
+525.2340088 33269.36328125
+571.7513428 91146.0234375
+572.2763062 374420.53125
+572.753418 36512.70703125
+573.2800903 100283.1796875
+576.2633667 53515.125
+576.7614136 45923.078125
+577.2633057 36229.05078125
+580.2617188 105046.8125
+580.7555542 2954709.5
+581.2568359 2053960.625
+581.7584839 712105.125
+582.2589111 110492.1171875
+589.2689209 389991.34375
+589.7674561 259865.328125
+590.2674561 78920.6796875
+598.2728882 100311.8984375
+598.7756348 41855.39453125
+606.2567749 47545.8125
+624.2683105 84162.6796875
+655.3154907 29271.6796875
+673.324646 510058.71875
+674.3269653 196473.921875
+675.3283691 36589.5703125
+711.3018799 30481.814453125
+802.3651123 137708.09375
+803.369812 70466.703125
+858.3638306 32056.015625
+873.402771 123043.515625
+874.4040527 97236.4140625
+875.4129639 36035.7734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.318.318.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=318"
+RTINSECONDS=34.3638385
+PEPMASS=598.27001953125
+CHARGE=2+
+50.20346069 9701.041015625
+54.59731674 9330.732421875
+63.58839798 12693.4853515625
+64.52615356 47915.21484375
+64.53065491 35588.2265625
+64.58197021 35575.69140625
+64.58624268 26715.1640625
+64.63820648 17622.20703125
+64.64130402 12773.3916015625
+74.8119278 14299.453125
+144.8007812 8770.9609375
+149.5671082 39401.63671875
+149.5789948 9928.9013671875
+150.3228455 10523.931640625
+167.0917053 37329.75
+169.0592499 27777.587890625
+175.1178436 301020.96875
+176.1200714 18909.51171875
+177.0760345 67618.0859375
+178.0599823 337397.34375
+178.0781708 17839.767578125
+178.3450012 70983.5234375
+179.0634766 27016.025390625
+179.0919952 27281.626953125
+182.0914154 19744.939453125
+183.0754395 24281.533203125
+186.0865173 93505.46875
+194.1021729 38891.00390625
+195.0863647 3678292.75
+196.0891418 425025.5625
+197.0925903 28979.9140625
+200.1016083 32721.3984375
+201.086853 15464.072265625
+206.0910034 165373.03125
+207.0926819 22312.701171875
+212.1133881 17592.654296875
+213.0842438 10928.806640625
+215.0924835 13579.5048828125
+218.1022797 54790.32421875
+222.085144 16888.759765625
+232.116745 15958.896484375
+233.1272125 12592.7294921875
+239.1131439 10514.8037109375
+240.0956726 14494.5537109375
+243.0859375 30468.40234375
+244.1169434 11384.8564453125
+246.0969238 670940.375
+246.1389771 12371.74609375
+246.1919403 13518.408203125
+247.1003571 87434.5859375
+257.1229248 112320.7890625
+258.1253357 16117.0234375
+260.1127625 119320.859375
+261.1170959 18829.849609375
+270.0971375 132421.375
+271.1017761 14554.8798828125
+277.137085 13784.9345703125
+278.1476135 28384.345703125
+283.1428833 49638.92578125
+287.1233215 152922.21875
+288.1073608 1629670.625
+289.1102905 235206.125
+290.1123352 25379.169921875
+294.1179199 19115.111328125
+295.1503296 21517.412109375
+303.1414185 24636.818359375
+304.1247253 19606.83984375
+305.1339111 3027566.5
+306.1190186 1063966.375
+307.1211243 178047.53125
+308.119751 16717.4765625
+311.1350098 50955.42578125
+312.1182251 34725.8125
+321.1539307 330999.9375
+322.156311 59340.5703125
+323.1443481 1008580.875
+324.1469727 181083.703125
+325.1539612 14111.9873046875
+328.1608276 12282.359375
+329.1442871 49835.13671875
+331.1470642 18062.849609375
+338.141449 67196.234375
+338.1807251 345041.40625
+338.6443481 18447.14453125
+339.1828613 76404.21875
+341.1460876 14962.3671875
+347.1508484 18282.9609375
+349.1607971 14028.369140625
+359.1454468 66096.7421875
+360.1464233 15612.3876953125
+366.1860046 96573.6875
+367.1905518 21972.4765625
+369.1391296 42174.9609375
+376.1701965 120988.953125
+377.1551514 83579.765625
+386.1633911 29564.86328125
+394.1808167 659084.625
+394.2406006 24257.486328125
+395.1828308 145576.5625
+412.19104 22098.501953125
+413.165863 12661.23828125
+420.6828613 15974.576171875
+460.1904602 29050.31640625
+468.2206116 48315.9375
+477.2181702 13725.498046875
+485.2469482 190177.390625
+486.2509155 51610.6015625
+488.1873169 59451.0546875
+489.1875 17416.763671875
+492.2289429 183942.65625
+492.731781 89272.9140625
+493.2312317 40282.91015625
+495.2266235 55479.68359375
+503.2233582 14525.783203125
+505.2123718 53926.83984375
+506.2035522 41656.6640625
+506.7281189 14746.0537109375
+512.2282715 25652.06640625
+512.7285156 32649.833984375
+521.2301025 29544.75
+521.7270508 17918.171875
+523.2216187 396281.5625
+524.2241821 119252.0078125
+525.2285156 25967.3203125
+554.2678223 17872.32421875
+555.2595825 14394.0537109375
+558.7502441 30685.13671875
+559.2479248 20527.86328125
+560.2381592 11634.53515625
+571.7504272 74613.9765625
+572.2756958 326685.59375
+572.7539673 22878.236328125
+573.2810059 92328.3515625
+576.2634888 35913.0546875
+576.7633667 19612.2734375
+580.2636108 73018.2734375
+580.7549438 1912704.375
+581.2562256 1279062.125
+581.3665771 21704.205078125
+581.7579346 472611.3125
+582.2587891 116016.0703125
+598.2714844 46895.55859375
+598.7692871 20408.37890625
+599.2769165 65554.0703125
+599.7755737 78716.6640625
+606.2588501 22827.75
+607.2570801 17840.271484375
+624.2687378 50376.63671875
+655.3136597 15571.7001953125
+673.3238525 396474.03125
+674.3276367 124180.625
+675.3297729 21854.291015625
+693.2891846 16234.181640625
+694.2861328 13201.099609375
+802.3634033 77446.03125
+803.3652344 26702.01953125
+873.4001465 66426.5
+874.4047852 34162.75
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.319.319.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=319"
+RTINSECONDS=34.47730263
+PEPMASS=598.27001953125
+CHARGE=2+
+53.38720703 17071.830078125
+58.13433838 18815.044921875
+64.5262146 83817.671875
+64.53046417 60131.62890625
+64.58200836 64227.42578125
+64.58617401 40513.83984375
+64.63822174 30166.90625
+67.5898056 16388.625
+149.5700378 69704.75
+167.0923004 30370.20703125
+169.060257 23866.2265625
+175.1177216 338059.625
+177.0761108 77045.1953125
+178.0599518 359063.84375
+178.076355 34867.40625
+178.339859 107080.953125
+179.0631561 45033.7265625
+179.0915527 22552.677734375
+183.0752106 23864.734375
+186.0859528 115980.1171875
+194.1030579 52316.29296875
+195.0864105 4941192.5
+196.0892334 451672.625
+197.0919495 21460.125
+199.1175842 18551.306640625
+200.1022491 31480.546875
+201.0852966 24131.259765625
+206.0910187 165695.140625
+207.0938263 25219.12109375
+212.1140594 19275.787109375
+215.0926208 26958.666015625
+217.1282043 19840.21875
+218.1027527 56713.1015625
+222.0856934 22217.421875
+224.4853668 21090.69140625
+246.0969543 718101.625
+247.1001434 78639.1171875
+249.0960693 20529.08984375
+257.1224976 130171.640625
+260.1123962 143404.234375
+270.0969543 149578.703125
+271.1023865 23122.421875
+278.1496582 26857.533203125
+283.1434937 49094.18359375
+287.1232605 185414.328125
+288.1073608 1735633.25
+289.1104431 266989.3125
+294.1197815 22860.04296875
+295.1521912 22957.337890625
+297.1264648 19118.02734375
+304.129303 19056.80078125
+305.1339722 3684342.75
+306.1192322 1334527.125
+307.1211548 204735.78125
+308.1212463 28359.072265625
+311.1336365 58216.85546875
+312.1167297 50738.30859375
+321.1536865 382029.59375
+322.1568604 44510.69140625
+323.1444702 1271828.25
+323.1890259 40868.0625
+324.1462097 201798.859375
+325.1546021 22487.05078125
+329.1461487 57119.3359375
+331.1495667 20590.81640625
+338.1421509 55355.921875
+338.1807251 399239.34375
+338.6461182 39622.89453125
+339.1831055 89051.6171875
+347.65625 30590.509765625
+359.1435547 84025.6796875
+366.1860962 133790.671875
+367.1894531 33655.6171875
+368.1531982 24229.443359375
+369.139801 34137.15625
+376.1704712 130194.8671875
+377.156311 77062.6640625
+378.1664124 20190.94140625
+386.1679688 28861.28125
+389.1480103 22636.138671875
+394.1807556 817761.5625
+394.2400513 36597.78125
+395.1822815 178152.015625
+396.1894226 20992.478515625
+412.1891479 33702.55859375
+420.6807861 24507.08203125
+450.2088013 27951.42578125
+452.1725769 20850.232421875
+468.2202148 40631.71875
+477.2173157 30440.099609375
+482.1839294 25063.81640625
+483.2226562 21511.33984375
+483.7141418 29930.708984375
+485.247406 245101.5625
+486.2477112 60129.859375
+488.1856079 62091.66015625
+492.2296143 215775.4375
+492.7310181 124985.96875
+493.2316895 20234.056640625
+495.2249451 61428.43359375
+505.2114868 73795.6328125
+506.2050171 79272.4765625
+512.2267456 31813.451171875
+512.7312012 31610.14453125
+521.234314 56207.453125
+521.7306519 25667.404296875
+523.2217407 574776.3125
+524.2240601 143949.046875
+525.227478 40579.4609375
+530.2451172 21714.3828125
+555.2548828 26349.384765625
+571.7524414 79906.5
+572.2753906 356544.28125
+573.2826538 120947.0859375
+576.2600098 72838.875
+576.7594604 36097.41796875
+577.2676392 27086.419921875
+579.2472534 21727.294921875
+580.2633057 112916.2578125
+580.7549438 3064161.5
+581.2563477 2166954.75
+581.3651123 28929.4921875
+581.7578735 804060.6875
+582.2589111 137105.25
+589.2680054 197916.171875
+589.7668457 85691.21875
+590.2679443 31911.029296875
+598.2730103 69777.890625
+598.7794189 42943.5234375
+599.7753906 36984.1171875
+606.2521973 40931.38671875
+624.2676392 69569.921875
+673.3244019 477275.84375
+674.3267822 194169.0625
+693.2993774 30889.513671875
+711.3005371 28881.693359375
+802.3662109 119076.5703125
+803.3656006 61145.703125
+873.4031982 124813.7421875
+874.401062 54649.640625
+875.4190063 22395.830078125
+1058.479004 39615.703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.320.320.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=320"
+RTINSECONDS=34.58287922
+PEPMASS=598.27001953125
+CHARGE=2+
+51.38198471 11407.0546875
+56.62598801 11027.298828125
+64.52622223 61531.31640625
+64.53046417 40037.75390625
+64.58201599 45240.16796875
+64.58618164 26895.44921875
+64.63835144 20057.931640625
+64.64157867 18115.658203125
+67.69499207 13247.205078125
+69.64015198 11106.18359375
+72.14183807 13044.4853515625
+74.81189728 17690.15234375
+74.81638336 11844.6953125
+74.92308807 14329.2255859375
+113.0518417 11597.603515625
+120.7384949 13501.9013671875
+149.5641785 19866.556640625
+167.0919495 41508.5234375
+169.0599213 36635.07421875
+175.1179047 286577.75
+176.1215057 14293.53125
+177.0758972 74200.3984375
+178.0436859 8331.3017578125
+178.0602112 343735.03125
+178.345108 84029.40625
+179.0635834 28397.818359375
+182.0899353 16141.20703125
+183.0754242 25788.904296875
+186.0863953 101106.09375
+194.10289 49325.1015625
+195.0865173 3982119.25
+196.0894165 393561.25
+197.0912018 26397.189453125
+200.1016998 17759.318359375
+201.0861816 22745.384765625
+206.091156 180065.53125
+213.0890656 12715.8251953125
+218.1022339 56342.79296875
+233.1261139 21783.974609375
+234.0981293 21146.08203125
+240.098175 26942.908203125
+243.0859985 28596.576171875
+246.0743103 8847.244140625
+246.0971375 623553.75
+247.0995026 65518.3828125
+249.0970917 23022.25390625
+257.1233521 97626.53125
+258.1239624 21322.322265625
+260.1124573 121393.3984375
+261.1164856 29292.40234375
+270.0968628 133562.4375
+278.116394 17161.78515625
+283.1433411 52728.1015625
+287.1235962 157957.328125
+288.107605 1606577.0
+289.1103516 248406.96875
+290.1132507 19213.470703125
+294.1188354 16576.865234375
+295.1473694 30445.90234375
+302.127655 13602.7255859375
+303.1421509 14051.71484375
+304.1271973 22754.79296875
+305.1342468 3038237.5
+305.2154541 18955.115234375
+306.1192627 1129437.75
+307.1216736 175261.5625
+308.1225586 15885.9052734375
+311.135376 55278.1796875
+312.1172791 39213.66015625
+321.1543579 376489.90625
+322.156311 71634.1640625
+323.0983582 21939.25390625
+323.1447449 1031282.4375
+324.1470642 182286.59375
+325.1505432 12508.82421875
+329.1439514 44448.30078125
+331.148407 19391.701171875
+338.1423035 49495.328125
+338.1809082 363260.21875
+338.6450806 16749.2421875
+339.1833801 56949.1875
+347.1452637 24441.244140625
+349.1611328 15924.6572265625
+351.1356506 14987.9501953125
+358.1653442 14301.05078125
+359.1456604 63131.36328125
+366.1864929 114347.0390625
+367.1927795 16042.46875
+369.1403503 19294.56640625
+376.1707764 113376.984375
+377.1575623 69307.796875
+378.1586914 13759.943359375
+386.1629333 33268.20703125
+393.9882507 14537.0517578125
+394.120575 13351.7353515625
+394.1813354 681384.8125
+395.1828613 127427.9453125
+412.1914368 39297.8671875
+420.6818848 16356.9697265625
+434.176178 19710.658203125
+460.1921387 27923.130859375
+468.2205505 58031.671875
+474.7049255 15216.0849609375
+477.2233582 17654.44921875
+478.2017822 22451.12890625
+483.716156 35791.68359375
+485.2476807 216493.921875
+486.2506409 50096.921875
+488.1842957 51032.8515625
+492.2299194 132045.6875
+492.732605 103891.5859375
+493.2316284 49259.14453125
+495.2282715 42314.92578125
+503.2221375 21768.96484375
+503.7198792 23127.146484375
+505.2114868 50283.23828125
+506.2020874 57402.5
+512.2280884 37365.3671875
+512.7285156 29890.833984375
+521.2346802 28375.005859375
+521.7392578 22607.951171875
+523.2228394 455915.0
+524.2260132 125177.5390625
+525.2280884 16924.7578125
+530.2476196 20324.076171875
+558.7407227 30258.01171875
+559.2518921 18016.353515625
+567.2544556 23679.255859375
+571.7516479 80878.84375
+572.2750854 315697.28125
+572.7493896 37185.8046875
+573.2813721 93777.890625
+576.2628174 36884.30078125
+576.7611084 25972.904296875
+580.2648315 90013.9921875
+580.7560425 2393115.5
+581.2573242 1549747.0
+581.3674927 30902.521484375
+581.7589722 636875.0625
+582.2595215 103571.921875
+589.2677612 35566.57421875
+589.7741699 19628.22265625
+598.2719727 47521.1328125
+598.7738037 36707.53515625
+599.2796631 44856.98046875
+599.7785034 90767.5390625
+606.2597656 37389.2265625
+624.267395 54848.4609375
+625.2739868 23428.767578125
+629.3059082 20274.548828125
+656.3134766 18064.77734375
+673.3254395 408310.84375
+674.3286133 176459.421875
+675.3284302 36200.765625
+711.305542 17306.29296875
+802.3677368 94556.359375
+803.3728027 35949.625
+873.401062 95623.984375
+874.399292 33508.91015625
+1001.46405 17472.888671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.321.321.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=321"
+RTINSECONDS=34.69305912
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436127 17950.29296875
+64.52625275 72517.734375
+64.53071594 51504.75
+64.5821228 44308.828125
+64.58625031 27548.384765625
+64.63827515 19925.337890625
+71.6701355 18110.576171875
+74.81163788 21402.037109375
+74.81576538 16677.623046875
+76.97924805 16427.90625
+89.55768585 15367.7470703125
+149.5671692 49982.93359375
+164.3452759 17805.552734375
+167.0921478 52075.6796875
+169.059433 36179.4765625
+172.8988037 16967.263671875
+175.1178894 343240.625
+176.1210938 18933.921875
+177.0760498 76213.3203125
+178.0601349 341134.03125
+178.3510437 79423.765625
+179.0916595 23668.16796875
+183.0760498 24386.970703125
+186.0861511 105688.515625
+194.1023407 50210.51953125
+195.0864105 4608559.5
+195.1281891 26696.982421875
+196.0891571 452803.0625
+197.0906525 28814.388671875
+200.1018524 37061.41796875
+201.0854797 25165.0625
+206.0911102 146919.9375
+215.0920105 17768.3984375
+218.1020355 60547.6640625
+233.1267242 21807.81640625
+239.1117859 21650.0625
+243.0858765 31345.345703125
+246.0969543 672913.375
+246.1257324 33391.19921875
+247.09935 75639.3046875
+257.122406 83458.8046875
+260.1122742 113478.859375
+261.1170959 25738.783203125
+270.0968933 150510.875
+278.1199646 25132.470703125
+278.1514282 19823.302734375
+283.1422729 42237.97265625
+287.1233521 151694.40625
+288.1074219 1669863.625
+289.1102295 211082.3125
+290.1141663 20508.19140625
+302.1347961 19533.359375
+303.1425171 22068.80859375
+305.1340027 3397265.5
+306.1190186 1206347.875
+307.1208496 191651.0
+311.1342468 59944.16796875
+312.1175537 43115.85546875
+320.1321716 26707.185546875
+321.1539307 382380.8125
+322.15625 56215.8046875
+323.1444397 1221148.25
+324.1469421 199111.203125
+329.143158 55316.29296875
+338.1415405 55231.09375
+338.180542 451968.65625
+339.1828308 77722.0
+347.1499023 27114.484375
+349.1601562 26185.283203125
+351.1322327 25838.66015625
+358.1651611 17373.724609375
+359.144043 74949.8046875
+366.1867065 128323.4375
+367.1891479 29412.708984375
+369.1387634 26255.34765625
+376.1702576 134747.234375
+377.1572876 66608.75
+386.1643677 29830.25
+394.1808472 858750.1875
+394.2401123 27542.318359375
+395.1824951 159707.84375
+412.1893311 36947.33203125
+460.1854553 16987.68359375
+460.9063721 15356.7412109375
+468.2211609 54766.34765625
+485.2471313 239530.3125
+486.2505493 62245.1171875
+488.1859436 61889.8671875
+492.229248 200844.1875
+492.7305603 99715.2890625
+493.2269592 43004.37890625
+495.2259216 68635.578125
+503.2197266 22998.12109375
+503.7181702 29842.6171875
+505.2124023 58277.328125
+506.2088013 64215.58203125
+512.2276001 35658.25
+512.7284546 55950.96875
+521.2384644 28152.953125
+523.222229 503606.09375
+524.2247925 150523.359375
+525.2299194 23482.671875
+558.7493896 21508.09765625
+571.7514648 70033.125
+572.274292 348928.25
+572.7536621 33876.3515625
+573.281311 104736.6328125
+574.2813721 19945.5625
+576.2624512 57489.57421875
+576.7608032 20994.296875
+577.2619019 25253.041015625
+580.2618408 92317.3671875
+580.7550049 2587877.25
+581.2562256 1681800.625
+581.3667603 23321.9296875
+581.7581177 676955.5625
+582.2589722 176633.65625
+589.2674561 72599.78125
+589.7689209 40436.53125
+598.2738037 61959.5078125
+598.7739868 51318.7890625
+599.2791748 35709.01953125
+599.7763062 75796.6171875
+606.2590332 41672.8359375
+624.2695923 58160.3828125
+625.272583 26696.703125
+657.3043213 19628.796875
+673.3235474 460696.625
+674.3269043 146564.9375
+675.3283081 29573.36328125
+693.2875366 21208.4296875
+802.362793 110773.359375
+803.366333 45681.74609375
+858.361084 20921.47265625
+873.3998413 125991.5078125
+874.4069824 68808.71875
+875.4147339 17916.09765625
+1001.466003 27679.978515625
+1058.474365 22435.86328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.322.322.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=322"
+RTINSECONDS=34.80062251
+PEPMASS=598.27001953125
+CHARGE=2+
+54.77544022 16965.630859375
+55.552948 14537.732421875
+58.13737488 20509.251953125
+61.32589722 16696.23828125
+64.52630615 76318.2265625
+64.53065491 54755.59765625
+64.58201599 58459.03515625
+64.5861969 34161.62109375
+64.63832855 27352.328125
+64.64135742 17050.890625
+74.81195831 20079.408203125
+102.7845383 17590.91015625
+108.1868362 15000.71484375
+130.3882904 17477.8203125
+145.3088531 15538.1875
+149.5724335 59424.671875
+167.0921631 29266.115234375
+169.0605621 30900.513671875
+175.1178589 348462.84375
+176.1206512 21579.75390625
+177.0760651 70009.8984375
+178.0600891 402339.78125
+178.0783844 27683.26171875
+178.3429413 104349.9140625
+179.0638733 32867.734375
+179.0910645 26894.78515625
+182.0906372 22329.421875
+183.0758667 22602.541015625
+186.0861206 130683.953125
+190.060318 19937.564453125
+194.1024323 39693.92578125
+195.0864563 4671201.5
+196.0892944 463408.15625
+200.101944 27783.099609375
+206.0910797 193172.890625
+215.0908813 26733.64453125
+218.1024933 59564.265625
+221.9685974 17899.751953125
+234.0966797 25239.703125
+239.1086884 17663.33203125
+240.0959778 23531.458984375
+243.0863342 25512.791015625
+246.0690765 35644.62890625
+246.0970459 656151.6875
+247.0999603 90515.7265625
+257.1229858 126160.1484375
+260.1127014 133225.609375
+261.1170654 19289.474609375
+270.0970764 132269.46875
+278.1495667 27490.39453125
+283.1434326 47584.63671875
+287.123291 171285.15625
+288.1074524 1641054.0
+289.110321 239627.828125
+295.1481323 36843.72265625
+299.7825317 17814.49609375
+302.1262817 18537.9453125
+303.1438599 37771.40625
+304.1299133 21487.869140625
+305.1340027 3365109.75
+306.1190491 1255580.75
+307.1210632 219308.640625
+311.1360168 52129.52734375
+312.1174316 34511.0390625
+321.1539001 378978.96875
+322.1586304 54226.0234375
+323.1445312 1195975.25
+323.1885986 39533.390625
+324.1464233 208777.078125
+325.1508789 20398.8359375
+328.1600342 18074.509765625
+329.1422119 47015.828125
+338.1427612 50598.87109375
+338.1806641 419358.1875
+338.6431885 25693.755859375
+339.1841431 89953.046875
+341.1448059 25722.123046875
+346.1703186 31151.642578125
+349.1597595 32430.421875
+359.1455383 64506.71875
+366.1860046 132306.90625
+367.1888428 32102.03125
+369.1381226 36920.41015625
+376.1705933 136853.265625
+377.1558838 103121.0546875
+386.1668396 32130.451171875
+394.1810303 822997.9375
+394.2396851 25846.115234375
+395.1824951 178576.140625
+403.8433228 16732.138671875
+412.1878967 37882.31640625
+439.3200073 20730.24609375
+452.1806946 17740.640625
+460.1917725 31877.4296875
+468.2208862 40981.93359375
+483.722229 25999.9375
+485.2473145 276963.53125
+486.2515564 63116.64453125
+488.1853943 51453.1171875
+492.2295837 167161.234375
+492.7322083 96910.578125
+493.2304688 39706.578125
+495.2256775 50430.7890625
+505.2112427 54575.84375
+506.2067871 68409.9296875
+512.2255249 80940.203125
+512.7298584 35581.0234375
+521.2404175 32454.40234375
+521.736145 29128.298828125
+523.2221069 540974.1875
+524.2252197 154926.09375
+525.2305908 38049.0703125
+529.7484741 21700.50390625
+554.2612305 25292.744140625
+567.7553101 27788.013671875
+568.2369385 22492.248046875
+571.7505493 120652.765625
+572.2749634 360144.34375
+572.7543945 35543.97265625
+573.2800293 104575.984375
+574.2870483 24839.154296875
+576.2598877 46615.23828125
+576.7592163 28911.486328125
+577.2608643 46509.421875
+577.7606201 33078.5859375
+580.2622681 97958.578125
+580.755127 2723669.75
+581.2564087 2008384.5
+581.7579956 803933.0625
+582.2592163 157011.828125
+589.2677612 124913.359375
+589.7666016 68987.984375
+598.2731934 76739.953125
+598.7741089 30186.021484375
+599.7781982 76183.6953125
+606.2550659 40280.25390625
+624.2683105 59802.94140625
+656.3085938 26098.359375
+673.3249512 480705.875
+674.3269043 193803.40625
+675.3248901 35900.75
+802.3612061 96131.390625
+803.3706665 53926.8203125
+804.3657837 19992.1953125
+873.4033203 103385.0
+874.4053955 61002.6953125
+875.4160156 20712.04296875
+943.2918091 16899.810546875
+950.9246826 19415.263671875
+1001.470093 28706.431640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.323.323.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=323"
+RTINSECONDS=34.90723648
+PEPMASS=598.27001953125
+CHARGE=2+
+54.00701141 14802.044921875
+58.52964783 13946.3828125
+59.98271561 13624.5830078125
+60.72270966 13450.7890625
+64.52626038 55784.91796875
+64.53044128 42019.16796875
+64.58203125 49619.60546875
+64.5861969 26855.06640625
+64.63831329 16806.6171875
+67.79846954 16727.83984375
+74.81169128 15200.6123046875
+113.3841095 16171.2109375
+127.8378296 11960.8955078125
+138.1798401 12799.6904296875
+149.5669556 49738.43359375
+161.0261078 13481.966796875
+167.0917206 37823.98046875
+169.0595703 31098.048828125
+175.117691 269058.59375
+176.1211395 25709.751953125
+177.0756989 62550.546875
+178.0599976 323468.90625
+178.3370209 59572.76171875
+178.3568878 31962.435546875
+179.0651855 14816.0205078125
+179.0922546 25599.90234375
+183.0759735 22817.357421875
+186.0859985 109303.53125
+190.0604553 16406.453125
+190.1070404 14959.9814453125
+194.1018372 34889.8125
+195.08638 4281969.5
+195.1279907 29088.798828125
+196.0893707 405970.0
+197.091095 22315.115234375
+200.1015167 22869.119140625
+201.0860443 21973.6640625
+206.0911255 144489.4375
+209.1013489 21359.48046875
+212.1136169 15350.1103515625
+218.1022491 51123.1875
+221.1022034 18071.9453125
+239.1111908 18090.5625
+240.0950012 24537.34765625
+244.1167145 15303.1708984375
+246.0969391 646996.0
+247.0995941 76923.9296875
+249.0950623 15353.6904296875
+251.1208649 15689.1845703125
+257.1226501 105341.3125
+258.1263428 17661.751953125
+260.1123657 107940.1640625
+261.1187439 17627.38671875
+262.1260986 17527.33984375
+270.0968018 126838.4140625
+278.1478882 19650.9921875
+283.1435852 33446.1796875
+287.1232605 161948.828125
+288.1072693 1642952.25
+289.1101379 242613.9375
+290.1122437 18853.109375
+294.1157837 20131.55859375
+295.1498413 21961.7265625
+303.1424866 31074.791015625
+305.1338501 3192560.75
+305.217041 19737.4140625
+306.1189575 1101512.25
+307.1212158 187522.265625
+308.1228638 17556.234375
+311.1354065 54256.66796875
+312.1165771 31193.220703125
+321.1539001 314830.46875
+322.1566772 70360.265625
+323.0979004 23197.583984375
+323.1443176 1150170.0
+324.1468811 199133.09375
+329.1442261 56275.30859375
+331.1509399 26974.572265625
+338.1414185 49676.203125
+338.180481 410090.375
+338.6463013 26873.4609375
+339.1836853 74337.6875
+346.1676025 16777.05859375
+347.1479187 27580.5078125
+349.1604004 38405.0390625
+351.1327515 21247.6796875
+359.1445007 52180.18359375
+366.1858826 114678.625
+367.1904602 21466.1875
+369.1386719 25865.0859375
+376.1699524 129954.421875
+377.1571655 91216.3515625
+386.1635437 32610.505859375
+394.1807251 674006.125
+395.1825867 134833.421875
+396.1871033 19710.208984375
+412.1895142 29439.537109375
+460.1876221 25731.912109375
+468.2195129 58267.39453125
+469.2148438 13812.234375
+478.2013245 18014.787109375
+485.2468262 229153.109375
+486.2492981 50393.3828125
+488.1858215 36775.41796875
+492.2293701 186255.78125
+492.7316589 95108.0546875
+493.2295227 44186.7265625
+495.2263184 56450.33984375
+496.2298889 16657.875
+505.2128601 64060.3671875
+506.208313 57216.7109375
+507.2157593 17708.939453125
+512.2255249 46907.26953125
+512.7337646 20643.689453125
+520.7437134 21875.29296875
+521.2324219 41463.7421875
+521.7344971 20241.6640625
+523.2220459 455979.21875
+524.2241211 130801.421875
+529.7434692 18252.9375
+571.75 104779.15625
+572.2737427 299945.96875
+573.2792358 79308.8203125
+576.2575073 41097.74609375
+576.7595825 31245.419921875
+580.2620239 61120.62109375
+580.7546387 2251047.0
+581.2559814 1584283.25
+581.335022 29960.03515625
+581.7577515 547251.4375
+582.2583618 147336.59375
+589.2683716 52785.30078125
+589.7610474 26630.580078125
+598.2761841 32966.9765625
+598.7770996 24832.822265625
+599.277771 27662.107421875
+599.7738647 60966.76171875
+606.2556763 38685.73828125
+607.2597046 16010.0
+624.2676392 60458.84375
+625.2711792 20721.51171875
+655.3234253 19336.896484375
+656.3062744 16185.26171875
+673.3235474 385625.625
+674.3278809 154285.390625
+675.3215332 28890.3203125
+711.296936 17823.87890625
+802.362915 94990.2421875
+803.3634033 44042.54296875
+873.4003296 115051.9453125
+874.40802 48625.42578125
+1001.481628 21981.078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.324.324.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=324"
+RTINSECONDS=35.01585839
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52633667 64251.9765625
+64.53044891 44158.19921875
+64.58201599 55581.2890625
+64.58617401 33968.7890625
+64.63815308 18206.58203125
+64.64144135 17192.22265625
+82.05461884 21698.4609375
+98.81429291 16921.349609375
+107.3092804 14868.0234375
+110.1377411 16795.720703125
+124.13414 16181.490234375
+149.5709839 57027.65234375
+158.0204315 15125.2392578125
+167.0916443 47556.67578125
+169.0595856 26629.703125
+175.1019897 30625.8984375
+175.1177521 353191.53125
+176.1215057 21258.55859375
+177.0759277 67201.671875
+178.0599365 354575.125
+178.0778503 21835.810546875
+178.3417511 107401.4296875
+179.0628967 22424.0703125
+179.0914612 28681.86328125
+183.0756378 20338.5859375
+186.0860291 126700.3359375
+191.4246521 15081.626953125
+194.1040039 31076.775390625
+195.0863953 4666287.0
+196.0892029 493465.9375
+197.0897217 36182.90625
+200.1009674 21579.939453125
+201.0843353 23435.3125
+206.0908966 159425.546875
+212.112442 31440.44921875
+215.0911255 28563.97265625
+218.1026154 68588.59375
+222.0874329 22989.44140625
+234.0984192 24844.19140625
+240.0951233 27553.53515625
+243.0860138 20087.8046875
+246.0969391 656894.5625
+247.0992737 84788.2421875
+257.122467 100988.4921875
+260.1123047 98397.78125
+261.1189575 16372.7119140625
+270.0969238 140640.625
+276.1326294 23829.923828125
+278.1485291 32569.185546875
+283.1409912 56653.24609375
+287.1234741 138759.375
+288.1073303 1659258.5
+289.110199 259282.53125
+290.1135254 22121.00390625
+294.1156921 25689.72265625
+295.1494751 36041.49609375
+303.1428223 25704.970703125
+304.1247864 20301.951171875
+305.1337891 3373052.25
+306.118988 1221271.875
+307.1213989 182390.078125
+308.1206055 22955.33203125
+311.1342163 45980.76171875
+312.1169128 48820.12109375
+321.1537781 403358.84375
+322.1560059 56947.2265625
+323.1443481 1235371.125
+323.2085876 22232.84765625
+324.1459351 194849.265625
+325.1487427 28573.63671875
+329.1443787 49876.52734375
+331.1499634 17452.98046875
+338.142334 46621.62109375
+338.1803894 470179.3125
+338.6445312 36119.83984375
+339.183075 76697.7890625
+346.1698914 17221.341796875
+347.1489258 24561.91015625
+349.1572266 21325.451171875
+359.1455688 43645.55078125
+366.1859741 135408.78125
+367.1860657 31787.013671875
+369.140625 29152.08203125
+376.1697998 106306.0078125
+377.157135 75676.796875
+386.1644592 38651.328125
+394.1806335 815355.4375
+395.1824951 152814.5625
+460.1899109 21401.875
+468.2181396 55084.25
+477.2191162 23997.072265625
+485.2470703 219090.390625
+486.2492371 69842.1640625
+488.1870728 58811.5078125
+492.2284851 193886.3125
+492.7297058 124403.9765625
+495.2251892 70380.2890625
+503.2243652 24715.763671875
+503.7211609 22564.177734375
+505.2102966 64932.78515625
+506.2038879 38540.53515625
+512.2269287 63641.703125
+512.7252197 45960.55078125
+521.2337646 34264.1328125
+523.2213135 479292.15625
+524.2243652 155753.109375
+525.2307129 47778.38671875
+554.2688599 27471.888671875
+558.7412109 26404.056640625
+567.7580566 21870.076171875
+571.7506714 77489.65625
+572.2745972 359785.21875
+572.7461548 24734.11328125
+573.2802734 97392.9765625
+576.2599487 64112.2890625
+576.7624512 35755.48828125
+577.2579346 25824.658203125
+580.2636108 88234.421875
+580.7546387 2584728.75
+581.2557983 1917870.125
+581.336792 37317.22265625
+581.757019 662042.4375
+582.2596436 117887.046875
+589.2659302 107435.25
+589.7676392 58556.48828125
+598.2741699 89071.71875
+598.7747803 38818.421875
+599.274292 27527.673828125
+599.7754517 72104.109375
+606.262085 24634.9921875
+624.269165 78959.0
+655.3076172 36418.625
+673.3227539 483518.78125
+674.3261108 179568.9375
+675.3267212 27678.84765625
+693.2921143 24951.89453125
+711.2972412 22176.32421875
+802.3637695 117861.640625
+803.3654785 44484.421875
+873.4011841 120496.7421875
+874.4101562 39168.0546875
+1001.466125 25280.205078125
+1051.469971 18002.46875
+1058.469482 22030.478515625
+1059.475952 16327.6435546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.325.325.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=325"
+RTINSECONDS=35.12260919
+PEPMASS=598.27001953125
+CHARGE=2+
+50.61550903 11066.796875
+57.66641235 9673.62109375
+63.58515167 9660.712890625
+64.52627563 51380.71484375
+64.53065491 34922.41015625
+64.58200073 30937.98046875
+64.58615875 23476.44921875
+64.63818359 17568.18359375
+64.64154053 15437.7880859375
+76.13261414 10267.5654296875
+76.28121185 11359.83984375
+82.05419159 17855.15625
+128.1766968 9311.3779296875
+129.9178467 11160.0478515625
+149.5646515 37343.0234375
+154.491745 10315.9462890625
+167.0920258 53825.85546875
+169.0600433 35675.98046875
+175.1032867 8779.107421875
+175.117981 289531.59375
+175.1308441 7172.0502929688
+175.1353302 11632.462890625
+176.1203613 26887.490234375
+177.0759735 74221.5625
+178.0601196 308626.125
+178.0778046 14132.669921875
+178.3378754 50408.88671875
+178.3567963 23565.212890625
+179.0636749 28572.779296875
+179.0918121 14087.07421875
+183.0763092 17551.98828125
+186.08638 100212.7421875
+194.1025543 43468.72265625
+195.0648041 27378.986328125
+195.0865479 3557801.75
+195.1280975 20650.046875
+196.0895844 376203.96875
+197.0922699 22026.470703125
+200.1017151 19289.35546875
+206.0912476 138389.5
+207.0933533 16223.8232421875
+212.1132507 16213.2177734375
+215.0916748 21100.90625
+218.1024933 53261.07421875
+222.0847015 16337.63671875
+240.0960999 23851.1484375
+243.08638 16814.662109375
+245.3531036 9968.12109375
+246.0971375 616829.5625
+247.0998535 72368.515625
+249.0969543 10793.716796875
+257.1229858 91754.046875
+260.1126099 96518.2578125
+261.1167297 21170.3359375
+269.1726379 9991.544921875
+270.0968628 134594.234375
+271.1016235 17259.865234375
+278.1199036 18866.224609375
+278.1499939 31034.650390625
+283.1425781 48977.85546875
+287.124115 139178.046875
+288.0774536 18734.529296875
+288.107666 1486959.75
+289.1103516 238153.6875
+290.1139832 18487.701171875
+294.1169128 17669.06640625
+295.1487732 26824.28125
+303.1435852 28370.9921875
+304.0858765 9925.681640625
+304.1274414 16361.4111328125
+305.104187 50593.3671875
+305.1342468 2912840.25
+306.1193542 994654.0625
+307.1216125 161839.390625
+311.1350708 48191.3515625
+312.1175232 32548.10546875
+318.1419983 13252.0634765625
+320.1343994 17591.001953125
+321.1545105 322473.25
+322.1567383 52897.65234375
+323.0975647 14775.9248046875
+323.1447449 1001497.125
+324.1469421 168843.3125
+325.1472778 15600.3681640625
+329.1425476 42823.14453125
+331.1496582 16956.544921875
+338.1422729 34260.4765625
+338.1809082 379169.125
+338.2257996 22748.65234375
+338.6455078 22263.28125
+339.1832275 56624.36328125
+347.1495056 20739.5
+349.1616516 16068.9052734375
+351.130127 17701.216796875
+358.1653442 22279.966796875
+359.1450195 83020.3125
+360.148407 17941.416015625
+366.1860962 108693.9453125
+367.1875916 17597.482421875
+369.1397705 25468.173828125
+376.17099 115195.46875
+377.1573486 56922.03125
+386.1636658 29341.1640625
+394.1813354 657913.1875
+394.239502 23705.8984375
+395.1830444 116443.0
+412.1852417 28834.38671875
+420.6856079 23819.779296875
+421.1881409 13699.9423828125
+452.1842957 15228.6845703125
+460.1921692 25867.837890625
+468.2203674 44677.375
+469.2220459 14313.919921875
+478.2037354 14182.61328125
+485.2478027 196495.25
+486.2509766 64208.83984375
+488.1862793 43426.32421875
+492.2299194 163857.78125
+492.7315979 87997.671875
+493.2300415 23499.111328125
+495.2276917 57719.0234375
+503.7172852 24536.94140625
+505.2120667 61219.45703125
+506.2058411 45445.65234375
+512.2264404 36614.390625
+512.7271118 17919.013671875
+521.2312622 17435.361328125
+523.2227783 362767.65625
+524.2245483 106764.8046875
+525.2347412 25943.0390625
+530.237915 11603.0234375
+555.256897 17167.232421875
+558.7407837 23193.81640625
+567.2556763 16585.07421875
+571.7507935 83604.8359375
+572.2755127 275103.25
+572.75177 20863.44140625
+573.2817383 83192.8671875
+574.2835693 21409.9296875
+575.2706909 15509.5068359375
+576.2626343 41275.70703125
+576.7625122 29056.068359375
+577.2625732 19032.087890625
+580.2623291 57317.5234375
+580.7559814 1937037.5
+581.2571411 1309378.625
+581.6743164 10306.2041015625
+581.758667 457349.5
+581.8636475 16625.21484375
+582.2587891 92099.84375
+598.2736206 62830.48046875
+598.7751465 38382.05078125
+599.2772217 58127.7890625
+599.7779541 89073.5703125
+606.2564087 34999.8359375
+624.2675171 44693.80859375
+625.2750854 23081.908203125
+655.3126221 13808.1572265625
+673.3250732 379410.28125
+674.3291016 135324.265625
+675.331543 30129.75390625
+693.2874756 15632.4208984375
+711.2926636 15903.533203125
+802.3674316 81306.2265625
+803.3676758 29758.01171875
+873.4024048 62522.5390625
+874.4020996 36996.81640625
+1001.442566 14950.1279296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.326.326.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=326"
+RTINSECONDS=35.23650582
+PEPMASS=598.27001953125
+CHARGE=2+
+51.52621841 20278.66796875
+58.13425827 25471.515625
+64.5263443 89642.265625
+64.53054047 54955.3203125
+64.58195496 59351.54296875
+64.58625793 42893.3515625
+64.63806915 22546.529296875
+74.81217194 23433.3125
+78.81928253 23343.169921875
+103.429863 24834.64453125
+131.123642 20113.44140625
+149.5715485 88967.5
+167.092453 44756.7578125
+175.1179352 329162.46875
+176.1204071 25050.623046875
+177.0757904 63692.9765625
+178.059967 385465.1875
+178.3363495 87562.046875
+178.355072 41945.8671875
+178.6574707 21854.287109375
+186.0860596 86523.1953125
+194.1025238 55211.74609375
+195.0864105 5246644.5
+196.0892334 503556.40625
+200.1016083 28659.712890625
+206.0912476 203580.0
+218.1032715 50922.703125
+222.0853729 30436.185546875
+246.0969086 736504.1875
+247.0997009 96849.4375
+249.0996704 27765.408203125
+257.1224365 105501.71875
+260.1123047 127195.828125
+270.0965881 157099.546875
+283.1425781 46428.50390625
+287.1235046 163215.84375
+288.1073914 1714768.5
+289.1103821 270832.46875
+290.1106873 28753.923828125
+303.1422119 53709.42578125
+304.1305237 25562.5390625
+305.1339111 3721751.75
+306.118988 1433621.875
+307.1210327 213516.484375
+311.1329651 76961.125
+312.117218 49084.0859375
+321.1537476 371098.1875
+322.1559143 100864.9375
+323.1443787 1396500.875
+323.1879272 54465.359375
+324.1462402 227114.078125
+329.1442261 59532.26953125
+338.1428223 57307.5234375
+338.1804504 465008.625
+339.1817932 83654.09375
+347.1478882 32845.28125
+359.1443176 49111.8203125
+366.1858215 152734.21875
+369.1384583 34027.73046875
+376.1700134 139257.03125
+377.1569824 97404.8046875
+394.1205139 24630.548828125
+394.1808167 880682.3125
+395.182312 159464.96875
+396.1797485 26022.060546875
+412.1841125 25966.1015625
+420.6789246 37574.27734375
+460.1885376 31419.60546875
+468.2216797 59763.80078125
+483.7182617 28344.12890625
+485.2468262 239705.03125
+486.249115 78390.6875
+488.1853333 40687.421875
+492.228363 196872.9375
+492.7311401 124678.171875
+493.227356 60759.8125
+495.2263794 69103.4921875
+503.2166138 35220.96875
+505.2133789 69675.9609375
+506.2081604 67440.5
+512.225647 34424.81640625
+512.7272339 45416.8046875
+520.7418213 29953.525390625
+521.2340698 69599.4921875
+521.7365723 34680.0234375
+523.2219849 662508.75
+524.2236328 173473.046875
+525.2367554 40823.3046875
+558.7382812 28083.3046875
+567.2597656 36510.8671875
+567.7527466 30670.46484375
+571.7492065 112705.6796875
+572.2750244 427624.6875
+573.2821655 131123.390625
+576.2603149 36959.9296875
+577.2626343 35726.28515625
+580.2626953 94913.765625
+580.7547607 3250283.25
+581.2559204 2223215.0
+581.7574463 759150.875
+582.2585449 193074.3125
+589.2676392 405274.09375
+589.7667847 235873.9375
+590.265564 57568.3671875
+598.2728271 80228.7265625
+598.7740479 84453.7734375
+599.7752686 30197.626953125
+624.2692871 73734.4921875
+673.3237915 498326.34375
+674.3270874 199081.046875
+675.3288574 43064.69140625
+802.3631592 144534.359375
+803.3693848 47861.9609375
+873.3994751 120179.3984375
+874.4042358 55761.75390625
+1001.459351 47491.23046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.327.327.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=327"
+RTINSECONDS=35.33983981
+PEPMASS=598.27001953125
+CHARGE=2+
+55.89608383 12715.875
+58.6099472 13164.12890625
+61.12091827 14496.876953125
+64.52626801 59405.0546875
+64.53050995 35927.71875
+64.58201599 39429.12890625
+64.58621979 32247.73828125
+64.63817596 16265.875
+64.64138794 15785.978515625
+82.05428314 14468.4736328125
+85.59079742 12911.0693359375
+89.29222107 13309.064453125
+108.8667221 14525.4765625
+118.4012985 13627.9697265625
+119.9614944 13164.3203125
+120.6695251 13681.14453125
+149.5732117 48626.95703125
+156.4121704 13232.5673828125
+167.0916901 35832.20703125
+169.0592651 35617.0078125
+175.1020355 12184.5302734375
+175.1178131 313036.125
+176.1212158 13945.681640625
+177.0758514 64512.37890625
+178.0600433 343797.34375
+178.0996857 13268.2802734375
+178.3450012 101969.359375
+179.0638428 31093.765625
+179.0916443 20066.421875
+182.0910797 17776.7578125
+183.075058 31903.521484375
+186.0862122 108734.9765625
+194.1020355 38616.2734375
+195.08638 4256586.0
+196.0894012 409068.9375
+197.0904236 37196.1640625
+200.1013947 21823.806640625
+201.0849457 18567.333984375
+206.0910339 142638.671875
+207.0925751 16997.9296875
+215.091095 21947.501953125
+217.1300354 16144.322265625
+218.1025696 48730.54296875
+222.085556 15594.421875
+233.1281738 14723.826171875
+234.0973816 18030.642578125
+239.1127625 13990.806640625
+240.0955505 32211.19921875
+243.0873108 16115.7666015625
+244.1152649 17610.87109375
+246.0968628 658342.1875
+246.1208191 10256.6396484375
+247.1000214 75330.0390625
+257.1225891 109390.0078125
+260.1121826 125777.6640625
+267.1091003 21951.77734375
+270.0969849 134367.28125
+271.1029968 17880.712890625
+278.1490784 28716.4296875
+283.1431885 38260.2109375
+287.1229858 158976.515625
+288.1072693 1654100.125
+289.1102295 223153.390625
+290.1123352 18867.451171875
+294.1174011 26369.11328125
+295.1502686 32438.14453125
+302.1205139 13195.52734375
+303.1435547 30808.587890625
+304.1255798 14436.908203125
+305.133728 3168592.0
+306.118927 1205998.625
+307.1213684 212916.59375
+308.1233826 18221.265625
+311.1339417 51571.34375
+312.116394 42507.08203125
+321.1536255 346477.53125
+322.156189 60550.171875
+323.0989685 27405.53515625
+323.1442871 1183302.875
+324.1466064 186459.53125
+329.1426697 53541.6953125
+331.1488342 22180.380859375
+338.1426086 59059.31640625
+338.1802368 402468.34375
+338.6461792 26668.416015625
+339.1828308 74645.9140625
+341.1412048 20202.57421875
+346.1734009 22728.146484375
+349.1599731 26064.46875
+358.1657104 16097.3828125
+359.1442261 75071.8984375
+366.1862488 144512.09375
+367.1877747 25475.900390625
+369.1375122 35581.84375
+376.1697998 127629.7578125
+377.1552429 68607.359375
+378.1606445 16517.82421875
+386.1630859 22954.400390625
+394.1806335 781574.0625
+394.2405396 28382.65234375
+395.1820374 156785.375
+396.1808777 18748.79296875
+412.1871338 24456.447265625
+423.1620789 14549.07421875
+460.1898499 23908.1796875
+468.2218933 45770.40625
+469.2146301 18391.7578125
+478.199585 15585.4482421875
+485.2466125 233758.03125
+486.2491455 53668.8984375
+488.1875916 46629.234375
+492.2284546 206352.1875
+492.7301636 91787.2265625
+493.22995 27970.896484375
+495.2272949 42779.125
+496.2305908 16622.310546875
+505.2118225 57100.33984375
+506.2051392 46669.07421875
+507.2023621 18390.603515625
+512.2266235 45298.48828125
+512.7301025 18043.892578125
+521.2351074 30852.568359375
+521.7352295 26336.822265625
+523.2210693 411143.40625
+524.223999 130999.046875
+525.2208862 16479.978515625
+529.7440186 17771.693359375
+558.7492676 24329.291015625
+571.7510986 92386.9453125
+572.2750244 304055.65625
+572.7477417 19817.8046875
+573.2790527 109082.03125
+574.2833862 19075.736328125
+576.2588501 72233.8984375
+577.2623901 22650.328125
+580.260498 94289.4609375
+580.7542725 2218397.25
+581.2555542 1440162.125
+581.7567139 559541.0625
+582.2570801 105488.0
+589.2615356 37431.44140625
+589.7669067 18569.69921875
+598.2756348 51416.578125
+598.7740479 25861.111328125
+599.2748413 28300.029296875
+599.7763672 62186.7265625
+606.2581177 21799.806640625
+624.265564 63305.69140625
+625.2699585 24000.23046875
+673.3224487 386541.09375
+674.3261719 150323.796875
+675.322998 23575.365234375
+711.2977905 22813.8828125
+802.3610229 90286.7421875
+803.3646851 36965.9453125
+873.3966675 86768.7734375
+874.4060669 44800.6015625
+1001.459778 21222.19140625
+1002.471191 17849.134765625
+1071.650513 15623.765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.328.328.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=328"
+RTINSECONDS=35.44885309
+PEPMASS=598.27001953125
+CHARGE=2+
+54.51516724 9195.013671875
+58.13435745 9640.3154296875
+64.52619171 42440.4140625
+64.53060913 34230.02734375
+64.58198547 33150.8515625
+64.58615112 20368.392578125
+64.63814545 9533.4697265625
+64.64155579 13622.8349609375
+74.81207275 12412.4072265625
+76.28527832 9478.5078125
+76.70912933 8916.8154296875
+82.05426025 21810.0390625
+106.9778061 9723.9560546875
+149.5764313 20921.15625
+167.0916443 54118.98828125
+167.1057587 11028.3837890625
+169.0597534 29200.5
+175.1178131 267335.4375
+176.1214752 13659.595703125
+177.0756378 79524.6796875
+178.0600128 340720.21875
+178.0781097 18614.634765625
+178.3350677 29427.986328125
+178.3542633 31457.552734375
+179.0636597 20770.7890625
+179.0916595 13821.8955078125
+182.0910492 26042.55859375
+183.0749664 22282.41015625
+186.0859985 92901.9375
+190.0608521 11936.23046875
+194.1030426 27899.32421875
+195.0863647 3415334.5
+195.1277771 27648.404296875
+196.0894623 378443.6875
+197.0913849 21140.021484375
+200.102066 26994.46484375
+201.0861511 20204.970703125
+206.0911102 152972.203125
+207.0935974 18515.787109375
+209.1036377 12807.69140625
+212.1128387 14220.984375
+215.0916595 14781.263671875
+218.1024628 61451.08984375
+221.1014862 13834.1201171875
+222.0856781 14584.984375
+232.1174011 11640.998046875
+234.0970306 21435.93359375
+239.111969 16131.876953125
+240.0960541 26144.099609375
+243.0861511 21979.08203125
+246.0969696 614378.6875
+247.0993195 56407.734375
+249.0962067 14539.6083984375
+257.1227112 96875.5
+258.1231079 17774.18359375
+260.1126099 109792.1796875
+266.1237488 12201.9853515625
+270.0967102 119107.8359375
+271.0986328 12731.7255859375
+277.1381531 11902.326171875
+278.1167297 15888.064453125
+278.1486206 29089.78125
+283.1425781 53182.8125
+287.1234436 136508.53125
+288.1074219 1563887.625
+289.1102295 209606.71875
+290.1135559 18471.2109375
+294.1175232 20596.6953125
+295.1490479 24568.9765625
+302.1289062 13320.375
+303.1427612 34494.421875
+304.1282959 13738.3525390625
+305.1339417 2771779.5
+305.2137146 18208.71484375
+306.1191406 1035732.875
+307.1213989 182519.625
+308.1212769 16246.705078125
+311.1344299 40652.90625
+312.1171875 36497.27734375
+318.1429138 11522.337890625
+321.1539307 329408.6875
+322.1563721 51743.10546875
+323.1444702 1009401.0625
+324.1469116 155346.203125
+325.1499023 17158.9765625
+329.144043 32654.18359375
+331.1523438 19836.701171875
+338.1426697 45780.1171875
+338.1806335 358637.09375
+338.6459656 18959.8984375
+339.1447449 11111.0380859375
+339.1830139 73456.0078125
+347.1488037 16144.2822265625
+349.1587219 25264.052734375
+351.131958 10750.5048828125
+358.1602783 11370.35546875
+359.1453857 66957.9609375
+366.1863708 108109.0078125
+367.1882935 28268.8125
+369.1409912 18639.779296875
+376.1704102 97276.8671875
+377.1568909 70566.8125
+386.1639099 23421.421875
+394.1809082 606633.75
+394.2400513 24655.234375
+395.1818848 123606.6015625
+396.1877441 17584.765625
+406.1802368 10877.9482421875
+412.1872864 30346.56640625
+413.1629333 13921.884765625
+420.6805725 13880.4189453125
+421.1844177 13182.533203125
+460.1896667 22280.361328125
+461.1784363 12959.8056640625
+468.2243958 54048.70703125
+483.7172546 15031.6337890625
+485.2473755 175376.5625
+486.2505798 45667.77734375
+488.1854858 48764.31640625
+492.229248 149089.765625
+492.730835 80434.65625
+493.2281799 29508.4296875
+495.2269897 49796.62109375
+496.227417 13088.2578125
+503.2217712 11174.828125
+503.7175293 19417.6640625
+505.2135315 51845.203125
+506.2033997 38381.7578125
+506.729248 12001.0966796875
+512.2261353 37069.36328125
+512.727356 14453.673828125
+521.2336426 31657.38671875
+523.22229 380779.53125
+524.2247314 104375.84375
+525.2286987 31443.271484375
+529.7460327 14531.689453125
+555.2593384 11584.3056640625
+558.7494507 28211.259765625
+559.2382812 14805.728515625
+571.7501831 64162.10546875
+572.2741699 279751.125
+572.7514038 30475.41015625
+573.2819214 67476.1484375
+576.2642212 29092.0625
+577.2609253 15355.109375
+580.2598877 43149.91015625
+580.755188 1691672.375
+581.2562866 1167355.375
+581.7578735 387519.25
+582.2578735 81109.2265625
+589.2628784 16229.3779296875
+598.2768555 40189.72265625
+598.7717896 30016.58203125
+599.276123 70202.453125
+599.7769165 71842.40625
+606.2549438 30132.33984375
+607.24646 21631.3203125
+624.267334 46701.65234375
+673.3243408 319047.40625
+674.3289795 112178.25
+675.3308716 18311.27734375
+711.2994995 13114.55078125
+802.364563 88855.8828125
+803.3639526 36840.19921875
+873.4053955 79862.0625
+874.4053955 30593.228515625
+1002.458923 15761.45703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.329.329.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=329"
+RTINSECONDS=35.56387637
+PEPMASS=598.27001953125
+CHARGE=2+
+64.5263443 85270.4375
+64.53048706 53584.2265625
+64.58224487 42570.06640625
+64.5861969 46775.36328125
+82.19721985 25666.689453125
+93.78749847 25049.03515625
+94.56993103 22519.705078125
+149.5721436 92783.953125
+167.0916595 49157.55859375
+167.1438751 26491.1328125
+169.0601349 40487.1328125
+175.1179504 313567.28125
+176.1210785 25779.931640625
+177.0762634 56234.3203125
+178.0600891 379363.78125
+178.3423462 156014.34375
+182.0914764 25173.681640625
+183.0749969 33228.84765625
+186.0856323 137906.109375
+195.0864868 5233069.5
+196.0893555 520492.375
+197.0903931 29940.177734375
+200.102356 23643.6015625
+206.0914001 164504.453125
+218.1017303 38885.7890625
+243.0852966 28818.625
+244.1209564 37929.51953125
+246.0970001 675010.9375
+247.0999451 99659.9765625
+257.1226196 117114.046875
+260.1130676 95822.7421875
+270.0968018 119186.3984375
+283.1420898 53808.08203125
+287.1234741 168247.6875
+288.0779419 23924.912109375
+288.1075745 1764858.375
+289.1101379 263388.65625
+294.1170044 31048.345703125
+295.151001 42191.97265625
+303.1424561 37243.1328125
+305.0923767 62548.7890625
+305.1340942 3762599.5
+306.1192932 1303063.875
+307.121521 255604.125
+311.1363525 56287.67578125
+312.1189575 31107.09375
+321.1540833 374249.78125
+322.1587524 81950.453125
+323.1445923 1301651.0
+324.1465454 224783.328125
+329.1429749 60459.484375
+338.1418152 48478.6015625
+338.1807556 515277.96875
+338.6481323 39083.546875
+339.1836243 93055.1796875
+359.1436768 51921.21875
+366.1860962 164542.703125
+367.1886597 36924.828125
+369.1366577 33960.19921875
+376.170105 143109.578125
+377.156311 112972.734375
+378.4781494 27173.01171875
+386.1642761 45190.76953125
+394.1810913 858913.9375
+395.1832886 129102.34375
+396.1885071 35135.73828125
+412.187439 40735.87890625
+413.1705627 25973.44921875
+420.6858215 30305.0625
+468.222229 55607.43359375
+485.2477112 227336.703125
+486.2502136 60408.203125
+488.1864319 56383.3828125
+492.2296448 196979.703125
+492.73172 140007.796875
+495.2309875 55026.796875
+501.2411499 25633.263671875
+505.2114563 83786.03125
+506.2043457 63251.8828125
+512.2287598 47580.19921875
+521.2321777 47861.40234375
+523.2225342 588026.125
+524.2250366 142114.9375
+525.2283325 41922.4765625
+571.7505493 128176.0546875
+572.2755737 345629.84375
+572.7522583 38599.6875
+573.2774048 108044.6875
+576.2590332 97833.46875
+576.7573853 39979.75
+577.2648926 41478.19140625
+580.2627563 112085.3984375
+580.7554932 2953032.25
+581.2564697 2050203.5
+581.7584229 741190.375
+582.2587891 179829.140625
+589.2675171 299374.625
+589.7669678 258831.484375
+590.2651978 77023.203125
+598.272522 79560.5
+598.7729492 68698.8671875
+606.2579956 35420.0546875
+624.2749023 56884.10546875
+655.3197021 32690.01171875
+673.3243408 469304.71875
+674.3290405 186686.34375
+675.3251343 30784.578125
+783.4389038 28767.94921875
+802.3616333 125202.15625
+803.3572388 35024.328125
+873.4038086 170020.109375
+874.4041748 43618.82421875
+1001.45813 45838.75390625
+1002.463562 34928.0
+1058.469116 35905.765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.330.330.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=330"
+RTINSECONDS=35.66695318
+PEPMASS=598.27001953125
+CHARGE=2+
+63.5069313 17879.736328125
+64.52626038 67242.171875
+64.53047943 48633.9453125
+64.58229828 45066.9453125
+64.58628082 28053.685546875
+64.64144897 17122.826171875
+65.11534882 16846.189453125
+78.19589233 18740.90234375
+79.91364288 15818.9609375
+86.32840729 17633.74609375
+100.271492 15417.28515625
+149.5716095 69358.265625
+167.0924835 29687.41796875
+169.0592957 36959.89453125
+170.9289856 18742.205078125
+175.1022491 25252.533203125
+175.1180115 310572.03125
+176.1215363 18900.7578125
+177.0760803 79775.953125
+178.0437469 26283.4453125
+178.0601501 352611.15625
+178.078125 30398.62109375
+178.3490601 103351.6171875
+179.0628967 29720.89453125
+179.091507 18849.408203125
+183.0754395 25200.123046875
+186.0863342 107047.265625
+194.1027374 48256.30078125
+195.0865631 4674889.5
+196.0895081 433857.15625
+197.0909119 31079.171875
+200.1014404 18283.224609375
+206.0914459 155169.109375
+207.0937958 31650.451171875
+212.1130066 19972.392578125
+215.0931702 21367.599609375
+218.1019745 51676.7578125
+222.0858002 25932.28515625
+234.0990295 25124.10546875
+240.096756 36064.828125
+243.0867767 40090.640625
+246.0971832 683436.4375
+247.1004333 86374.09375
+249.0952454 19402.17578125
+257.1226807 144532.265625
+260.1130371 136655.78125
+261.118103 25259.298828125
+270.0970154 134989.34375
+271.1020813 23716.333984375
+278.1488342 28674.22265625
+283.1429749 57810.40234375
+287.1238098 162284.3125
+288.0777588 28010.71484375
+288.1076965 1837721.875
+289.1106262 319275.3125
+290.1107483 29278.421875
+295.1517334 17740.326171875
+303.1431885 41229.8203125
+305.1342468 3527608.5
+306.1193848 1251164.875
+307.1220093 202149.84375
+311.1347351 52108.484375
+312.1183167 53444.60546875
+321.1543274 341897.25
+322.1559753 68978.5
+323.1448059 1227206.0
+324.1466675 182493.96875
+325.146698 24127.4296875
+329.1438293 73580.3671875
+338.142334 43751.23828125
+338.1810608 406379.375
+339.1833191 82379.859375
+347.149353 27741.787109375
+349.1582947 30135.85546875
+351.129425 22992.970703125
+359.1454468 66716.3515625
+366.1870117 126751.0078125
+368.1451721 18825.748046875
+369.1370544 33754.015625
+376.170929 102520.9609375
+377.1578979 88452.125
+386.1652527 35499.78125
+394.181366 838074.75
+394.2398376 31201.248046875
+395.1827698 159103.9375
+412.1889648 38208.44921875
+420.6818542 25558.017578125
+452.1766968 20440.55078125
+468.2205811 61282.06640625
+478.203064 28571.84765625
+485.24823 211293.1875
+486.2502747 64001.28515625
+488.1875916 50277.34765625
+492.2295837 157412.171875
+492.7304688 77787.1015625
+493.2412109 18426.798828125
+495.2260437 47971.25
+505.2133789 87685.921875
+506.2071838 63349.9453125
+512.2286377 35488.015625
+512.7289429 33864.49609375
+521.2313232 29635.712890625
+523.2229004 513877.8125
+524.2246094 147483.53125
+571.7508545 68341.125
+572.2754517 330715.65625
+572.7592163 35042.9609375
+573.2821655 98734.984375
+576.2600098 61784.984375
+576.7645264 26113.32421875
+580.2635498 79880.0234375
+580.7559204 2638578.5
+581.257019 1870544.625
+581.6798096 13597.9150390625
+581.7588501 708263.9375
+582.2590942 127959.2734375
+589.2674561 118085.375
+589.7681274 77449.125
+598.2731934 71236.1171875
+598.7749023 42436.77734375
+599.777771 64828.484375
+606.2589111 24395.04296875
+624.2687988 69561.34375
+673.3254395 476512.71875
+674.3292847 178307.921875
+675.3341675 31071.70703125
+802.3639526 111904.9296875
+803.3709717 37982.6640625
+847.6506958 17623.013671875
+873.4033813 108894.484375
+874.4018555 56063.05859375
+1001.447449 29479.578125
+1002.462219 20781.38671875
+1058.499756 25690.388671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.331.331.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=331"
+RTINSECONDS=35.77320768
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13457108 18417.814453125
+62.17864227 12833.1298828125
+64.52633667 75321.5859375
+64.53052521 44701.1640625
+64.58202362 56835.1328125
+64.58618927 35100.79296875
+64.638237 24571.982421875
+64.64154816 18866.193359375
+74.81615448 15535.8505859375
+84.36831665 13722.1416015625
+93.15705109 15275.76171875
+136.3848877 15537.2958984375
+138.9454193 13658.1064453125
+144.0200348 14614.451171875
+147.4516602 15350.470703125
+149.562027 28416.310546875
+149.5741882 48564.96484375
+164.80896 16647.544921875
+167.0914459 47680.5859375
+169.0597229 36458.48828125
+170.446579 14750.494140625
+175.117981 339592.53125
+177.0758514 63766.2421875
+178.0600891 355480.9375
+178.0779724 15633.66796875
+178.3414154 91796.7734375
+179.0626678 22351.2109375
+179.0914154 29432.509765625
+182.0923767 18937.498046875
+183.0752106 24059.287109375
+186.0863647 145962.953125
+194.1025391 34808.91796875
+195.0864868 4488811.5
+195.128067 21490.806640625
+196.0893555 436122.15625
+197.0915833 32326.53125
+200.1022186 30505.361328125
+201.0852051 17551.240234375
+206.0910797 167918.921875
+218.1018524 72092.8984375
+239.1114655 27333.927734375
+240.0960999 33756.03515625
+243.0863495 20922.345703125
+246.0743561 12670.142578125
+246.0970154 617004.0625
+247.0992584 63418.55078125
+257.1231995 96222.4453125
+260.1126099 115419.5234375
+270.0967712 133996.296875
+276.1347351 18762.65625
+278.1486816 34030.28515625
+283.1430359 52937.671875
+287.1237183 165784.140625
+288.1075439 1644972.5
+289.1104126 245056.609375
+290.1123047 24129.0703125
+294.1164246 27984.03125
+295.1498718 21956.318359375
+303.1427917 36782.37109375
+305.1341248 3318793.25
+306.1193848 1218898.25
+307.1217651 208368.71875
+308.1215515 29418.171875
+311.1356201 49972.2421875
+312.1176758 33701.5
+321.1542053 367867.40625
+322.1560669 66249.59375
+323.1445312 1148520.875
+324.1463623 191290.734375
+325.1499023 25729.755859375
+329.1430664 40520.515625
+334.1052856 16275.4697265625
+338.1433716 47413.52734375
+338.1807556 454725.78125
+338.6434631 19907.658203125
+339.1837158 74164.578125
+347.1447754 20525.462890625
+349.1604309 17118.029296875
+359.1455688 74830.3671875
+366.1872864 127452.6328125
+367.1886902 23711.958984375
+369.1394653 32877.71484375
+376.1697083 134248.34375
+377.1560059 77297.0703125
+378.1635742 19804.56640625
+386.1653442 36408.421875
+394.1811829 739234.375
+395.1833191 160851.328125
+412.1885071 35514.16015625
+460.190918 23488.001953125
+468.2191772 44274.10546875
+483.7185364 17311.669921875
+485.2474365 220531.390625
+486.2501221 56787.13671875
+488.1864014 50211.140625
+492.2296448 174800.421875
+492.7303467 80898.7421875
+493.2305908 23749.666015625
+495.2278137 44052.89453125
+503.7166138 16956.46484375
+505.2135925 65515.93359375
+506.2072144 60436.58984375
+506.730072 21365.224609375
+512.2241821 51988.18359375
+512.7296143 23941.28515625
+521.2336426 50731.890625
+523.1338501 29723.19140625
+523.2224121 503433.46875
+524.2258911 131564.828125
+525.2329102 23319.056640625
+541.2280273 21058.19921875
+554.2672119 20515.439453125
+558.7446289 29251.66796875
+567.2546387 24388.6953125
+571.7509766 69892.8359375
+572.2753906 364784.25
+572.7590942 24420.939453125
+573.2808228 95582.453125
+576.2611694 68349.5
+576.7661743 32998.90234375
+577.2642212 24522.84765625
+580.2623901 111887.1953125
+580.7554932 2805868.25
+581.2566528 1854736.125
+581.7585449 638960.25
+581.8641968 23533.908203125
+582.258606 166690.34375
+589.2667236 72668.578125
+589.770813 39843.453125
+598.276001 60796.31640625
+598.7735596 27785.783203125
+599.2781372 32961.01171875
+599.7778931 94663.140625
+606.2598267 30891.013671875
+624.2682495 46636.00390625
+625.2799072 22884.552734375
+655.3155518 25649.490234375
+673.199585 24650.29296875
+673.3248901 390201.0625
+674.3277588 207998.328125
+675.3256836 27881.54296875
+693.2849731 20356.52734375
+711.2950439 20970.22265625
+802.3649292 105473.0546875
+803.3672485 41001.30859375
+873.4005127 115046.5703125
+874.4047241 56289.703125
+875.4143677 21080.80078125
+1251.155762 16201.71484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.332.332.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=332"
+RTINSECONDS=35.88070846
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436127 4066.1062011719
+58.13726807 2879.5837402344
+61.82252502 2082.4343261719
+63.58517456 2439.5798339844
+64.52633667 6738.4125976563
+64.53052521 4461.259765625
+64.58223724 4656.06640625
+64.58615875 3780.3728027344
+64.63830566 2373.3820800781
+65.13066864 1772.5534667969
+74.81198883 2691.2163085938
+76.28115845 2099.8522949219
+82.04977417 2502.7209472656
+82.05446625 4424.587890625
+103.8041916 2265.1958007813
+112.536171 2249.1320800781
+146.6439819 2076.158203125
+149.5750427 4423.96875
+167.0921478 16497.830078125
+169.059845 8908.9638671875
+175.118103 84678.3671875
+175.1357269 2781.5632324219
+176.1219788 5383.5668945313
+177.0761566 25315.33984375
+178.0601959 104425.515625
+178.0776062 2733.966796875
+178.346405 13643.5068359375
+179.0633698 8617.564453125
+179.0921936 6479.41015625
+182.0919189 6607.7822265625
+183.0749969 6329.6689453125
+186.0864105 28214.13671875
+190.0602722 3694.7761230469
+190.108429 3822.9362792969
+194.1025238 14331.490234375
+195.0866241 887795.625
+195.1279449 5054.2578125
+196.0894623 106604.984375
+197.091156 8415.84375
+199.1178894 2980.9052734375
+200.1017609 6599.7861328125
+201.085144 6113.2353515625
+201.1047974 2100.4938964844
+206.0914154 57153.359375
+207.093399 6276.232421875
+207.1131287 3083.8312988281
+209.078598 3060.1401367188
+209.1011658 2707.1079101563
+212.1141968 3177.5241699219
+213.0858307 2476.7841796875
+215.0921326 5275.5908203125
+218.1024933 16520.623046875
+219.1069794 2826.28125
+221.1030731 2919.87109375
+222.085495 2687.8664550781
+228.0888367 2355.9133300781
+233.1271057 4032.1850585938
+234.0984497 2724.8835449219
+239.1086273 2457.6264648438
+240.0963745 8709.6591796875
+243.0871429 6972.5498046875
+244.1184235 4712.9897460938
+246.0972595 220878.984375
+247.0996246 23051.044921875
+248.112442 3750.2136230469
+249.0963898 6524.5434570313
+257.1229858 24781.4296875
+258.1246033 4269.7934570313
+260.1128235 36589.51171875
+260.1420898 2272.0915527344
+261.1169434 6318.3603515625
+262.128479 3204.732421875
+267.1079102 2454.0710449219
+270.0973206 40916.21875
+271.1022339 3849.0061035156
+276.1348267 3819.4919433594
+277.1381836 4048.2053222656
+278.1217651 4427.5009765625
+278.1488647 8137.2094726563
+283.1435547 19242.80078125
+284.1210327 3870.9057617188
+287.1238403 47290.9765625
+288.1077271 528717.25
+289.1105347 83358.4765625
+290.1126099 8437.921875
+294.118927 4780.6977539063
+295.1513977 3421.1704101563
+297.1212158 1882.8171386719
+302.1300659 2246.4587402344
+303.1429443 8906.552734375
+304.1289978 3980.6467285156
+305.1343079 791114.3125
+306.1194458 297805.875
+307.1217346 50329.75
+308.1213684 4892.07421875
+311.1349182 16008.810546875
+312.118042 8621.2373046875
+318.1429749 5598.1103515625
+320.1359253 2859.2395019531
+321.1545105 99325.7421875
+322.1563416 17593.525390625
+323.0983276 4175.53125
+323.1448364 274175.0
+324.1466675 40965.6171875
+325.1505127 4759.7099609375
+328.1619568 3073.4877929688
+329.1446838 11925.0185546875
+331.1482544 6468.4013671875
+338.1425781 11856.5634765625
+338.1810303 96575.765625
+338.6426392 4793.8125
+339.1427002 3180.7631835938
+339.1836548 18113.705078125
+341.147583 4130.20703125
+346.1711731 3750.1496582031
+347.1499329 6000.2612304688
+347.651947 2635.3947753906
+348.1680298 2761.5026855469
+349.1586304 5748.9555664063
+351.1334534 4604.0498046875
+358.1645203 5797.4482421875
+359.1451111 29915.751953125
+360.1464233 4163.3569335938
+366.1867676 29696.787109375
+367.1889343 4009.0144042969
+369.1390991 5769.0400390625
+375.1353149 2217.4658203125
+376.1708679 30773.390625
+377.1560059 19260.81640625
+378.1602783 2466.0727539063
+386.1651917 5528.1357421875
+389.1567688 3571.8142089844
+394.1203613 2255.0510253906
+394.181366 149491.9375
+395.1832581 32696.328125
+396.1891479 3120.6999511719
+397.6817017 2784.1203613281
+398.1738892 2448.3295898438
+412.1873779 8815.52734375
+420.6812134 3046.1037597656
+423.1582947 3592.3342285156
+450.2058105 2818.595703125
+460.1912842 12018.701171875
+461.1980896 3123.0017089844
+468.2220459 16663.345703125
+469.2239075 4258.525390625
+477.2163696 5078.1596679688
+478.203186 4605.2670898438
+483.7196655 4838.560546875
+484.2211609 5208.75390625
+485.2480164 55288.265625
+486.2507019 19263.84375
+488.1863403 18417.912109375
+489.1892395 3645.4020996094
+492.2297363 39247.17578125
+492.7300415 21190.01171875
+493.2324829 9255.974609375
+494.7080994 3397.669921875
+495.2276611 15362.330078125
+496.230957 4099.0625
+503.2239075 2509.79296875
+503.7161255 6365.4467773438
+505.2131348 14231.783203125
+506.2028198 9110.662109375
+512.2261963 7486.1030273438
+512.7299194 8042.1293945313
+521.2340088 3704.6630859375
+523.1342163 4667.623046875
+523.2230835 94730.7890625
+524.2258301 28287.81640625
+525.2300415 5955.5634765625
+554.2736816 3515.8857421875
+555.2543335 3285.6643066406
+558.7427979 6268.3637695313
+559.2507324 3215.1459960938
+571.2185669 2533.5153808594
+571.7511597 16917.86328125
+572.2757568 80206.390625
+572.7512207 4946.837890625
+573.2811279 26858.05078125
+574.2846069 3306.3701171875
+576.2585449 3401.5400390625
+580.2647705 6504.0478515625
+580.7555542 275614.40625
+581.2568359 201710.65625
+581.7584839 78693.125
+582.2582397 15320.984375
+589.2677002 13562.228515625
+589.7685547 13024.345703125
+598.2730713 9825.638671875
+598.7763672 10533.40625
+599.2763062 21175.99609375
+599.7773438 16769.1484375
+606.2572632 9297.384765625
+607.2542114 3937.6936035156
+624.2706299 11668.5146484375
+625.2682495 3307.2951660156
+655.3152466 4907.0634765625
+673.3248901 83719.9296875
+674.3276978 29683.86328125
+675.3261719 6134.6704101563
+693.2902832 3655.6520996094
+802.364502 12176.1181640625
+803.3648071 6901.3662109375
+873.397522 11798.8203125
+874.3998413 4515.9609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.333.333.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=333"
+RTINSECONDS=36.07506038
+PEPMASS=598.27001953125
+CHARGE=2+
+55.06345367 22311.490234375
+58.13426971 22603.294921875
+64.52630615 78741.7109375
+64.53048706 52073.734375
+64.58227539 47395.69921875
+64.58622742 45219.2421875
+64.63829803 21953.705078125
+76.0398941 19240.501953125
+87.76922607 18155.2421875
+149.5741577 67897.6953125
+167.0928802 32577.3515625
+169.0600586 29995.88671875
+175.1180725 281291.21875
+177.0759888 53451.984375
+178.0600433 285302.09375
+178.0773621 16196.2109375
+178.3388062 97208.6171875
+179.0619507 21084.875
+179.0917206 23427.72265625
+186.0864563 108880.015625
+192.1197968 19867.96875
+195.0865021 4377068.0
+196.0891724 420316.40625
+197.0916443 28298.626953125
+200.1012115 22748.70703125
+201.0870514 20056.08984375
+206.0912628 123701.0703125
+218.1030731 42642.84375
+234.0974579 25074.19921875
+240.0957642 23677.814453125
+246.0971527 561675.4375
+247.1000671 69774.21875
+257.1227417 90068.7265625
+260.1123962 118438.40625
+267.2946777 22587.365234375
+270.0964966 131855.546875
+278.1498718 29854.81640625
+283.1436768 40073.83203125
+287.1237488 121331.71875
+288.1075439 1557576.0
+289.1106567 212271.390625
+303.1438293 23830.673828125
+305.1341553 3134623.5
+306.1192932 1173752.625
+307.1215515 201399.96875
+308.119873 25610.296875
+311.1349487 36058.37890625
+312.1176758 37806.28515625
+321.1543579 368118.5
+322.1556396 58793.37109375
+323.1445618 1034287.625
+324.1468201 197437.109375
+325.147522 27247.607421875
+329.1438599 48736.37890625
+338.1424866 52900.5859375
+338.1806335 360126.5625
+338.6450806 31512.513671875
+339.1837463 63229.1640625
+349.1630249 27786.263671875
+359.1434021 38421.2421875
+366.1869202 127859.9296875
+369.1397705 21278.203125
+376.1706848 119183.7265625
+377.1559143 71654.9140625
+394.1810608 702446.1875
+395.1835938 155082.078125
+412.1947632 20231.041015625
+420.6832581 23812.5703125
+460.1878967 23270.15625
+468.2229309 37144.1015625
+484.7148438 30016.896484375
+485.2478027 198362.484375
+486.2511292 55955.37890625
+488.1858215 25733.802734375
+492.2298279 170297.75
+492.7305298 111470.046875
+493.2323608 31537.884765625
+495.2265625 49816.22265625
+503.7143555 20026.3125
+505.2106323 50016.1484375
+506.1985779 37013.203125
+512.2241821 54176.1640625
+512.7259521 26049.96875
+521.2387085 39714.59765625
+521.7311401 41604.62109375
+523.2226562 510120.90625
+524.2250977 130435.1328125
+525.2277832 29282.72265625
+571.7531128 61929.5859375
+572.2745972 350259.09375
+573.2772217 93844.4921875
+576.2600098 32482.03125
+576.7647705 33132.515625
+577.270874 31360.578125
+580.2630615 116977.828125
+580.7553101 2683121.0
+581.2565308 1893927.375
+581.7582397 744905.875
+581.8652344 29869.005859375
+582.258667 116760.609375
+589.2670898 279310.625
+589.7668457 196897.921875
+590.2672119 37553.671875
+598.2750854 89784.5546875
+598.7756348 39197.375
+606.2609863 50890.86328125
+624.2685547 51778.328125
+655.3192749 27180.044921875
+673.3249512 424550.875
+674.3275146 177370.703125
+675.3327637 30575.384765625
+802.3634644 126085.2109375
+803.3623657 40972.6796875
+873.4000244 109886.453125
+874.4006958 50998.3125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.334.334.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=334"
+RTINSECONDS=36.18161619
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 76355.859375
+64.53050232 52226.62890625
+64.58203125 62060.3515625
+64.58620453 39158.015625
+64.63824463 31904.169921875
+74.69293976 18858.953125
+76.28630829 22060.61328125
+101.9120636 20908.341796875
+122.0726547 21588.87890625
+142.7836609 19405.181640625
+149.5691528 77325.3515625
+167.0918732 32286.685546875
+175.1179657 296022.625
+177.0758667 66468.8828125
+178.0600586 326594.78125
+178.0762177 34766.20703125
+178.3479462 134014.71875
+179.0926971 24501.453125
+183.0758667 33823.5234375
+186.08638 115027.9140625
+194.1031952 35254.09375
+195.0865173 4943046.0
+196.0894623 492133.5
+197.0927277 30809.953125
+206.0913849 167598.21875
+207.0911255 23503.87109375
+218.1034698 54175.94140625
+221.1024017 25652.4375
+233.1249542 21591.2109375
+240.0979156 21288.796875
+243.0872192 44716.8515625
+246.0971527 600046.0625
+247.0994873 102263.609375
+257.1227112 117258.5546875
+260.1124268 131114.046875
+270.0968933 141245.4375
+273.3432617 24036.9609375
+283.1425476 31009.607421875
+287.1233521 159869.71875
+288.1075439 1720895.125
+289.1101074 230583.109375
+290.1121216 25702.02734375
+303.1428833 46475.41796875
+305.1341248 3474866.25
+306.1193848 1284179.75
+307.1221619 221534.515625
+308.1234741 25212.896484375
+311.1359558 66486.03125
+321.1540527 405737.71875
+322.1585693 40425.84375
+323.1445618 1350047.375
+323.1884155 49820.125
+324.1474304 191065.1875
+329.1442261 42462.36328125
+338.1421509 47936.48046875
+338.1805725 427875.5625
+339.18396 104814.390625
+346.1658936 25734.111328125
+347.152832 41510.7890625
+349.1595764 34369.671875
+359.1438904 64457.66796875
+366.1865234 142231.53125
+368.1557007 24086.416015625
+369.1384888 41453.1796875
+376.1703796 142052.953125
+377.1557922 80494.578125
+386.1617126 24280.6796875
+394.1809998 886357.4375
+395.1824951 171589.578125
+412.1877136 48264.78125
+420.6854858 25774.1640625
+452.1737671 21855.7578125
+468.2207642 55309.13671875
+469.2240295 23537.39453125
+485.2470398 246400.984375
+486.2501831 56773.66015625
+488.1875 36497.96484375
+492.2301941 209550.375
+492.7314453 134771.171875
+493.2298279 45556.75390625
+495.2275696 63212.16796875
+503.719635 26296.552734375
+505.2085876 53387.5
+506.2045288 77102.3203125
+512.2247314 59558.87109375
+512.7287598 60297.6875
+520.7387085 24963.970703125
+521.2351074 40392.2734375
+522.0148315 20959.6953125
+523.222168 508814.71875
+524.2232666 166687.875
+525.2352905 35409.75390625
+550.4487305 21132.0546875
+558.744751 42334.578125
+559.2398682 26072.455078125
+571.7496338 104652.921875
+572.2764893 333084.5625
+572.744812 25991.734375
+573.2778931 95074.1328125
+575.2746582 27261.328125
+576.2658081 36532.98828125
+577.2658081 30988.478515625
+580.262085 152510.4375
+580.7553101 3008811.5
+581.2563477 2107227.0
+581.6503906 22749.435546875
+581.7583008 861176.1875
+582.2585449 133108.015625
+589.2665405 269876.90625
+589.7674561 170574.6875
+590.2723999 31034.724609375
+598.274353 97624.3515625
+598.7797241 35748.24609375
+599.7780151 33701.2734375
+606.2583618 34653.98046875
+624.2684326 53070.6171875
+655.3154907 31879.0234375
+673.324646 469920.09375
+674.3264771 186427.6875
+675.3201904 29036.625
+693.2876587 32152.978515625
+802.3623657 129127.96875
+803.374939 44598.0546875
+873.4002686 135629.53125
+874.4041748 72606.921875
+1001.443237 40029.30078125
+1002.471436 26232.578125
+1058.471069 26885.791015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.335.335.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=335"
+RTINSECONDS=36.28748474
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436127 6142.9584960938
+63.58500671 7142.9331054688
+64.52628326 24641.763671875
+64.53050232 15679.21875
+64.58196259 18194.197265625
+64.58615112 12573.2587890625
+64.63805389 8946.4326171875
+64.64130402 6019.7163085938
+80.48397064 4982.9125976563
+82.05430603 8153.8032226563
+149.5665436 17034.53515625
+149.5801239 7733.9077148438
+166.944458 4649.66015625
+167.0917206 28236.6171875
+169.0596466 17937.923828125
+175.1179352 209523.390625
+176.1206055 15252.6796875
+177.0760956 57918.9765625
+178.0419464 4744.318359375
+178.0601196 222120.875
+178.0781403 10852.0751953125
+178.3475037 33900.71875
+179.0635376 23122.087890625
+179.0916748 11288.1162109375
+182.091507 9941.359375
+183.0756226 17146.37890625
+186.0861969 53594.4375
+187.0883636 6079.0874023438
+190.0598145 8582.6787109375
+190.1083832 7106.0463867188
+194.102066 31222.10546875
+195.0865021 2089114.875
+195.1280823 14484.0390625
+196.0893707 258102.203125
+197.0914612 21585.923828125
+199.1177216 6334.5385742188
+200.1018524 18567.072265625
+201.0855408 12454.4755859375
+205.0598297 7525.0048828125
+206.0912933 126948.5234375
+207.0938568 9021.2412109375
+208.4479523 5134.0883789063
+212.1155548 8909.427734375
+215.0916748 14544.953125
+218.1024475 49006.4921875
+221.1027222 6530.5014648438
+222.0851898 12962.166015625
+223.091217 5561.1694335938
+233.1256561 5925.5927734375
+234.0967865 11784.9990234375
+240.0958252 15297.2255859375
+243.0868378 15378.791015625
+244.1174927 7560.5288085938
+246.0971222 491259.375
+247.1001129 51954.734375
+248.1129608 10602.611328125
+249.0969238 7426.005859375
+257.1228638 67615.0625
+260.1125793 91458.6875
+261.1167603 13627.9765625
+262.1255493 9019.0673828125
+270.097168 86697.828125
+271.1001282 17203.5234375
+272.1131592 6696.4682617188
+276.1056519 6875.0854492188
+276.1348572 6754.2119140625
+277.140625 8843.306640625
+278.1178894 15169.4208984375
+278.1486206 20222.111328125
+283.1430359 43457.84765625
+287.1234436 109162.6875
+288.1075745 1202445.125
+289.1104126 186838.0625
+290.1133118 16026.5263671875
+295.1466675 12976.3876953125
+302.1335144 9504.5283203125
+303.1430054 15470.4306640625
+304.1263123 10839.55078125
+305.1341553 1881493.375
+305.2164001 14084.66015625
+306.1193237 697740.625
+307.1214294 110455.734375
+308.1228943 13924.0205078125
+311.1350403 35573.2421875
+312.1179504 21475.185546875
+318.1436462 8079.5595703125
+320.1329651 9533.4130859375
+320.1721802 9921.6787109375
+321.1543274 201783.703125
+322.1573792 46200.0078125
+323.1446838 646168.75
+324.1470337 103767.3046875
+325.151825 11243.421875
+328.1629639 9767.1513671875
+329.1446838 29925.689453125
+331.1498413 14924.2822265625
+338.1420288 31228.068359375
+338.1809998 216675.640625
+338.6458435 14620.591796875
+339.1448059 7195.9223632813
+339.1832275 43235.96484375
+340.1824036 6110.9326171875
+341.1426697 11595.986328125
+346.1686401 7069.46484375
+347.1495056 14946.1806640625
+349.1601562 15678.193359375
+351.1322327 9325.2802734375
+353.1525574 6700.232421875
+358.1651917 9734.41015625
+359.1448975 49050.70703125
+366.1862183 70005.5
+367.1889648 15501.0576171875
+368.1479187 8102.2509765625
+369.1395874 19999.041015625
+376.1708069 69079.2734375
+377.1561584 44509.46875
+386.1652222 19481.0546875
+389.1598206 8940.5634765625
+394.1812134 389182.5
+395.1835938 78510.71875
+396.1852722 9820.857421875
+398.1667175 7423.8271484375
+412.1905518 26324.94140625
+421.1824951 12278.3388671875
+423.1629639 7103.5322265625
+428.1990967 7245.2817382813
+433.7824097 6732.751953125
+450.2112122 6599.2294921875
+460.1928101 18899.341796875
+463.1948547 6265.5727539063
+468.2223206 36339.8046875
+469.2277832 8832.068359375
+477.2171631 15471.78515625
+478.2026978 10436.359375
+482.1853027 6667.8598632813
+483.229248 7913.896484375
+483.7218323 10991.2314453125
+485.2475586 145057.03125
+485.3266296 9509.6640625
+486.2507324 35465.4453125
+488.1860046 37078.796875
+489.1903076 9660.0546875
+492.2303162 92974.1015625
+492.7297974 68875.734375
+493.2319336 26934.900390625
+495.2281189 30627.787109375
+496.2309265 6811.0424804688
+503.2198792 7331.6044921875
+503.7144775 15023.361328125
+505.2125854 39893.00390625
+506.203949 31734.341796875
+506.72995 6447.0659179688
+507.2033997 6044.76953125
+512.2282104 24559.328125
+513.2260742 6855.1645507813
+521.2321777 10859.31640625
+521.7377319 8922.134765625
+523.2225952 238345.9375
+524.2243652 63915.59375
+525.2305908 19777.412109375
+531.1608276 7734.2700195313
+541.2349854 5635.6708984375
+554.2681274 6034.8374023438
+555.2612915 7349.8154296875
+558.7446899 16096.1083984375
+559.2477417 17503.12109375
+559.7497559 7215.2802734375
+567.2526245 6485.6147460938
+571.7510376 43829.0859375
+572.2755737 184390.078125
+572.7515869 12228.01171875
+573.2820435 57690.328125
+574.2883301 12552.5576171875
+576.2637939 11994.7412109375
+576.7661133 6725.2641601563
+577.2641602 9784.369140625
+580.2609863 25605.48828125
+580.7556152 900702.4375
+581.2566528 595767.5
+581.7583008 216438.359375
+582.2592163 58110.17578125
+589.2661743 35750.12890625
+589.7647705 38691.46875
+590.2679443 18835.822265625
+598.2734985 39373.87109375
+598.7752075 25741.01171875
+599.2766113 52602.86328125
+599.77771 48759.6875
+606.2584839 14265.578125
+607.2562866 7510.9125976563
+624.2687988 21579.1875
+655.3145142 7698.3139648438
+656.2958374 11132.796875
+673.3251953 183703.0625
+674.3280029 81872.5625
+675.3273926 17836.55859375
+711.3030396 8369.9072265625
+802.362915 28882.3828125
+803.3673706 15995.5390625
+873.3994141 36695.64453125
+874.4067383 11748.908203125
+1249.157959 6265.6206054688
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.336.336.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=336"
+RTINSECONDS=36.42084858
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13432312 3825.4572753906
+58.13715744 1992.3322753906
+64.52626801 7730.8310546875
+64.53048706 5432.2045898438
+64.58216858 3971.5395507813
+64.58608246 4504.0405273438
+72.0243988 2410.3327636719
+74.81201172 2326.6772460938
+75.33087921 2322.1057128906
+76.28142548 2955.5126953125
+76.28572083 3003.8227539063
+82.05419159 2738.4653320313
+92.12660217 1860.9482421875
+117.4152298 2792.6772460938
+133.9938812 1847.5269775391
+149.5693207 7451.3291015625
+167.0916138 17464.0
+168.0967865 2221.1948242188
+169.0598602 9195.53515625
+175.1001434 2361.21484375
+175.1179352 88773.09375
+175.1355743 2974.4250488281
+176.1208038 8036.2553710938
+177.0760498 22103.12109375
+178.0600433 101962.203125
+178.0771484 3377.3149414063
+178.3366852 7771.3422851563
+178.3560028 3342.4450683594
+179.0632782 7728.322265625
+179.091507 9308.0625
+182.09198 4704.0463867188
+183.0752411 8001.7607421875
+186.0860596 30910.83203125
+187.0692139 2842.6184082031
+190.060318 3722.8891601563
+190.1076813 4273.8447265625
+194.1019592 10438.6728515625
+195.086441 899973.1875
+195.1278229 6360.3852539063
+196.0892639 115955.8515625
+197.0912781 5531.3286132813
+199.1169281 2781.1096191406
+200.100769 7128.7314453125
+201.0857086 6501.1108398438
+205.0598907 4162.7265625
+206.0911713 58002.40234375
+207.0931702 5605.6982421875
+207.1126709 3148.8286132813
+209.1027679 4372.326171875
+212.1144714 4657.591796875
+213.0839996 2501.92578125
+215.0914307 4695.2080078125
+218.1022491 20770.14453125
+221.1021576 3316.970703125
+222.0858917 5887.64453125
+232.118988 2188.744140625
+233.1282806 5020.9916992188
+234.0970612 7278.4038085938
+235.1050568 2250.5388183594
+239.1121826 4281.1469726563
+240.0959015 6570.4448242188
+242.1026306 2810.5778808594
+243.0858459 6214.5502929688
+244.117218 4786.1083984375
+246.0969543 225620.546875
+247.099762 27837.8203125
+248.1102448 6087.6879882813
+249.0969086 6226.0151367188
+252.0964661 2804.8583984375
+257.1227112 28398.0859375
+258.1273193 2642.5268554688
+259.1279297 2086.0451660156
+260.0639954 2146.7028808594
+260.1126404 37728.13671875
+261.1170959 3984.0607910156
+262.1257629 2860.0458984375
+270.0970154 40627.546875
+271.0997009 5791.12109375
+272.1112671 4428.76171875
+276.1055298 3244.373046875
+277.1376953 3794.7126464844
+278.1185913 4395.6538085938
+278.1479187 9020.845703125
+283.1423645 19137.484375
+284.1178894 2664.2253417969
+284.1488037 3280.7902832031
+287.1233215 51913.9375
+288.1073303 546777.875
+289.1101379 81140.25
+289.1472473 2628.5278320313
+290.1116943 6423.3979492188
+294.1172791 6829.716796875
+295.1487427 6593.810546875
+302.1327515 3999.8972167969
+303.1426086 10768.89453125
+304.1273804 4805.0112304688
+305.051178 6262.0991210938
+305.1338806 832967.5
+305.2154846 6445.6982421875
+306.1191406 304635.84375
+307.1213684 54881.41015625
+308.1218262 4821.5131835938
+311.1345825 15086.56640625
+312.1173096 9866.041015625
+318.1419067 3281.0263671875
+319.15448 2372.3017578125
+320.1325989 3259.2001953125
+321.1539001 106786.296875
+322.1566467 16722.41796875
+323.098053 3906.6340332031
+323.1442261 286264.09375
+324.1462097 44680.19140625
+325.1505737 4196.0092773438
+328.1603394 3911.7448730469
+329.1434326 12962.70703125
+331.1488953 7079.2309570313
+338.1427002 12530.2646484375
+338.1805725 112155.3515625
+338.645874 5153.1357421875
+339.1422424 2805.3078613281
+339.1828918 16937.23046875
+341.141449 3429.6418457031
+346.1687317 3107.111328125
+347.1477661 7670.9223632813
+349.1604614 6385.4931640625
+351.1299744 4702.1918945313
+353.1485291 3107.3410644531
+358.1666565 5269.60546875
+359.1444397 27505.91796875
+366.1858215 30702.54296875
+367.1878662 6198.0913085938
+369.1372986 7752.6831054688
+376.1699524 29646.77734375
+377.15625 21207.34375
+378.1637268 2279.6677246094
+386.1644897 7349.21875
+389.1559448 3675.9184570313
+394.1187439 3163.2287597656
+394.1806946 165166.078125
+395.1827393 32133.91015625
+396.1819763 3142.1455078125
+412.1882629 7027.4809570313
+413.1636963 2727.0056152344
+420.681488 4282.7143554688
+434.1758728 3900.4216308594
+450.207428 3141.7822265625
+460.1896057 7950.478515625
+461.1923523 3217.5502929688
+464.1756287 2932.6557617188
+468.2210999 16381.78515625
+469.2194519 3659.2016601563
+477.2173767 6622.3203125
+478.2042542 5823.1147460938
+482.1843567 3078.0329589844
+483.7184448 4374.390625
+485.2465515 52562.16796875
+486.2501221 16315.2001953125
+488.1849976 18538.126953125
+489.1878052 4928.8720703125
+492.2288513 45401.5703125
+492.7311401 18544.23046875
+493.2328796 7527.474609375
+495.2266541 16137.169921875
+496.2322693 3442.9643554688
+503.2208557 3676.1047363281
+503.7157593 2473.6604003906
+505.2113037 10239.3115234375
+506.203186 10411.486328125
+507.1998596 2766.5869140625
+512.225647 8063.0864257813
+521.2306519 6078.46875
+523.2215576 91737.6953125
+524.223877 28402.63671875
+525.227356 6743.9750976563
+558.7407227 4557.6059570313
+559.241394 5766.5678710938
+559.7416992 3511.7487792969
+571.7487793 13002.40234375
+572.2752075 73341.9140625
+572.7472534 3239.7648925781
+573.2805176 20665.126953125
+574.2867432 3492.78515625
+576.2593384 4319.1127929688
+576.7607422 3444.2360839844
+580.2592163 6170.0561523438
+580.7543945 272079.375
+581.2556152 177371.890625
+581.3360596 2427.7602539063
+581.7572021 64934.2109375
+582.258667 11902.17578125
+589.2657471 8790.5478515625
+589.7659302 8176.892578125
+590.2616577 3543.2729492188
+590.767395 2446.3361816406
+598.2717896 10398.568359375
+598.7730713 13050.076171875
+599.2745972 18574.734375
+599.7766724 15995.1806640625
+606.255188 8799.515625
+624.2664185 11547.880859375
+625.2821045 3602.4987792969
+656.3105469 2912.8845214844
+673.322998 70481.5390625
+674.3256836 27249.982421875
+675.3259277 4451.3916015625
+693.2896729 5581.8657226563
+802.3604126 12075.22265625
+803.3626099 5354.4140625
+873.3964233 12463.2373046875
+874.4038086 3530.7912597656
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.337.337.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=337"
+RTINSECONDS=36.61681835
+PEPMASS=598.27001953125
+CHARGE=2+
+63.74665833 63919.64453125
+64.52687836 81092.2421875
+64.58236694 66117.25
+65.12854767 66595.5859375
+65.47594452 76298.1796875
+80.17044067 67490.140625
+149.5635071 147346.65625
+149.5777893 182704.390625
+163.8366394 69370.0546875
+175.1181488 343879.78125
+177.0755615 104471.8515625
+178.0593109 262776.25
+178.3403625 439337.0625
+186.0862427 71421.2421875
+195.0864563 4782666.0
+195.4919891 68942.9609375
+196.0891266 396347.1875
+206.0904083 155440.234375
+243.0872192 73341.34375
+246.0967102 645442.875
+254.286911 74357.796875
+257.1229248 191098.109375
+260.1131287 87720.984375
+287.1230774 112321.234375
+288.1073303 1361193.625
+288.1421509 87165.53125
+289.1116028 181269.34375
+305.1340332 3506210.75
+306.1193848 1292629.75
+307.119751 129806.8515625
+321.1549377 367991.3125
+323.1445923 1402156.125
+324.1456299 197827.5625
+329.1403809 71485.390625
+338.1802063 534809.5625
+339.181366 101237.796875
+366.1861877 132477.28125
+370.5452576 77706.8203125
+376.1688538 203331.265625
+394.180603 903525.625
+395.1870117 130983.359375
+485.2493896 229883.71875
+486.2482605 70849.140625
+492.2264709 177247.875
+492.7302856 139937.875
+505.2154846 74833.0
+523.2223511 634201.25
+524.227356 94506.6171875
+572.2756348 277449.09375
+573.2774658 120033.140625
+576.262207 147937.421875
+577.2554321 78452.9375
+580.2595825 97204.0625
+580.6691284 45320.5703125
+580.7550049 2396230.25
+581.2561035 1985693.25
+581.336792 71257.7578125
+581.7583618 753587.8125
+582.2587891 162017.109375
+589.2682495 1968118.0
+589.7664795 1190713.0
+590.2658691 506614.5
+598.2728882 317693.0
+598.7758789 139991.78125
+673.324646 544338.5625
+674.3237915 157371.109375
+802.3623047 140369.859375
+849.0094604 82180.859375
+873.4017944 252240.484375
+1001.443359 81865.9765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.338.338.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=338"
+RTINSECONDS=36.71709091
+PEPMASS=598.27001953125
+CHARGE=2+
+51.67707825 26959.201171875
+55.19144058 25702.361328125
+56.36748886 25438.0703125
+64.52631378 72132.5625
+64.5303421 55500.0625
+64.58223724 58182.08984375
+64.58620453 48675.21875
+92.59031677 24159.3359375
+114.3008804 31827.52734375
+116.9092865 25470.17578125
+119.0248718 29431.44140625
+127.4363708 26252.19140625
+149.5751648 103218.421875
+169.0591736 42409.5
+175.1177673 285133.65625
+176.1214752 27305.474609375
+177.0744781 37848.91015625
+178.0599365 342316.0
+178.3461609 176040.09375
+186.0860138 108334.4296875
+195.08638 4878886.0
+196.0893402 473164.40625
+197.0916443 45591.3828125
+200.1014099 32546.6171875
+206.0907288 140644.734375
+218.1013489 55767.390625
+240.094162 30295.201171875
+243.0858765 34225.1171875
+246.0968781 568683.9375
+247.0998077 78794.8046875
+257.1221619 141417.671875
+257.1486511 27033.298828125
+260.1128845 118098.6015625
+270.0982361 109639.109375
+283.1434021 67663.7578125
+287.1235352 148899.21875
+288.1074219 1566637.75
+289.1104736 190481.46875
+305.1338806 3530048.25
+306.1192322 1139812.75
+307.1216125 241488.53125
+311.1347351 64722.86328125
+312.1155396 39707.0234375
+321.1541748 325634.34375
+322.15802 55568.796875
+323.1444092 1172416.125
+324.1464233 214610.328125
+329.1459045 71383.96875
+338.1803894 453802.03125
+339.1828003 74817.4375
+341.1497498 31866.984375
+359.1447144 41576.69140625
+366.1862488 130054.828125
+369.1395264 36528.2265625
+376.1695862 100451.5
+377.1576843 80872.40625
+386.1680908 53633.13671875
+394.1362305 22219.234375
+394.1807556 860113.0625
+394.2399292 47695.7109375
+395.1817932 173059.359375
+412.1836548 28682.82421875
+468.2235107 46031.75390625
+485.2475281 233153.453125
+486.2528687 50080.08203125
+488.1846008 56541.24609375
+492.2288208 200411.6875
+492.7302551 113078.1796875
+493.2330933 38167.140625
+495.2215271 45744.359375
+505.2099304 61657.5
+512.2301025 50421.3984375
+512.7252197 42245.671875
+521.7301025 35832.43359375
+523.2216797 521795.65625
+524.2249146 150985.15625
+571.7458496 107609.890625
+572.2741089 303909.875
+573.277771 99787.296875
+576.2600098 44311.3046875
+576.7584839 39428.24609375
+580.2622681 106789.0
+580.7550049 2814200.0
+581.1027222 41630.1015625
+581.1502686 59848.11328125
+581.2561646 2026788.25
+581.3672485 35406.5625
+581.7583618 730850.75
+582.2589722 201331.828125
+589.1611938 36115.9140625
+589.2676392 586913.625
+589.765686 500570.96875
+590.2693481 116560.25
+598.2753296 115640.2890625
+598.7741089 81181.21875
+599.2803955 37783.00390625
+606.2570801 43115.53515625
+624.2702637 60503.80859375
+673.3235474 526865.0
+674.3271484 160821.125
+694.2750854 32562.11328125
+761.1567993 30673.453125
+802.3631592 135741.546875
+803.3653564 73758.7734375
+873.4012451 155703.65625
+874.4022827 84287.1796875
+1001.450989 55470.921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.339.339.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=339"
+RTINSECONDS=36.82041162
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629089 69882.5390625
+64.53050995 39734.1953125
+64.58222198 35600.05859375
+64.58621216 36118.3984375
+64.63822174 18690.33203125
+66.11606598 15436.509765625
+74.81612396 19386.224609375
+78.00093079 15859.2705078125
+107.3843994 16060.267578125
+119.5102234 18407.4140625
+146.6818085 15177.0830078125
+149.5638428 48609.703125
+167.0921631 36061.46484375
+169.0596161 41012.26171875
+175.1179047 302272.65625
+177.0762177 56069.0625
+178.0601044 317151.875
+178.3439178 115021.0703125
+179.0640106 19157.412109375
+183.0762634 23128.52734375
+186.0863495 99456.0625
+190.0600128 18422.109375
+194.1030273 32059.677734375
+195.0865173 4272583.5
+196.0895081 409498.53125
+197.0897369 20545.01953125
+200.1024017 36399.14453125
+201.0858307 18279.98828125
+206.0912323 158412.671875
+213.0856323 17364.244140625
+215.0900421 21625.751953125
+218.1018982 39460.484375
+221.1018677 19737.759765625
+222.5370331 15499.9384765625
+239.112442 20269.775390625
+243.0868835 30453.990234375
+246.0971069 584572.1875
+247.1005707 72071.8515625
+249.0962372 24171.841796875
+257.1221924 77275.59375
+260.1130066 110317.125
+270.0969849 122583.59375
+283.1448059 43054.90234375
+284.1217957 17280.416015625
+287.1233215 119879.015625
+288.107605 1497076.5
+289.1102905 215580.0
+289.1427307 23537.419921875
+294.1204224 16910.8515625
+295.1477966 31552.556640625
+303.1419067 27852.884765625
+304.1281738 26568.830078125
+305.0518188 26815.763671875
+305.1341553 3202088.0
+306.1193848 1096495.0
+307.1215515 191671.453125
+311.1361694 51340.68359375
+312.1185913 34738.859375
+320.131897 23071.37890625
+321.1542358 320435.8125
+322.15625 57405.5078125
+323.1446228 1103606.75
+323.1886902 34844.99609375
+324.146759 213564.375
+325.1524963 20506.947265625
+328.1592102 23726.724609375
+329.1448059 45958.5859375
+338.142395 50043.890625
+338.1807861 397528.59375
+338.6431274 22745.7265625
+339.1825562 72433.0
+346.1712646 24647.328125
+347.1503906 29092.2421875
+359.1455994 69316.46875
+366.1866455 142190.75
+369.1398315 32548.42578125
+376.1697693 119140.375
+377.1567993 80144.1875
+386.1637268 34962.92578125
+394.1811829 731038.75
+395.1833191 138894.296875
+396.1864929 28476.333984375
+407.1625977 21879.046875
+412.1865234 29735.2421875
+460.1899414 34720.20703125
+468.2207336 40495.38671875
+485.247406 211174.078125
+486.2489929 53581.62109375
+488.1898193 33449.92578125
+492.2293701 202290.5
+492.7307129 116857.15625
+493.2331543 25519.443359375
+495.2250366 42650.421875
+505.2146606 58062.515625
+506.203064 36591.18359375
+512.2259521 33368.9375
+512.7230225 30539.158203125
+521.2384033 21205.390625
+521.7387695 29334.755859375
+523.2225342 404182.09375
+524.223938 152855.34375
+558.7433472 41975.19140625
+567.7542114 26685.17578125
+571.7526245 75513.6484375
+572.2755127 318930.65625
+572.7516479 25036.857421875
+573.2786255 86586.078125
+576.2619629 48849.37109375
+576.7622681 52024.85546875
+580.2637939 63406.5078125
+580.7554932 2608134.5
+581.2567139 1840940.75
+581.6800537 18969.927734375
+581.7583008 680731.9375
+582.2601318 133362.1875
+583.2677002 22512.416015625
+589.269165 161675.265625
+589.7658691 89446.9296875
+590.267334 27598.427734375
+598.2731934 67077.015625
+598.7780151 30930.123046875
+599.7771606 47954.046875
+607.2579956 24341.669921875
+624.2716064 57336.67578125
+673.3250732 473200.875
+674.3287964 166663.828125
+675.3292847 31673.404296875
+704.6447144 23400.962890625
+802.364624 108221.15625
+803.3737183 62290.7109375
+873.3991089 107931.2421875
+874.402771 59998.20703125
+1001.451599 27095.509765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.340.340.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=340"
+RTINSECONDS=36.9277244
+PEPMASS=598.27001953125
+CHARGE=2+
+53.15297699 12701.8984375
+58.13743591 13789.78515625
+64.52633667 61065.51953125
+64.53049469 42758.2421875
+64.58196259 38513.5625
+64.58612823 33553.6171875
+79.53351593 17350.66015625
+125.5474319 15587.337890625
+146.2779388 16916.751953125
+149.5730743 53059.78515625
+155.0625458 15109.9638671875
+155.077179 15816.1357421875
+167.091507 40075.3515625
+169.0592041 29422.64453125
+175.1177368 306289.875
+176.1210632 21887.724609375
+177.0761261 75337.2421875
+178.0598297 336264.8125
+178.3481598 94181.3671875
+178.5466156 14136.05078125
+179.0907288 30969.93359375
+183.0755463 31123.65234375
+186.0860748 102558.90625
+194.1030273 28549.802734375
+195.0319824 18254.005859375
+195.0863342 4244350.0
+195.128479 22865.404296875
+196.0892334 417635.8125
+197.0919037 23469.412109375
+200.1017303 26491.91015625
+206.091156 141585.046875
+212.1135254 15322.212890625
+218.1023865 70262.1953125
+221.1020813 16370.9130859375
+234.0981293 15535.9853515625
+239.1106567 22213.48046875
+240.0950623 25034.384765625
+246.0968323 618370.5625
+247.1000366 74906.3671875
+249.0984344 16693.33203125
+257.1225281 103722.75
+260.1123352 106751.046875
+270.0966492 128863.328125
+276.1035461 15963.7578125
+278.1483765 36513.4296875
+283.1429443 34190.33984375
+287.1231384 150404.15625
+288.0535889 24433.185546875
+288.1071777 1517890.5
+289.1100464 224758.921875
+290.1135559 24255.169921875
+295.1489563 27947.22265625
+304.1247864 19582.412109375
+305.1336365 3155935.5
+306.1188354 1089325.75
+307.1211243 165940.34375
+308.1236877 24370.34765625
+311.1355591 54810.13671875
+312.1181946 28268.99609375
+321.1536255 341538.25
+322.1552734 53721.66796875
+323.0979309 20866.080078125
+323.144104 1109444.875
+324.1461487 159558.59375
+329.1435242 32164.7421875
+331.1522217 18457.92578125
+338.1430664 47908.59765625
+338.1801758 390826.625
+338.64151 21586.1953125
+339.1817932 60543.8359375
+349.1604309 17417.765625
+359.1428833 75756.3203125
+366.1851807 120392.796875
+367.18927 28795.740234375
+369.1361084 34478.91796875
+370.1401978 14805.1083984375
+376.1697083 108389.2109375
+377.1557922 67428.0
+378.1569214 15322.212890625
+386.1639404 31279.275390625
+394.1803589 746637.6875
+395.1814575 136351.328125
+396.1848145 17311.875
+412.1867676 21347.076171875
+460.1954956 23422.1171875
+461.2005615 16483.912109375
+463.2014771 23294.234375
+468.2208252 34055.34765625
+477.2145996 19546.7890625
+485.2467346 200607.9375
+486.2499695 76769.296875
+488.1871948 42502.328125
+492.2286377 163726.421875
+492.7286072 81434.3515625
+493.229126 41280.16796875
+495.2250671 62765.765625
+505.210022 51652.91015625
+506.2088013 25390.572265625
+507.1989136 24768.48828125
+512.2277222 35710.41796875
+520.7403564 16655.0234375
+521.2319336 25656.357421875
+523.2210083 445490.3125
+524.2231445 151017.859375
+525.2325439 24423.462890625
+529.7451782 24429.4921875
+542.5214844 17488.0
+558.7432861 19335.203125
+559.2476196 29320.7265625
+571.7478638 75650.4609375
+572.2737427 278570.84375
+573.2786865 91911.2890625
+576.2578125 47793.375
+576.7590332 30990.322265625
+577.2608032 30886.009765625
+580.2634277 81072.6953125
+580.7542114 2171408.25
+580.8392334 28942.1015625
+581.255249 1493355.0
+581.3352051 17405.48828125
+581.6503906 17795.07421875
+581.756958 583661.3125
+582.2576294 114830.7265625
+589.2671509 130143.96875
+589.7647095 65542.6484375
+598.2711792 47726.921875
+598.7702026 38214.1171875
+599.7744751 47421.83203125
+606.2571411 33873.73046875
+624.2672729 39209.71484375
+673.322937 385352.8125
+674.3250122 168946.5625
+675.3280029 23027.212890625
+711.3011475 21960.72265625
+802.3633423 97730.671875
+803.3637695 43845.1015625
+873.3984375 96728.21875
+874.3967896 46699.046875
+1001.425964 26560.548828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.341.341.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=341"
+RTINSECONDS=37.0358897
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1344223 14571.986328125
+58.74328613 10906.095703125
+64.52624512 55492.6171875
+64.53049469 36561.44140625
+64.58198547 35020.2109375
+64.58620453 23142.890625
+64.63824463 15116.658203125
+74.81204987 14975.166015625
+80.28347778 11992.8544921875
+81.04638672 15783.97265625
+82.05428314 12414.9287109375
+86.34391022 11752.80078125
+107.8808823 12665.3212890625
+110.0509796 11582.83203125
+136.3284302 11559.3154296875
+149.562027 16183.6591796875
+149.5760498 29451.236328125
+167.0924072 27824.1640625
+169.0598907 20803.935546875
+175.1179352 277733.71875
+175.1311951 7439.0317382813
+176.1208191 18536.38671875
+177.0759583 62223.3828125
+178.0601044 288446.65625
+178.342041 74562.46875
+179.0641479 21688.041015625
+179.0913544 19392.03515625
+182.0905762 26378.369140625
+183.0749359 28054.69140625
+186.0862579 85342.65625
+189.0616608 12328.99609375
+190.0599823 12215.150390625
+194.1028442 37174.9921875
+195.0865021 3554227.25
+195.128067 28144.775390625
+195.6381989 10138.0693359375
+196.0895081 389881.9375
+197.0922852 26204.16796875
+200.1021423 21714.9921875
+201.0858002 11680.822265625
+206.0912323 124315.296875
+207.0947266 13956.2861328125
+218.1020508 62105.08203125
+222.0854034 12798.009765625
+233.127533 13759.2802734375
+240.0961761 13313.32421875
+243.0856781 26386.240234375
+246.0970306 568946.25
+247.0999451 67201.5078125
+248.1143188 12286.0869140625
+249.0978546 14702.396484375
+257.1227112 95835.1328125
+258.1278687 13125.6171875
+260.1129761 95499.3671875
+261.1181946 14148.6953125
+270.0967102 121767.6484375
+277.1383667 14471.9931640625
+278.1488037 23775.00390625
+283.1437378 43982.23046875
+287.1236877 108844.3984375
+288.1075439 1378491.25
+289.1104736 205961.140625
+290.1115417 23623.466796875
+294.1163635 23286.0625
+303.1437988 18373.37109375
+305.1340942 2772395.25
+306.1191101 1007034.9375
+307.1212158 173991.296875
+308.1213684 21048.146484375
+311.1340332 36205.96484375
+312.1156616 25454.912109375
+321.1543884 325301.5625
+322.1573181 57826.95703125
+323.1445618 959237.5
+324.1468506 166718.15625
+328.1608582 12124.5107421875
+329.1439819 45219.1171875
+338.1421509 62560.41015625
+338.1808777 323394.28125
+338.6453247 23482.3984375
+339.1826172 73612.5546875
+349.159668 14997.091796875
+358.1618347 18571.74609375
+359.14505 40207.52734375
+366.1863403 104362.4140625
+367.1899719 17883.845703125
+369.1388855 34256.2265625
+376.1705627 86825.21875
+377.1561279 73885.3671875
+378.1588745 16695.646484375
+386.1649475 17582.0703125
+394.1810303 619320.375
+395.1836853 110669.3046875
+396.185791 17290.8984375
+412.1819458 33292.1796875
+413.1617432 17358.748046875
+428.2000732 15488.9560546875
+460.1932068 23317.607421875
+468.2206116 51690.3203125
+477.216217 12997.013671875
+485.2471313 167026.515625
+486.250946 54266.2109375
+488.1858521 22878.884765625
+489.1888733 15137.0234375
+492.2294312 128200.4609375
+492.7308044 68176.9921875
+493.2294617 28149.400390625
+495.2285767 40974.3828125
+505.2115784 42004.765625
+506.2026978 28134.982421875
+507.2090149 13684.1279296875
+512.2260132 34770.64453125
+512.7294312 26391.9140625
+521.2329102 33830.52734375
+521.7373047 19123.015625
+523.2225952 367917.15625
+524.225708 90549.328125
+525.2321167 21898.966796875
+555.2507324 15909.1484375
+558.7471924 21514.865234375
+559.7473145 17801.09375
+567.2593384 15744.9052734375
+571.7508545 70627.28125
+572.2738647 268901.90625
+573.2802734 83146.0703125
+576.2611084 33499.90234375
+576.7648926 17652.005859375
+580.2625122 51121.546875
+580.7553711 1942647.625
+581.2563477 1274245.375
+581.3683472 16530.748046875
+581.7583618 490615.6875
+582.2592163 91620.6328125
+589.2623291 29733.1953125
+598.2741089 24921.005859375
+598.7835083 23797.193359375
+599.2755737 34755.8828125
+599.777832 61348.59765625
+606.2599487 20643.2421875
+624.267395 39508.2421875
+655.3134766 17891.77734375
+673.3249512 377461.3125
+674.3278198 130921.09375
+675.3279419 30157.310546875
+711.298584 18631.0234375
+802.362793 79208.25
+803.3649292 48244.14453125
+804.3739624 15398.732421875
+873.3997192 101156.375
+874.4005737 45365.23828125
+1001.448975 18968.51171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.342.342.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=342"
+RTINSECONDS=37.1480113
+PEPMASS=598.27001953125
+CHARGE=2+
+63.6303215 11605.51953125
+64.52629089 60097.98046875
+64.53048706 38891.1796875
+64.58224487 32536.3671875
+64.58625031 26206.6328125
+64.63812256 20398.3046875
+64.64144135 12743.216796875
+64.66375732 12089.7724609375
+149.5673828 50233.16015625
+160.9914246 13625.0048828125
+163.3404388 15443.1142578125
+167.0921478 34483.81640625
+168.0957031 15633.7919921875
+169.0606995 17633.328125
+175.1179047 278110.375
+176.1210938 25168.33984375
+177.0759125 47394.95703125
+178.0439148 20062.0546875
+178.0601044 290050.59375
+178.0782318 22786.53515625
+178.3451691 96461.171875
+179.063797 26786.79296875
+179.0924072 17742.81640625
+182.0914154 16797.73046875
+183.0749664 26612.466796875
+186.086319 91408.0625
+194.1025696 45138.5390625
+195.0864105 4014577.5
+196.0893402 392946.75
+197.0923157 34376.37109375
+200.1015778 31239.12109375
+201.0870819 15601.208984375
+206.0912323 155628.171875
+207.0933533 20498.490234375
+213.085907 14066.2890625
+218.1027374 52483.390625
+233.1278534 19091.478515625
+240.0960999 18948.626953125
+243.0861206 23414.466796875
+243.7505188 17967.87890625
+246.0969543 610353.5625
+247.099823 79569.90625
+257.1228027 95429.546875
+258.1236572 15289.4697265625
+260.1127319 131986.03125
+261.1173706 26664.0234375
+270.0971069 120129.5625
+271.0995178 18105.70703125
+276.105957 16364.927734375
+277.1337891 17012.806640625
+278.1496277 27300.369140625
+283.1423035 36258.03125
+287.1234436 138899.1875
+288.0541382 22360.322265625
+288.1073914 1417247.75
+289.1100769 255902.046875
+290.1121521 25816.76171875
+294.1176758 28932.318359375
+295.1504517 16774.828125
+303.1448669 23463.435546875
+304.1268616 15943.591796875
+305.1339111 2993131.25
+305.2156982 22034.451171875
+306.0593567 20570.404296875
+306.1193542 999171.125
+307.1218262 168648.8125
+308.1238403 19903.61328125
+311.1356506 53836.75390625
+312.118042 39845.24609375
+320.1332397 19426.099609375
+321.1538696 321833.1875
+322.1577148 66146.5078125
+323.0988464 16110.671875
+323.1444092 1081034.625
+324.1469421 166969.15625
+325.1517639 20551.357421875
+329.1443481 54177.33984375
+338.1420898 48846.5390625
+338.1806641 377720.78125
+338.6465149 24326.966796875
+339.1830444 57555.42578125
+341.1470032 16115.9736328125
+347.1506653 18095.373046875
+349.1564026 20642.3125
+351.1319275 20704.861328125
+355.4140625 13874.3486328125
+359.1443787 42674.609375
+366.1861572 97205.515625
+367.1868286 16833.5390625
+369.1420898 31480.994140625
+376.1701355 104333.1875
+377.1579895 70609.171875
+394.1808472 660365.9375
+395.1828308 143363.15625
+412.1871948 19190.173828125
+420.683075 19229.783203125
+434.1714478 14327.279296875
+460.1900635 18973.931640625
+468.2225037 59403.1484375
+469.2206726 22506.28515625
+477.2186279 20283.78125
+485.2474976 187797.609375
+486.250061 63844.5625
+488.1838684 38623.875
+492.229187 165673.40625
+492.7301025 100267.3984375
+493.2327576 33143.30078125
+495.225769 30185.478515625
+496.233429 19037.623046875
+503.2266541 23365.833984375
+505.2119141 55184.17578125
+506.1991272 51885.265625
+512.2297363 29618.185546875
+521.2363892 33424.76953125
+521.7306519 20800.970703125
+523.1339722 27664.802734375
+523.2218018 448698.09375
+524.2246704 122534.9453125
+525.2304688 33731.078125
+529.746521 16203.3310546875
+555.2523804 19796.748046875
+558.7421265 23140.31640625
+566.7583618 22362.4765625
+567.2553711 23698.3359375
+571.7490845 59911.20703125
+572.2734985 298120.75
+572.7598877 21766.505859375
+573.2803955 87880.640625
+574.2861328 20628.904296875
+576.2588501 45525.48828125
+576.7640991 23921.765625
+580.2636719 43449.765625
+580.7549438 2168852.5
+581.2562256 1453331.25
+581.3670654 25069.6484375
+581.7577515 558209.625
+582.2595215 100270.90625
+589.2694702 80683.8984375
+589.765686 53088.078125
+598.2721558 54681.65625
+598.7770996 30124.419921875
+599.2731934 18068.970703125
+599.7778931 51482.00390625
+606.2566528 26381.65625
+624.2694092 42977.7890625
+636.7210083 16641.759765625
+673.3239746 376292.375
+674.3271484 149389.109375
+675.3312378 25785.7265625
+802.3640137 85151.5859375
+803.3678589 39140.60546875
+873.4000854 93689.6796875
+874.4022827 51410.8125
+876.8023682 15394.2041015625
+1001.448853 24011.755859375
+1058.481323 16673.41796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.343.343.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=343"
+RTINSECONDS=37.25685035
+PEPMASS=598.27001953125
+CHARGE=2+
+62.24674988 12850.82421875
+64.52626038 49627.36328125
+64.53047943 32593.6953125
+64.5819931 41434.4453125
+64.58618164 25553.080078125
+64.64135742 12879.326171875
+121.9816895 12584.9052734375
+126.7564468 13017.296875
+145.1832428 15184.25
+145.3198853 12640.31640625
+149.5635986 30173.603515625
+167.0920105 39230.703125
+169.0592804 32709.017578125
+175.1043854 7976.6499023438
+175.1179504 261894.46875
+177.0761261 61229.01953125
+178.0468903 7235.8315429688
+178.0600433 321780.5
+178.0740356 9866.4853515625
+178.3483429 79909.4609375
+178.9136658 11555.0224609375
+179.0636444 22441.658203125
+179.0913239 24874.751953125
+182.0908966 18345.3125
+186.0861969 120434.671875
+190.061264 12950.859375
+190.1066742 12285.8134765625
+194.1027374 23134.75390625
+195.0453644 20201.009765625
+195.0864716 3753023.25
+196.0893402 383992.125
+197.0926514 20261.521484375
+200.1021576 28230.52734375
+201.0858917 19463.1171875
+206.0910034 118325.4375
+207.093811 14425.3388671875
+212.1142426 18301.767578125
+213.08461 14794.6318359375
+215.0915375 13659.9013671875
+218.1019897 64228.15234375
+221.1021271 16426.83203125
+222.0855408 18049.92578125
+231.0958405 15351.58203125
+240.0969391 13268.947265625
+243.0843048 21639.564453125
+246.0970154 613380.8125
+247.1005096 58469.89453125
+257.1226807 96925.1171875
+258.1243591 18233.966796875
+259.1271667 16189.669921875
+260.1126404 108244.1796875
+261.1188965 15097.779296875
+267.1051331 17730.505859375
+270.097168 127706.6875
+271.100647 15285.87109375
+276.1059875 17113.689453125
+277.1376648 14462.466796875
+278.1504822 25207.609375
+283.1437988 41888.97265625
+287.1234131 129202.09375
+288.1075745 1491059.875
+289.1103821 243768.125
+289.1434021 23801.349609375
+290.1126099 17858.951171875
+294.1169434 19491.8125
+295.1481934 24758.9765625
+302.1322632 14074.1591796875
+303.1431885 30365.46875
+304.1288757 20667.986328125
+305.1340637 3071016.5
+306.1193848 1023886.0625
+307.1214905 187590.09375
+308.1243286 23303.369140625
+311.1361084 49856.96484375
+312.1176453 34599.67578125
+321.1541443 310981.84375
+322.1575623 56841.6015625
+323.1446228 1031076.8125
+324.146637 161614.453125
+325.1489258 21664.3671875
+328.1586304 15694.3828125
+329.1453552 32399.701171875
+331.1521301 17265.19140625
+338.1423645 45961.53515625
+338.1806641 336275.8125
+339.1829224 60859.59765625
+347.1474915 24985.935546875
+349.1618652 23624.84765625
+351.1334229 15944.37109375
+359.144928 61616.01171875
+366.1864624 116732.5625
+367.1890869 16047.8935546875
+369.1393127 35665.0078125
+376.1704712 110140.1328125
+377.1564026 70137.7109375
+386.1655579 33282.75390625
+394.1810913 669681.5
+395.1826477 137820.96875
+396.175354 11568.9716796875
+397.6833496 16201.2412109375
+412.1876831 16403.615234375
+420.6850281 26571.1875
+447.1893311 12558.095703125
+450.210968 14078.748046875
+452.1829834 12697.9873046875
+460.1908264 30236.640625
+464.176178 17231.89453125
+468.2215881 43656.7578125
+478.2117615 16118.7294921875
+485.2479248 192653.234375
+486.2509766 59575.55078125
+488.1857605 23655.619140625
+489.1855164 13761.8076171875
+492.2289124 172322.671875
+492.7323608 70684.0859375
+493.2330017 42388.703125
+495.2251892 35800.6953125
+505.2113342 50949.51953125
+506.2026672 36985.82421875
+512.2260132 32684.544921875
+521.2289429 34356.3671875
+523.2224731 400721.125
+524.2258911 93254.6171875
+525.2287598 35725.22265625
+530.2521973 15133.6005859375
+541.2365723 12914.478515625
+554.2694092 16891.70703125
+571.7488403 56051.1796875
+572.2757568 260932.921875
+572.7495728 19684.3046875
+573.2799072 88681.203125
+574.2810669 16315.517578125
+576.2610474 28656.720703125
+576.7601318 35149.56640625
+577.2778931 18821.314453125
+580.2642212 60448.1015625
+580.7554321 1998595.875
+581.2564697 1286406.25
+581.7585449 513073.75
+582.2589111 85474.8203125
+589.2666626 36224.4296875
+589.7672119 40647.7890625
+598.274353 44447.23828125
+598.7706299 37902.70703125
+599.274353 15827.2578125
+599.7791138 64580.42578125
+606.262207 31676.533203125
+624.2697754 38426.00390625
+673.3245239 331996.875
+674.3270874 155670.96875
+675.3289795 27949.677734375
+693.2892456 16412.59765625
+802.364502 86776.7734375
+803.3649292 44704.734375
+873.4043579 83138.4609375
+874.3985596 39830.75
+1001.4599 18294.892578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.344.344.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=344"
+RTINSECONDS=37.36780298
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622223 58780.37109375
+64.53050995 40242.375
+64.58200073 38618.4921875
+64.58611298 29640.794921875
+64.63825226 20300.841796875
+64.64168549 21113.244140625
+82.054245 21715.12109375
+96.50631714 12491.2412109375
+149.5678558 49192.9375
+164.9229889 12781.8642578125
+167.0919342 36231.3828125
+169.0596771 24418.818359375
+175.1178589 275785.03125
+177.0759735 79323.578125
+178.059967 324608.375
+178.34935 80573.46875
+179.0632477 43139.01171875
+179.0916138 17693.232421875
+183.0748596 21016.697265625
+186.0860138 102425.1953125
+187.0895996 14192.8642578125
+190.0588989 14064.3212890625
+194.1018219 39718.33984375
+195.0863953 4025122.25
+196.0892944 417631.1875
+197.0913544 29795.189453125
+200.1031036 18849.998046875
+206.0910797 165761.140625
+212.1135559 19280.89453125
+218.1027527 53700.875
+222.0858154 19687.091796875
+232.1176605 19782.642578125
+240.0944519 17888.013671875
+243.0862274 17565.09375
+246.0969543 620070.875
+247.0993042 68927.0703125
+249.0958557 18764.046875
+257.1227722 96419.7578125
+260.1126099 119779.8125
+261.1174316 18744.44921875
+270.0968628 129470.03125
+276.1358337 16210.083984375
+278.1165771 19314.4609375
+278.1484985 32735.353515625
+283.1426086 31743.833984375
+287.1232605 135117.40625
+288.1073608 1525474.5
+289.1100159 249381.546875
+290.109375 23125.3515625
+294.117218 23936.55078125
+295.1502686 22758.53515625
+303.1442871 36155.29296875
+304.1295776 24985.326171875
+304.8253479 15529.953125
+305.1339111 2983590.5
+306.1191101 1092394.75
+307.1212158 171543.5625
+308.1212158 21704.3671875
+311.1343994 30109.16796875
+312.1170959 37272.42578125
+321.1539307 347111.4375
+322.1567078 45835.0546875
+323.1443481 1131108.625
+324.1470642 179020.890625
+325.1511536 30781.111328125
+329.144043 46683.6171875
+338.1418152 58796.8828125
+338.180603 369928.875
+338.6455078 22030.427734375
+339.1435547 17313.423828125
+339.1838684 73787.28125
+349.1578369 30889.603515625
+359.144165 45644.16015625
+366.1858215 107117.1640625
+367.1876221 20177.705078125
+376.1719666 90833.046875
+377.1559448 83957.1796875
+386.1651306 34007.67578125
+394.1809387 698685.3125
+395.1820374 116439.546875
+412.1858215 27763.98046875
+421.1799622 21658.595703125
+460.1925659 23966.70703125
+464.175415 16833.921875
+468.2185364 31507.404296875
+469.2135315 16685.2265625
+477.222168 30033.625
+485.2470093 205982.484375
+486.250885 54424.47265625
+488.186676 52569.26171875
+492.2289734 154075.890625
+492.7304688 83174.4453125
+493.232666 19990.744140625
+495.2254639 49853.01171875
+503.2201843 22376.654296875
+503.7145691 30505.5625
+505.2106628 60557.39453125
+506.2058411 51068.84765625
+512.2303467 40601.9921875
+520.7410889 16776.76171875
+521.2314453 23695.927734375
+521.736084 38433.60546875
+523.2219238 423178.75
+524.2233887 93063.828125
+525.2297974 19513.22265625
+555.2581787 19959.279296875
+559.2468872 17338.298828125
+571.7494507 84098.078125
+572.2739258 270625.71875
+573.2805786 95192.0625
+576.2618408 45887.87109375
+576.7588501 21282.595703125
+577.2647095 21666.326171875
+580.2631226 63063.9453125
+580.7548218 2023614.625
+581.2560425 1409636.375
+581.7575073 549338.5
+582.2592163 119062.2890625
+583.2694702 19948.806640625
+589.2664795 91665.8671875
+589.7685547 28646.513671875
+598.2730103 32954.06640625
+598.7706299 29945.46484375
+599.2719116 19216.380859375
+599.7781982 56802.59765625
+606.2503052 32347.255859375
+624.2681274 39254.03515625
+673.3240967 336652.90625
+674.3244629 122356.546875
+675.3251953 28490.515625
+802.3621826 107011.3046875
+803.3694458 39859.6484375
+873.401123 88154.6953125
+874.406311 55250.66015625
+1001.454224 26364.154296875
+1002.453857 23358.291015625
+1058.468018 23822.109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.345.345.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=345"
+RTINSECONDS=37.47731982
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13447952 14870.6689453125
+64.52626038 60346.83203125
+64.53050232 34728.01171875
+64.58204651 41237.67578125
+64.58621216 29314.94140625
+64.63818359 26767.31640625
+64.64163971 17104.458984375
+145.307251 16291.0810546875
+149.5704346 50319.64453125
+167.0921783 49794.0703125
+169.0597076 36905.69921875
+175.1177673 293226.15625
+176.1199188 19680.109375
+177.0759735 62206.640625
+178.0598907 331203.40625
+178.346756 89210.265625
+179.0640259 21983.267578125
+179.0911255 17958.884765625
+183.0752106 30269.546875
+186.0863647 101071.765625
+190.1069031 15942.203125
+194.1026001 36675.6484375
+195.0863495 4018763.75
+195.1281891 27819.61328125
+196.0891724 396829.65625
+197.0914154 37225.01953125
+201.085556 27430.681640625
+206.0909729 151978.0625
+213.0845642 17117.76171875
+218.102478 53424.23828125
+219.1069946 14718.849609375
+222.0861816 19375.369140625
+231.0968628 15761.7626953125
+240.0953674 23864.75
+243.0873718 15411.7529296875
+246.0968628 654376.25
+246.1208496 12441.5068359375
+247.0997162 56734.7890625
+249.0943909 19768.9609375
+257.1223145 112841.3046875
+258.1255798 15281.8857421875
+260.1123352 96527.3125
+270.0965271 119262.8125
+283.1438599 41440.81640625
+287.1233826 131996.046875
+288.1072693 1477215.125
+289.1100769 247048.71875
+290.1114502 20667.958984375
+294.1168823 16987.556640625
+295.1492615 22951.5078125
+302.1315613 18707.056640625
+303.1438904 36676.47265625
+304.1274109 15595.6640625
+305.1336975 3025798.0
+305.2165527 21459.9375
+306.0585632 20990.943359375
+306.1190491 1047097.25
+307.1210938 198156.46875
+308.1239319 26079.220703125
+311.1335449 40553.2578125
+312.1172485 38948.48828125
+321.153656 283958.90625
+322.1557922 56276.92578125
+323.1441956 1045264.6875
+324.1461487 189701.203125
+325.1484375 17361.556640625
+329.1434631 50657.3203125
+338.1433411 35928.0078125
+338.1804199 391277.1875
+338.6429138 22227.4375
+339.1827393 60008.94921875
+346.1700134 14070.98046875
+351.1311646 15040.23046875
+357.7946777 15195.802734375
+359.1435852 56557.859375
+366.1859131 121290.140625
+367.1895447 27997.7578125
+369.1396179 23908.576171875
+376.1698608 124808.1796875
+377.155304 70431.6796875
+386.1626587 22500.369140625
+394.1806335 693498.0
+394.240448 22248.49609375
+395.1824646 142945.859375
+396.1844177 28272.7734375
+412.1861572 29053.71484375
+434.1724243 14801.587890625
+460.1888733 20669.595703125
+464.17276 13021.953125
+468.2206116 54892.71484375
+477.211853 19480.435546875
+478.2089233 20352.064453125
+485.2467957 193469.921875
+486.2489929 51046.80859375
+488.1883545 35363.51171875
+492.2287292 180441.78125
+492.730072 78806.7265625
+493.231842 25379.958984375
+495.2253418 58028.59765625
+505.2108765 59176.4296875
+506.2042542 32800.80078125
+512.2250977 31266.712890625
+512.7277832 35370.859375
+513.2280884 22149.06640625
+521.2312622 47649.46484375
+521.7352295 28025.888671875
+523.2216187 456419.59375
+524.2229004 117288.484375
+525.2312622 31953.80078125
+529.7489014 16590.029296875
+541.2393799 16087.5537109375
+555.2597046 17385.470703125
+571.7484741 88526.84375
+572.2746582 309167.625
+572.7516479 30155.328125
+573.2799683 101360.96875
+574.2757568 25768.361328125
+576.2630005 48345.6875
+576.762085 17602.470703125
+577.2659912 25375.103515625
+580.2634277 68046.0703125
+580.7544556 2322275.5
+581.2556763 1632410.875
+581.3360596 25716.02734375
+581.3672485 27789.951171875
+581.7573242 704791.6875
+581.8634033 18706.126953125
+582.2590332 114559.765625
+589.2678833 54982.1328125
+589.7659912 37319.296875
+590.2727051 18569.14453125
+598.2723389 56281.58984375
+598.7764282 35453.86328125
+599.2770386 28224.701171875
+599.7763062 84404.015625
+606.2543945 36420.40625
+607.2618408 15859.447265625
+624.263855 36275.29296875
+625.2714233 30237.943359375
+655.3141479 14063.8662109375
+673.3223267 433276.28125
+674.3255005 163970.765625
+675.3317261 24445.6484375
+802.3634033 93073.5703125
+803.3641968 41383.81640625
+873.3989258 89196.71875
+874.4042969 40137.24609375
+1001.46051 24628.001953125
+1002.475891 17039.08203125
+1058.464478 25382.01953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.346.346.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=346"
+RTINSECONDS=37.58685198
+PEPMASS=598.27001953125
+CHARGE=2+
+54.70486832 12507.2529296875
+64.52636719 58069.6328125
+64.53051758 38958.61328125
+64.58204651 39848.16015625
+64.58623505 23523.298828125
+64.63817596 17920.865234375
+64.64134979 14735.7412109375
+87.93302917 11979.3974609375
+140.5562286 16416.021484375
+149.5715637 53735.14453125
+167.0917664 45160.0625
+169.0603027 28952.896484375
+171.2422638 14555.693359375
+175.1179657 276784.9375
+176.1213531 22473.240234375
+177.0760956 55446.8359375
+178.0600739 320269.46875
+178.3404999 76531.15625
+179.0631561 30221.61328125
+182.0914001 14333.7802734375
+183.0753479 17052.39453125
+186.0860748 86548.671875
+186.1021881 13148.990234375
+187.0896759 14294.5576171875
+194.1030884 35479.94921875
+194.4777527 14194.6337890625
+195.0865021 3980265.5
+195.1281281 21201.775390625
+196.0892639 403293.4375
+197.0914154 33912.28515625
+200.1020355 26323.083984375
+201.0872803 15478.0546875
+206.0911102 139729.546875
+212.112442 16859.986328125
+215.0914764 19471.830078125
+218.1019745 45929.60546875
+222.0865479 14687.7626953125
+234.0986633 17097.23046875
+240.0956268 28027.244140625
+243.085968 35710.5078125
+246.0970459 630167.4375
+247.1000061 65728.75
+249.0956421 16438.669921875
+257.1227722 100136.4453125
+260.1126709 86378.703125
+270.0974426 120529.203125
+271.1017761 16670.712890625
+277.1377869 24588.673828125
+278.1491089 22484.1328125
+283.1441345 46368.61328125
+287.1233521 140971.40625
+288.1075134 1495556.75
+289.1103516 228805.828125
+290.1151428 16332.751953125
+294.1174927 26635.599609375
+295.1485901 21318.603515625
+303.1447144 27247.2734375
+304.1295166 18156.515625
+305.1340942 2955128.75
+306.1193237 1025800.6875
+307.1222534 178340.140625
+308.1237488 19596.546875
+311.1348877 42646.79296875
+312.114624 30013.41015625
+321.1542358 290126.21875
+322.1574402 63498.953125
+323.1446228 1039103.3125
+324.1468201 180223.03125
+325.1488647 23732.36328125
+329.1435852 54340.94140625
+338.1424866 51121.30078125
+338.1807251 349984.03125
+339.1830444 63937.1796875
+347.1480713 23656.927734375
+349.1573181 21130.59375
+351.1302185 18266.345703125
+358.1695862 15382.921875
+359.1444702 53953.59765625
+366.1862183 114274.203125
+367.187439 21912.751953125
+368.1534424 14638.8955078125
+369.1397705 14363.54296875
+376.1699524 95865.2265625
+377.1578674 78575.2578125
+386.1655579 23405.470703125
+394.1811218 674144.9375
+394.2402039 20657.220703125
+395.1828613 151187.984375
+396.1860962 16531.119140625
+412.1875916 24091.869140625
+420.6820068 26149.2421875
+450.2065735 15117.732421875
+460.1877747 18553.783203125
+468.2234192 40578.875
+469.2239685 17264.376953125
+483.7262268 15311.00390625
+485.2479553 194284.265625
+486.2507019 58173.83203125
+488.1887512 49830.0546875
+492.2294922 134579.640625
+492.7304382 83143.7421875
+493.2314453 36218.0859375
+495.2268677 53763.10546875
+503.7203064 26092.373046875
+505.2124023 77580.4375
+506.2060547 46008.68359375
+512.2294312 30414.05078125
+512.7307129 29107.91796875
+521.2334595 41808.3671875
+523.2225952 404391.375
+524.2236328 119286.265625
+558.7518921 18896.716796875
+571.7509155 61887.234375
+572.2751465 280026.875
+572.7527466 30478.130859375
+573.2804565 86085.1328125
+574.2831421 18675.6171875
+576.2615356 39487.9296875
+576.769165 27516.162109375
+577.2651978 27496.40234375
+580.2618408 72516.703125
+580.755249 2154529.25
+581.2564697 1480578.875
+581.7579956 575650.25
+582.2598877 87248.3828125
+589.2703247 62353.5
+589.7659912 29338.515625
+598.2733765 49025.41015625
+598.767395 16461.12890625
+599.2783813 26103.65234375
+599.7769165 85019.6953125
+606.2572632 26077.08203125
+607.2523193 16562.1953125
+624.2684326 48556.203125
+655.3145142 23659.826171875
+673.3244019 373901.90625
+674.3266602 150042.703125
+675.3380737 19173.673828125
+693.2850952 20806.01953125
+711.3021851 18273.68359375
+802.3641968 92269.296875
+803.3653564 39970.2109375
+873.4005127 90257.34375
+874.4030762 51976.35546875
+1001.439575 27664.00390625
+1002.439941 17013.90234375
+1295.578613 16573.37109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.347.347.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=347"
+RTINSECONDS=37.69678816
+PEPMASS=598.27001953125
+CHARGE=2+
+51.56302643 12633.1064453125
+55.69716263 12171.150390625
+56.49256897 12967.984375
+64.52627563 56998.14453125
+64.53049469 36764.98046875
+64.5819931 41316.53125
+64.5861969 27613.04296875
+64.64135742 13937.1728515625
+149.5649567 34423.265625
+167.0913696 43772.109375
+169.059494 27443.19140625
+175.1178436 270328.6875
+177.0759888 62834.9296875
+177.9432983 14514.2431640625
+178.0600586 313470.21875
+178.3388977 67134.890625
+179.0625763 19700.4140625
+179.0913239 21553.025390625
+182.0908051 18877.75
+183.0760498 19820.57421875
+186.0858765 95194.0546875
+194.102478 24470.759765625
+194.7555847 13271.7109375
+195.0863953 3961958.0
+195.1280518 20935.0390625
+196.0891876 393823.3125
+197.0923004 21645.001953125
+200.1008759 33640.5390625
+206.0913849 136616.21875
+218.102356 54955.9140625
+240.0967407 20561.802734375
+243.0866241 24057.380859375
+243.4206543 15454.9853515625
+246.0969086 603614.5
+247.0997467 82401.8359375
+257.1227722 83385.3984375
+260.1124878 103746.1015625
+261.1181335 15213.3828125
+270.0971985 118240.609375
+271.1043091 16182.2275390625
+278.1484375 25729.697265625
+283.1444397 35302.42578125
+287.1231995 154584.0625
+288.1072998 1517963.25
+289.1099243 237525.3125
+290.1134033 15986.322265625
+295.1496277 21297.166015625
+302.1298218 20212.822265625
+303.1427002 34335.81640625
+304.1286621 20071.677734375
+305.1338501 3041927.0
+306.1190186 1101040.75
+307.1212158 187895.8125
+311.1340027 47976.71484375
+312.1174011 41010.4375
+320.1315002 15707.556640625
+321.1538696 296066.6875
+322.1570129 47072.07421875
+323.1442871 1077834.125
+324.1460876 170076.546875
+325.1495972 15349.11328125
+328.1614685 14068.8125
+329.1444092 44429.39453125
+338.1419678 46838.56640625
+338.1804504 382780.125
+339.1830444 83269.390625
+340.001709 15091.7919921875
+347.1493835 36036.48828125
+349.1625366 24236.77734375
+358.1615295 15929.2939453125
+359.1435242 57642.0859375
+366.185791 96176.28125
+369.1379089 31329.9140625
+376.1700134 116581.15625
+377.15625 86616.6953125
+389.1492004 16283.216796875
+394.180603 694904.25
+395.1826477 137136.5625
+396.1901245 23887.85546875
+412.183197 29215.8984375
+413.1617432 17792.16796875
+420.6807556 25248.01953125
+460.1888123 17997.234375
+468.2213135 51681.37109375
+478.2017517 17929.744140625
+483.723877 27425.650390625
+485.2469788 202942.421875
+486.2501831 61549.4375
+488.1845093 49626.3125
+492.2284546 152520.0625
+492.7305603 89407.7890625
+493.2294617 21257.58203125
+495.2272034 50775.2265625
+503.2236328 19467.83984375
+505.2101746 61710.01171875
+506.2046814 55051.0
+512.2246704 49091.45703125
+512.7298584 15127.2646484375
+513.2294312 16694.23046875
+521.2327881 29619.552734375
+523.2216797 444075.375
+524.2246094 131114.46875
+525.2285156 41850.33984375
+555.2554932 32468.669921875
+558.7425537 25679.15234375
+559.2470093 18017.392578125
+563.2278442 16436.189453125
+571.7498779 69475.09375
+572.274353 346332.21875
+573.2819214 101517.2890625
+576.2611084 38663.14453125
+576.7610474 27115.640625
+577.2614136 34764.3125
+580.262085 91840.4765625
+580.7546997 2334110.25
+581.2557983 1603843.375
+581.7574463 611506.9375
+582.2580566 111955.3984375
+589.2641602 60484.16796875
+589.7637329 39582.71484375
+598.2723389 64592.31640625
+598.7710571 31597.087890625
+599.274231 27775.890625
+599.7782593 78263.6953125
+606.2617188 31425.421875
+624.2679443 56777.2109375
+625.2678833 17621.197265625
+629.2948608 17149.2734375
+673.3233032 412762.71875
+674.3250732 134538.546875
+675.3174438 22943.72265625
+693.2871094 21501.20703125
+802.3625488 99238.5625
+803.3643799 19674.1640625
+873.3982544 112472.0703125
+874.3955688 48603.109375
+875.4161377 18514.8671875
+1001.445374 23071.69921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.348.348.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=348"
+RTINSECONDS=37.80645509
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91493988 15565.1806640625
+58.13430023 15086.931640625
+64.52622223 62146.6953125
+64.53064728 46467.27734375
+64.58200073 34690.0546875
+64.58613586 31887.88671875
+64.6379776 25429.05078125
+64.64134216 16029.130859375
+64.69374847 12607.78515625
+82.05433655 14176.6171875
+105.7021332 12062.15234375
+110.0653458 14157.4990234375
+120.5617599 12768.7490234375
+122.3570786 13488.6005859375
+145.1805115 18754.841796875
+149.5627594 28683.44140625
+149.576355 29007.84375
+167.092392 23102.876953125
+169.0600739 21753.669921875
+175.1178131 269382.59375
+177.0759583 49428.20703125
+178.0435944 22909.107421875
+178.059906 274381.71875
+178.3374023 56180.51171875
+178.3562775 29025.015625
+179.0640717 26671.1640625
+179.0919952 19536.115234375
+186.0859833 90514.9375
+190.1074677 19217.853515625
+194.102356 40152.8359375
+195.0863037 3945919.5
+196.0892029 371680.34375
+197.0927734 18764.87890625
+200.1015625 29280.46484375
+201.0854034 25743.337890625
+206.0908966 156957.953125
+208.0708771 13337.990234375
+212.1142731 23107.169921875
+218.1023254 44425.109375
+222.0846405 18349.1875
+233.1251831 21862.28515625
+234.09729 22090.48046875
+240.0951385 22953.505859375
+244.1173859 16423.263671875
+246.0968323 587345.25
+247.0999756 76855.5078125
+249.0956573 25772.71484375
+257.1219482 79733.8671875
+260.112854 87379.015625
+270.0968018 119248.890625
+271.1000366 21586.224609375
+278.147522 34753.79296875
+283.1427002 44794.27734375
+287.1230164 157479.921875
+288.1072083 1530859.75
+289.0756226 24013.287109375
+289.1097717 271082.5625
+290.1100464 16481.40234375
+295.1490479 23908.744140625
+303.1426086 26469.876953125
+303.3638916 12692.4462890625
+304.1269226 21984.43359375
+305.133667 2896558.75
+306.1188049 1118909.875
+307.1210632 178097.734375
+311.1348877 40031.171875
+312.1170654 28270.958984375
+321.1535034 279478.34375
+322.1566772 76268.75
+323.1441956 1082940.5
+324.1463013 169469.609375
+325.1536255 15462.5615234375
+329.1433105 49750.88671875
+338.1432495 33649.5859375
+338.1802368 378778.84375
+338.6458435 24888.126953125
+339.1833801 72401.4765625
+347.1459656 14535.7265625
+347.5289612 13280.5732421875
+349.1598816 23669.859375
+359.144928 62807.515625
+366.1858521 111640.1171875
+367.1861877 20266.037109375
+369.1387634 32172.703125
+376.1696472 140272.890625
+377.1566162 73558.421875
+386.163269 40957.59765625
+394.1803284 676652.6875
+394.2398376 27460.23046875
+395.1813354 113740.3203125
+412.1879883 23114.931640625
+452.1850281 12769.484375
+468.21875 46634.0
+477.2173157 14270.208984375
+478.2016296 18328.798828125
+485.2469177 202801.109375
+486.2501831 53199.890625
+488.1885681 38772.53125
+492.2290955 136316.203125
+492.7304688 108240.4296875
+495.2260437 50791.4765625
+496.2246094 16995.775390625
+503.7224426 35361.1953125
+505.2113953 35090.0859375
+506.2062988 40878.671875
+512.2236938 27039.91015625
+512.7258911 39132.5390625
+520.7387085 14030.4970703125
+521.2316284 24182.3359375
+521.7301025 29283.220703125
+523.2213745 468569.21875
+524.2232056 126235.421875
+525.2277222 27098.79296875
+526.2313843 16851.796875
+529.7456055 14836.712890625
+558.7439575 23391.39453125
+571.7478027 71183.171875
+572.2738647 297292.3125
+573.2790527 100715.0078125
+574.2827148 22147.62109375
+576.2618408 39363.71484375
+576.7613525 24056.8828125
+577.2542114 15508.5771484375
+580.2625122 96021.7578125
+580.7542114 2242423.75
+581.2554932 1483077.625
+581.3659668 17256.923828125
+581.757019 656243.0625
+582.257019 117544.296875
+589.2672119 72208.6328125
+589.7684326 32449.083984375
+598.2732544 71545.5546875
+598.7727051 57841.9921875
+599.274231 46247.35546875
+599.7753296 87401.515625
+606.2597046 35633.0390625
+624.2653198 60497.5703125
+673.3226318 410666.9375
+674.3265991 168817.359375
+675.326416 28362.19140625
+711.302124 22978.923828125
+802.3626099 92655.75
+803.366394 54751.796875
+873.4024658 77261.609375
+874.4006958 43505.953125
+1001.459534 21104.333984375
+1002.453491 18630.130859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.349.349.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=349"
+RTINSECONDS=37.916544
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619171 70796.0234375
+64.53054047 32855.45703125
+64.5819931 54500.50390625
+64.58617401 39740.6484375
+64.64138031 16467.06640625
+149.5660706 48374.32421875
+167.0915222 31556.791015625
+169.0597534 34286.06640625
+175.1177521 301186.03125
+177.0760498 63906.28125
+178.059906 320468.25
+178.3444366 114576.6953125
+179.0640259 22786.3203125
+183.0759583 22345.861328125
+186.0859222 97631.53125
+194.1038513 28263.220703125
+195.0863953 4589818.0
+196.0892944 429057.59375
+197.0911865 32377.212890625
+200.1021576 20123.216796875
+206.0909424 118720.5078125
+218.1019592 54765.15234375
+222.0868225 28142.89453125
+234.0973053 25591.94140625
+237.1091766 21676.611328125
+240.0963287 20459.478515625
+243.0854034 26586.703125
+246.0969238 625891.4375
+246.1255493 29980.498046875
+247.1001129 82193.0234375
+257.1224976 89032.4140625
+260.1126099 121611.8984375
+269.0319519 17001.96875
+270.0966797 134509.1875
+274.434082 15396.3056640625
+278.1482544 22513.1015625
+283.1436462 38785.0546875
+287.1233521 130734.7578125
+288.1073608 1593763.75
+289.1098022 232621.59375
+290.1107178 22519.623046875
+295.1499634 35849.5859375
+303.1438904 42102.84765625
+305.1338806 3161205.0
+306.0589294 22357.619140625
+306.1190491 1189701.625
+307.1210327 214686.4375
+311.1347351 54202.64453125
+312.1155396 32698.607421875
+320.1299438 26661.95703125
+321.1539001 311272.96875
+322.1566772 64231.8828125
+323.1443176 1175232.25
+324.1466675 204504.6875
+329.144165 50809.20703125
+331.1484985 18088.197265625
+338.1418457 66941.25
+338.1807861 387498.625
+338.6468201 24555.1875
+339.1827393 68401.390625
+349.1590271 25654.5625
+359.1442566 61710.46875
+366.1856689 105370.28125
+367.1868286 19919.58203125
+369.1404114 38318.765625
+376.1701965 128104.71875
+377.1549683 73819.4140625
+386.1620178 32394.6328125
+394.1808777 740782.625
+395.1827393 145547.515625
+412.1882935 39636.8984375
+420.6863098 19329.291015625
+460.1917725 21876.33203125
+468.2202148 46885.25390625
+477.2159119 21656.064453125
+485.2468262 196636.9375
+486.2494507 61598.32421875
+488.1864319 36240.54296875
+492.2297363 141745.296875
+492.7309265 92505.3671875
+493.2324829 26156.14453125
+495.2247314 61780.359375
+503.7154541 26759.7421875
+505.2138062 59519.26171875
+506.2035217 68398.4765625
+512.229187 51313.421875
+521.2329712 39429.78515625
+523.2220459 444784.40625
+524.2241821 123389.796875
+525.230835 33890.84375
+530.2498779 20599.9140625
+558.7453003 34071.65625
+571.7503662 104073.15625
+572.274353 322709.3125
+573.2799683 96041.859375
+576.2617798 46740.0390625
+577.2677002 39349.5546875
+580.2626953 80943.765625
+580.7548218 2414785.0
+581.2561646 1799911.875
+581.7576294 598263.75
+582.2585449 129885.0
+589.2670898 144099.671875
+589.7633667 91540.4609375
+598.2722778 36950.34765625
+598.772583 34600.36328125
+599.2735596 33850.453125
+599.7757568 48924.33984375
+606.2577515 29566.986328125
+624.2689209 48520.7265625
+625.2744141 18683.0078125
+673.3236694 441644.375
+674.3261108 157296.421875
+675.3233643 49299.37890625
+711.3036499 29939.177734375
+802.3642578 95375.1328125
+803.3755493 48998.66796875
+858.3654175 24892.40625
+873.3995972 138394.015625
+874.4023438 49547.5
+1001.454407 20343.462890625
+1002.463989 24413.47265625
+1058.458862 25541.685546875
+1076.072266 22688.513671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.350.350.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=350"
+RTINSECONDS=38.02336112
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13427734 15991.9765625
+58.66987991 12950.013671875
+64.52628326 57591.99609375
+64.53049469 42236.30078125
+64.5819397 43201.171875
+64.58608246 33062.078125
+73.25172424 14595.9443359375
+77.88500214 14129.1279296875
+91.24711609 15075.6591796875
+118.2406998 15329.033203125
+149.5653839 37605.1328125
+167.0915375 39879.734375
+174.1581268 14503.9599609375
+175.1021118 24381.4453125
+175.1179657 302316.75
+176.1208344 23870.2421875
+177.0760193 72246.71875
+178.0599976 320488.5625
+178.3322144 30536.638671875
+178.3514252 68992.15625
+179.0637817 26995.7890625
+182.0912781 19822.103515625
+182.7352142 14973.5576171875
+182.7631836 14482.515625
+183.075882 30668.056640625
+186.0861206 117965.0625
+194.1026917 37653.765625
+195.0864258 4142767.25
+196.0892639 390401.53125
+197.0911713 28509.06640625
+200.1008606 28120.52734375
+201.085907 24575.869140625
+206.0910492 148787.984375
+207.0936279 16129.03515625
+218.1017609 65173.43359375
+222.0858459 15586.474609375
+240.0962677 29230.7109375
+243.0852203 19636.875
+246.0970001 638654.25
+246.1256409 31604.673828125
+247.0997162 59132.9453125
+249.0989685 26627.205078125
+257.1225586 104331.5078125
+258.1236572 19535.896484375
+260.1128845 116807.9296875
+270.0967407 127774.0703125
+271.1020508 18567.7265625
+276.1075745 19998.2109375
+278.1493225 21077.390625
+283.1434631 43138.7890625
+287.1234436 158696.796875
+288.1074219 1503311.375
+289.1101074 205611.4375
+290.1136475 16290.7275390625
+294.1149902 16204.2607421875
+295.1499329 19684.771484375
+303.143158 24494.720703125
+305.1339417 3039345.0
+306.1191406 1059091.375
+307.1213379 182778.984375
+308.1231689 29157.2421875
+311.1341858 47093.87890625
+312.1172485 34585.328125
+321.153717 276548.5625
+322.15625 59291.921875
+323.0983582 20004.84375
+323.1444397 1152380.25
+324.1471863 169095.640625
+325.1542664 22656.783203125
+329.1433716 69460.0703125
+338.1422119 55815.9453125
+338.1807251 389251.96875
+338.6457214 26976.4296875
+339.1819763 76935.640625
+347.1482239 22571.708984375
+359.1441345 51240.76953125
+366.1864014 112010.6875
+367.1864929 27274.8515625
+369.1393738 26737.76171875
+376.1705627 130759.53125
+377.1563721 62496.3046875
+386.1640625 30941.998046875
+394.1194153 20058.189453125
+394.1808472 676723.0625
+395.1826782 161534.640625
+396.1903381 21636.748046875
+412.1874084 31510.541015625
+460.1915588 21259.5234375
+468.2190552 42537.30859375
+485.2470703 188644.953125
+486.2500916 68974.796875
+488.1842957 38968.77734375
+492.2295532 223879.0
+492.7318115 95096.1953125
+493.2321472 38272.90234375
+495.2252197 41636.02734375
+505.2140198 40220.26953125
+506.2012939 46303.86328125
+512.2247314 34980.83984375
+512.727356 22860.271484375
+521.2344971 54837.05078125
+521.7332153 26498.41796875
+523.1345825 23508.544921875
+523.2225342 434089.5625
+524.2241821 124431.2109375
+525.2305908 16688.064453125
+529.7437744 25364.517578125
+558.7425537 24095.625
+571.7523193 66084.796875
+572.2753906 253792.5625
+572.7449951 19183.5625
+573.2805786 99187.78125
+576.2645264 32164.09765625
+577.2655029 27053.06640625
+577.7622681 18465.88671875
+580.2628784 76344.3671875
+580.7548828 2147095.75
+581.2561646 1528931.0
+581.7581787 554868.6875
+582.2582397 113534.46875
+589.2658081 91434.2109375
+589.7686157 60054.80859375
+598.2729492 66643.0234375
+598.7664185 20778.48046875
+599.270752 23370.484375
+599.7752075 50500.5859375
+606.2567749 36301.24609375
+624.269043 33699.015625
+625.2731934 17120.2578125
+673.3235474 388345.8125
+674.3270874 164982.6875
+675.3297119 25184.80859375
+693.284729 17362.19140625
+730.9578247 18842.5625
+744.0267334 16803.7578125
+802.364624 98444.4921875
+803.3638916 39831.9140625
+804.3761597 17942.615234375
+873.3994141 98893.9765625
+874.4037476 59923.96484375
+1001.442078 19145.265625
+1002.460144 22955.828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.351.351.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=351"
+RTINSECONDS=38.13147128
+PEPMASS=598.27001953125
+CHARGE=2+
+55.94850922 13304.955078125
+56.52397537 12031.80078125
+57.73949432 11011.0126953125
+58.13441086 12800.21875
+61.8968811 10040.759765625
+64.52619934 52420.06640625
+64.53047943 34305.234375
+64.58195496 37798.9375
+64.58605957 29526.07421875
+82.05457306 14216.158203125
+99.59391022 12036.22265625
+106.049675 10266.17578125
+144.3099518 10161.935546875
+149.5631561 25373.560546875
+149.5768433 23759.55859375
+167.091507 47454.546875
+169.0598145 34338.921875
+175.1177368 269523.21875
+175.1337891 9411.6484375
+176.1204071 21115.740234375
+177.075531 55448.88671875
+178.0444794 11230.2197265625
+178.0599518 277437.5
+178.076004 9801.9462890625
+178.3393555 64656.05078125
+179.063858 31001.865234375
+179.0916595 21873.1953125
+183.0755463 30171.267578125
+186.0861359 106269.8671875
+194.1026459 41933.66796875
+195.0863342 3688741.0
+195.1281738 17824.73828125
+196.088974 397774.46875
+197.0921936 27192.7109375
+200.1008148 35759.6953125
+201.0853577 16426.9765625
+206.0910492 136623.546875
+207.0908203 15771.322265625
+212.1129608 22302.21875
+215.0906677 19295.845703125
+218.102356 46277.82421875
+222.0857697 22727.013671875
+234.0980225 16176.09765625
+239.1118774 14335.4609375
+240.0961914 25476.5234375
+243.0854492 22643.587890625
+246.0968323 578662.5
+247.0997009 67714.453125
+249.0962677 14376.2451171875
+257.1227112 81758.703125
+260.1123962 96208.9453125
+270.0971069 123089.9140625
+271.0991211 16153.0244140625
+276.1330872 17794.66796875
+278.1172485 15069.1767578125
+278.1497498 29251.068359375
+283.1425781 49483.96484375
+284.1190796 14703.7314453125
+287.1233215 125741.9453125
+288.1072388 1465374.125
+289.1099243 207774.96875
+290.1122131 19917.16796875
+295.1494446 15721.720703125
+303.1429443 26734.94140625
+304.1284485 18903.083984375
+305.1336975 2856695.75
+306.1188354 1027202.9375
+307.1210632 196444.078125
+308.1233215 17569.98828125
+311.1339111 48761.65625
+312.1149902 25659.291015625
+321.153656 300696.40625
+322.1561279 63625.93359375
+323.144165 1020136.8125
+324.1462402 144381.4375
+328.1604919 22614.400390625
+329.1440125 31001.86328125
+338.1431885 28117.955078125
+338.1802368 336208.78125
+338.646637 22277.3359375
+339.1820374 70099.890625
+346.17099 18934.935546875
+347.1470337 21229.935546875
+349.1575623 26773.07421875
+351.1332397 15895.9541015625
+358.1660461 14967.6474609375
+359.1444702 58457.234375
+366.1864014 111688.0859375
+367.1841736 13085.046875
+369.1395264 19844.171875
+376.1703796 108286.765625
+377.1567688 84300.5546875
+378.1583557 15857.65234375
+386.1657715 19585.060546875
+394.1804504 645990.0
+394.2406921 18637.2421875
+395.1821899 145007.171875
+397.6798096 18501.927734375
+412.1881714 27577.046875
+420.6808167 21061.62109375
+434.1741638 15810.5966796875
+460.1942139 27608.919921875
+468.2210083 34957.3828125
+477.2164612 12657.0625
+478.2035217 23658.453125
+483.2231445 17761.94921875
+485.2469788 203106.203125
+486.2514038 59024.453125
+488.1838379 51845.27734375
+492.2287903 131443.671875
+492.7288513 65299.23828125
+493.2284546 26639.517578125
+495.2269287 35761.796875
+496.2278442 14878.4921875
+503.7167358 15729.4609375
+505.2113953 53087.0234375
+506.2062683 37985.9609375
+512.2263184 57720.9453125
+512.7272339 32659.705078125
+520.7470703 16016.1572265625
+521.2327271 23507.7265625
+523.2214355 389158.6875
+524.223999 111547.921875
+525.2247314 20576.86328125
+554.2655029 20982.328125
+558.7393799 19284.466796875
+571.7498779 58984.49609375
+572.2737427 256988.515625
+572.7529297 21087.38671875
+573.2784424 85031.0390625
+576.2596436 42002.88671875
+580.2629395 61510.25
+580.7542725 1899019.375
+580.8387451 22150.64453125
+581.2555542 1322136.75
+581.3355103 21775.525390625
+581.3649902 17711.36328125
+581.756897 441402.71875
+582.2574463 97999.6640625
+589.2650757 17684.86328125
+598.2723999 46444.42578125
+598.7723999 31853.21484375
+599.276001 39547.95703125
+599.7748413 90535.453125
+606.2555542 30370.763671875
+624.2678833 51330.71484375
+655.321106 17435.115234375
+673.322876 358595.84375
+674.3266602 144047.71875
+675.3284912 31053.115234375
+784.3555908 17472.32421875
+802.362915 72285.5625
+803.3671265 38313.71484375
+858.3684082 14636.7412109375
+873.3977051 74720.8203125
+874.4038086 24861.763671875
+1001.448914 19867.12890625
+1116.813477 13941.0263671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.352.352.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=352"
+RTINSECONDS=38.24324536
+PEPMASS=598.27001953125
+CHARGE=2+
+50.43087769 12366.7646484375
+51.01217651 13963.8798828125
+52.22796631 13819.8974609375
+59.77436066 14845.0625
+60.41543198 11748.6630859375
+64.41197205 14439.7158203125
+64.52625275 59277.78515625
+64.53046417 44893.5703125
+64.58203125 38731.65234375
+64.58620453 29055.810546875
+64.63820648 23929.369140625
+76.28577423 18254.76171875
+99.17250824 14674.5703125
+124.7545776 15423.8095703125
+125.8761978 12939.7744140625
+126.0036087 12205.9404296875
+143.7383118 14951.9833984375
+149.5734558 43315.8203125
+167.0913544 50827.640625
+169.059906 27658.830078125
+170.2614594 15147.685546875
+175.1020508 22606.474609375
+175.1177673 285586.0625
+176.1214142 14019.3115234375
+177.0759277 47373.1328125
+178.0600433 343812.59375
+178.3503265 73269.2265625
+179.0635986 25749.36328125
+179.0930328 13920.916015625
+182.0904999 18257.060546875
+182.5363007 13543.005859375
+183.0755615 18167.951171875
+186.0860901 99097.0078125
+194.1024475 40153.296875
+195.08638 3988278.25
+195.1281128 21744.568359375
+196.0892334 427651.8125
+197.0923615 23162.5078125
+200.1021729 21811.173828125
+201.0851746 17817.2734375
+206.0909271 149774.96875
+215.0912933 16641.341796875
+218.1024475 62055.734375
+239.112381 18321.236328125
+240.095993 16720.73046875
+243.0882874 18161.5703125
+244.1165619 14264.021484375
+246.0969086 639133.875
+247.098938 69568.140625
+257.122406 102883.34375
+258.1260071 16095.8994140625
+260.1126709 126729.0546875
+270.0975037 113189.0078125
+278.1505737 19832.7421875
+283.1416016 45476.21484375
+287.1233826 160228.171875
+288.1074219 1506541.75
+289.1099854 200358.84375
+290.1142578 25629.85546875
+294.118866 26627.263671875
+295.1493225 25651.720703125
+303.1427002 46130.796875
+305.1339111 3126493.25
+306.1190491 1104556.875
+307.1210938 185915.453125
+308.124054 21792.693359375
+311.1340637 52284.0234375
+312.1138611 31550.96875
+321.1541748 321417.0625
+322.1569519 38051.359375
+323.1443787 1073046.0
+323.2078552 20509.822265625
+324.1460266 181173.34375
+325.1488037 26051.046875
+329.1442261 57064.11328125
+338.1423645 44428.984375
+338.180603 375269.53125
+338.6464233 25296.20703125
+339.1824036 89051.1640625
+340.1796875 17126.861328125
+347.1483154 27252.28515625
+349.1590881 29029.6640625
+351.1324158 17304.21875
+359.1444092 67399.65625
+366.1864624 129970.546875
+367.1867065 21360.130859375
+369.1386414 26040.1953125
+376.1707764 113676.640625
+377.155426 81195.875
+382.0487976 14122.9111328125
+386.1637268 29941.654296875
+394.1807556 688993.0
+395.1821289 131580.859375
+396.1819763 19856.572265625
+412.1890259 32118.54296875
+413.1640625 15867.0751953125
+420.6842346 32434.3515625
+460.1898804 20065.47265625
+468.2214661 51554.22265625
+469.2140503 16251.9697265625
+483.7149048 23116.470703125
+485.2466431 210820.171875
+486.2494507 54801.7734375
+488.1853638 40940.37890625
+492.2293091 156440.875
+492.7312317 109359.046875
+493.2306519 33392.50390625
+495.2258301 43472.64453125
+503.2282104 20415.4921875
+505.2115173 67122.015625
+506.20401 45846.890625
+512.2253418 65685.546875
+512.7223511 21674.4453125
+520.7399902 18593.529296875
+521.2313232 38045.94921875
+521.7344971 20412.876953125
+523.2217407 475929.65625
+523.3093872 25283.60546875
+524.2240601 116877.75
+525.2300415 43683.2109375
+529.7403564 18094.7421875
+555.2595215 17680.94140625
+558.7440186 21664.904296875
+571.7509766 81178.9453125
+572.2754517 308547.1875
+573.2805786 99893.25
+574.2754517 19670.73046875
+576.2633057 22478.8125
+576.763855 29613.892578125
+580.2610474 82849.609375
+580.7549438 2503096.5
+581.2561646 1590261.75
+581.3348999 30263.572265625
+581.7577515 614141.875
+582.2583618 93612.578125
+589.2701416 65255.34765625
+589.7666016 34814.83984375
+598.2702026 46502.640625
+598.7752686 28180.52734375
+599.2734985 40894.015625
+599.7779541 65940.4375
+606.2576904 37710.74609375
+624.2677612 49751.55859375
+673.3240356 396532.0
+674.3271484 154544.40625
+675.3304443 22810.28515625
+802.362915 108930.6796875
+803.3655396 52261.75390625
+873.3967896 84486.5
+874.4075928 45424.8984375
+1001.442505 25399.9765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.353.353.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=353"
+RTINSECONDS=38.35251834
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13439941 18410.041015625
+58.13732147 15331.0078125
+64.52632141 58125.015625
+64.53049469 36406.05859375
+64.5821991 26408.25
+64.58616638 28177.30078125
+64.63829041 17046.259765625
+78.68404388 11500.7099609375
+121.0415497 16431.056640625
+126.4555359 11311.2568359375
+149.5639343 37870.86328125
+149.5786743 22935.408203125
+167.0916443 25259.4296875
+169.0600128 29224.326171875
+175.1179352 276517.09375
+176.1213989 13942.3681640625
+177.0759888 72913.46875
+178.0601349 323280.0625
+178.33461 36905.6328125
+178.3538208 47380.45703125
+179.0636597 28124.2265625
+179.0908051 30765.46875
+182.0918884 15862.2080078125
+183.0755463 30677.15234375
+186.0862427 107051.8984375
+194.1021576 32193.716796875
+195.0865173 3769536.75
+196.0894165 386849.6875
+197.0916138 30156.1796875
+200.1009827 18717.41796875
+206.0914001 140279.21875
+212.114151 17171.02734375
+218.1025543 50107.76953125
+222.086319 17386.0390625
+234.0978088 13258.01953125
+240.0959167 29296.83203125
+243.0859985 21306.513671875
+246.0744781 10014.8916015625
+246.0970612 600564.0625
+246.1256561 29191.42578125
+247.100235 71483.2421875
+257.1229248 83587.7734375
+260.1127319 96046.2109375
+270.0966797 125090.109375
+271.1008911 17478.763671875
+278.1485596 22561.701171875
+283.1429443 37614.7265625
+287.124054 123932.8046875
+288.1075439 1445243.75
+289.1105042 224971.375
+290.1113892 15376.376953125
+294.1175232 22817.810546875
+295.151001 20352.55078125
+303.1424561 15403.7978515625
+305.1341248 2934945.75
+306.1194458 995921.25
+307.1216125 195216.125
+308.1236877 19763.91015625
+311.1326294 40377.734375
+312.1179504 28563.9921875
+321.1543274 270327.8125
+322.15802 70352.09375
+323.0984802 18142.615234375
+323.1445923 1027000.0
+323.2077942 19587.021484375
+324.1466675 152618.453125
+325.1502991 20006.82421875
+328.1592407 18905.0078125
+329.144104 51428.03515625
+331.1479492 17859.767578125
+337.1596985 15744.8662109375
+338.1424255 40918.515625
+338.1806946 332616.5
+339.1829224 70397.3046875
+341.151123 16700.21484375
+347.1486511 18133.703125
+349.1599121 17096.365234375
+359.1439209 66358.703125
+366.1867371 105376.9140625
+369.1381531 23305.10546875
+376.1704407 112172.34375
+377.1557312 77409.3515625
+386.1651306 37910.6328125
+394.120697 23667.306640625
+394.1333008 14531.873046875
+394.1810608 692651.3125
+394.2406616 19056.0234375
+395.1824951 114823.9609375
+412.1886902 28513.5859375
+420.6820984 35431.7890625
+460.1914368 30803.623046875
+468.2227783 41920.5546875
+469.2219238 16863.384765625
+477.2163696 24183.62890625
+485.2477722 179219.53125
+486.2500305 40990.87109375
+488.1832886 29312.3125
+492.2288208 143898.046875
+492.7304077 84281.5078125
+493.2339478 23884.84765625
+495.2277222 45674.54296875
+503.7145691 23307.7109375
+505.212616 39298.30078125
+506.201355 44502.6171875
+507.2281494 19670.68359375
+512.2276001 44513.34765625
+512.72052 15877.96484375
+521.2369995 30748.087890625
+523.2225342 375112.21875
+524.2247925 109653.9765625
+525.2334595 17379.916015625
+529.7450562 19042.310546875
+541.2299194 20239.947265625
+558.7444458 20854.099609375
+559.244873 18767.65625
+571.750061 80971.4921875
+572.2757568 258016.328125
+573.2816772 93928.2734375
+575.7695923 20630.828125
+576.2583618 53909.76953125
+576.7611084 22245.34375
+580.263855 79269.3984375
+580.755127 2020860.5
+581.2564697 1352609.0
+581.3660278 18938.03515625
+581.7584839 527378.4375
+582.2582397 108867.375
+589.2702026 40215.73046875
+589.7687378 33162.67578125
+598.2738037 51582.7421875
+598.7719116 28267.140625
+599.2773438 37386.16796875
+599.7781372 71333.1875
+606.2546387 32958.22265625
+607.2554932 19752.5
+624.2677612 44880.16015625
+673.3248291 342103.46875
+674.3275146 120448.09375
+675.3303833 28007.431640625
+693.289917 25759.5625
+711.2999878 15316.8310546875
+802.3649292 86765.9765625
+803.3703613 43246.9453125
+873.4000854 87985.1796875
+874.3966064 22902.31640625
+1001.459106 21227.19921875
+1058.483765 14992.8828125
+1059.466064 15094.826171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.354.354.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=354"
+RTINSECONDS=38.46315984
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 66911.5
+64.5304718 42173.80859375
+64.58205414 43800.72265625
+64.58623505 29946.822265625
+64.63839722 20153.607421875
+64.64154053 15284.5869140625
+74.81617737 19084.66015625
+81.04647064 16686.22265625
+101.4578781 16873.419921875
+110.0564041 13585.6513671875
+111.261734 14106.689453125
+121.2794724 14013.6826171875
+149.5686493 59060.96875
+167.0923615 32414.1328125
+169.0591583 21424.455078125
+175.1023407 18875.197265625
+175.1178284 282609.96875
+176.1218567 21047.693359375
+177.0757141 65737.6484375
+178.0437164 22783.87109375
+178.0599823 334670.59375
+178.3348999 39948.05078125
+178.3539276 53308.6796875
+179.0632019 17075.705078125
+182.0921631 14514.671875
+186.0863342 99935.7578125
+194.1013641 40718.93359375
+195.08638 4017749.5
+195.1283722 23109.2265625
+196.0890961 399387.9375
+197.0913544 38049.62890625
+200.1027069 22937.6953125
+201.0856476 22626.798828125
+203.6540222 14068.2041015625
+206.0910797 168360.71875
+218.1021576 64350.0078125
+226.6409912 16372.9462890625
+231.7164001 15182.115234375
+234.0972137 25326.65234375
+240.0972748 24700.091796875
+243.087204 15691.4658203125
+244.1175537 23446.662109375
+246.0968475 612320.875
+247.0993958 86471.3125
+257.1227112 118771.1171875
+260.1126709 98487.3359375
+270.0969238 103675.4140625
+278.1170044 20632.916015625
+278.149292 35231.265625
+283.1425476 48413.15625
+287.1233826 144351.40625
+288.1073608 1513292.375
+289.1098938 254573.6875
+290.1130066 21127.533203125
+295.1495667 22808.318359375
+303.1453247 27835.146484375
+305.1338501 3140468.0
+306.118988 1098244.0
+307.1211853 184200.390625
+308.1230774 17012.720703125
+311.1350098 57296.07421875
+312.1166382 41488.78125
+321.1540527 339587.75
+322.1565857 52514.171875
+323.1443481 1037860.8125
+323.1888733 26430.740234375
+323.208374 19674.818359375
+324.1460571 192222.265625
+329.1427307 52015.87109375
+338.1419983 47613.2578125
+338.1806641 357400.34375
+338.6470947 21830.826171875
+339.1841125 64171.11328125
+347.1490784 29528.638671875
+349.1613159 16089.8955078125
+359.1444397 63522.91015625
+366.1862183 124668.1328125
+367.1905212 17880.318359375
+369.1374512 38331.62109375
+376.1704712 126642.9765625
+377.158783 58102.828125
+378.1566772 15182.001953125
+386.1634521 28407.740234375
+394.1807861 704238.75
+394.2410583 27172.244140625
+395.183136 144427.96875
+412.1875 33455.5859375
+421.180542 20526.505859375
+460.1888733 19751.32421875
+468.2210083 57233.67578125
+469.219574 18602.853515625
+483.2214355 17779.353515625
+483.7184753 20915.642578125
+485.2464905 183658.75
+486.2480164 47160.53125
+488.1869202 47879.2734375
+492.2286682 131975.15625
+492.7297668 90343.75
+493.2331543 39978.8671875
+495.227478 53123.8671875
+505.2130432 66330.75
+506.2098999 55512.7890625
+512.2283936 38810.48828125
+512.7330322 35592.7109375
+513.2340698 17630.912109375
+521.2311401 31137.03125
+523.2214355 466930.09375
+524.2241821 130090.21875
+530.2518921 15596.7353515625
+541.234375 19842.388671875
+555.246582 16940.06640625
+558.7501221 26919.68359375
+571.7501221 76822.015625
+572.2750854 328997.9375
+572.7485962 25197.671875
+573.2821045 92230.828125
+575.2685547 22834.255859375
+576.2582397 47412.109375
+576.7671509 32634.9296875
+580.2608032 91371.34375
+580.7546387 2501613.25
+581.2558594 1751758.0
+581.366272 23183.61328125
+581.7573242 626587.5
+582.2581177 118348.2734375
+589.2669067 103170.890625
+589.7642212 72993.4140625
+598.2756348 37492.2890625
+598.7750244 26999.0546875
+599.2796631 17873.734375
+599.7783203 45916.375
+606.2572021 46973.70703125
+607.255127 23585.810546875
+624.2675171 43020.0
+673.3234253 428658.875
+674.3248291 156837.9375
+675.319458 25881.865234375
+693.2920532 19811.50390625
+802.3618164 91884.3984375
+803.3671265 29297.501953125
+873.399353 83247.7890625
+874.402771 40879.765625
+1001.455139 35192.71875
+1003.473999 18732.072265625
+1058.484985 27842.435546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.355.355.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=355"
+RTINSECONDS=38.57149267
+PEPMASS=598.27001953125
+CHARGE=2+
+52.54587173 14454.1015625
+55.43305206 12131.8603515625
+64.5262146 42675.33984375
+64.5304718 31611.287109375
+64.58220673 23359.40625
+64.58620453 25115.12109375
+64.63793945 19923.44921875
+64.64131927 11425.4873046875
+69.71854401 12693.26953125
+73.9104538 11502.89453125
+149.5620117 19317.220703125
+149.5742798 35629.0859375
+154.0953979 13479.07421875
+167.0918427 33019.95703125
+169.059906 25044.744140625
+175.1177673 269435.0
+177.076004 66946.7265625
+178.0600433 328991.71875
+178.078125 24951.595703125
+178.3428497 68781.3984375
+179.0634918 15679.9033203125
+179.0914459 26455.03125
+182.0920563 14926.8896484375
+183.0753021 23109.078125
+186.0862579 112574.640625
+190.0602264 17432.73046875
+190.1075592 13565.205078125
+194.1022797 38324.796875
+195.08638 3604884.5
+196.0891266 379611.6875
+197.0912018 22260.212890625
+200.1016083 26495.232421875
+206.0912476 142058.21875
+207.094223 24881.572265625
+215.0917206 14349.345703125
+218.1027222 47305.75390625
+232.1181488 12556.0947265625
+234.0973358 16728.236328125
+234.2530823 12441.03515625
+240.0962524 16816.14453125
+243.0874481 17773.865234375
+244.1177368 14190.5400390625
+246.0969391 564471.8125
+247.0994873 69354.2734375
+257.1227722 90508.6328125
+260.1128235 107062.015625
+261.1162415 12287.494140625
+270.0965576 122558.984375
+277.1387939 12653.7958984375
+278.1491089 21870.185546875
+283.143158 47492.0390625
+287.1236267 146279.78125
+288.1072998 1440914.625
+289.1100464 202616.671875
+294.1166687 17716.375
+295.1479797 29784.50390625
+302.1333618 12643.271484375
+303.1422119 32369.001953125
+304.1249695 11951.341796875
+305.1338806 2750581.0
+306.0594788 15173.5107421875
+306.1189575 980079.125
+307.1213074 167195.78125
+308.1227722 21384.5859375
+311.1341248 42209.09765625
+312.1173096 31303.4453125
+318.1408997 14506.23046875
+321.1540527 296627.65625
+322.1575012 42813.75390625
+323.098175 14766.380859375
+323.1442871 949843.375
+324.1470947 149205.734375
+325.1479492 17849.2109375
+329.1435547 39113.53515625
+338.142395 36161.21875
+338.1805115 345755.9375
+338.6430054 16347.1240234375
+339.1827698 73936.7578125
+347.1442261 15478.4609375
+349.1573486 19474.771484375
+358.161499 12902.2587890625
+359.1442566 49560.109375
+366.1861267 100535.078125
+367.1913757 12601.2451171875
+369.1344299 26470.576171875
+376.1700439 108466.8046875
+377.1556702 73209.8671875
+378.1671448 12619.2890625
+386.1628418 19419.0
+394.1808167 617857.125
+394.240387 19057.40234375
+395.1827087 131992.140625
+396.1820984 16794.16796875
+398.168396 13747.24609375
+412.1872864 27093.8984375
+419.1987915 15937.1181640625
+450.2081604 12173.4619140625
+460.1891785 22543.421875
+464.1775818 18103.85546875
+468.2207947 38315.453125
+483.7171021 17140.23046875
+485.2473145 167256.765625
+486.25 45232.75390625
+488.1863403 41411.46875
+492.2286377 111046.6015625
+492.7286377 57312.203125
+493.231781 19551.974609375
+495.2253418 47261.5625
+496.223877 20153.861328125
+504.2225952 16343.1708984375
+505.2099609 45333.36328125
+506.2019348 43348.6640625
+512.2233887 34960.19140625
+512.7224121 18355.98828125
+521.2318115 17673.056640625
+521.7383423 19171.455078125
+523.2216797 371368.71875
+524.2251587 117392.203125
+529.7427368 14166.4697265625
+530.2409668 15189.2080078125
+558.7446899 22204.40234375
+571.7518921 65346.36328125
+572.2741089 264731.09375
+572.7493286 19919.654296875
+573.279541 82112.9765625
+576.2609253 46881.6484375
+576.7608032 22594.462890625
+577.2575684 20889.462890625
+580.2626953 87592.875
+580.7547607 1689263.5
+581.2561646 1126315.5
+581.3670044 17845.50390625
+581.7577515 463762.15625
+582.2585449 85244.1484375
+589.2674561 43142.97265625
+598.2717896 39769.75
+598.7753906 30898.572265625
+599.2775269 28613.30859375
+599.776062 75302.53125
+606.2572632 25152.380859375
+624.2677612 34845.45703125
+655.3120117 26573.77734375
+656.3027344 15371.466796875
+673.3235474 318959.71875
+674.3259888 117728.4609375
+675.328186 17489.087890625
+711.3009644 13137.32421875
+802.3649292 73619.9140625
+803.3707275 44525.16015625
+873.3966675 93334.75
+874.4068604 44795.69921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.356.356.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=356"
+RTINSECONDS=38.6841525
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13412094 16798.75
+64.52624512 70224.9921875
+64.5304718 41603.8203125
+64.58226776 32892.11328125
+64.58618164 28045.810546875
+64.63811493 24066.19140625
+64.64144897 21790.548828125
+77.94184113 13931.560546875
+122.1500626 14951.310546875
+149.5704498 60039.046875
+167.0907288 35784.2265625
+169.0592804 45402.58203125
+175.1179962 298872.71875
+177.0761261 52071.13671875
+178.0600586 319033.125
+178.3392029 81335.28125
+179.063736 28784.955078125
+179.0914154 20809.93359375
+182.0913391 25301.830078125
+183.0749054 44548.7109375
+186.0862274 93398.34375
+194.1019745 37840.46875
+195.0864716 4296884.5
+196.0893402 467431.6875
+197.092041 38570.63671875
+200.1019135 19807.16015625
+206.091156 156224.296875
+212.1121063 26510.658203125
+218.1017303 44917.09765625
+222.0843353 17303.74609375
+233.1250916 18940.99609375
+233.8312225 17881.78515625
+243.0860596 21115.546875
+246.0970764 637931.5
+247.099884 76489.1875
+253.1413116 17847.43359375
+257.1229858 96380.5078125
+260.1128235 118918.140625
+270.0967712 123701.515625
+277.1390381 20757.29296875
+278.1491089 30185.2109375
+283.1447754 28082.5234375
+287.1235046 161951.953125
+288.1074829 1553556.5
+288.1598511 23189.556640625
+289.1103821 200060.546875
+290.112793 25892.248046875
+294.118103 23262.45703125
+295.1513062 21144.96875
+305.1340027 3173220.25
+306.1193237 1067854.625
+307.1212769 201718.03125
+308.1234131 17852.435546875
+311.1347656 77238.2578125
+312.1153564 28939.181640625
+321.1540527 328972.96875
+322.1572571 59649.18359375
+323.1445007 1114753.625
+323.1891479 33959.50390625
+324.146759 188597.703125
+325.1478577 32166.541015625
+329.1433411 51540.68359375
+338.1421204 47183.8125
+338.180603 424237.09375
+339.1832275 84538.8515625
+351.1309204 27847.484375
+359.144989 69548.8359375
+366.1859741 141529.203125
+369.1416016 33815.33984375
+376.1702881 124129.2421875
+377.1569214 73501.578125
+386.164917 24537.439453125
+394.1809692 679346.875
+395.1817627 141202.75
+396.1861267 26707.169921875
+398.1725464 24112.439453125
+412.1903381 45962.87890625
+420.6830444 22078.580078125
+468.22229 48331.03125
+485.247345 196425.875
+486.2511292 59577.96484375
+488.1877747 43919.0234375
+492.2296448 181717.734375
+492.7315674 84812.5859375
+493.2280884 23657.857421875
+495.2261963 43488.20703125
+505.2133484 43532.27734375
+506.2049255 59796.74609375
+512.2281494 33061.46484375
+512.7321167 37413.453125
+520.7397461 27941.00390625
+521.2354126 37368.01171875
+523.2216187 473012.21875
+524.2233887 119112.671875
+525.2225342 18695.2734375
+567.2524414 18079.169921875
+571.7497559 57302.32421875
+572.276062 274353.1875
+572.7457886 21035.78125
+573.2799683 110298.3984375
+576.2632446 32523.95703125
+580.2616577 81562.015625
+580.7550049 2276061.0
+581.2562866 1615396.75
+581.7578735 599062.375
+582.2598877 168580.4375
+589.2677002 128860.328125
+589.7667236 69830.2578125
+598.2727051 32585.771484375
+598.7729492 49414.5390625
+599.2810059 19493.365234375
+599.7765503 58855.32421875
+606.2561646 36933.296875
+607.2661133 24092.109375
+624.2681274 71753.984375
+625.2697754 19243.607421875
+655.3154297 18136.525390625
+673.3243408 456719.375
+674.3272705 180326.609375
+675.3265991 33105.3984375
+711.2984619 21709.796875
+802.3660278 102818.53125
+803.3632812 43508.66015625
+873.3998413 111355.3359375
+874.3990479 41178.26953125
+1001.455933 19819.103515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.357.357.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=357"
+RTINSECONDS=38.79168646
+PEPMASS=598.27001953125
+CHARGE=2+
+58.22333908 13035.8037109375
+58.42887878 12382.4208984375
+64.52636719 58696.32421875
+64.5305481 35743.5703125
+64.58202362 42320.92578125
+64.58618927 27097.599609375
+76.17678833 12200.8583984375
+76.28580475 14414.3603515625
+82.05462646 13582.138671875
+117.0464859 11945.5908203125
+149.5740356 49044.1171875
+167.0921478 36325.5
+169.0602417 29791.146484375
+175.1179962 304460.15625
+176.121521 15621.3974609375
+177.0761871 57856.83984375
+178.0601501 273311.0625
+178.3361969 50220.0078125
+178.3551941 23826.427734375
+179.0633087 29099.1484375
+179.091629 24845.728515625
+183.0756531 33027.1171875
+186.0861969 104307.625
+194.1016998 23206.3359375
+195.0864563 4182451.75
+195.1279907 32230.8203125
+196.0893097 375351.84375
+197.0909576 26519.841796875
+200.1011658 35415.95703125
+206.0910492 136689.375
+212.1125946 18399.689453125
+218.1024323 59070.15625
+226.5186005 16043.779296875
+240.0950012 17471.46875
+243.0856171 20443.6796875
+246.0969849 628303.6875
+247.1001892 71987.25
+257.1227417 103718.9921875
+260.1126404 104578.5234375
+261.1139221 18076.3125
+270.0973816 120010.9765625
+271.1018677 19491.220703125
+283.1430054 41177.5546875
+287.1237183 139498.109375
+288.1074524 1489471.875
+289.1100769 229431.203125
+290.1109314 16259.94921875
+294.1180725 25312.966796875
+302.1337891 19919.4140625
+303.1439514 23815.529296875
+305.1339722 2947808.5
+306.1191711 1123624.375
+307.1211243 180991.34375
+308.1229858 15906.3447265625
+311.1365051 38438.453125
+312.1161499 30607.751953125
+321.1539612 297840.875
+322.157135 67250.234375
+323.1443481 1042722.8125
+323.1890564 29614.525390625
+324.1470032 173843.4375
+328.1589661 19495.431640625
+329.143219 36424.80859375
+338.1420593 43188.19921875
+338.1806335 416743.28125
+339.1826782 76671.8359375
+347.1521606 15916.697265625
+359.144928 59930.75390625
+366.1858521 144377.4375
+367.189209 36026.69140625
+369.1398621 32667.875
+376.1705627 110372.765625
+377.1560669 81277.40625
+378.1549683 19511.578125
+386.1692505 21450.35546875
+394.1809692 695604.6875
+394.2402039 25850.876953125
+395.1824646 142164.578125
+396.1890259 20069.720703125
+412.1856995 27450.4453125
+450.2127075 20931.39453125
+451.2068787 15651.7744140625
+468.2205811 53627.81640625
+469.2141113 23525.5078125
+477.2181702 16431.466796875
+478.2033997 16405.822265625
+485.2481689 214712.453125
+486.2485046 44400.57421875
+488.1885681 33475.57421875
+492.2293091 170884.796875
+492.7319031 91331.9921875
+493.2304993 27659.931640625
+495.2281189 48574.7265625
+501.2363281 21757.296875
+503.2232361 17127.5703125
+504.2175598 18256.818359375
+505.2131653 55977.96875
+506.2056885 41964.47265625
+512.2277832 54498.078125
+512.7301025 26943.69921875
+520.7403564 33670.71875
+521.2299805 39855.9140625
+521.7321167 27384.943359375
+523.2219238 443049.21875
+524.2246094 126928.1953125
+525.2303467 16655.12109375
+529.7494507 19587.3203125
+567.2505493 20526.994140625
+571.7507935 72506.203125
+572.2752075 310762.5
+572.7514648 29507.744140625
+573.2800903 82024.25
+574.2734985 20705.9609375
+576.2644653 32317.71484375
+577.2639771 23810.265625
+580.2622681 70149.171875
+580.7548218 2295816.25
+581.2561646 1562559.375
+581.3713989 23516.759765625
+581.7574463 598896.8125
+582.2578125 104039.1171875
+589.2672119 94471.0078125
+589.7678223 59157.97265625
+598.2697144 51743.16015625
+598.7732544 33815.70703125
+599.2702637 19818.546875
+599.7756348 81249.6953125
+606.2557983 43161.44921875
+624.2681274 64196.5
+637.5803833 19138.9609375
+673.3240967 400805.78125
+674.3267212 144324.84375
+675.3244019 23649.30078125
+693.2908325 27531.154296875
+802.3642578 104694.3671875
+803.3626709 56338.7734375
+873.3986816 113285.171875
+874.401001 58175.65625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.358.358.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=358"
+RTINSECONDS=38.90064757
+PEPMASS=598.27001953125
+CHARGE=2+
+52.59541321 11481.359375
+58.13722229 14344.404296875
+64.52631378 55479.8671875
+64.53057861 34515.3984375
+64.58200836 46933.1953125
+64.58630371 31287.55859375
+64.63829803 20266.728515625
+64.64176941 20736.30078125
+74.81193542 20762.1875
+116.8202209 14432.095703125
+117.7535858 14044.2294921875
+123.0147629 13512.6875
+149.5626373 30431.765625
+149.5764313 28687.69921875
+155.4839325 12285.478515625
+167.0920258 34521.7578125
+169.0592041 35794.22265625
+175.1178741 254201.375
+176.1193542 25108.775390625
+177.075943 63784.5703125
+178.0437317 24230.453125
+178.0600433 319444.5625
+178.0782623 20441.15625
+178.3456573 89912.6171875
+179.0632935 22585.318359375
+179.0912628 19388.66796875
+182.0926208 15991.5908203125
+183.0756073 37692.71484375
+186.0858917 88246.546875
+192.7047272 11294.134765625
+194.102829 39811.4453125
+195.0863953 3852903.0
+196.0891724 424686.75
+197.0913696 37548.66015625
+200.102005 31918.7421875
+201.0848846 20140.01171875
+206.0909882 145825.265625
+212.1134186 17085.173828125
+218.1021576 56848.66796875
+221.1016235 17098.876953125
+234.0967407 16236.0068359375
+240.0980072 17918.5234375
+243.0836182 15524.19921875
+244.1188354 17326.599609375
+246.0969391 595839.1875
+247.1000214 64791.28125
+249.0957184 12663.8720703125
+255.983902 13713.392578125
+257.1229858 77476.3828125
+258.1234436 15522.2568359375
+260.1123962 103330.3828125
+270.0965576 137689.921875
+271.1040344 13736.708984375
+276.1346741 16463.51171875
+277.1413269 16047.3349609375
+278.121521 19740.736328125
+283.1429443 38838.859375
+287.1231689 139019.671875
+288.1072388 1495043.625
+289.1098022 214948.625
+295.1477356 16358.5234375
+303.1436157 28772.568359375
+304.1316833 20123.73828125
+305.1338196 2856588.75
+306.118927 1092968.875
+307.1210022 190785.640625
+308.1229553 18479.12109375
+311.1350708 55892.84375
+312.1163635 30507.091796875
+318.141571 16803.712890625
+321.153595 342938.46875
+322.1566162 44863.6015625
+323.144165 984186.75
+324.1460876 149739.5
+325.1512451 17415.603515625
+329.144043 40204.40625
+331.1474915 14609.5517578125
+338.1414795 66951.234375
+338.180603 375392.625
+339.1835022 54716.53125
+347.149292 17925.69140625
+347.6491699 14887.6630859375
+349.1591187 14580.109375
+351.1332092 21607.75390625
+358.1701355 19781.017578125
+359.1441956 67276.625
+360.1496277 14870.880859375
+366.1860352 133581.375
+369.1394958 15644.2939453125
+376.1698914 95095.328125
+377.1549072 80771.6953125
+386.164917 23808.578125
+394.180603 709686.4375
+394.2394409 25879.53125
+395.1829224 127844.015625
+396.1790771 16738.931640625
+412.187561 37372.1328125
+413.1717529 13927.0703125
+421.1774597 13778.033203125
+434.1759338 15216.876953125
+452.1918335 12750.6083984375
+460.1925354 20027.41796875
+468.2188721 57162.80859375
+477.2203064 18765.05078125
+478.2024536 18246.2109375
+483.7180481 17471.79296875
+485.2477112 197439.625
+486.250824 55448.73828125
+486.8475342 14465.650390625
+488.1848145 41774.32421875
+492.2288818 142453.953125
+492.7299805 92986.046875
+493.2329712 35967.625
+495.2272034 54337.91796875
+505.2120667 47124.8125
+506.2044983 47082.75
+512.2229004 30161.95703125
+512.7260742 20974.8046875
+521.2325439 35105.10546875
+523.2216187 397785.53125
+524.2243652 111660.5078125
+525.2271118 16852.3359375
+529.7461548 13992.2421875
+548.5285034 14074.322265625
+555.2514648 22193.90234375
+558.7439575 18978.0390625
+567.7639771 18269.912109375
+571.7510986 67058.640625
+572.2745972 310830.375
+573.2797241 88035.3203125
+576.2611694 35162.56640625
+576.7669678 26455.166015625
+577.2651367 36710.859375
+580.2623901 54687.45703125
+580.7543945 2115348.25
+581.2557983 1544161.125
+581.335083 25925.0390625
+581.3666382 24769.88671875
+581.7572021 590885.625
+582.2583008 103958.7109375
+589.2659912 53097.26171875
+589.7695312 20741.951171875
+598.2715454 56535.30078125
+598.770874 35728.0859375
+599.2780151 40367.71875
+599.77771 68214.484375
+606.2579346 42962.99609375
+624.2651978 49791.8046875
+655.3181152 17308.337890625
+673.3240356 380420.9375
+674.326355 151517.15625
+675.322876 23275.642578125
+693.2850342 16621.458984375
+711.2957153 25563.482421875
+802.3635254 74907.21875
+803.3704224 38946.58203125
+873.3979492 86502.0390625
+874.402832 46744.265625
+875.4096069 16000.1953125
+1058.481323 17246.822265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.359.359.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=359"
+RTINSECONDS=39.01050896
+PEPMASS=598.27001953125
+CHARGE=2+
+58.80341721 15044.3515625
+61.05506516 11835.12890625
+64.52618408 70342.8515625
+64.53065491 49766.0859375
+64.58198547 44318.48046875
+64.58616638 30768.251953125
+64.63796234 23968.208984375
+64.64136505 18623.568359375
+68.71856689 11928.9873046875
+77.00489044 14420.9716796875
+81.59698486 13601.15234375
+89.30197144 13248.521484375
+93.29805756 15264.70703125
+147.47052 12908.5556640625
+149.5737 45298.26953125
+167.0920715 41273.46875
+169.0596161 25633.236328125
+175.1176605 280608.71875
+177.0762939 45409.859375
+178.0598297 285364.84375
+178.3473816 81986.0859375
+179.0633698 23147.5703125
+179.0914001 14104.9521484375
+182.0913391 25041.251953125
+183.0751953 32371.6484375
+186.086319 83379.1015625
+189.0784149 14001.9619140625
+194.1022186 32952.296875
+195.0863342 3935980.75
+196.0891571 413828.0625
+197.092041 24170.810546875
+200.1019897 15402.873046875
+206.0908813 135917.34375
+218.1023102 58530.1953125
+234.09758 18169.263671875
+239.1117401 17836.6484375
+240.0969391 19641.341796875
+243.0856934 26576.509765625
+246.096817 587746.4375
+247.0996399 72080.0625
+257.1224976 93221.59375
+258.124939 17054.498046875
+260.1123352 129864.1171875
+261.1171875 20188.650390625
+265.0623169 15163.509765625
+267.1095276 13526.3291015625
+270.0966492 116864.109375
+276.1329956 16308.8662109375
+278.148468 22646.857421875
+283.1434021 48919.4609375
+287.1234741 153375.9375
+288.1073608 1535418.875
+289.1100464 235480.0625
+294.1173401 21688.494140625
+295.1515808 30401.6640625
+303.1411438 19513.796875
+305.1338196 2933891.5
+306.118988 1066087.75
+307.1212158 188712.09375
+308.1231384 18327.98828125
+311.1346436 48310.4765625
+312.117981 38518.6640625
+318.1398621 16524.845703125
+321.1538086 312818.28125
+322.1564026 57188.18359375
+323.0986938 16066.7265625
+323.1442261 1044753.3125
+324.1468201 177282.109375
+329.1439819 42253.515625
+338.1428833 51943.578125
+338.1803589 388195.4375
+338.6438904 27462.03515625
+339.1832581 77748.5859375
+347.1486511 21997.072265625
+349.1600647 22254.76171875
+351.1311035 24692.2109375
+359.144989 56126.9140625
+366.1859436 111332.5390625
+367.1887207 20278.478515625
+369.1398926 38988.97265625
+376.1699829 118728.8125
+377.1570129 74677.046875
+378.15448 17721.9296875
+386.1654663 26411.21484375
+394.1198425 17256.072265625
+394.180603 684473.125
+395.1818237 129013.8515625
+412.1885986 25139.39453125
+420.6797485 20869.69921875
+428.2003479 19428.642578125
+460.1974182 30720.85546875
+468.2218323 56007.09765625
+477.2181091 16523.1640625
+478.200592 15572.01953125
+483.7206116 24860.505859375
+485.2472229 183369.28125
+486.250824 50627.1171875
+488.1831665 44549.35546875
+489.1863403 18857.8828125
+492.2292786 174578.5
+492.7303467 102074.9453125
+493.2295532 22242.52734375
+495.2263489 50613.0078125
+496.2332764 24971.19140625
+503.71521 16206.0693359375
+505.211792 47606.1484375
+506.2013245 60996.8359375
+512.2227783 32197.099609375
+512.7250366 21326.203125
+521.2302246 38314.13671875
+521.7336426 38868.11328125
+522.2283936 22227.92578125
+523.222168 446460.34375
+524.2241821 135307.453125
+525.2280884 21352.267578125
+555.2539062 18928.064453125
+558.7390747 23388.146484375
+559.2424316 20330.328125
+571.7508545 101437.1328125
+572.2731934 328243.34375
+572.7486572 27921.416015625
+573.2805176 99230.7109375
+576.2599487 30810.384765625
+576.7562866 23365.97265625
+577.2649536 23953.716796875
+580.2610474 83331.1015625
+580.7547607 2477315.25
+581.2561035 1600202.875
+581.3649902 20550.314453125
+581.7576904 630132.375
+582.2579346 104154.2734375
+589.2678833 50786.87890625
+589.7631836 45547.58203125
+598.2719727 50370.640625
+598.7741089 38553.85546875
+599.2688599 25429.49609375
+599.7787476 100626.3046875
+606.2558594 29605.09375
+624.2670288 49256.73828125
+655.317749 15908.8046875
+656.3066406 17426.77734375
+673.3237915 421205.9375
+674.3264771 163456.265625
+675.3308105 37239.0625
+802.364563 78109.09375
+803.3660889 40526.53515625
+804.3659058 21246.806640625
+873.3964233 95656.7265625
+874.4040527 46594.08984375
+1002.466064 24559.841796875
+1034.14209 14658.591796875
+1058.481567 20993.984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.360.360.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=360"
+RTINSECONDS=39.12018632
+PEPMASS=598.27001953125
+CHARGE=2+
+57.49830627 13307.22265625
+58.13708115 11084.802734375
+64.52614594 48540.98828125
+64.53044128 38634.60546875
+64.5821991 26981.365234375
+64.58621216 23580.109375
+66.75263214 11790.564453125
+82.0541153 15862.6640625
+95.87374878 12605.5849609375
+102.5235977 10559.138671875
+149.5743561 31643.6328125
+157.5242767 12594.0087890625
+167.0913239 38149.51171875
+169.0602875 26861.435546875
+175.1021729 23423.63671875
+175.1176605 279053.15625
+176.1204529 17961.330078125
+177.0759583 60735.890625
+178.0598297 303307.40625
+178.078064 17361.564453125
+178.3395996 66247.4453125
+179.0631256 21723.869140625
+179.0907288 24338.37109375
+182.0910797 24246.794921875
+183.0750122 20674.68359375
+186.0859833 105813.578125
+190.0608826 14864.11328125
+190.1069946 17415.740234375
+194.1031189 33119.08984375
+195.0862885 3712848.0
+195.1272888 20620.74609375
+196.0890198 382910.59375
+197.0921631 23689.515625
+200.1019592 32448.232421875
+201.0854187 13690.3564453125
+206.0910492 147524.328125
+207.093689 20846.79296875
+213.6763763 13829.787109375
+215.0916595 15251.5751953125
+218.1016235 45773.390625
+222.085907 14897.1611328125
+232.1160431 13337.650390625
+234.0964355 24238.5234375
+239.1125183 14495.5390625
+240.0950165 18943.513671875
+246.0968628 560044.25
+246.1258545 25723.318359375
+247.099411 60599.765625
+249.0979919 16978.982421875
+257.122467 110595.765625
+258.1235657 20549.845703125
+260.112793 116155.0390625
+270.0969238 113122.8828125
+278.1498108 24106.357421875
+283.1422119 52151.03125
+287.1231689 143387.515625
+288.1072998 1376996.0
+289.1099243 210960.0625
+290.1131897 19922.486328125
+295.1494141 29537.615234375
+303.1443787 20288.140625
+304.1280823 15317.2685546875
+305.1337891 2823433.25
+306.1191406 1010134.6875
+307.121521 188512.859375
+308.1253662 18803.7734375
+311.1341858 39705.15625
+312.1147461 17310.251953125
+321.1540222 316155.125
+322.1567688 46281.828125
+323.1442566 991493.375
+324.1466675 159718.265625
+325.1513062 20048.669921875
+329.1444397 50628.5859375
+338.1418152 55605.1875
+338.1805725 340676.65625
+339.1833801 66941.3828125
+341.1499939 12757.724609375
+347.149292 25353.59375
+347.6532288 15241.2294921875
+349.1594238 20451.76171875
+359.1459656 51667.84765625
+360.147522 13483.69140625
+366.1855469 125348.0078125
+369.1378479 31713.42578125
+376.1695251 122203.6953125
+377.1556091 69890.125
+386.1644592 30130.1875
+394.1808472 619255.8125
+394.2390137 19535.439453125
+395.181366 141471.203125
+396.1855164 17803.708984375
+412.188385 21802.21875
+413.1719055 13092.3212890625
+420.6808167 15532.9833984375
+450.2058105 13681.3359375
+464.1751099 15721.078125
+468.2215881 51376.57421875
+478.2025452 17039.47265625
+483.7189331 14272.84375
+485.2468262 176409.09375
+486.2495728 54055.17578125
+488.1849365 45044.8046875
+492.229248 126356.953125
+492.7323303 53577.265625
+492.9021301 16635.234375
+495.2271423 44081.1015625
+505.2110291 56706.00390625
+506.200592 46126.6171875
+512.227417 32459.025390625
+512.7305908 23411.46875
+521.2344971 32736.275390625
+523.2218628 395605.28125
+524.2255859 112516.5
+525.2319336 18222.486328125
+555.2541504 16477.080078125
+558.7505493 16421.697265625
+567.2548218 24199.498046875
+567.7596436 24779.583984375
+571.7493286 87443.0546875
+572.2768555 256017.71875
+572.7521973 26323.416015625
+573.2791748 69620.1171875
+574.2837524 16277.4921875
+576.2634277 25900.25
+576.7668457 16385.404296875
+577.2612915 18460.1484375
+580.2631226 90523.5234375
+580.755188 1974576.0
+581.2563477 1314432.625
+581.7580566 502318.9375
+582.2589111 83466.0
+589.2682495 25946.537109375
+598.2766113 40264.74609375
+598.7706909 16122.83203125
+599.2790527 29186.73828125
+599.7785034 59565.953125
+606.2608032 22418.19140625
+624.2683105 51346.4921875
+655.3082886 15282.9873046875
+673.3242188 393516.90625
+674.3256836 131698.0625
+693.2836304 26222.95703125
+694.296814 14782.509765625
+711.3064575 21675.146484375
+802.3685303 73535.265625
+803.3696899 32916.546875
+804.6173096 13374.990234375
+840.3492432 13843.0283203125
+873.4002686 89763.8359375
+874.40979 28387.76953125
+1058.476685 17781.61328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.361.361.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=361"
+RTINSECONDS=39.23131605
+PEPMASS=598.27001953125
+CHARGE=2+
+54.22877502 17900.55859375
+64.52635193 66121.046875
+64.53051758 41424.87109375
+64.58198547 45806.34765625
+64.5861969 35994.05859375
+64.63806915 20235.275390625
+64.64129639 16832.833984375
+87.14315796 14996.1171875
+149.5690765 57870.3515625
+167.0910645 21546.787109375
+168.0942383 16314.3515625
+169.0598297 36762.8671875
+175.1180573 281080.78125
+176.1210938 22606.408203125
+177.0759888 47967.65234375
+178.0601349 345983.5625
+178.3462677 96212.46875
+179.0636444 36844.9921875
+179.0914917 26122.603515625
+182.0903931 24506.697265625
+183.075531 20804.419921875
+186.0865173 95204.6796875
+194.1022949 38630.7890625
+195.0865326 4245228.5
+196.0893707 413741.84375
+197.0917206 31792.240234375
+200.1025543 18442.30078125
+206.0911102 142531.953125
+207.0932159 17883.78125
+218.1020813 50941.984375
+222.0857697 19447.984375
+234.0966187 17297.75390625
+239.1114349 26866.52734375
+243.086319 33611.0078125
+246.0971375 606558.0625
+246.121521 17940.34765625
+247.0998535 58058.82421875
+249.097641 32863.87109375
+257.1228943 97274.140625
+260.1127319 92989.296875
+261.116272 17143.099609375
+262.1296387 17212.97265625
+267.1101379 19548.244140625
+270.0970764 131922.09375
+271.0998535 18312.65625
+276.134552 18469.470703125
+277.1401978 16656.060546875
+278.1490479 20415.50390625
+283.1426086 51668.5
+287.1237183 150113.515625
+288.0544434 21850.666015625
+288.107605 1560737.0
+289.110321 252544.703125
+290.1107178 21178.861328125
+303.1411133 29161.48828125
+304.1387634 15474.06640625
+305.1341858 3139507.5
+306.1195679 1066292.0
+307.1220398 205728.96875
+308.1228333 20435.728515625
+311.1349792 49056.0703125
+321.1542969 319034.53125
+322.1576538 70948.4921875
+323.1446533 1115678.25
+324.1470337 168912.625
+325.1499634 14562.3994140625
+329.1437683 43654.16015625
+338.1425476 49587.6875
+338.1806946 369584.625
+339.182373 72524.2421875
+347.1478271 21376.41796875
+349.158783 22717.810546875
+358.1625977 16862.341796875
+359.1451111 43062.73828125
+366.186676 110786.28125
+369.1411438 24401.068359375
+376.170166 117514.2109375
+377.1556396 81112.1796875
+394.1811218 694213.875
+394.2391663 36225.23046875
+395.1828308 143822.09375
+396.184906 24341.431640625
+397.6813049 23103.736328125
+412.1860657 35505.75
+420.6820374 20731.44921875
+460.1917419 21269.103515625
+468.221283 43190.87890625
+484.2235107 21279.763671875
+485.2481995 202946.453125
+486.2521057 55078.75390625
+488.1848755 58116.87109375
+492.2298889 151738.8125
+492.7301025 80257.609375
+493.2320862 37955.54296875
+495.2284851 41092.19921875
+505.211792 59594.06640625
+506.2065735 48914.74609375
+512.2285767 45204.1015625
+512.7290649 25852.599609375
+521.2300415 23258.4296875
+521.7353516 17297.525390625
+523.2225342 449445.375
+524.2247314 135335.65625
+530.2516479 19685.404296875
+567.2645874 21951.423828125
+571.7515869 91051.7890625
+572.2747803 326274.78125
+572.7512817 30100.193359375
+573.2797852 100533.578125
+574.2783813 21531.0703125
+576.2617798 46727.4453125
+576.7630005 37470.578125
+577.2698364 37589.40234375
+580.2600098 52357.94921875
+580.7556763 2246906.0
+581.0387573 22452.48046875
+581.2568359 1646932.125
+581.7589722 637967.875
+582.2581787 127583.6875
+589.2687988 102558.4609375
+589.7679443 61045.7421875
+598.270752 69353.484375
+598.7741089 31153.2421875
+599.7768555 67505.3515625
+606.2582397 23974.68359375
+624.2694092 53524.53125
+655.3121948 22736.310546875
+673.3253174 426636.5
+674.3276978 171483.078125
+675.3267212 33087.4609375
+693.281189 20465.1484375
+711.2908936 20820.6015625
+802.362854 103605.6875
+803.369751 56700.73828125
+873.4049683 90210.875
+874.406189 49500.05078125
+1001.454773 28536.439453125
+1002.462463 26569.376953125
+1058.468994 19597.134765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.362.362.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=362"
+RTINSECONDS=39.3391152
+PEPMASS=598.27001953125
+CHARGE=2+
+56.06187439 14537.8935546875
+58.13347244 13648.4970703125
+64.52629852 63195.81640625
+64.53048706 43342.296875
+64.5819931 48421.1328125
+64.58618164 31174.404296875
+64.63818359 17586.1875
+68.55325317 14531.3916015625
+77.58405304 15138.927734375
+78.94173431 13132.9765625
+82.05387878 14330.0830078125
+111.2354355 13688.0986328125
+149.5703735 52307.15625
+157.7119293 13218.3876953125
+159.6098633 13840.548828125
+167.0920715 47632.51953125
+169.0604248 38543.7265625
+175.1178894 270272.34375
+177.0760498 71100.890625
+178.0601349 287973.9375
+178.3454437 97491.484375
+179.0636902 25673.53125
+179.0911865 23221.01171875
+182.38237 15600.0234375
+183.075531 22220.876953125
+186.086441 111976.3984375
+194.1039276 31030.6328125
+195.0865021 4033152.75
+196.0894318 422597.375
+197.0914154 23203.650390625
+200.1014557 31694.162109375
+201.0874023 16125.6787109375
+206.0912628 161955.90625
+209.1015015 14208.2490234375
+217.4936066 13965.041015625
+218.1029205 53083.14453125
+240.0964813 33273.5546875
+246.0970764 629848.8125
+247.099823 83691.15625
+257.1227417 106294.2578125
+258.1259155 16266.2373046875
+259.0794983 15011.7724609375
+260.1128845 107297.1875
+270.0971375 110203.84375
+271.1072388 14929.76171875
+278.1494141 32616.919921875
+283.1425171 67422.25
+287.1239014 135015.96875
+288.1075745 1473907.75
+289.1104431 241557.640625
+290.114563 19502.576171875
+294.1183167 21888.1640625
+303.1427002 20313.408203125
+305.1341553 3196464.0
+306.1194763 1073245.625
+307.1218262 154046.421875
+308.1209106 20297.193359375
+311.1348877 32511.56640625
+312.1171875 33602.5234375
+321.1544495 334990.28125
+322.157196 45504.35546875
+323.0975647 23821.236328125
+323.1446228 1093487.5
+323.1885376 31537.376953125
+324.1468201 183822.328125
+329.1441345 45586.890625
+338.1419067 59287.10546875
+338.1808472 386247.5625
+338.6447144 19746.892578125
+339.1826782 86651.6953125
+341.1430664 13908.447265625
+347.1502686 22039.904296875
+349.1596985 32357.6171875
+351.1307373 29753.65625
+358.1661377 18154.435546875
+359.1445007 49526.38671875
+366.1869202 144309.5
+367.1841125 22200.271484375
+369.1399536 15432.5869140625
+376.1702881 127863.4921875
+377.1555481 72937.953125
+386.1592712 21539.220703125
+394.1809998 686877.3125
+395.1828308 127901.9453125
+412.1904297 21488.490234375
+434.1699829 16350.7763671875
+468.2191162 46969.58984375
+477.2161255 15735.94140625
+478.1991882 27666.982421875
+483.2249756 18298.017578125
+485.2469177 206192.0
+486.2510681 58726.25
+488.1869507 49512.30859375
+492.2300415 176258.859375
+492.7321472 100272.625
+493.2315674 29633.154296875
+495.2278442 56754.03515625
+496.2304382 18047.220703125
+503.2209778 30462.591796875
+503.7182312 27554.58984375
+505.2110596 49589.05859375
+506.2030334 43208.16796875
+506.725647 22260.9375
+512.2232666 28201.80859375
+521.2369995 27825.83984375
+521.7329102 40564.70703125
+523.2227783 449632.90625
+524.2247925 123950.3515625
+525.2287598 19019.544921875
+529.7470093 17354.3046875
+558.7425537 25311.87890625
+559.2431641 19008.060546875
+571.7507935 86388.4140625
+572.2744141 336558.09375
+573.2804565 94574.0859375
+574.2770996 16612.7578125
+576.2624512 44377.51953125
+576.7578735 23876.615234375
+577.263916 20843.986328125
+580.2606201 75263.015625
+580.7554321 2412005.0
+581.2566528 1599254.75
+581.3671265 20070.4765625
+581.7578735 642226.5625
+581.862854 26664.70703125
+582.2584229 120962.453125
+589.2658691 76002.9296875
+589.765686 36029.61328125
+598.2745361 55351.1484375
+598.7767944 39442.23046875
+599.2805176 25640.064453125
+599.7780762 85566.1953125
+606.2590942 31682.607421875
+607.2648926 17683.068359375
+624.2704468 42433.06640625
+673.3251953 390098.3125
+674.3272095 145580.6875
+675.3189697 29612.69140625
+711.295105 20698.8671875
+800.3131104 17799.16796875
+802.3657837 81074.2421875
+803.369812 35803.3984375
+873.4002686 72029.109375
+874.40802 24541.060546875
+1001.462952 27091.4765625
+1058.474976 16916.822265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.363.363.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=363"
+RTINSECONDS=39.44826322
+PEPMASS=598.27001953125
+CHARGE=2+
+50.83731079 11162.2646484375
+64.52635956 54828.80859375
+64.53048706 34740.68359375
+64.58201599 33874.51953125
+64.58618164 24798.0546875
+72.60643005 12249.77734375
+74.81214142 11572.38671875
+133.5422211 11282.4423828125
+149.5638885 15570.17578125
+149.5752106 22420.59765625
+167.0919647 28802.4765625
+169.0597229 31689.150390625
+175.117981 303931.46875
+176.1216125 12030.970703125
+177.075943 70645.1015625
+178.0601654 303293.3125
+178.3346558 30908.494140625
+178.3536224 41545.46484375
+179.0623322 24086.3046875
+179.0924225 16780.474609375
+182.0911407 13177.5126953125
+183.0755768 26386.197265625
+186.0861816 109719.0625
+187.0932159 10953.6787109375
+190.1069031 12419.6865234375
+191.1086884 10879.1220703125
+194.1027069 31865.3046875
+195.0865173 3727295.25
+196.0894165 393158.4375
+197.0919037 27607.9453125
+200.1012878 27338.26171875
+201.0863953 15632.041015625
+203.1643982 10775.609375
+206.0910645 135965.109375
+207.0930786 16733.455078125
+212.1124725 19813.017578125
+213.0845947 15092.0
+215.3396759 12831.009765625
+218.1022949 49114.765625
+233.1268005 13406.228515625
+240.096344 23566.126953125
+244.1173706 18513.6796875
+246.0971069 597085.4375
+247.0996399 74616.4140625
+257.1226196 84953.5
+258.1281738 13118.46484375
+260.1131592 100384.2890625
+267.1082458 14613.4921875
+270.0970459 132897.671875
+271.1016846 21813.4296875
+277.1394043 11246.2998046875
+278.1488037 30510.470703125
+283.1434326 51740.00390625
+287.1237793 150797.40625
+288.1075134 1489106.5
+289.1105347 227712.875
+290.1139526 22130.2890625
+294.1145935 14471.380859375
+295.1505737 18085.3671875
+303.1425781 13974.5703125
+304.1272888 21195.763671875
+305.1341248 2970807.5
+306.1192322 1075651.0
+307.1220398 178418.625
+311.1350708 54596.73828125
+312.1136475 27427.974609375
+318.1422119 11706.65625
+320.1316528 19653.796875
+321.1542053 283309.1875
+322.1578369 59900.48828125
+323.1445618 1050997.875
+324.1470337 153574.78125
+325.1515808 30387.6484375
+329.1427917 38137.63671875
+331.1503601 16016.201171875
+338.1423645 48089.81640625
+338.1807861 360902.90625
+338.6453247 15656.0068359375
+339.1399536 14508.767578125
+339.1826477 65022.375
+346.1697083 14410.0361328125
+347.1481323 28278.640625
+351.1303406 17404.84375
+359.1455994 62907.84765625
+360.1499939 16564.515625
+366.1870117 107783.875
+367.1899414 23944.509765625
+369.1408997 23318.369140625
+376.1705627 105388.0078125
+377.1578979 76151.28125
+378.1558228 15531.927734375
+386.1629944 23114.1171875
+389.1552124 14049.84375
+394.1811523 637574.0625
+395.1826477 144443.65625
+412.1889648 26285.041015625
+420.6847839 26925.314453125
+460.1905823 16661.625
+464.170166 14004.7744140625
+468.2229309 43350.48828125
+473.2142029 13903.0771484375
+478.2015991 17802.392578125
+483.2288208 18710.33984375
+485.2475281 177467.578125
+486.2509766 56145.24609375
+488.1869507 53338.50390625
+489.1852722 15438.865234375
+492.2297058 143735.046875
+492.7306824 105028.421875
+493.2336426 32592.626953125
+495.2270813 50448.2734375
+503.7137756 15298.3583984375
+505.2146912 42468.2109375
+506.2042236 41168.52734375
+512.2259521 35369.265625
+512.7263184 20599.654296875
+521.2313232 28043.412109375
+521.7360229 19888.26171875
+523.2226562 401383.46875
+524.2255859 119338.2578125
+525.2276611 33038.88671875
+555.2513428 26135.724609375
+558.7481689 15933.529296875
+571.7492065 91433.7734375
+572.2745361 284301.5625
+572.7555542 17054.638671875
+573.2790527 90870.078125
+576.2613525 30783.82421875
+577.2667847 22003.689453125
+580.2600708 49167.05859375
+580.755249 1905546.25
+581.2565308 1307961.625
+581.3664551 15921.6337890625
+581.7583618 476961.0
+582.2593994 90912.4140625
+589.2687988 31521.83203125
+598.2750854 41652.48046875
+598.7757568 17986.966796875
+599.2763672 35212.87890625
+599.7774048 81503.953125
+606.2624512 21395.880859375
+607.2532349 18518.947265625
+624.2703857 42795.34765625
+655.3121948 20073.775390625
+673.3236084 306356.75
+674.3282471 122891.453125
+675.324646 26558.30078125
+694.2885742 15630.68359375
+802.3659058 86442.6875
+803.3672485 26139.9375
+873.4004517 71105.390625
+874.4108887 29427.337890625
+1001.459106 22017.5234375
+1058.484497 14705.208984375
+1059.502441 15148.6865234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.364.364.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=364"
+RTINSECONDS=39.56006611
+PEPMASS=598.27001953125
+CHARGE=2+
+50.58108521 13618.6826171875
+53.26390457 13439.5751953125
+57.07168579 12627.79296875
+64.52639771 57762.96875
+64.53048706 39191.83203125
+64.58198547 48369.4296875
+64.5861969 29731.837890625
+64.63826752 16697.943359375
+64.64144897 17343.404296875
+80.76535797 12418.3388671875
+89.23320007 14468.3037109375
+94.09893799 15744.806640625
+121.127243 12620.158203125
+121.7118912 12496.1826171875
+149.5762787 35268.03125
+167.0924225 30382.7421875
+169.0603333 29566.736328125
+175.1179047 282233.78125
+176.1222229 16679.724609375
+177.0762787 58424.109375
+178.0601044 312394.34375
+178.3423462 95865.9375
+179.0635681 22895.87890625
+179.0915375 16389.119140625
+183.0748138 21110.466796875
+186.0862122 76744.7734375
+194.1025391 33206.3125
+195.0865173 4026788.5
+195.1400146 18183.05859375
+196.0894928 406567.84375
+197.0924988 22061.4375
+200.1007843 25822.970703125
+201.0859528 19349.55078125
+206.0911407 126011.2734375
+207.0943451 18094.0703125
+212.1146088 18485.416015625
+218.1029816 46746.41796875
+234.0948029 18628.40625
+240.0960846 29565.224609375
+243.085907 21022.26171875
+246.0970764 613517.5
+246.1256256 28641.20703125
+247.1000061 79757.6015625
+256.4642029 13888.64453125
+257.1231689 89115.046875
+258.125885 22585.875
+260.1126099 114335.703125
+270.0972595 111406.1796875
+278.1496277 28300.1953125
+283.1426697 50525.90234375
+287.1236877 149893.1875
+288.1075745 1521476.75
+289.1103516 234831.4375
+290.1109924 14736.6552734375
+295.1522522 16383.828125
+303.14328 22359.791015625
+305.1341553 3068459.5
+306.1192932 1121953.25
+307.1214294 200453.28125
+308.1222229 21340.96484375
+311.1350403 40754.5078125
+312.1174316 39657.58984375
+321.1541138 319239.4375
+322.1575623 58291.84765625
+323.0979309 25063.134765625
+323.1445618 1064067.875
+324.1473083 199209.3125
+325.1460876 16969.955078125
+329.1447144 63130.50390625
+338.1422424 51016.60546875
+338.1809082 407401.03125
+338.6444092 22538.462890625
+339.1824951 82276.453125
+346.1679382 18569.087890625
+351.133606 22440.677734375
+359.1429749 51620.5859375
+366.1869507 118434.2578125
+367.188385 21444.72265625
+369.1407166 18526.912109375
+376.1708374 112130.953125
+377.1575623 66213.46875
+378.1574097 18336.25
+386.1637573 32529.8671875
+394.1810913 706917.25
+394.2395325 26285.408203125
+395.1829834 144543.421875
+412.1861267 33511.16796875
+413.1626587 15508.5966796875
+468.2226562 57703.14453125
+477.2171631 26853.0546875
+483.7189636 18076.587890625
+485.2474976 211300.875
+486.251709 73883.0859375
+488.1874084 48500.93359375
+492.2290649 115712.8828125
+492.7298279 92697.421875
+493.2271118 24652.6328125
+495.2250366 47904.28515625
+503.2237244 25527.96875
+505.2106628 58093.44921875
+506.2104187 59692.171875
+512.229126 48169.5078125
+512.7299194 40002.1484375
+521.2304077 22604.728515625
+521.7369385 20655.599609375
+522.2388306 18453.189453125
+523.2227783 407040.1875
+524.2258911 128769.609375
+525.2335815 31647.919921875
+529.7470093 16636.7734375
+555.2520752 19561.12890625
+558.748291 33455.0546875
+571.7480469 59998.66015625
+572.276001 318852.375
+572.7544556 23627.478515625
+573.2805786 111365.2109375
+576.2633057 28061.666015625
+576.7601929 36994.46875
+577.2589111 33467.4609375
+577.7651367 21158.36328125
+580.2648315 75120.0078125
+580.7554932 2115461.25
+581.2565308 1486832.125
+581.3657227 26830.150390625
+581.6754761 12144.34375
+581.7583008 574558.125
+582.2591553 103278.8984375
+589.2697144 59831.28125
+589.7717896 23397.537109375
+598.2738647 37701.87890625
+598.7765503 32465.201171875
+599.2775269 24361.265625
+599.7779541 66260.0
+606.2543945 28313.09375
+624.2675781 43590.078125
+625.2854614 29763.75390625
+673.324646 369585.59375
+674.3289795 149349.09375
+711.2890625 20408.703125
+802.3660889 80289.4765625
+803.3651733 45937.94140625
+873.3986206 97656.59375
+874.4082642 47253.41796875
+1001.452637 31162.576171875
+1058.500244 30383.490234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.365.365.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=365"
+RTINSECONDS=39.6693783
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52624512 64437.015625
+64.53077698 47095.67578125
+64.58197784 51730.88671875
+64.58618927 31032.63671875
+64.64151764 15108.751953125
+76.28078461 14555.87109375
+90.1477356 14654.3916015625
+123.2604828 16052.9931640625
+149.566391 52365.078125
+167.0914154 40883.5546875
+169.0590668 25861.9296875
+175.1177368 287421.71875
+177.0759735 62406.69140625
+178.04245 12164.7900390625
+178.0599518 315159.9375
+178.3382263 70120.1484375
+178.3570404 32835.91015625
+179.063324 29776.099609375
+183.0763702 19836.267578125
+186.0860291 111795.0
+187.0905914 16696.896484375
+194.1023254 42156.61328125
+195.0863037 4257161.5
+195.1280518 21553.810546875
+196.0890045 434250.5625
+196.9297638 15914.0634765625
+197.0915222 42011.8828125
+200.1022186 34116.99609375
+201.0861969 16324.0009765625
+206.0910645 144573.5625
+207.0939026 28469.75
+213.0857239 20438.490234375
+218.1026764 51412.46875
+234.0984955 16855.283203125
+239.1115265 16733.4375
+240.0941467 24152.87109375
+244.1182098 27426.173828125
+246.0967407 668582.6875
+246.1257172 34180.34375
+247.099411 62059.6171875
+249.0956879 17716.591796875
+257.1222534 86198.5703125
+260.111969 125012.015625
+270.0966797 116396.75
+278.1196594 20833.904296875
+278.150177 22434.4375
+283.1423645 48414.90234375
+287.1231079 139629.484375
+288.1071167 1613838.875
+289.1099243 232241.015625
+290.1117249 21379.783203125
+294.119873 16937.478515625
+295.1492615 21757.984375
+303.1431885 35159.0703125
+304.1286011 27433.83984375
+305.1335754 3248217.75
+305.2167053 26572.697265625
+306.1188965 1100298.625
+307.1208191 193682.28125
+308.1239929 21158.7265625
+311.1359558 30860.013671875
+312.1176453 42107.25
+321.153595 319116.375
+322.1567078 62160.0703125
+323.1440125 1146688.375
+324.146698 188743.828125
+329.144165 46953.2265625
+338.1414185 59868.47265625
+338.1803894 384694.59375
+338.6447144 26369.220703125
+339.1819153 91288.8984375
+347.1497498 34264.37890625
+349.1610718 29343.443359375
+359.1449585 55171.9296875
+366.1866455 135237.453125
+367.1907959 21573.654296875
+369.1383972 29620.71875
+376.1697083 128135.3984375
+377.1577148 90772.8984375
+386.1647644 30312.212890625
+394.1804504 767593.5625
+395.1822815 177578.265625
+396.1864929 25305.77734375
+412.1862488 21640.640625
+413.1682129 20796.326171875
+420.6814575 31302.875
+450.2114868 21322.607421875
+460.1930847 26858.724609375
+468.2208557 59605.49609375
+469.2173157 18076.86328125
+483.7175293 28086.3125
+485.24646 197857.15625
+486.2503357 56818.56640625
+488.1876221 58269.37890625
+492.2282104 145388.125
+492.7293701 93376.8046875
+493.2313232 28212.703125
+495.2260742 66503.578125
+505.2101135 50022.3125
+506.1990356 73753.9609375
+512.2290649 63609.8515625
+512.7281494 27806.9921875
+513.2332764 22481.142578125
+523.1342773 26876.1015625
+523.2208862 455143.875
+524.2236328 134372.0625
+525.2277832 24604.412109375
+529.741333 20584.205078125
+571.7505493 76263.9375
+572.2749023 314095.84375
+572.7492676 23775.935546875
+573.2803955 98681.765625
+576.2610474 62509.67578125
+576.7575684 42393.5546875
+577.2626953 27349.3046875
+580.2597046 100357.1484375
+580.7539673 2181539.25
+581.255127 1646666.125
+581.3384399 20552.826171875
+581.3688965 25412.615234375
+581.7565918 566661.5
+581.8630371 27688.439453125
+582.2576904 128155.3125
+589.265564 88196.9921875
+589.763855 76843.734375
+590.2602539 16099.625
+598.2703857 58711.484375
+598.7766113 27963.953125
+599.2739258 24113.529296875
+599.7764282 65219.11328125
+606.2511597 25957.984375
+624.2664795 44200.203125
+625.2731323 23568.046875
+673.3220215 399336.0
+674.324646 136669.03125
+802.362793 108206.2421875
+803.3649292 65808.2890625
+873.3968506 96407.3984375
+874.4031372 61600.09375
+1001.460571 34718.57421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.366.366.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=366"
+RTINSECONDS=39.7775513
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13455963 13972.9921875
+60.32751083 13440.5078125
+61.38276672 11925.666015625
+64.52631378 54591.43359375
+64.53048706 37615.5546875
+64.58198547 37664.05078125
+64.58625031 30004.82421875
+64.63805389 20608.1875
+64.64154816 13915.6650390625
+74.81181335 16298.0634765625
+82.05421448 15487.1435546875
+97.03822327 13458.4833984375
+124.1106491 12626.1787109375
+149.5593872 13040.5009765625
+149.5715942 54006.94140625
+167.0924072 40895.05859375
+169.0603485 26722.728515625
+175.1004639 15074.9453125
+175.1179504 291463.59375
+176.1224518 19913.431640625
+177.0763092 56080.28125
+178.0602112 310104.9375
+178.333847 22901.677734375
+178.3527679 54870.22265625
+179.0628815 36464.91015625
+179.0921021 22815.751953125
+182.0918884 18868.38671875
+183.0752716 30082.169921875
+186.0862579 102528.9296875
+190.1070251 13165.671875
+194.1029663 39036.29296875
+195.0865173 3863937.0
+195.1281128 21736.693359375
+196.0895233 360550.96875
+197.0922394 21158.10546875
+200.1021118 17528.494140625
+201.0851898 15842.2763671875
+206.091095 157399.578125
+212.1119537 14646.115234375
+215.0924988 16374.8408203125
+218.102066 48449.51171875
+222.0858002 19773.970703125
+233.1278687 15157.365234375
+234.0959167 23393.951171875
+240.0957031 25033.134765625
+242.1016388 13003.5390625
+243.0875244 28445.8046875
+244.1173096 18327.50390625
+246.0971069 607309.5
+247.0995636 61982.2109375
+248.1108398 12401.02734375
+249.0969543 27586.470703125
+257.1226807 92714.3125
+258.1240234 15741.7998046875
+260.1131287 92995.953125
+261.1141357 19391.083984375
+270.0969849 128176.1953125
+277.1405334 18468.216796875
+278.1182861 14922.1005859375
+278.1496582 23262.5
+283.1438599 38563.53515625
+287.1236877 161407.734375
+288.107605 1535829.75
+289.1103516 203700.84375
+290.1124268 17477.275390625
+295.1500549 16673.5859375
+303.1429749 35418.05859375
+304.1274719 20017.01171875
+305.1341553 2973908.25
+305.21698 22484.841796875
+306.1195679 1029443.9375
+307.1217346 194269.6875
+308.120697 13697.6630859375
+311.1353149 43725.4140625
+312.1173096 33449.93359375
+315.1302795 12581.01953125
+320.1334229 18903.2734375
+321.1545105 311674.875
+322.1574402 51711.93359375
+323.0985413 14210.0302734375
+323.1446838 965193.375
+324.1469421 176515.15625
+329.1430664 51758.90625
+338.1426392 44440.18359375
+338.1809082 387579.9375
+339.184082 65411.73828125
+347.1479797 21866.46484375
+349.1621094 30396.044921875
+358.1661377 17457.56640625
+359.1445618 60347.2421875
+366.1861267 113499.4921875
+367.182312 14698.8564453125
+369.1416931 20766.650390625
+376.1713562 110062.8671875
+377.157959 61210.0859375
+386.1650696 34537.79296875
+387.1660156 15410.0302734375
+394.1812134 649662.9375
+394.2406921 24302.478515625
+395.1819763 127355.171875
+413.1625366 16501.404296875
+420.6824341 15780.7392578125
+421.1852112 18349.455078125
+434.1694946 18131.744140625
+450.2088928 17516.220703125
+463.1890869 13753.6123046875
+468.2229004 51529.234375
+477.2168884 28355.4765625
+483.7181091 17886.9921875
+484.2167358 14634.236328125
+485.2478943 201957.34375
+486.250946 46761.0
+488.1861267 46181.8203125
+492.2299194 148710.203125
+492.7286987 90338.015625
+493.2323608 42160.49609375
+495.2280579 52024.9140625
+505.2108154 54956.859375
+506.20578 52584.93359375
+512.2282104 38977.62109375
+512.7267456 24500.4765625
+521.2305298 20804.427734375
+523.2226562 384603.90625
+524.2246094 87689.1796875
+525.2254639 26475.732421875
+529.7458496 18388.09375
+554.270752 16644.943359375
+555.2578125 18608.2109375
+559.246521 21630.435546875
+571.7498779 72923.421875
+572.2747803 254228.0
+573.2788086 91154.2734375
+576.262146 41738.43359375
+576.7669067 25389.283203125
+577.2619019 20434.505859375
+580.263916 68626.1328125
+580.7554321 2045098.75
+581.2567749 1476434.5
+581.758606 503768.9375
+582.2595825 98534.6640625
+589.2706909 45860.18359375
+589.769043 33505.03515625
+598.2706909 41710.6015625
+598.7739258 33971.90625
+599.2755737 27855.529296875
+599.7783203 70019.6953125
+606.2608643 35041.6015625
+624.265564 31845.392578125
+625.2651978 20317.62109375
+655.3196411 25661.5625
+656.3143311 17790.533203125
+673.3248901 393391.78125
+674.3255005 129261.984375
+675.324707 34208.859375
+712.2956543 14440.33984375
+784.3567505 19395.470703125
+802.3676147 87223.484375
+803.3755493 47456.0546875
+804.3770752 16025.794921875
+873.401062 85657.90625
+874.3997192 38618.265625
+875.4122925 18917.990234375
+1001.460938 34955.01953125
+1002.454529 17698.88671875
+1290.686401 13864.6103515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.367.367.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=367"
+RTINSECONDS=39.88791906
+PEPMASS=598.27001953125
+CHARGE=2+
+51.56285477 14517.169921875
+58.31012344 11987.728515625
+64.52630615 62965.85546875
+64.53051758 39836.47265625
+64.58202362 48761.90625
+64.58625031 29927.302734375
+64.63813019 20491.224609375
+64.64144897 15737.173828125
+68.3812027 13478.2890625
+74.8118515 17424.87890625
+74.81602478 15773.63671875
+82.05392456 18831.32421875
+87.02841187 14025.1279296875
+92.55395508 15209.3134765625
+149.5637512 39977.1875
+149.5780487 28127.501953125
+167.0918121 28584.861328125
+169.059494 26320.37890625
+175.1178741 265693.1875
+177.0761108 61379.5625
+178.0437317 22523.845703125
+178.0600586 322445.15625
+178.078064 18988.828125
+178.3467865 83553.9609375
+179.0632172 29128.033203125
+179.0916748 28732.775390625
+182.0917969 14723.578125
+183.0752106 35222.47265625
+186.0862122 90074.2890625
+190.05896 17244.033203125
+194.10289 39358.5625
+195.0863953 4050244.5
+196.0893555 400437.375
+197.0908203 31964.080078125
+200.1014252 26012.509765625
+206.0909576 142133.328125
+212.1143646 21246.876953125
+218.1023712 42760.23828125
+222.0843201 23156.126953125
+234.0974426 22518.212890625
+240.0953827 20424.404296875
+246.0969086 600503.5
+246.1257782 29292.611328125
+247.0995789 73687.6328125
+257.122406 96833.4296875
+258.1253967 23126.53125
+260.1126404 126649.859375
+270.0969849 126278.3828125
+278.1485291 23264.1640625
+283.1413879 40614.0625
+287.1233521 146003.421875
+288.1072693 1536363.0
+289.1101074 228396.875
+290.1112366 16110.5908203125
+294.1178894 28196.71484375
+295.1495972 30388.435546875
+303.1417847 38110.44921875
+305.1337891 3067836.75
+306.059845 20184.666015625
+306.1190796 1022151.25
+307.12146 161348.34375
+311.136261 38055.01171875
+312.1166382 30257.986328125
+321.1539307 335757.46875
+322.1560364 58791.6796875
+323.1442261 1041469.8125
+324.1462097 170885.109375
+325.153717 17473.30859375
+329.143219 47771.99609375
+331.1481628 17855.79296875
+338.1428833 41248.19921875
+338.1803589 388066.125
+338.2480469 16140.3896484375
+338.6459045 17496.94140625
+339.1839905 72714.140625
+347.144989 26361.080078125
+349.1586914 26042.921875
+351.1289673 15831.0966796875
+359.1443787 69105.4921875
+366.1855469 103544.34375
+367.1886902 25483.08984375
+369.1369324 26108.35546875
+376.1697998 131424.828125
+377.1549988 87612.2265625
+386.1650085 22763.513671875
+394.1805725 656059.25
+394.2402344 22634.345703125
+395.182251 128804.609375
+406.6849976 17458.228515625
+412.1843872 39895.58203125
+420.6806641 18748.51953125
+460.193573 14228.3388671875
+468.2203979 62449.2734375
+469.2097473 21256.87890625
+477.2143555 21192.73046875
+484.2132263 17170.767578125
+485.1802979 21672.611328125
+485.2468872 184378.953125
+486.2482605 50914.60546875
+488.18573 57455.81640625
+492.2286682 190063.0625
+492.7305603 94407.4921875
+493.2330322 31480.255859375
+495.2280273 50171.69921875
+503.7203674 16867.466796875
+505.210083 45786.4375
+506.2028809 44916.265625
+512.2247925 39503.17578125
+512.7279663 25626.78125
+513.2295532 14913.375
+521.2265625 28879.431640625
+521.7340698 34652.80859375
+523.2211304 435594.125
+524.2229614 120841.7890625
+525.2357178 30798.513671875
+530.2470093 26100.287109375
+554.2684937 18489.83203125
+558.7426147 47305.0078125
+571.7507324 88890.4453125
+572.2741089 291437.875
+573.2773438 99485.8359375
+574.2752686 20190.673828125
+576.2617188 46690.5859375
+576.7629395 30662.416015625
+577.2666016 21869.26171875
+580.262146 91480.140625
+580.7542725 2488502.0
+581.2556763 1615599.375
+581.3353882 25705.70703125
+581.3674316 30088.3203125
+581.7576904 660639.1875
+582.2583008 116712.78125
+589.2661743 44312.65625
+589.7658691 49088.6328125
+598.2728271 49194.28125
+598.7757568 42798.125
+599.2706909 27535.388671875
+599.7774048 74993.6171875
+606.2576294 42422.48046875
+624.2670288 68199.84375
+655.3204346 22277.541015625
+673.3227539 417793.375
+674.324646 136095.8125
+675.3302612 31320.53515625
+802.3668823 77346.5546875
+803.3615723 35092.71875
+873.3985596 111481.390625
+874.4008179 42789.8046875
+1001.462524 18607.82421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.368.368.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=368"
+RTINSECONDS=39.99736851
+PEPMASS=598.27001953125
+CHARGE=2+
+54.43384552 13803.263671875
+54.45880508 14289.3623046875
+55.36942673 13051.07421875
+59.35708618 12885.5146484375
+63.94574738 12604.5947265625
+64.5262146 64754.28515625
+64.53046417 41169.55078125
+64.58197784 37299.98046875
+64.58613586 31281.1171875
+64.63811493 23630.904296875
+64.64130402 13363.5234375
+74.81169891 23427.8046875
+74.81598663 16372.9169921875
+82.05423737 23726.103515625
+129.8062897 13247.8486328125
+149.5709991 52688.05859375
+167.0916748 40274.49609375
+169.059967 44553.20703125
+170.7068939 12516.3203125
+175.1177063 287564.78125
+177.0755463 55050.61328125
+178.0599365 317907.84375
+178.0775299 10611.904296875
+178.3347931 34407.0234375
+178.3540802 47947.19921875
+179.0633545 35996.4609375
+179.091507 14695.4814453125
+182.0909424 16088.5869140625
+183.075531 15447.501953125
+186.0858459 107846.078125
+190.0611267 20247.125
+194.1027374 35541.453125
+195.0863647 3913598.0
+195.128067 20213.26953125
+196.0893402 363353.0
+197.0918427 30649.046875
+200.1006165 26690.171875
+206.0909271 157873.46875
+209.1030731 14275.0908203125
+212.1135406 14662.5830078125
+218.1024323 46257.3984375
+243.0873718 14102.59375
+246.0969543 620706.5
+247.0988159 67254.1328125
+257.1226196 82286.765625
+260.1127014 97472.515625
+270.0967407 132249.109375
+271.103241 13864.3173828125
+278.1156616 15015.98046875
+283.1434326 36476.61328125
+287.1232605 169160.859375
+288.1073303 1515881.25
+289.11026 256176.859375
+290.1138 20940.44921875
+293.1329651 15992.0009765625
+294.1172485 27819.841796875
+295.1486206 18284.216796875
+303.1430664 24869.47265625
+304.1279297 29584.595703125
+305.1339417 2946493.5
+306.1191711 1113162.375
+307.1212463 178157.984375
+308.1234741 25512.69140625
+311.1349487 66169.46875
+312.1200256 38215.37109375
+321.1540527 310910.8125
+322.1573181 69149.3359375
+323.1444092 1060998.0
+324.145874 161267.640625
+325.1503296 23467.642578125
+328.1604004 15127.5302734375
+329.1442261 44010.55078125
+338.1423035 40322.82421875
+338.1805115 392316.46875
+338.64151 15204.6640625
+339.183197 79690.2578125
+346.1699829 21812.990234375
+347.1496887 18821.384765625
+349.1593628 30364.046875
+359.1453552 55874.6484375
+366.1857605 130872.265625
+369.139801 16333.212890625
+376.1702271 119664.546875
+377.15625 73723.3828125
+386.1648254 23375.962890625
+394.1809998 690387.0625
+394.2410583 28020.59765625
+395.1826172 146845.921875
+412.1862793 22680.666015625
+420.6832275 16515.388671875
+434.171875 19426.921875
+450.2101746 14423.2265625
+464.1698303 17517.90625
+468.2229309 39552.28515625
+477.2165833 17091.47265625
+483.7218323 22738.681640625
+485.2480164 194901.546875
+486.2504883 56066.5625
+488.1873779 51368.640625
+492.2292175 162880.703125
+492.7312622 86638.65625
+492.8067627 13738.5751953125
+493.2396851 29046.123046875
+495.2243042 48261.3671875
+503.2184753 15853.4541015625
+503.7163086 17222.60546875
+504.2259521 14329.7236328125
+505.2142944 48802.33984375
+506.204834 42221.5625
+512.229248 38090.328125
+512.7272339 39722.6640625
+513.2290649 15453.4814453125
+520.7409058 15675.6611328125
+521.2332764 30143.205078125
+523.2220459 443439.09375
+524.2233276 136962.296875
+525.234314 33560.44921875
+529.7433472 23032.140625
+531.1595459 16976.080078125
+554.2617188 20242.6015625
+558.7405396 20057.4609375
+571.7510986 87929.4921875
+572.274231 355629.125
+572.7518921 19389.291015625
+573.2789917 91655.671875
+574.2837524 25734.947265625
+576.2614136 56569.9296875
+576.7712402 20790.8359375
+577.267334 21728.3671875
+577.7672119 16868.5625
+580.2623291 82790.1328125
+580.7548828 2308334.25
+581.2561646 1509791.0
+581.3671875 21324.859375
+581.7579956 559003.75
+582.258667 135525.46875
+589.2671509 57287.79296875
+589.7665405 25822.126953125
+598.2713623 45058.453125
+598.7749023 33723.0234375
+599.2767944 34021.98828125
+599.7756348 99861.3984375
+606.2630005 26421.630859375
+607.2611084 18596.8125
+624.265686 54264.1953125
+625.2736816 17329.896484375
+673.3242798 445795.1875
+674.3271484 172603.515625
+675.3306274 20040.150390625
+693.2897949 20790.869140625
+802.3654175 98923.4765625
+803.3736572 42813.796875
+804.3733521 16241.119140625
+873.4034424 91098.09375
+874.4043579 51370.4140625
+875.4067383 21381.5078125
+1002.463867 18401.84375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.369.369.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=369"
+RTINSECONDS=40.10736493
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13714981 14000.833984375
+64.52629852 65376.04296875
+64.53072357 41645.26953125
+64.58209991 38342.8671875
+64.58626556 26685.7265625
+64.63829803 15809.6787109375
+64.64146423 12120.9267578125
+74.81220245 13560.09375
+149.5654907 39801.8046875
+167.091507 49992.62890625
+169.059906 27614.470703125
+175.1179047 281910.3125
+176.1213989 13717.498046875
+177.0762939 53366.59375
+178.0600433 291041.6875
+178.0777435 13240.099609375
+178.3403931 77379.4296875
+179.0635223 28122.427734375
+179.0910797 21166.46875
+182.0915527 21552.857421875
+183.0756073 38392.0703125
+186.0860901 104779.5390625
+194.1022491 45941.9609375
+195.0452576 18410.376953125
+195.086441 4039166.75
+196.0892334 400770.3125
+197.0927429 17918.9765625
+200.101593 34844.01171875
+201.0862885 14623.888671875
+206.0910034 145218.734375
+207.0941467 14926.5302734375
+215.090271 17572.62890625
+218.1023712 59194.890625
+219.8061218 14764.0439453125
+234.0971222 13429.9814453125
+239.1114655 19103.83203125
+240.094635 30129.67578125
+243.0874939 14595.15625
+244.1184082 24206.09375
+246.0969543 644338.4375
+247.0995178 66121.6484375
+257.1227722 95434.796875
+258.1239929 15557.994140625
+260.1123047 98231.59375
+261.1138916 16210.5458984375
+270.0968018 138383.96875
+278.1496582 26289.23828125
+283.1435852 42874.73828125
+287.1238403 145315.578125
+288.1073914 1469461.125
+289.1105042 223747.15625
+290.1137695 15634.4189453125
+294.1184692 16202.3388671875
+295.1516724 16307.6220703125
+303.1424255 33861.1328125
+304.1282043 19835.7421875
+305.1339417 3030587.5
+306.1192322 1042399.3125
+307.1217346 185864.296875
+308.1221924 20604.79296875
+311.1356506 36296.71484375
+312.1166992 37423.73828125
+318.1395264 17351.595703125
+321.1540833 346185.9375
+322.1569824 60406.41796875
+323.1444702 1067006.5
+324.1469116 161635.0
+329.1442871 59271.42578125
+331.1479492 13552.99609375
+338.1419983 37900.46484375
+338.180481 378729.0625
+338.6470032 13429.0986328125
+339.1832275 63504.390625
+347.1495972 31637.126953125
+349.1598206 21959.111328125
+359.145813 42508.66015625
+363.664856 17929.3125
+366.1860046 94227.5546875
+369.1401978 28126.169921875
+376.1698914 114538.4375
+377.1563721 76569.7578125
+386.164978 25456.568359375
+394.1809387 611261.0
+394.239624 16975.810546875
+395.182251 125999.1484375
+396.1870422 21492.796875
+411.223877 13510.607421875
+412.1861877 35873.90625
+413.1636658 14899.6171875
+420.6800537 36388.16796875
+430.1924438 17633.822265625
+460.1899109 16809.875
+468.221405 56656.50390625
+477.2172241 17947.40234375
+483.2272644 14714.2685546875
+483.7159729 14993.099609375
+485.2471924 198339.03125
+486.2516479 49847.68359375
+488.1867981 38688.0234375
+492.2290955 208153.65625
+492.7303162 87366.125
+493.2359314 18880.630859375
+495.2245789 71113.6171875
+505.2115173 66390.3671875
+506.203949 55131.95703125
+506.7306824 19789.390625
+512.2230835 30506.572265625
+512.7272949 34663.67578125
+513.232666 16378.4541015625
+520.7402954 17804.033203125
+521.2344971 22119.640625
+521.7305298 17634.51953125
+523.22229 462023.1875
+524.223877 114510.9921875
+525.2334595 32307.892578125
+554.2623291 15276.2744140625
+555.2457886 16825.7578125
+558.7432251 32846.2109375
+567.758606 15684.8115234375
+571.7498779 75498.125
+572.2737427 296194.1875
+572.7507935 25719.443359375
+573.2800903 96982.0
+576.2597046 31072.208984375
+580.2612305 69794.75
+580.7547607 2195592.75
+581.2559204 1478956.625
+581.3692017 18598.140625
+581.7581177 532235.375
+582.2583008 87700.5625
+589.2653809 47528.3125
+589.7667236 38736.98828125
+598.2713623 61844.26171875
+598.7700806 22034.65625
+599.2745361 30025.876953125
+599.7774658 81404.75
+606.2576294 37412.12890625
+624.2632446 48509.515625
+625.2688599 20486.005859375
+656.3071289 17038.451171875
+673.3237915 375836.40625
+674.3262939 144467.1875
+675.3272095 19837.673828125
+693.2922363 19937.90234375
+711.2953491 15566.345703125
+802.3635864 88664.2265625
+803.3659058 18654.33203125
+812.3427124 14897.22265625
+873.3991089 86729.3828125
+874.3962402 33683.1796875
+875.4014282 20373.115234375
+1001.454041 30074.416015625
+1002.449829 21135.009765625
+1126.414429 14934.958984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.370.370.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=370"
+RTINSECONDS=40.21770928
+PEPMASS=598.27001953125
+CHARGE=2+
+56.01156616 12258.0693359375
+63.58496857 16063.7705078125
+64.52636719 52293.109375
+64.53048706 34770.87890625
+64.58197784 36841.0703125
+64.58624268 28262.06640625
+64.63821411 19798.12890625
+65.522789 10913.376953125
+78.79515839 11030.1318359375
+81.04144287 11739.6611328125
+81.04659271 11171.7431640625
+83.21326447 10665.94140625
+91.77409363 11424.27734375
+149.5705261 47316.51953125
+165.2259674 10984.283203125
+167.0916595 47405.53515625
+169.0599365 38671.37890625
+170.3839874 12556.1669921875
+175.1179962 246943.546875
+176.1211548 21793.87890625
+177.076004 74364.3828125
+178.0601196 310921.78125
+178.0780334 15985.05078125
+178.3386993 65276.7265625
+178.3575897 27384.962890625
+179.0640411 23834.529296875
+179.0914764 22274.501953125
+183.0745239 27608.76953125
+186.0864716 111895.25
+190.1073761 13386.162109375
+194.1023254 35229.75390625
+195.0865021 3906628.75
+195.1280975 24649.91015625
+196.089447 367912.125
+197.0915985 25020.310546875
+200.1011505 21782.552734375
+201.086853 20319.4140625
+203.1629181 13022.400390625
+206.0912323 171651.296875
+215.091507 17305.447265625
+218.1026611 49406.3046875
+240.0976105 17981.412109375
+243.087616 19057.01953125
+244.1182404 15150.34375
+246.0970459 631659.0625
+247.0995941 67435.53125
+249.0967407 23527.775390625
+257.1230164 104391.1796875
+258.1246643 16529.9453125
+260.1131897 102794.8125
+263.2692566 12956.1513671875
+270.0970459 107281.21875
+276.1364746 12990.640625
+277.1356506 13949.7001953125
+278.1195679 19337.705078125
+278.1499634 20962.603515625
+283.1429443 33242.09375
+287.1234436 141113.375
+288.1075134 1461594.375
+289.1106873 196969.375
+290.1124268 15502.623046875
+295.1496887 24396.95703125
+303.1435547 26552.23046875
+304.1272888 21596.1484375
+305.1340637 2902141.0
+305.2157288 17409.318359375
+306.1190796 1072984.75
+307.1216431 181981.28125
+308.1220703 17845.080078125
+310.387085 12251.5419921875
+311.1347046 51962.875
+312.118927 23164.94921875
+318.1427002 16714.8984375
+321.1542969 279977.0
+322.1568909 51717.171875
+323.1445007 1015634.375
+324.1470642 161069.140625
+325.151947 18863.869140625
+329.1448669 52581.921875
+331.1493225 22201.873046875
+338.1419067 48446.890625
+338.1808472 372901.59375
+338.6460571 24907.322265625
+339.1448059 14884.345703125
+339.1838989 73367.0859375
+341.1485596 18636.33203125
+347.1498413 26996.791015625
+349.1626282 17427.9765625
+358.1644287 13300.25
+359.1438904 68634.0390625
+366.1857605 113680.875
+367.1873474 21388.59765625
+376.1706238 99885.953125
+377.1557617 70626.1328125
+383.8809814 13187.7412109375
+386.1634216 29154.423828125
+394.136322 16504.462890625
+394.1811829 660629.1875
+394.2402649 22750.7421875
+395.1832275 128807.890625
+396.1853638 20158.482421875
+411.3886719 14825.455078125
+412.1885986 34365.44921875
+413.1713562 13668.4267578125
+420.6816711 19129.14453125
+421.1820374 16962.1328125
+435.1530151 12560.1943359375
+460.1931458 16092.208984375
+468.2181091 43376.05859375
+469.2180176 14972.505859375
+485.2472839 192799.21875
+486.2515259 53159.203125
+488.1854553 49770.7734375
+492.2292786 157714.671875
+492.7314453 84657.5
+493.2312012 35985.01171875
+495.2276001 38858.15625
+496.2325745 15516.1318359375
+503.2210083 16574.61328125
+503.7172546 24700.609375
+505.2123718 52728.08203125
+506.2119141 54659.5703125
+512.2259521 46518.3203125
+512.7297974 27664.30859375
+513.2347412 16142.8076171875
+521.2337646 24947.974609375
+523.2221069 410409.75
+524.2244873 102317.8671875
+525.2302246 33459.89453125
+529.7421875 18782.419921875
+554.2689819 16511.689453125
+555.2553711 20060.095703125
+559.7526855 17790.30859375
+567.7590942 15391.73828125
+571.7495728 89457.0703125
+572.2753296 256517.84375
+572.7491455 20421.21484375
+573.2803955 97245.515625
+576.2622681 46860.8515625
+576.7632446 25660.634765625
+577.2640381 22891.841796875
+580.2647095 73015.3984375
+580.755127 1984780.375
+581.2562866 1351385.875
+581.3655396 30834.640625
+581.7578125 524586.5
+581.8658447 24043.09375
+582.2583008 121909.2109375
+589.2683105 45838.9609375
+589.7645264 27940.12890625
+598.2741089 41292.9453125
+598.7756958 32694.076171875
+599.2791138 36833.02734375
+599.7755737 44663.30078125
+606.2570801 32190.802734375
+607.2529297 21314.447265625
+624.2632446 45071.765625
+655.3179321 20611.61328125
+673.3238525 360403.8125
+674.3265991 126994.5
+675.3220825 27668.46875
+693.2877808 22189.099609375
+802.3651733 94730.6328125
+803.3639526 37970.83203125
+873.401001 75081.2890625
+874.4024048 51375.15234375
+941.2310791 14254.05859375
+1001.45929 33301.69140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.371.371.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=371"
+RTINSECONDS=40.32854835
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13437653 18335.91015625
+58.13736343 20450.876953125
+64.52630615 67269.3046875
+64.53045654 44730.5625
+64.58207703 48975.078125
+64.58617401 37020.2109375
+64.63803864 25476.91796875
+74.8119278 18450.28125
+74.81589508 20415.224609375
+76.28096771 19760.412109375
+82.05406952 18553.84375
+149.5734406 56342.9765625
+167.0918732 56085.0546875
+169.0596008 33404.390625
+175.1177521 305341.09375
+176.1211853 27306.67578125
+177.0759277 66645.640625
+178.0600586 338143.21875
+178.3376007 66067.359375
+178.3570251 35217.76953125
+179.0635376 28028.5078125
+179.0926819 18268.568359375
+186.0861206 106127.4375
+194.101944 45551.8203125
+195.0863647 4234283.5
+196.0891571 433961.34375
+197.0931091 29639.1640625
+200.1022797 21219.1796875
+201.0852966 17298.533203125
+206.0911255 155772.890625
+212.107666 15437.1103515625
+218.1027679 34825.4140625
+234.0983887 18124.00390625
+240.0961304 26000.4765625
+246.0968628 625694.0
+247.0995941 71159.5
+249.0978546 19773.2578125
+257.1223755 117251.8046875
+258.1247253 15139.2119140625
+260.11203 83814.4765625
+262.1275024 17527.4765625
+270.0969238 135589.328125
+278.1494141 29134.18359375
+283.1419373 40443.2734375
+287.123291 140117.484375
+288.1073303 1595951.0
+289.1101074 233894.703125
+295.1471558 23313.865234375
+303.1419373 29867.9140625
+304.1253052 19546.0625
+305.1338196 3130094.5
+306.059082 20601.078125
+306.118866 1203133.25
+307.1210632 210247.015625
+308.1235046 26219.818359375
+311.1348267 56227.80859375
+312.1170349 25244.572265625
+312.6406555 15387.6630859375
+321.1535034 360359.6875
+322.1566772 54671.07421875
+323.1442871 1160002.25
+324.1461792 192992.890625
+329.1436768 64391.54296875
+338.1421814 63542.76171875
+338.1804199 381694.1875
+338.645813 21975.712890625
+339.1829224 77307.546875
+347.1471863 17571.021484375
+350.1505432 16330.6923828125
+358.1653442 20167.607421875
+359.1462402 53939.16015625
+366.1858826 90962.3203125
+369.1379395 21882.853515625
+376.1702271 124165.0625
+377.1575012 64216.49609375
+378.1558228 20926.47265625
+386.1650085 20555.14453125
+394.1805725 738701.625
+394.2405701 27168.716796875
+395.182312 150419.40625
+397.6819763 20963.0546875
+411.676239 21424.998046875
+412.1835938 20644.076171875
+413.1630859 16665.923828125
+460.192749 20403.6484375
+464.1830139 17156.296875
+468.222168 43929.8046875
+485.246521 239799.859375
+486.251709 50378.8125
+488.1860046 60123.97265625
+492.2277832 188507.75
+492.7288818 127810.109375
+493.2345276 25877.197265625
+495.2281799 72226.1484375
+503.2222595 16507.220703125
+505.2102051 55224.875
+506.2085876 53792.7578125
+506.7316895 19984.8125
+512.2261963 69988.8828125
+521.2348022 38066.65234375
+521.7350464 26376.896484375
+523.1346436 25386.484375
+523.2213135 472490.625
+524.2230225 126447.734375
+525.2282715 32279.4296875
+554.2640381 18173.916015625
+555.2548218 30688.271484375
+558.7433472 34140.3984375
+567.751709 22414.345703125
+571.7521362 72261.140625
+572.2747192 361621.28125
+572.7479858 30890.607421875
+573.2787476 87745.6796875
+576.2625732 57335.65625
+576.7642212 25311.232421875
+580.2616577 70649.921875
+580.7545776 2679449.0
+581.2556763 1802624.625
+581.3369751 30327.462890625
+581.3656006 33928.83984375
+581.7566528 659650.4375
+581.8648071 24748.76953125
+582.2581787 166921.125
+589.267334 123989.8984375
+589.7659912 69667.40625
+590.2623901 28726.09765625
+598.2728882 90756.8203125
+598.7747192 89400.828125
+599.2736206 32790.9453125
+599.7768555 52067.82421875
+606.2568359 38826.90625
+607.2554932 23442.015625
+624.2659912 63896.54296875
+673.3231201 427500.0
+674.3262939 190636.046875
+675.3309326 30909.42578125
+802.3643188 85150.5859375
+803.3684082 60966.375
+873.3944702 98495.0390625
+874.4041138 54895.140625
+1001.452576 24898.65234375
+1244.379761 18926.314453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.372.372.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=372"
+RTINSECONDS=40.43606763
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58829498 16981.921875
+64.52622223 57980.0859375
+64.5304718 40267.8203125
+64.58221436 28138.87890625
+64.58616638 27762.880859375
+64.63799286 18476.94921875
+74.81182098 14041.1455078125
+76.28106689 12690.3623046875
+82.054039 13661.6181640625
+89.43912506 12739.50390625
+106.966568 12335.1474609375
+110.0737152 13917.822265625
+149.5762024 27770.9140625
+155.1242218 11546.2529296875
+167.0924988 30118.970703125
+169.0596924 31900.37890625
+175.1020508 21210.748046875
+175.1177063 266229.3125
+175.1347504 8715.59765625
+176.1203918 19898.6796875
+177.075882 51309.27734375
+178.0599213 324630.84375
+178.0767365 11606.73046875
+178.3347473 28380.85546875
+178.3534851 51693.3046875
+179.0639801 16255.6875
+179.092453 19535.17578125
+183.0755157 21577.083984375
+186.0860901 89320.4375
+190.1071625 14740.6806640625
+194.1025085 39816.6328125
+195.0863647 3799919.0
+195.1279755 17859.515625
+196.0892181 409769.625
+197.091217 22100.630859375
+200.1024933 23389.89453125
+201.0858459 27600.212890625
+206.0910797 142119.75
+212.1126556 16359.8232421875
+213.0848999 13773.505859375
+215.0911713 16633.75390625
+218.1015472 48549.63671875
+222.0826569 13353.083984375
+240.0953827 22497.76171875
+242.1009369 14796.5869140625
+243.0862274 26152.228515625
+244.11763 15279.6767578125
+246.0969086 544543.3125
+247.0994873 68491.109375
+249.0955811 15854.40625
+257.1230774 91338.1015625
+260.1123962 105804.59375
+261.1168518 17577.037109375
+270.0966797 135621.140625
+271.1001587 21793.123046875
+278.1494141 22172.1015625
+283.1437988 43607.703125
+287.1234436 144555.890625
+288.1072693 1479261.25
+289.1099548 240570.328125
+290.1126709 18793.443359375
+294.1182556 17146.203125
+295.1490784 25219.4140625
+303.144165 35365.3359375
+304.1274109 15393.927734375
+305.1338501 2782368.5
+306.1192017 958046.125
+307.1213379 170376.9375
+308.1232605 22198.802734375
+311.1346436 44038.0078125
+312.1166992 26946.271484375
+318.1425476 15362.6279296875
+321.1538391 313787.53125
+322.1564941 47276.98046875
+323.0985413 16719.25
+323.1443176 975996.625
+324.1465149 160025.140625
+329.1435852 52125.62109375
+338.1419678 39836.140625
+338.180542 360851.4375
+339.1827698 62854.59375
+341.1481628 16097.9287109375
+346.1700439 15323.3076171875
+347.1510925 26110.5
+347.6505432 18810.70703125
+359.1440125 57443.98046875
+366.1854248 111519.3828125
+367.1876831 19373.873046875
+369.1405945 25568.484375
+376.1703491 106048.5625
+377.1571655 79970.8984375
+378.1558838 16265.009765625
+386.1638489 29249.7890625
+394.1808777 630635.3125
+394.2402344 28406.81640625
+395.1825867 129914.328125
+396.1852112 21551.181640625
+412.1913147 27715.625
+460.1863403 27609.822265625
+468.2213745 41029.15234375
+485.2472229 182149.84375
+486.2506104 60859.44921875
+488.186554 51587.4140625
+492.2290649 101779.296875
+492.7298889 92168.03125
+493.2324524 23623.037109375
+495.2249146 52446.71484375
+503.7195129 22371.693359375
+505.2103577 52079.6875
+506.2068787 35647.609375
+512.225708 59235.95703125
+513.2267456 20833.46484375
+520.741394 24808.17578125
+521.234314 25911.3515625
+521.7318726 14326.044921875
+523.2220459 422539.875
+524.2238159 113493.5234375
+525.2311401 33757.4296875
+529.7417603 18354.89453125
+530.2443237 14497.400390625
+555.2518921 25760.302734375
+558.7443237 29204.529296875
+567.2564087 17129.994140625
+571.7505493 92599.4765625
+572.2737427 325128.03125
+572.7453613 26483.978515625
+573.2791138 83114.265625
+574.2843018 21356.171875
+576.2589722 58744.2578125
+576.7599487 24375.017578125
+580.2633667 86678.3046875
+580.7548828 2135165.5
+581.2561646 1435765.375
+581.368042 15973.2822265625
+581.7578735 495379.28125
+582.2584839 146173.171875
+589.2669067 52560.47265625
+589.7687378 19108.27734375
+598.2706909 45164.546875
+598.776123 37212.33984375
+599.2756958 36162.83203125
+599.7757568 61025.69921875
+606.258606 28147.62109375
+624.2667847 55147.3046875
+625.2736206 17782.46484375
+626.2718506 20591.1640625
+655.30896 16852.28515625
+673.324585 413483.46875
+674.3259888 158980.796875
+675.3309937 39209.9609375
+693.2851562 18086.69140625
+711.2943726 21229.96875
+802.3635254 77668.375
+803.3615112 22802.19140625
+873.3986816 91954.9375
+874.3988037 38674.26953125
+1119.798096 13641.4599609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.373.373.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=373"
+RTINSECONDS=40.54677778
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13435364 14806.7470703125
+64.52629852 72033.8828125
+64.53062439 46717.15625
+64.58200836 48531.796875
+64.58621979 32863.14453125
+64.63828278 17406.220703125
+64.64137268 15030.021484375
+73.66399384 15111.4052734375
+74.81155396 14710.5029296875
+76.37711334 13027.775390625
+82.05414581 19375.6796875
+98.32575226 15808.810546875
+149.562561 31910.501953125
+149.5762939 28140.4375
+167.0914917 30303.353515625
+169.0596924 37910.65234375
+175.1177368 274300.375
+177.075943 60709.8671875
+178.0600281 303937.75
+178.3369751 61156.42578125
+178.35672 29085.99609375
+179.06427 21355.82421875
+182.0907135 19705.333984375
+183.07547 20316.619140625
+186.0860291 111584.515625
+194.1025238 33066.08203125
+195.0863647 4031754.25
+196.0892792 417172.78125
+197.0913849 32216.90234375
+200.1008911 29505.66796875
+201.0859222 30311.486328125
+206.091095 129225.0859375
+218.1027374 45886.66796875
+233.1266174 19768.31640625
+243.0866852 16301.7119140625
+246.0692139 29446.48828125
+246.0969238 583420.875
+247.0991974 71038.625
+257.1225586 101816.03125
+260.1127625 80453.890625
+260.1404724 15943.8154296875
+270.0969238 111440.078125
+277.1411743 20650.115234375
+278.1491089 20655.423828125
+283.1431274 41956.640625
+287.1233521 144163.21875
+288.1072693 1557816.75
+289.1104126 221891.171875
+290.1128845 17428.91796875
+294.1160583 16174.6689453125
+295.1498413 19033.576171875
+302.1329346 15300.71484375
+303.1439819 37956.33984375
+304.1281433 24708.876953125
+305.1337891 3091582.5
+306.1188049 1084474.375
+307.1208801 180427.84375
+308.1230164 20044.58984375
+311.1344604 56945.80078125
+312.1162109 33945.4765625
+321.1538391 309601.1875
+322.1567383 47800.81640625
+323.1443481 1046237.8125
+324.1461792 159396.21875
+325.1516724 21762.28515625
+328.1607971 15230.7529296875
+329.1430664 41941.4609375
+338.1422729 45247.5859375
+338.180542 366085.03125
+338.6448059 31103.34765625
+339.183197 68224.90625
+341.1376648 14857.4560546875
+349.1598511 24230.40625
+351.1268616 17483.69921875
+359.1439819 61748.46484375
+366.1861267 93439.8984375
+367.190918 21741.505859375
+369.1390686 37176.28125
+376.1699219 116360.0390625
+377.157135 81528.3046875
+378.1639709 18528.75390625
+386.1617737 31565.8828125
+394.1807861 685526.9375
+395.1822205 151201.875
+396.1851807 26468.953125
+412.1911011 38427.2578125
+460.1899414 20797.73046875
+468.2208862 42864.99609375
+485.2471008 186467.171875
+486.2489014 58062.03125
+488.1869507 40564.953125
+492.229187 195653.28125
+492.7305603 81467.875
+495.2266235 53632.0390625
+505.2112122 59389.34765625
+506.210083 47923.18359375
+512.230835 28818.349609375
+512.7288818 25569.328125
+521.232605 31208.8984375
+523.2214966 465818.5625
+524.2229004 122707.640625
+525.2262573 40803.11328125
+555.2532959 18252.806640625
+558.7463989 16950.849609375
+571.7490845 85939.4140625
+572.2738037 355292.875
+573.2771606 86209.5625
+574.2822876 21260.81640625
+576.2565308 54046.546875
+580.2614136 106143.140625
+580.7546387 2508465.0
+581.2558594 1667299.5
+581.3649902 25654.453125
+581.7573853 629963.25
+582.2584839 134767.234375
+589.2667847 60679.29296875
+589.7651978 37061.0625
+590.2666016 19136.478515625
+598.2748413 72642.2578125
+598.7766724 36160.8359375
+599.27948 29109.80078125
+599.7767334 60063.3671875
+606.2550659 24305.814453125
+607.2583618 17285.205078125
+624.2704468 45684.6328125
+625.2712402 23668.146484375
+655.3173828 21933.3046875
+673.322876 409047.53125
+674.3261719 161172.984375
+675.3291016 23502.482421875
+693.284729 18118.591796875
+711.2915039 22851.31640625
+802.3613281 101578.3125
+803.3681641 38890.6953125
+809.2396851 15948.6044921875
+873.4011841 80285.109375
+874.397583 45887.3671875
+875.3989868 29944.51953125
+1017.91272 15006.486328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.374.374.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=374"
+RTINSECONDS=40.65572211
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626801 50693.33203125
+64.53068542 38730.1328125
+64.58201599 43531.1875
+64.58625031 21607.828125
+64.63843536 15465.7822265625
+64.64183807 12102.693359375
+69.36083221 11781.291015625
+74.81198883 14773.08203125
+76.2811203 12282.0234375
+149.5646057 36390.02734375
+167.0920715 40213.31640625
+169.0597534 28928.888671875
+175.1180115 262182.15625
+176.1209869 15040.97265625
+177.0764923 70569.953125
+178.0602875 303581.5
+178.3500519 63322.83984375
+179.0636292 32478.6875
+179.0915833 19836.708984375
+183.0749664 25398.51171875
+186.0862274 97233.953125
+190.7985229 11859.939453125
+191.2578735 10973.39453125
+194.1023407 43798.765625
+195.0866089 3655510.0
+196.089447 370947.8125
+197.0920258 19327.265625
+200.1009979 15401.103515625
+201.085556 15354.0703125
+206.0912781 138124.28125
+212.1138306 10857.9931640625
+215.0918732 12861.908203125
+218.1029205 51167.7734375
+234.0970764 17421.541015625
+239.1126862 13600.388671875
+240.0948792 25194.376953125
+243.0870209 18483.1484375
+244.1201172 12859.0712890625
+246.0972137 588759.25
+247.0998535 62577.32421875
+257.1230774 90277.5625
+260.112793 112047.3671875
+270.0974426 120622.6640625
+278.1473389 30149.6015625
+283.1434631 46030.26171875
+287.1236877 130543.5625
+288.0776978 22413.01953125
+288.1077271 1482118.75
+289.1105957 207875.140625
+290.1124878 20347.89453125
+294.1181641 23531.560546875
+295.1515198 26934.869140625
+304.129364 26813.615234375
+305.1343079 2831354.0
+306.1194153 1007641.5
+307.1217346 159941.046875
+308.1241455 16585.830078125
+311.1361694 51143.7421875
+312.118866 37083.86328125
+321.1542664 284826.21875
+322.1567383 49167.80859375
+323.1448059 986871.125
+324.1468811 142224.78125
+325.1522217 15935.1943359375
+329.1438904 45337.7578125
+338.1424255 51681.9375
+338.1810608 388468.65625
+338.225769 26166.630859375
+338.6456909 18682.208984375
+339.1833496 63566.7578125
+349.1592712 23282.220703125
+351.1265259 17508.41015625
+359.1450195 56660.3359375
+366.1860962 98924.5234375
+367.1869202 18006.931640625
+369.1399841 17236.404296875
+376.1701965 101254.796875
+377.1564636 51294.1484375
+386.1637573 24612.376953125
+394.1359558 8643.4072265625
+394.1813354 656982.625
+394.2390137 13661.3271484375
+395.1832581 135495.6875
+396.1843567 20794.115234375
+397.6749878 13442.7216796875
+412.1915894 27336.822265625
+421.1877441 15747.1494140625
+434.1729126 12332.111328125
+452.180481 14521.3271484375
+464.1739197 13132.1455078125
+468.2222595 55611.97265625
+469.2194519 14889.34375
+477.2185059 25926.59765625
+482.1762695 13447.8798828125
+483.7235718 20580.71875
+485.2480774 191926.921875
+486.25177 59331.3515625
+488.1870728 51739.11328125
+489.1900024 14905.841796875
+492.2292786 156239.3125
+492.7312622 107539.671875
+493.2262878 21669.736328125
+495.2259521 44609.38671875
+503.7184753 20911.681640625
+505.2101746 40180.80078125
+506.2047424 42970.28125
+507.1989441 16522.611328125
+512.2261963 44364.3203125
+512.7293701 22612.619140625
+513.2266846 16862.275390625
+520.7349854 13720.30078125
+521.2357178 37372.84375
+521.730957 14772.451171875
+522.2428589 15203.80859375
+523.2228394 449080.375
+524.2253418 111919.0
+525.227356 27990.443359375
+529.7407227 14979.2607421875
+555.2592163 16460.99609375
+558.7451782 16671.806640625
+571.75 89355.0
+572.2750854 284208.96875
+573.2816772 88645.15625
+574.2862549 13859.54296875
+576.2620239 35516.41015625
+576.7681274 24756.560546875
+577.2641602 24681.162109375
+580.263855 86879.3671875
+580.7557983 2017383.625
+581.256958 1421141.5
+581.7584229 524606.5
+582.2597656 77257.515625
+589.2684937 37571.8203125
+589.7617798 20199.205078125
+598.2728271 28074.8046875
+598.7765503 21260.26171875
+599.2767334 42029.58984375
+599.7778931 79193.4453125
+606.2598877 34513.0390625
+624.2676392 45506.7890625
+625.2683105 16985.419921875
+673.3247681 329674.5625
+674.3275757 135737.859375
+675.3222046 22835.693359375
+693.2943115 18632.4453125
+784.3482666 17787.306640625
+802.3660278 80236.1875
+803.3705444 26696.150390625
+858.3591309 12671.4609375
+873.4005127 80902.625
+874.4080811 52165.83203125
+875.421814 20819.556640625
+934.2770996 14314.0244140625
+1058.482544 13542.4384765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.375.375.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=375"
+RTINSECONDS=40.76741555
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430786 17036.67578125
+58.1375351 16686.294921875
+64.52616882 71562.015625
+64.5306778 54783.70703125
+64.58200836 46699.63671875
+64.58625793 34064.76953125
+70.12411499 14069.2978515625
+91.71478271 15983.5283203125
+110.3197403 16602.658203125
+142.1301422 13848.537109375
+149.5718994 58218.71484375
+167.0916443 38073.24609375
+169.0601044 25270.962890625
+175.1177521 294128.9375
+176.1174011 16490.234375
+177.0760803 56005.39453125
+178.059845 346134.9375
+178.0774231 14495.8447265625
+178.3440094 96978.625
+179.0635834 23959.1875
+179.0917358 27093.525390625
+182.0907898 20142.33203125
+183.0755615 32336.654296875
+186.0860291 107032.296875
+194.1034088 30734.22265625
+195.0863495 4166190.0
+196.0890656 411005.40625
+197.0921783 30073.724609375
+200.101181 21443.8828125
+201.0853882 23976.05859375
+206.0910797 177588.328125
+212.1141968 18777.02734375
+218.102478 65186.71875
+239.1099701 15521.7255859375
+240.0944977 26198.99609375
+246.0744324 11435.90234375
+246.0968628 613098.25
+247.0997009 73970.8203125
+252.0348053 16866.470703125
+257.1226501 94572.2109375
+260.1121216 122866.7578125
+267.1108704 18570.7890625
+270.0967712 116669.5234375
+271.0997314 29020.447265625
+283.1424255 41885.5859375
+287.1230774 152618.34375
+288.0543518 22420.0859375
+288.1072693 1567531.875
+289.1102295 206918.390625
+290.1119385 21153.884765625
+295.15271 17307.80078125
+303.1452026 28948.2109375
+305.1337585 3120322.75
+306.118866 1167561.125
+307.1216431 165111.03125
+308.127655 18158.130859375
+311.1348267 49255.52734375
+312.1174622 38333.57421875
+321.1540222 356137.125
+322.15625 52790.97265625
+323.1443176 1168218.5
+324.1461487 174341.171875
+325.1478882 22497.03125
+329.1433716 33916.9921875
+331.1505432 21921.720703125
+338.1418152 59598.0703125
+338.1804504 407128.53125
+338.6452026 22009.19921875
+339.1827698 90204.21875
+347.1497498 28079.615234375
+349.1603088 23841.173828125
+351.1341858 18914.212890625
+359.1445312 68822.3203125
+366.1859436 130855.5546875
+369.1362305 21851.23046875
+376.1708679 141041.203125
+377.1556091 83301.0859375
+386.1613159 34655.83984375
+394.1806335 726974.25
+395.1832886 135481.109375
+396.1878357 20323.28515625
+412.1848145 23331.404296875
+420.6827698 21511.99609375
+460.1898499 20848.328125
+468.2209778 61508.171875
+469.2147217 15657.103515625
+483.7193909 29657.84765625
+485.2471008 233597.234375
+486.2501526 58193.23828125
+488.1910095 46686.0078125
+492.2286682 186917.21875
+492.7296143 118263.9453125
+493.2297668 39675.875
+495.2262268 58880.609375
+505.2124023 47244.8125
+506.2034302 60464.09765625
+512.2250977 43836.73828125
+512.7282715 25836.369140625
+521.2333984 25786.01171875
+521.7367554 23891.830078125
+523.2213135 468813.3125
+524.2230835 149115.703125
+529.7443237 23125.5625
+559.2518311 21466.65234375
+571.7522583 81136.5859375
+572.2739258 326753.9375
+572.7538452 22899.0546875
+573.2820435 100198.65625
+576.260498 44776.9453125
+576.7650146 43513.94140625
+577.2689819 26379.15625
+577.7648315 23083.935546875
+578.267395 20688.23828125
+580.262085 71164.53125
+580.7544556 2551838.75
+581.2559204 1751494.375
+581.3363037 36315.91796875
+581.7572021 653251.625
+582.2584229 139515.828125
+589.265686 123704.671875
+589.7657471 61090.4765625
+598.276123 43652.265625
+598.7721558 37893.99609375
+599.2730713 22266.498046875
+599.7764282 62017.50390625
+606.2527466 24565.9375
+624.2651367 42306.34375
+625.2681274 19239.515625
+655.310791 22237.79296875
+673.322998 425954.0
+674.3254395 151286.515625
+711.305603 25608.7890625
+802.3606567 87074.4453125
+803.3643188 52711.234375
+873.3986206 108773.28125
+874.4019775 55320.40234375
+1001.437866 28389.052734375
+1058.472534 23898.654296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.376.376.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=376"
+RTINSECONDS=40.87545163
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13734818 14385.4365234375
+64.52622223 60054.390625
+64.53043365 36982.03125
+64.58200836 42431.6015625
+64.58618164 24018.318359375
+64.63842773 14610.939453125
+64.64151001 13557.1015625
+74.81189728 19245.92578125
+80.74989319 12920.4619140625
+100.8080826 11993.8193359375
+149.5744171 35812.53125
+154.1768646 11860.99609375
+167.0919952 33238.2109375
+169.059433 21528.33984375
+175.1178589 258860.875
+175.1337128 21152.48046875
+176.1219635 17086.537109375
+177.0757446 68883.484375
+177.8782043 13821.9365234375
+178.0600586 318319.5625
+178.3377533 51904.91796875
+178.3569031 31595.791015625
+179.0642548 22545.048828125
+179.0916595 14719.7421875
+182.0916748 20144.634765625
+183.0756683 28742.634765625
+186.0865326 85836.6796875
+190.1083221 16822.056640625
+194.1024628 30264.232421875
+195.086441 3819574.25
+196.0892181 376266.90625
+197.0912476 30915.337890625
+198.323349 12121.953125
+200.1010895 22020.515625
+201.0858917 13288.76171875
+206.0912781 132121.03125
+212.115036 20791.642578125
+215.0905457 20549.23046875
+218.1020813 51093.55859375
+222.0868988 19883.83984375
+239.1181641 12298.9599609375
+243.0876007 22906.474609375
+246.0969238 607395.3125
+247.0998077 85895.5859375
+257.1228333 88413.171875
+258.1254883 17204.970703125
+260.1122742 90255.4921875
+270.0966492 117121.9375
+278.1481323 30471.115234375
+283.1437073 47520.2890625
+287.1233826 152952.140625
+288.1074219 1432876.0
+289.1101074 211238.15625
+290.113678 25758.138671875
+295.1491699 17895.310546875
+303.1437378 34945.9453125
+304.1263123 13238.8203125
+305.1339417 2843551.5
+306.1190491 1003599.75
+306.2935486 15451.810546875
+307.1213074 186014.171875
+308.1223145 13535.998046875
+311.1362915 38631.3125
+312.119873 36963.140625
+313.5636902 13118.986328125
+321.1539612 302860.03125
+322.1563416 53238.6953125
+323.1444397 975350.75
+323.2087708 15940.599609375
+324.1468506 169673.375
+329.1444397 48937.484375
+338.1421204 36417.16015625
+338.180481 380662.96875
+338.6445312 21042.216796875
+339.1828918 57067.08984375
+347.1492004 25924.74609375
+349.1594849 26623.740234375
+351.1318054 17038.3125
+359.1445007 59471.77734375
+366.1871948 93421.234375
+367.1916809 15744.6357421875
+369.139679 41817.44140625
+376.1697693 95664.0078125
+377.1555176 76062.6015625
+386.1661987 33601.92578125
+394.1206665 17663.5859375
+394.1808472 653065.1875
+395.1824951 140773.9375
+412.1902466 29043.80859375
+429.1829224 16513.935546875
+460.1922913 30003.5859375
+468.2204285 39565.2578125
+478.2043457 21036.548828125
+485.2473145 178763.46875
+486.2493896 46239.28515625
+488.1863403 41345.34375
+492.229248 145355.578125
+492.7290649 60931.99609375
+493.2286377 36520.703125
+495.228241 56196.9296875
+503.7163696 15854.0078125
+505.2144775 49824.9609375
+506.2048645 51135.44140625
+507.222168 14767.7470703125
+512.2246094 30751.462890625
+512.7302856 18533.533203125
+521.2338867 30453.673828125
+521.7314453 24626.0546875
+523.2219849 391245.8125
+524.2241821 120235.859375
+525.2276611 20628.712890625
+555.2540894 17233.310546875
+558.7402344 28018.197265625
+571.7476196 73796.6328125
+572.2744751 294357.625
+572.7456665 21286.6484375
+573.2770996 66736.2109375
+576.2620239 54427.25
+577.2642212 19754.47265625
+580.2614746 72422.453125
+580.7549438 2103669.5
+581.2562256 1415901.0
+581.3653564 21275.244140625
+581.7581787 557057.9375
+581.8647461 22121.10546875
+582.2594604 128215.46875
+589.2665405 57092.68359375
+589.7612305 26686.5234375
+598.2727661 43816.69921875
+599.7768555 59512.94921875
+606.2513428 27877.39453125
+607.2550659 16869.814453125
+624.2672119 42632.5078125
+673.3245239 402233.28125
+674.3262329 160433.1875
+675.328186 24424.009765625
+802.3630371 102782.8671875
+803.3687134 42298.23828125
+873.4002075 93403.90625
+874.4000244 35356.75
+1001.459045 22763.109375
+1058.463257 20507.50390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.377.377.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=377"
+RTINSECONDS=40.98604194
+PEPMASS=598.27001953125
+CHARGE=2+
+56.59902573 13957.79296875
+59.01515198 13669.443359375
+64.52614594 60737.9296875
+64.53045654 42337.828125
+64.58190155 43890.86328125
+64.58613586 30123.421875
+64.63825989 16845.828125
+64.64143372 16961.095703125
+74.81189728 16457.783203125
+74.81609344 19695.208984375
+75.94967651 14335.6376953125
+86.89147186 12349.162109375
+108.3087387 11823.1611328125
+125.9069672 15022.4775390625
+149.5625 31393.94140625
+149.5762787 32022.421875
+155.0793304 13422.521484375
+167.0921326 37472.4765625
+168.0944672 14151.2412109375
+169.0593109 27689.767578125
+175.1177063 293027.90625
+177.0758057 41566.5234375
+178.0597992 327237.46875
+178.0781403 19130.66015625
+178.34552 92372.2109375
+179.0640106 22237.861328125
+182.0919342 15049.31640625
+183.0749512 24966.923828125
+186.0861359 111699.421875
+190.0608826 19368.5078125
+194.1016998 37510.17578125
+195.0862885 3982802.5
+195.1280518 30888.365234375
+196.0892029 397018.4375
+197.0900421 32091.8671875
+201.085556 21285.990234375
+206.0907288 158201.03125
+207.1141205 13129.6181640625
+217.1284485 14074.4609375
+218.1015472 52389.37890625
+222.0854492 16548.75390625
+234.0965576 14498.4560546875
+239.1126404 19480.38671875
+240.0948792 20128.22265625
+243.0853729 21692.970703125
+246.096817 577872.6875
+246.1203461 8589.103515625
+247.0998993 75636.2734375
+257.1227722 96637.359375
+258.12677 23847.912109375
+260.1122742 120700.8828125
+262.1305847 16034.5986328125
+267.1093445 16041.177734375
+270.0968018 97615.375
+271.102417 17396.26953125
+276.1031799 14808.2314453125
+278.1158752 14464.134765625
+278.1486511 31984.5390625
+283.1427002 42892.15234375
+287.1234436 147805.84375
+288.1072083 1452892.125
+289.1102905 220124.234375
+294.1167908 21547.57421875
+295.1511841 20321.826171875
+303.1407166 29461.349609375
+303.7962341 13225.7060546875
+305.1337585 3035549.0
+306.1191406 1038595.6875
+307.12146 169385.171875
+308.1243286 21816.1328125
+311.1357727 42910.77734375
+312.1152344 27852.68359375
+321.1538391 306956.1875
+322.1566772 50098.08984375
+323.1443481 1126081.25
+324.1457214 160154.1875
+325.1528931 20220.087890625
+329.1420593 46113.46484375
+338.1429443 33979.41796875
+338.180481 374227.3125
+338.6445618 29393.15234375
+339.182373 81837.6875
+347.1506042 39342.5703125
+349.1591797 20482.359375
+351.1291199 17340.109375
+358.1659546 20143.646484375
+359.1442566 51678.4453125
+366.186554 114081.0546875
+369.1377258 29719.52734375
+376.1702271 110686.09375
+377.1562195 68397.1796875
+386.1636963 31084.900390625
+394.1807861 678317.5625
+395.1828918 158018.53125
+396.1875916 15879.8212890625
+412.1853638 36439.33203125
+419.1942444 17413.205078125
+428.6966553 14343.396484375
+468.2218323 46456.05859375
+483.2277222 22934.029296875
+483.7260437 17718.271484375
+485.2475586 193932.375
+486.2511902 50475.984375
+488.1870422 42497.8828125
+489.1908264 19514.04296875
+492.2290344 146583.109375
+492.7316589 96735.015625
+493.2301636 21847.94140625
+495.2260742 65517.2265625
+505.2124329 46259.78125
+506.2071533 28231.740234375
+507.2001038 18733.4296875
+512.2290649 28876.48828125
+512.7269287 28488.212890625
+521.2391968 28526.578125
+521.7329712 25134.0390625
+523.2219238 431922.625
+524.2243652 121182.296875
+525.2379761 21525.810546875
+555.2523193 18705.275390625
+556.2437134 15669.7197265625
+558.7387085 19992.349609375
+567.2543945 21366.4453125
+571.7498169 56940.25390625
+572.2753296 302413.875
+572.7521973 23562.275390625
+573.2814941 80932.7421875
+576.2564087 18133.400390625
+580.2635498 81396.0234375
+580.755188 2338523.5
+581.2562866 1530092.0
+581.7582397 587150.3125
+582.2584229 117589.7734375
+589.2694702 46498.28515625
+589.770813 42136.9375
+598.2741089 23844.037109375
+598.7771606 18879.107421875
+599.2730713 20591.53125
+599.77771 76698.7578125
+606.2630615 30971.330078125
+624.269043 45584.45703125
+625.2666626 17205.875
+655.3150024 23420.685546875
+673.3242188 428548.625
+674.3269653 153652.90625
+675.3305054 18544.392578125
+711.302124 18280.93359375
+802.3646851 94419.796875
+803.3743896 42282.87890625
+873.4022217 92351.984375
+874.3960571 29721.88671875
+1059.488281 18597.693359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.378.378.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=378"
+RTINSECONDS=41.09595624
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13458633 14595.5732421875
+58.13729858 17275.73828125
+64.52626801 55208.6328125
+64.53047943 31706.119140625
+64.58205414 49022.5859375
+64.58618927 30932.908203125
+67.86503601 12899.8466796875
+75.70842743 12524.3291015625
+81.04673004 15276.2294921875
+99.30310822 11251.572265625
+149.5663452 41980.640625
+149.5783691 14717.6328125
+153.6662292 12431.9765625
+167.0910492 37070.06640625
+169.0605621 28103.744140625
+175.117981 263801.75
+176.1216736 17413.6171875
+177.0760651 72648.8828125
+178.0600433 318350.34375
+178.0778809 15019.888671875
+178.3341522 28580.1796875
+178.3529663 59613.4765625
+179.0634003 26699.01953125
+179.0923157 23553.623046875
+182.0905609 16621.783203125
+183.074234 21395.9375
+186.086319 99777.6484375
+194.1028748 28618.15234375
+195.0865021 4021227.25
+195.1283569 26593.89453125
+196.0895233 393903.96875
+197.0915985 27646.69140625
+200.1020966 33191.55859375
+201.0856781 14534.0634765625
+202.1069641 13507.830078125
+206.0913544 118926.46875
+207.092804 19289.98046875
+209.0789642 13032.052734375
+209.1013184 16684.1015625
+218.1018677 46846.1484375
+222.0870209 20560.05078125
+232.1186829 14473.6240234375
+234.0969391 16441.478515625
+240.0971832 25915.47265625
+246.0970612 607308.125
+247.0999146 68156.9453125
+257.1232605 81520.3671875
+260.112793 98587.25
+262.1295471 13772.2626953125
+270.0969543 117740.40625
+277.1376038 13450.064453125
+278.1489868 25030.9453125
+283.1432495 43414.8984375
+287.1235046 139534.328125
+288.1075134 1498990.75
+289.1104431 237207.65625
+290.1123047 27215.87109375
+294.1152344 14350.2294921875
+295.1498413 25244.96875
+303.1426392 29535.068359375
+305.1340942 3051693.5
+306.1193237 1077107.5
+307.1215515 167024.25
+308.1228638 17802.88671875
+311.1345825 53874.8359375
+312.1165771 26605.296875
+320.1320496 15601.8662109375
+320.1756287 14047.5712890625
+321.1542969 327305.40625
+322.1592102 38158.05859375
+323.1445618 1067644.25
+324.1464233 173279.734375
+325.1507568 12835.947265625
+329.1432495 41602.265625
+338.142395 45112.5078125
+338.1806946 375873.9375
+338.6456604 26925.232421875
+339.1415405 15734.6533203125
+339.1832886 52470.80078125
+341.1441345 22041.142578125
+347.1504517 28529.294921875
+349.1548462 25268.33984375
+351.1282043 15324.1279296875
+358.1657715 15949.1630859375
+359.1454163 69703.7421875
+366.186554 127661.84375
+367.1881714 21433.865234375
+369.1395874 33579.48046875
+376.1703491 106792.9609375
+377.1576233 75938.640625
+386.1656799 23088.046875
+394.1810608 722451.5
+394.240448 19598.1015625
+395.1820679 131281.40625
+412.1885376 34781.625
+434.1706848 16320.6455078125
+468.2199097 51468.26171875
+482.1776123 17359.447265625
+483.72052 34905.0
+485.2471008 184714.109375
+486.2521057 42110.09765625
+488.1893311 55799.9140625
+492.2296448 135718.59375
+492.7308655 94726.875
+493.2304993 35534.91796875
+495.2268982 61182.140625
+503.71698 16172.78125
+504.2108154 18274.830078125
+505.2116699 48965.66796875
+506.2052307 48471.42578125
+512.229126 30770.052734375
+512.7246094 18956.357421875
+521.2354736 30568.7421875
+521.7386475 19444.7109375
+523.2226562 455052.03125
+524.2249756 111750.3125
+525.2318115 20562.99609375
+555.2531128 19284.111328125
+558.7443237 15724.96875
+559.7396851 21006.30078125
+567.2567139 16450.37890625
+568.2473755 15775.126953125
+571.7531128 68218.859375
+572.2744751 291242.71875
+572.7558594 21078.224609375
+573.2816162 97062.5390625
+576.2599487 37019.6015625
+576.7628784 24984.33203125
+580.2637329 76273.234375
+580.755249 2070820.0
+581.2564697 1451888.0
+581.3664551 18310.06640625
+581.7580566 503890.15625
+582.2594604 86121.9765625
+589.2686157 61329.3125
+589.7644653 16422.939453125
+598.2737427 63767.23828125
+598.7754517 49168.4921875
+599.2747192 24572.75390625
+599.7773438 71000.71875
+606.2579346 19585.41015625
+624.2685547 46319.28515625
+656.3085327 15856.1416015625
+673.324585 348463.25
+674.3256836 152525.984375
+675.329834 30590.330078125
+711.2940063 17638.85546875
+802.3688354 81809.1796875
+803.3676147 32970.68359375
+873.3997192 108249.828125
+874.4021606 40232.40234375
+1001.45636 24158.267578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.379.379.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=379"
+RTINSECONDS=41.20611139
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13429642 14166.865234375
+64.52616119 68491.1640625
+64.53061676 48554.6484375
+64.58196259 41387.47265625
+64.58618164 30231.435546875
+64.63815308 15126.8623046875
+99.06045532 11886.9013671875
+132.2164001 16927.33984375
+149.5713348 52744.41015625
+167.0917664 40648.3671875
+169.0601654 42706.72265625
+175.1177826 286171.5
+176.119812 18959.62890625
+177.0761261 64716.1015625
+178.059906 301716.96875
+178.3465881 97093.7109375
+179.063446 27380.400390625
+182.0908661 14760.296875
+183.0756226 20707.822265625
+186.0858459 100273.109375
+187.0899658 14956.421875
+194.1031799 25100.759765625
+195.08638 3935451.5
+196.0891876 388713.3125
+197.0926666 22843.025390625
+198.4052277 13959.0263671875
+200.1004333 18108.16015625
+201.0846558 17571.09375
+206.0909119 152458.921875
+212.1038208 12284.8701171875
+218.1022949 40260.56640625
+233.1279449 14555.77734375
+234.0989075 15373.52734375
+240.0970154 32395.66796875
+246.0969696 584141.875
+247.0998535 75987.1640625
+257.1226807 82333.921875
+258.1249695 19317.37890625
+260.1126404 95659.8359375
+261.1178589 16558.798828125
+267.1091614 16472.50390625
+270.0967712 136775.84375
+278.1503906 28021.80078125
+279.865448 14282.091796875
+283.1422119 38705.80859375
+287.12323 163543.890625
+288.1073914 1491076.5
+289.1104126 211805.546875
+290.1103821 25848.38671875
+294.1155701 18985.6953125
+303.1429443 38904.51953125
+305.1340027 3012738.0
+305.2164612 20064.41796875
+306.1190796 1081400.75
+307.1217651 160991.984375
+308.1231995 17975.65234375
+311.1340637 37418.796875
+312.1164856 42820.4453125
+321.1541748 294254.28125
+322.1574097 59484.171875
+323.1445007 1043784.1875
+324.1469116 175923.53125
+325.1463318 19031.49609375
+329.1438293 55363.40625
+336.5636292 15334.5478515625
+338.1427917 49217.29296875
+338.1805725 375573.46875
+339.1826172 90294.578125
+347.1525879 21863.978515625
+359.1442261 51957.73046875
+366.1865234 105137.8515625
+367.1886597 17309.015625
+369.1385193 30284.001953125
+376.1702271 123983.9375
+377.1580505 72303.4609375
+378.1550598 14290.7060546875
+386.1651001 44022.7890625
+394.1811218 653000.25
+394.2394409 13459.615234375
+395.1831055 127084.859375
+396.1914673 18911.23828125
+399.1012878 15693.8740234375
+468.2210693 38488.5078125
+477.2193298 21159.4921875
+485.2478943 156105.328125
+486.2515869 64334.29296875
+488.1844788 57651.97265625
+492.2288818 151284.734375
+492.73172 90916.4609375
+495.2243958 42534.40234375
+503.7267151 19599.021484375
+505.2106018 58854.43359375
+506.2029114 35151.5234375
+512.225769 40244.9140625
+512.7242432 21362.6953125
+520.7384644 14885.0146484375
+521.2279053 18390.556640625
+523.222229 394617.84375
+524.2255249 101426.546875
+525.2282104 18418.53515625
+529.7423706 21111.88671875
+558.7450562 16910.923828125
+559.2487793 21805.115234375
+571.7521973 79268.2734375
+572.274292 287778.25
+573.2805786 95415.703125
+576.2630005 49173.37890625
+576.7625732 20942.3125
+577.2659302 30100.080078125
+580.260437 75136.296875
+580.7554932 2461225.25
+581.2565918 1614144.375
+581.3668823 29289.98046875
+581.7579346 569050.0625
+581.864502 20136.763671875
+582.258606 110802.1875
+589.2670898 49959.52734375
+589.767334 52349.03125
+598.2731323 65847.03125
+598.7740479 59857.64453125
+599.7834473 51490.265625
+606.2575073 35245.37890625
+607.2476196 20428.28125
+624.2694702 46681.9140625
+625.2733154 27217.0546875
+655.322937 22437.8515625
+673.3253784 435468.1875
+674.326355 191540.328125
+675.3180542 25394.9296875
+693.2910156 23661.228515625
+711.2979126 18374.9140625
+802.3661499 106810.53125
+803.3621826 39433.859375
+873.4020386 104024.96875
+874.4048462 43990.0
+875.4039917 24059.013671875
+1001.455322 17061.53125
+1058.471191 17682.369140625
+1059.476685 20776.140625
+1185.512085 16073.7001953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.380.380.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=380"
+RTINSECONDS=41.3156644
+PEPMASS=598.27001953125
+CHARGE=2+
+52.96807861 11608.9755859375
+58.13431931 13197.3173828125
+58.13712311 13822.1015625
+63.58506775 14965.4873046875
+64.52631378 59233.59765625
+64.5306778 43084.57421875
+64.58205414 46908.2734375
+64.58622742 28031.28515625
+64.63782501 13540.861328125
+73.13766479 11653.7392578125
+90.92127991 13874.3916015625
+149.5726929 54159.734375
+167.0918427 35245.23046875
+169.0591736 17528.138671875
+175.1178436 260797.6875
+176.1195831 15828.1005859375
+177.0762939 56190.57421875
+178.0601501 309729.71875
+178.3449249 95351.3515625
+179.063385 18623.12109375
+179.0911407 13816.166015625
+183.0767212 20623.248046875
+186.0860748 116993.78125
+194.1027374 36613.3125
+195.086441 4042584.25
+195.1285553 21924.728515625
+196.0892181 363217.15625
+197.0911255 36174.43359375
+199.1225891 13478.8076171875
+200.1016541 30332.78125
+206.0913239 150856.0
+207.0935669 22789.63671875
+209.0785675 15332.8837890625
+215.0899811 19764.283203125
+218.1025543 57339.734375
+234.0969238 25089.212890625
+237.1065216 14565.4521484375
+240.0964203 19598.24609375
+246.0970154 616722.375
+247.0993958 68768.5078125
+257.1227722 109533.25
+260.1125183 116848.453125
+270.0970764 133301.953125
+271.1020813 16358.193359375
+276.1353149 19357.708984375
+278.1499329 16661.451171875
+283.1433105 49042.28515625
+287.1235352 153571.78125
+288.1074829 1461762.625
+289.1101685 227500.59375
+290.1125488 16578.83203125
+294.1182556 23253.95703125
+295.1513367 27774.37890625
+303.1421204 41800.765625
+304.1277771 17027.060546875
+305.1340637 3108014.5
+306.1192627 1090959.5
+307.121521 171982.984375
+311.1350403 44414.58203125
+312.1170654 32577.32421875
+321.1541748 304240.90625
+322.1570129 47805.140625
+323.1445618 1064014.75
+324.1467896 170797.5
+329.1434631 58204.0546875
+338.1422729 54870.8125
+338.1806641 389977.0
+338.644928 16991.47265625
+339.1827393 65264.8671875
+341.1517639 18040.9375
+347.1513062 20853.2109375
+349.1582642 24052.427734375
+359.144928 64448.87890625
+366.1861267 112937.4765625
+367.1899414 23569.72265625
+369.1390076 23048.95703125
+376.1699829 91801.15625
+377.1555481 87465.875
+378.1627197 18752.0546875
+386.1641846 37171.29296875
+394.1808167 720454.6875
+394.2409058 23434.9453125
+395.1830444 138778.59375
+412.1897278 28504.8984375
+420.6808777 22327.0390625
+463.1872864 14659.83203125
+468.2226257 51982.61328125
+477.2178345 22925.29296875
+483.720459 37295.83984375
+485.247467 218078.71875
+486.2506714 73917.1171875
+488.1870728 60165.04296875
+492.2293091 175500.546875
+492.7304077 94746.7734375
+493.2307129 31632.9765625
+495.2261353 53190.55078125
+496.2278748 20585.453125
+505.2134705 58687.5703125
+506.2099304 47136.7734375
+507.2136841 19124.01171875
+512.2260132 54808.65625
+512.7304077 31193.177734375
+513.2263794 18531.349609375
+521.2352905 34169.41015625
+521.730835 26286.0078125
+523.2225342 435591.5625
+524.2250977 126332.9453125
+525.2341309 16673.98046875
+529.7421265 24809.8984375
+555.2641602 26146.41015625
+558.7436523 23122.7421875
+571.7513428 73435.6484375
+572.2757568 340012.15625
+572.74823 23349.439453125
+573.2789307 96259.875
+574.2802124 17148.302734375
+575.2727661 22013.275390625
+576.2595825 37854.03125
+576.7650146 21645.466796875
+577.2658081 32124.83984375
+580.2630615 71080.59375
+580.755249 2381812.5
+581.2564697 1694448.25
+581.3664551 19571.13671875
+581.758606 516513.40625
+582.258728 131693.65625
+589.2678223 64631.65234375
+589.7650146 45442.33203125
+598.2757568 51551.8828125
+598.7747192 37607.38671875
+599.2747192 49989.0
+599.7782593 100757.0703125
+606.2572021 31540.328125
+624.2655029 44606.265625
+673.3244629 381068.71875
+674.3275146 169202.546875
+675.3282471 22242.82421875
+693.2953491 20713.8203125
+802.3656616 77794.609375
+803.3669434 44117.90234375
+873.401001 95198.21875
+874.4065552 57802.5078125
+1002.461426 17331.810546875
+1058.470825 15663.119140625
+1059.480591 16245.5048828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.381.381.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=381"
+RTINSECONDS=41.42510992
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 62990.9375
+64.53067017 43485.37109375
+64.58203888 41956.3125
+64.58617401 32453.33984375
+68.32048035 11929.6044921875
+73.32805634 12390.5
+82.05434418 16671.654296875
+120.0102463 12942.5703125
+133.6101379 13580.552734375
+149.574295 40406.9765625
+167.0919037 26609.03125
+169.059494 36113.69921875
+175.1004028 12585.1435546875
+175.1178741 287950.90625
+177.0760193 57766.84765625
+178.0599823 308863.625
+178.0778503 21697.501953125
+178.3420105 92032.3984375
+179.0633545 19292.99609375
+179.0924225 19628.755859375
+183.0750885 34674.05859375
+186.0859985 102782.4375
+194.102066 48210.953125
+195.0864105 3957233.5
+195.1278687 34199.3515625
+196.0892792 413172.25
+197.0919342 26116.009765625
+199.1170349 15288.1259765625
+200.1002197 20206.25
+201.0865479 19848.83203125
+206.091217 155076.96875
+207.0932465 18536.05859375
+212.1129303 22225.080078125
+218.1026306 52942.875
+222.0848541 16261.40625
+229.4382172 14216.1650390625
+234.0971832 17228.029296875
+240.0975189 17268.41796875
+244.1163025 14363.4052734375
+246.0969696 627814.3125
+247.1000519 68604.359375
+249.0979309 18666.578125
+257.1228638 94506.515625
+258.1246033 18090.6484375
+260.1123657 122753.84375
+270.0968323 113425.6015625
+278.1490173 17504.025390625
+283.1424866 42731.96875
+287.1234436 157333.453125
+288.1074219 1529571.25
+289.1104431 251475.25
+290.1143494 16731.76953125
+294.118927 18652.87890625
+302.1329956 14862.7490234375
+303.1445007 24266.044921875
+305.1339111 2850848.25
+306.1193237 1024416.5
+307.121521 165030.53125
+308.1212769 15463.2373046875
+311.1343689 47502.96875
+312.1163635 19131.74609375
+321.1541138 309874.96875
+322.1577759 67444.1171875
+323.1444092 1030658.3125
+324.1459045 175394.328125
+329.1444702 52116.96875
+338.1428528 40387.43359375
+338.1804199 354599.28125
+338.6453857 22403.681640625
+339.183136 72371.4375
+347.1451721 23014.908203125
+349.1581116 18450.9921875
+351.1287537 21752.296875
+359.1446228 41361.91796875
+366.1859436 112018.84375
+367.1856689 24924.63671875
+369.1383362 19135.70703125
+376.1700745 121377.3828125
+377.1558838 63554.1171875
+386.1659851 31723.05078125
+394.1809387 669931.75
+394.2399597 30027.60546875
+395.1832275 120002.921875
+412.1870422 37199.08984375
+468.2224426 50404.7734375
+469.2203369 17113.89453125
+483.7227783 17720.55859375
+485.2476501 190884.15625
+486.2504883 39525.28125
+488.1856079 44792.58984375
+492.2295532 167331.453125
+492.7321777 73541.40625
+493.2315979 22649.12109375
+495.2289124 60897.7734375
+503.2185364 18047.53515625
+503.7205811 25841.837890625
+505.2141113 54180.75390625
+506.2045288 45630.08203125
+512.2253418 42159.34765625
+512.7283325 27714.287109375
+521.2372437 25266.837890625
+523.2221069 384587.4375
+524.2250977 118468.4375
+525.2313232 29286.716796875
+529.7453003 16349.986328125
+558.7460938 15243.3408203125
+571.750061 92389.6171875
+572.2740479 271412.40625
+573.2787476 84092.3359375
+576.2585449 26729.931640625
+576.7589722 36579.20703125
+577.2593384 22914.82421875
+580.2636719 82501.203125
+580.7548828 2185909.0
+581.2562866 1566455.125
+581.3667603 30092.048828125
+581.7578125 470326.21875
+582.2582397 119497.9296875
+583.2704468 17004.380859375
+589.2655029 62546.6796875
+589.7652588 30694.056640625
+598.2731934 44677.359375
+598.7762451 23444.435546875
+599.2719116 39060.17578125
+599.7764282 77146.0625
+606.2593994 29097.89453125
+607.2595825 22115.716796875
+624.2677002 39333.90625
+625.267334 23202.26171875
+655.3125 17207.419921875
+673.3239746 376103.3125
+674.3253174 155711.8125
+675.317749 28995.150390625
+693.2931519 31979.330078125
+711.2957764 15330.60546875
+802.3629761 92882.8359375
+803.3706665 34157.05078125
+873.4005127 75679.5546875
+874.4033813 35744.8125
+1001.445557 15493.576171875
+1058.466064 24386.462890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.382.382.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=382"
+RTINSECONDS=41.53516027
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 60798.875
+64.53070831 43408.78515625
+64.58204651 46873.56640625
+64.58621979 27821.82421875
+64.638237 18044.70703125
+65.57929993 12886.296875
+68.51473999 13631.095703125
+70.36550903 12878.8564453125
+74.81623077 16217.6318359375
+85.4424057 13799.95703125
+148.8721619 12265.3798828125
+149.5703735 50057.47265625
+154.031662 13174.6083984375
+167.0923767 37590.37109375
+169.059845 25230.2734375
+175.1180267 268201.75
+176.121994 13955.0048828125
+177.0760803 66246.8671875
+178.0601044 322344.5625
+178.0780334 14999.15625
+178.3446198 85679.3046875
+179.0634613 20809.451171875
+179.0929871 15507.19921875
+182.0915527 15731.083984375
+183.0765991 31751.435546875
+186.0863037 107184.109375
+194.1029816 31692.01171875
+195.0865173 3799074.5
+196.0891418 380645.46875
+197.0922241 28030.435546875
+200.1015015 26044.521484375
+201.0865631 16608.9453125
+206.0912476 140011.40625
+207.0912781 19149.583984375
+207.1125031 18697.345703125
+213.0865021 20465.833984375
+218.102356 53579.421875
+240.0976105 24890.59375
+243.0868225 19082.568359375
+244.4073944 13217.986328125
+246.0971222 602239.0
+247.0998077 83018.8046875
+257.1228943 87680.7578125
+258.124115 16134.84765625
+260.112793 104899.0546875
+270.0970459 112813.8359375
+278.1178589 14150.12109375
+278.1488647 29867.400390625
+283.1435547 27304.341796875
+287.1236267 147634.859375
+288.1075134 1504038.5
+289.1109009 206022.53125
+290.1133423 22286.248046875
+294.117157 22619.125
+295.1498718 31186.529296875
+303.1447449 29878.419921875
+305.1340637 3009920.25
+306.1192627 1068937.75
+307.121582 163465.546875
+308.1237183 18109.771484375
+311.1353149 57299.51171875
+312.1178284 39023.35546875
+321.154541 316714.96875
+322.1574402 65075.28515625
+323.1445923 1077991.25
+324.1467285 165730.5
+329.144165 56422.47265625
+338.1416321 61966.46484375
+338.1809692 365961.03125
+338.6461182 20223.7734375
+339.1419067 16086.0810546875
+339.1832275 74990.8359375
+359.1452332 57715.55078125
+366.1859436 106747.296875
+367.1882324 25840.9453125
+369.1387634 30166.455078125
+376.1703796 107214.65625
+377.1576538 66350.15625
+378.1569519 21048.662109375
+386.1653748 31348.810546875
+394.1810303 650292.3125
+395.1834717 121447.828125
+396.1839294 17332.4296875
+397.6833801 14529.4052734375
+412.1821899 28754.501953125
+460.189209 26871.890625
+464.1751099 20098.03125
+468.2210083 34673.328125
+475.2051697 16070.236328125
+483.7141724 24462.419921875
+485.2478027 213021.890625
+486.2512207 56180.5234375
+488.1850891 43828.74609375
+492.2297363 135516.03125
+492.7316589 84806.3828125
+495.2288513 48811.6171875
+496.2329102 26758.93359375
+505.2116394 40488.578125
+506.2043762 44085.2734375
+512.227417 38810.921875
+512.7255859 44166.36328125
+521.7316284 27356.3046875
+523.2224121 403797.6875
+524.2246704 107738.296875
+529.7442017 17838.2890625
+571.7496338 80753.546875
+572.2745972 276680.1875
+573.2798462 79723.4609375
+576.2576294 30450.556640625
+576.7650757 27886.939453125
+577.2700806 17243.357421875
+580.2630615 89841.3515625
+580.7554932 2262175.0
+581.2565918 1569595.75
+581.7585449 541107.625
+581.8622437 18013.765625
+582.260376 116989.71875
+589.2678223 64927.1953125
+589.7613525 31625.1640625
+598.2716064 39602.01171875
+598.7766724 62336.5234375
+599.274353 23332.19140625
+599.7767944 68103.703125
+606.2614136 32792.16796875
+624.2755127 50161.4140625
+625.2733154 20769.693359375
+673.3251343 405874.1875
+674.3292847 148056.546875
+675.3247681 17259.90234375
+693.284729 20184.689453125
+802.3668213 90315.6640625
+803.368042 32769.8828125
+858.3729858 14578.0859375
+873.4014893 91932.3515625
+874.4029541 34895.68359375
+1001.446594 21473.265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.383.383.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=383"
+RTINSECONDS=41.64518773
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52624512 56708.7734375
+64.53048706 39313.47265625
+64.58203888 42879.203125
+64.5861969 27996.576171875
+64.63819885 25716.458984375
+64.64149475 15996.0048828125
+76.28096771 13753.916015625
+82.05371857 13453.7490234375
+149.5689087 49146.5625
+167.0925903 31914.7734375
+169.0599823 31883.009765625
+175.1177368 269342.125
+176.121521 20045.583984375
+177.0762634 70523.390625
+178.0599518 336017.0
+178.3335876 21396.1484375
+178.3525543 56122.53515625
+179.0638733 23498.388671875
+182.092804 14457.671875
+183.075592 30972.33984375
+186.0862885 78847.59375
+190.0593262 16531.259765625
+194.1028137 35510.96484375
+195.08638 3889469.75
+195.1278839 20536.0546875
+196.0892639 443134.96875
+197.0909119 18858.80078125
+200.100647 15882.470703125
+206.0910187 147778.46875
+207.0932007 20808.46484375
+212.1139374 12733.279296875
+218.10289 68835.5
+233.12677 17577.513671875
+235.1032867 13970.9306640625
+240.0955658 26769.771484375
+246.0969238 613673.5
+246.1258087 29862.150390625
+247.0995636 68968.78125
+257.1227417 101690.53125
+258.1244812 16456.322265625
+260.1125488 106623.796875
+261.1177673 19910.72265625
+267.1087952 17123.169921875
+270.0968018 111326.765625
+277.1408386 17053.154296875
+278.149292 18118.345703125
+283.1425171 50993.2578125
+287.1231995 148670.0
+288.1072998 1438428.75
+289.1101685 209579.0625
+295.1492615 21687.802734375
+303.1420288 35580.35546875
+304.1287842 17493.814453125
+305.1338501 3089736.0
+306.118988 1075467.375
+307.1221008 137669.65625
+308.1213074 15180.7724609375
+311.1363525 51055.9140625
+312.1186218 42248.375
+320.1695251 15747.4169921875
+321.1536255 339258.59375
+322.157196 45541.96484375
+323.1443176 1101231.0
+324.1467285 175531.40625
+325.151825 19768.14453125
+328.160553 13803.5869140625
+329.1451416 44167.6875
+338.1428528 38498.953125
+338.1805115 367627.71875
+338.6405334 23042.98828125
+339.1825256 61005.98828125
+347.1502075 27789.068359375
+347.7099304 14119.267578125
+359.1430969 45631.546875
+366.1864624 126732.1484375
+367.189209 32235.728515625
+369.1396179 17665.294921875
+376.170105 104735.765625
+377.1549377 66211.265625
+386.1617737 19077.033203125
+394.1806641 636571.75
+394.240509 23556.4140625
+395.1833496 146998.09375
+396.1848145 17859.68359375
+398.1717224 15280.12890625
+412.1864014 27733.87109375
+412.6686096 14455.25390625
+420.6791687 20767.064453125
+460.1903992 17463.189453125
+468.2216492 47066.8984375
+474.0220032 13287.2841796875
+474.7138062 23103.904296875
+478.2097473 19565.125
+485.2471008 228454.765625
+486.2515259 55367.0859375
+488.1853638 60166.984375
+492.2286682 182627.78125
+492.7296448 86865.421875
+493.2342529 21240.650390625
+495.2279053 53051.1796875
+503.2218018 30381.9375
+505.2105103 53030.625
+506.2060547 46489.9375
+506.7303467 19781.037109375
+512.2229004 39468.45703125
+521.2355347 28522.423828125
+521.7307739 19482.15234375
+523.2220459 397012.5625
+524.2238159 144308.6875
+525.2275391 21784.958984375
+530.2334595 18773.794921875
+571.7495728 82640.953125
+572.274353 303587.96875
+573.2799072 85162.296875
+574.28302 32429.767578125
+576.2595215 33663.29296875
+576.7581177 22615.31640625
+580.2633667 95001.1171875
+580.7546997 2091682.25
+581.2559814 1503934.125
+581.3682251 22626.6953125
+581.7576904 584167.75
+582.2589111 104115.7109375
+589.2648315 45471.02734375
+589.7695312 25437.837890625
+598.272644 47233.765625
+598.7756348 53357.23046875
+599.277771 18866.099609375
+599.7791748 58895.453125
+606.2580566 28135.21484375
+624.2677612 42158.14453125
+625.2732544 24399.462890625
+673.3232422 354048.3125
+674.3250122 126602.734375
+675.3255005 34124.13671875
+693.286438 21172.99609375
+711.3009033 19667.79296875
+802.3624268 81706.1875
+803.3692627 31973.224609375
+873.3973389 97845.3203125
+874.4026489 57868.80078125
+1001.467957 25212.919921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.384.384.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=384"
+RTINSECONDS=41.75528674
+PEPMASS=598.27001953125
+CHARGE=2+
+53.24335861 12258.0986328125
+64.52627563 57128.05859375
+64.53046417 40025.09375
+64.5820694 39242.16796875
+64.58625793 23756.58203125
+64.64154053 17197.599609375
+74.35927582 14204.703125
+82.0541687 17688.298828125
+107.340332 14329.248046875
+130.5490723 13673.1005859375
+149.5723419 47341.828125
+167.0918121 46590.125
+169.0589294 19930.384765625
+175.1177673 278098.03125
+176.1212921 16801.458984375
+177.0760956 62756.21484375
+178.0600128 353071.03125
+178.0777435 20503.986328125
+178.3431396 89209.6171875
+179.0637817 27997.927734375
+179.0917969 24581.90625
+180.9629364 12557.8857421875
+182.0908661 18644.953125
+183.0743713 28468.869140625
+186.0861664 107040.296875
+187.792923 11877.525390625
+194.1029358 29231.296875
+195.0863953 4006308.5
+196.089325 381346.84375
+197.0904694 24612.154296875
+200.1021881 23654.99609375
+201.0862579 13607.1162109375
+206.091095 133084.515625
+209.1016998 12234.6767578125
+212.1127625 16314.50390625
+218.1024017 58634.92578125
+233.1269226 15976.021484375
+234.0972137 18892.646484375
+240.0940094 19387.7421875
+242.1018829 15393.7744140625
+243.0879669 13933.521484375
+244.118042 20700.58984375
+246.0969086 604602.0
+247.0993958 68972.53125
+257.1225281 91270.359375
+258.1260986 21163.62890625
+260.1122437 100483.5390625
+261.1203918 14038.0546875
+262.1280823 19194.990234375
+270.0969543 134631.71875
+271.1018066 14139.1904296875
+276.1341553 19748.6640625
+278.149353 31341.306640625
+283.1424866 42650.1640625
+287.1237793 146745.609375
+288.1073914 1529339.75
+289.1099548 224968.265625
+290.114563 20337.958984375
+294.1194153 15744.265625
+295.1490173 20828.98828125
+303.1418152 22220.6875
+305.1339111 3071012.0
+306.1192017 1141266.0
+307.1213074 184518.0625
+308.1202087 26842.052734375
+311.1352844 44302.71484375
+312.1146545 27093.05859375
+318.1463318 14718.267578125
+321.1540833 311914.53125
+322.1567383 59788.1640625
+323.1443787 1151439.5
+324.1463013 169100.71875
+325.148407 17967.166015625
+329.1442566 59524.14453125
+331.147583 21902.326171875
+338.1802979 385180.4375
+338.6490784 15283.087890625
+339.1827698 72882.8515625
+341.1445923 16111.7578125
+347.1478882 18086.029296875
+349.158905 28096.822265625
+351.1340332 20188.685546875
+359.1450195 44008.68359375
+366.186554 113495.8125
+367.1875916 15992.265625
+369.1394653 29227.8046875
+376.1702881 133537.90625
+377.1549683 105635.515625
+378.1570129 12775.2265625
+386.1653748 28178.1015625
+394.1808472 692244.625
+394.2406616 25996.337890625
+395.1833191 148158.90625
+412.1873474 31581.34375
+420.681488 22494.0234375
+428.1948547 17478.005859375
+460.1889954 20335.4453125
+468.2184143 46358.77734375
+469.2256775 18208.943359375
+477.2150574 18224.587890625
+478.2061768 18676.19921875
+483.7264099 19261.9453125
+485.247406 222290.5625
+486.2495117 71636.15625
+487.208313 16344.4814453125
+488.1846924 48906.87890625
+492.2288513 160097.359375
+492.7296753 103975.9609375
+493.2319031 20482.271484375
+495.2291565 51901.47265625
+504.2185669 18113.681640625
+505.2118225 52332.08203125
+506.2032471 57271.09765625
+512.2321777 26303.08984375
+512.7297363 25008.6015625
+521.237854 34292.10546875
+523.2219849 416282.21875
+524.2241211 115120.3125
+525.2242432 28797.4296875
+558.2426147 19990.91015625
+567.2598877 21132.90625
+571.7494507 61917.8984375
+572.2733154 295644.25
+572.7527466 27440.087890625
+573.2802734 72130.4609375
+574.2731934 18875.939453125
+576.2600708 42137.984375
+576.7636719 22637.140625
+580.2613525 61720.6484375
+580.7546997 2180950.25
+581.2558594 1421457.375
+581.7573853 562033.1875
+582.258728 103203.9921875
+589.2683716 56662.96875
+589.7672729 35815.94140625
+598.2717285 23556.38671875
+598.7676392 27633.16796875
+599.777771 73445.140625
+606.25354 31689.9375
+624.2688599 52603.0703125
+625.2734985 30250.4765625
+673.3239746 403420.03125
+674.3279419 131471.40625
+675.3242188 28763.337890625
+693.2921753 22763.47265625
+802.3639526 71611.7890625
+803.3723145 31207.64453125
+873.3999023 88836.9609375
+874.4083252 62350.49609375
+1001.451416 15114.9970703125
+1058.490234 16907.619140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.385.385.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=385"
+RTINSECONDS=41.86526893
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52613831 63562.75
+64.53044891 48028.79296875
+64.58190155 45480.03125
+64.58609772 34329.38671875
+64.63822937 18229.79296875
+64.6413269 19863.99609375
+82.05426788 16171.1884765625
+87.7014389 13930.4599609375
+113.9792099 12798.0166015625
+149.5680695 60111.7421875
+167.0917664 48461.59765625
+169.0595245 44864.65234375
+175.1176147 267874.96875
+176.1217499 14230.1328125
+177.0757141 72317.8359375
+178.0598907 301440.90625
+178.3479614 85753.0546875
+179.0637054 33478.65234375
+179.0909729 20265.5078125
+183.0749817 25535.677734375
+186.0858612 99553.828125
+194.1025543 20427.47265625
+195.0862274 4149710.0
+195.1278076 34709.40625
+196.0890808 402782.28125
+197.0907593 37941.91015625
+197.197998 12874.857421875
+200.1018982 16390.640625
+201.0851746 15396.8193359375
+206.0908966 134961.9375
+207.0940247 20771.341796875
+210.5372925 13273.41796875
+215.0910034 21395.900390625
+217.127655 14628.5205078125
+218.1020355 38191.9375
+223.092453 21649.548828125
+234.0952301 16379.6552734375
+240.0968018 25170.7734375
+244.1166687 15035.1689453125
+246.0968018 607310.6875
+247.0994873 80005.0859375
+257.1226501 98687.6796875
+258.126709 20241.892578125
+260.1124268 120411.4921875
+261.1186829 23165.109375
+270.0965881 146687.953125
+277.13797 14682.0966796875
+278.147522 20822.826171875
+282.5705261 13921.3486328125
+283.141449 39943.42578125
+287.1235657 142996.5625
+288.1070557 1551382.0
+289.1101379 242516.03125
+294.1152954 23265.13671875
+295.1482239 30914.662109375
+303.1441956 30069.228515625
+305.1336365 3091533.25
+306.0591736 21164.375
+306.1188965 1103119.625
+307.1210327 185955.671875
+308.1227112 29087.0859375
+311.1342468 46896.0
+312.1165161 41011.37109375
+321.153656 341546.3125
+322.1561584 60374.75390625
+323.144104 1032684.6875
+324.1461487 175883.703125
+325.1496582 26469.287109375
+329.1425171 52887.390625
+331.1477356 14598.1884765625
+338.142395 46575.25390625
+338.1803284 374157.5
+338.6459656 25537.7109375
+339.1835022 61251.140625
+341.1487732 21672.572265625
+347.1495361 24908.314453125
+349.1582642 32491.77734375
+351.1334839 19873.3125
+358.1654968 15912.7333984375
+359.144104 63175.171875
+360.1439514 18980.759765625
+366.1854858 132738.453125
+369.1403198 24953.919921875
+376.1695557 123726.6640625
+377.1552124 95783.3515625
+378.1574097 15677.9638671875
+386.1635437 38666.55859375
+394.1805725 699255.875
+394.2400513 19412.14453125
+395.1821594 142734.3125
+396.1851501 33845.10546875
+412.1898499 44995.71875
+434.1712036 25728.853515625
+460.1913147 16375.1376953125
+468.2197571 47892.0390625
+477.214386 15912.521484375
+485.2468567 187367.03125
+486.2459106 42801.9375
+488.1863403 53038.71875
+492.2286377 185948.1875
+492.7302856 117093.484375
+493.2296143 33232.9296875
+495.2281799 51292.9609375
+505.2137146 63490.4609375
+506.2033386 48388.56640625
+506.728363 20405.09375
+512.2268677 40073.87109375
+512.7340698 28483.734375
+520.7388306 14637.619140625
+521.7389526 27102.421875
+523.2211914 462785.90625
+524.2238159 132167.09375
+525.2288818 22296.794921875
+543.7180786 14033.0458984375
+555.2558594 19101.984375
+559.2441406 20802.3984375
+571.7490845 114323.5859375
+572.2744141 313437.78125
+572.753418 19021.326171875
+573.277832 85467.859375
+576.2603149 49546.2421875
+577.2606201 31918.248046875
+580.2640381 59272.10546875
+580.7545776 2418992.5
+581.2557373 1723070.875
+581.3660889 33685.125
+581.6490479 22203.068359375
+581.7573242 719147.1875
+582.2574463 100205.234375
+589.2641602 76587.5234375
+589.7695312 32550.115234375
+598.2706299 62673.9375
+598.7692261 28485.83203125
+599.2767944 50432.92578125
+599.7767944 90719.2265625
+606.2594604 29361.3125
+624.2664185 61573.46875
+673.3233032 489003.46875
+674.3259888 182463.875
+711.2990723 33678.359375
+802.3626099 76237.3203125
+803.3632812 43661.046875
+873.4000854 109172.0546875
+874.399231 46183.88671875
+875.4054565 22758.58984375
+1001.457153 26240.09765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.386.386.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=386"
+RTINSECONDS=41.97435696
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13431549 14887.4150390625
+58.137043 17902.373046875
+64.52611542 52066.7734375
+64.53061676 46962.66015625
+64.58189392 40856.33203125
+64.58611298 33132.84765625
+64.64190674 10480.0986328125
+74.81165314 15240.1513671875
+82.05402374 20325.3984375
+90.41204834 12954.6865234375
+115.3802567 12306.169921875
+124.1937866 11852.044921875
+149.565567 38562.5859375
+149.5778198 19207.640625
+167.0912781 29584.646484375
+169.0593719 27312.455078125
+175.1175079 287296.625
+176.1208649 14993.63671875
+177.0757904 62018.11328125
+178.0596924 319345.625
+178.3493195 81101.5703125
+179.0622864 24505.306640625
+179.0917053 20672.251953125
+183.0753021 17252.955078125
+186.0856781 93359.6796875
+194.1024628 34240.125
+195.0861206 3956303.5
+196.088974 378399.9375
+197.0905762 27658.08203125
+206.0907135 141077.34375
+209.0764313 24168.1953125
+213.0858307 17682.015625
+215.0904236 15651.7607421875
+218.1018066 58423.671875
+233.1257324 15784.328125
+240.0960083 24205.8046875
+246.0966034 572879.625
+246.1255951 25339.921875
+247.0990448 67892.8046875
+257.1221008 89570.5546875
+258.1240234 14626.2109375
+260.1118774 93693.4140625
+267.1085205 15319.76953125
+270.096405 106216.2109375
+276.1343994 24325.50390625
+277.1348267 16339.3837890625
+278.1174622 21730.205078125
+278.1495972 19061.85546875
+283.141571 30682.681640625
+287.1228333 138162.546875
+288.1069641 1455869.25
+289.1098328 229435.28125
+290.1114197 13554.509765625
+294.1179199 23026.40234375
+302.1320496 15686.6376953125
+303.1430664 23799.57421875
+305.1333923 2920716.5
+306.1185303 1105844.25
+307.1208801 174409.5
+308.1223755 21074.64453125
+311.1342773 62685.7734375
+312.1174011 25196.55078125
+321.1533203 313087.46875
+322.1555481 41882.44921875
+323.0983582 17412.611328125
+323.1438293 1002369.9375
+323.1885681 28994.125
+324.1456299 149614.171875
+328.1626892 17651.880859375
+329.144043 47736.140625
+338.1416321 51584.984375
+338.1802979 369774.875
+339.1836243 62397.20703125
+347.1483765 17972.462890625
+359.144165 46131.42578125
+366.1853943 126272.265625
+369.1372375 29051.63671875
+376.1699219 103147.2734375
+377.1544189 89247.8671875
+386.1634216 22110.009765625
+394.1207886 14943.130859375
+394.1803589 608216.3125
+394.2397461 19696.24609375
+395.1825867 127225.4140625
+396.1886292 22657.529296875
+398.1672668 19054.828125
+412.1897888 38587.09765625
+413.1652832 14307.2490234375
+420.6826477 21211.912109375
+460.1902161 20018.548828125
+468.2180176 38307.8671875
+477.2118225 18110.80078125
+483.7209167 24888.576171875
+485.247467 191025.8125
+486.2494507 57698.4453125
+488.1864624 45986.33203125
+492.2284546 178802.71875
+492.7297363 65298.94140625
+493.2266846 27618.71484375
+495.2280579 54299.7734375
+496.2249146 17550.53125
+503.7195435 21092.1640625
+505.2098083 34685.94921875
+506.2041626 30713.078125
+507.2068481 17535.798828125
+512.2199097 30706.1484375
+512.7351685 16464.51953125
+520.7403564 16181.8115234375
+521.2302856 23003.626953125
+523.2213135 404261.0625
+524.2242432 112038.2890625
+525.2312012 22229.85546875
+558.7423706 25557.55078125
+571.7494507 93747.65625
+572.2736816 253394.125
+573.2791138 75465.328125
+576.258606 28802.818359375
+576.7640381 44246.4921875
+577.2675171 19691.400390625
+580.2618408 58937.3359375
+580.7544556 2178103.0
+580.8388062 29537.998046875
+581.2554321 1514909.875
+581.3364258 30265.544921875
+581.7567749 547040.6875
+581.8337402 13883.7392578125
+582.2581177 92006.1796875
+589.2664185 53822.26953125
+598.2741699 49280.6640625
+598.7697144 29945.619140625
+599.7747192 68367.9921875
+606.2546997 29053.138671875
+624.2658081 53919.5390625
+625.2692871 24027.4140625
+655.3151855 25586.400390625
+673.3225708 426974.375
+674.3259888 140315.03125
+675.3275757 29105.11328125
+693.2896118 24585.79296875
+802.3618164 91655.0390625
+803.3666382 32037.798828125
+873.3994751 113678.328125
+874.4050293 59646.11328125
+1001.444092 15638.30078125
+1002.448059 14936.96875
+1058.476074 21342.859375
+1059.476807 17466.61328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.387.387.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=387"
+RTINSECONDS=42.08420943
+PEPMASS=598.27001953125
+CHARGE=2+
+53.01720428 11794.3876953125
+64.52622223 64287.984375
+64.53045654 43954.4296875
+64.58198547 40883.2265625
+64.58620453 26852.91796875
+64.63806152 16627.576171875
+64.6415329 17796.576171875
+75.65238953 14335.98046875
+76.28076172 13649.759765625
+79.24612427 13012.7421875
+109.6883392 13764.548828125
+149.5628052 25093.884765625
+149.5768585 29264.626953125
+167.0918884 34418.6484375
+169.0604858 25800.123046875
+175.11763 272863.96875
+176.1194 17759.123046875
+177.0759125 88082.5078125
+178.059845 332063.375
+178.3523712 61472.234375
+179.0640564 14806.3671875
+179.0910797 21957.578125
+183.0741882 18460.521484375
+186.0859833 107697.640625
+187.0901794 15516.01953125
+194.1044006 27848.357421875
+195.0862885 4077086.5
+196.0890198 403844.59375
+197.0914001 21749.955078125
+200.1016541 35560.09765625
+206.0909271 155550.296875
+207.0949554 14195.71875
+209.10289 18568.525390625
+209.541214 12977.2587890625
+212.1016388 14145.697265625
+218.1022034 58855.53515625
+234.0971375 18285.02734375
+240.0966034 24130.22265625
+243.0852661 21447.5625
+246.096756 592912.125
+247.0998993 77947.1953125
+257.122345 107215.0625
+258.1252136 15979.04296875
+260.111908 93958.890625
+261.1184387 22418.9296875
+262.1176758 15060.6279296875
+267.1071167 16475.96484375
+270.0963745 116520.046875
+276.1063843 16174.7529296875
+277.1376648 19466.4375
+278.1170349 15599.294921875
+278.148407 34069.2265625
+283.143219 54565.04296875
+287.1233521 156952.0625
+288.1071167 1605450.25
+289.1098022 227226.6875
+290.1138306 19019.052734375
+293.1316528 12913.048828125
+294.1149902 15444.2265625
+295.1492615 37671.3984375
+303.1441956 24057.29296875
+304.1256104 14151.9326171875
+305.1336365 3081197.0
+305.2167053 18651.8515625
+306.1188049 1109328.5
+307.1213684 169465.875
+308.1206665 29474.90234375
+311.1339417 42515.34375
+312.1192322 26099.6796875
+320.1343384 20079.40234375
+321.1534119 318527.96875
+322.1569214 49519.45703125
+323.144165 1122946.375
+324.1460266 185045.078125
+325.1505127 23812.12109375
+329.1430359 57989.48046875
+338.1425476 51621.4453125
+338.1801758 367156.0625
+339.1830444 75915.625
+346.1686096 21744.482421875
+347.1487732 42861.8515625
+349.1594849 19027.9765625
+351.1351318 16099.078125
+359.1430664 55595.10546875
+366.1855164 112541.453125
+367.1864929 29469.59765625
+369.1393433 25053.53125
+376.1700439 104973.3984375
+377.1555176 91916.6484375
+386.1605835 23628.255859375
+394.1802673 725068.25
+394.2394409 25747.345703125
+395.1820984 135969.90625
+412.1893311 22583.08203125
+434.1740417 16761.3671875
+460.1915283 15571.4111328125
+468.22052 50615.6875
+469.218689 16261.85546875
+477.2162781 18023.810546875
+478.204834 15772.8876953125
+485.2463684 194878.640625
+486.2499695 45527.296875
+488.1838379 48280.78125
+492.2286682 131584.453125
+492.7293091 80970.59375
+493.2311096 30929.28515625
+495.2249451 63008.640625
+502.8372803 18767.15234375
+505.2116699 57417.5390625
+506.1991882 45102.94140625
+512.2227173 38285.3671875
+521.2340698 43992.27734375
+523.2213135 446946.0625
+524.2227173 131876.65625
+525.2318115 14444.2392578125
+529.744751 14071.59765625
+537.4289551 13664.3017578125
+541.2405396 16037.6298828125
+558.7425537 16236.5146484375
+567.7565918 15039.5439453125
+571.7484741 64775.015625
+572.2741089 281479.34375
+573.2802124 81179.5546875
+574.2727661 16510.5703125
+576.2554321 29242.322265625
+576.7613525 39243.19921875
+577.2666626 30378.845703125
+580.2632446 61904.015625
+580.7541504 2210551.0
+581.2553711 1402858.25
+581.3375244 18526.1796875
+581.3687744 21304.87890625
+581.6508179 16375.8515625
+581.756897 511526.03125
+582.2582397 108184.046875
+589.2668457 60132.66796875
+589.7634888 42367.77734375
+598.2734985 58563.234375
+598.772583 30467.03125
+599.2756348 23029.310546875
+599.7755127 76676.8671875
+606.2609253 23531.654296875
+608.2414551 14881.22265625
+624.2640381 60048.3203125
+673.322876 386619.6875
+674.3257446 158363.703125
+675.3254395 30906.921875
+693.2955322 20049.4140625
+708.9182129 15923.1328125
+711.305481 17705.634765625
+784.3540039 14488.03515625
+802.3622437 77896.1953125
+803.3652954 35089.73828125
+873.3930054 83991.828125
+874.4046631 39245.59765625
+888.9439697 14599.724609375
+1058.489258 21385.291015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.388.388.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=388"
+RTINSECONDS=42.19460062
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13444901 18639.828125
+58.13737488 21497.8828125
+64.52618408 70768.6953125
+64.5304718 46403.62890625
+64.58202362 51145.07421875
+64.58618927 32716.8359375
+64.64174652 19198.66796875
+82.05389404 16187.3515625
+142.9104156 15003.7744140625
+144.8568726 13880.130859375
+149.5670471 52416.93359375
+149.5789032 14261.67578125
+167.0922546 27241.0859375
+169.0602112 47439.99609375
+175.118042 296920.90625
+176.1201324 15440.693359375
+177.0764465 46710.23828125
+178.0436707 26127.546875
+178.0602722 327998.75
+178.3427887 97524.5234375
+179.0641479 23614.009765625
+179.0923157 19580.37109375
+183.0738525 18771.873046875
+186.0864716 120964.5234375
+190.1066895 19228.642578125
+194.1026154 31638.630859375
+195.0865784 4207391.5
+196.0892792 423860.4375
+197.0919342 26719.82421875
+200.1012573 24902.947265625
+206.0911713 160648.640625
+218.1026764 54502.1171875
+233.127243 16898.16015625
+240.0961151 30357.390625
+243.0859222 20165.912109375
+246.0972595 637803.625
+247.0999756 83816.3984375
+257.1226501 83459.3203125
+260.112854 99841.9609375
+270.0970459 100827.5703125
+283.1426697 42201.14453125
+287.1238098 135874.21875
+288.1076965 1570317.375
+289.1106567 235943.859375
+290.1108398 42151.7734375
+295.150177 18308.30859375
+302.1307983 19692.693359375
+303.1421204 18866.6328125
+305.1343079 3213643.5
+306.1195374 1159173.75
+307.1215515 150221.921875
+308.1260071 24412.248046875
+311.1351013 50469.9609375
+312.1169739 36548.43359375
+321.1543274 333617.78125
+322.1575928 65346.78125
+323.0983582 18739.900390625
+323.1448059 1113326.375
+323.1889648 30858.369140625
+324.1470337 187710.703125
+325.1506653 17173.560546875
+329.1436768 51907.25390625
+331.1471558 19822.318359375
+338.1429749 39548.76171875
+338.1809082 437256.875
+339.1841736 67796.78125
+347.150177 26982.591796875
+349.162384 21970.208984375
+351.1321411 22089.841796875
+358.1652527 25028.029296875
+359.1450806 55411.296875
+366.1860657 141464.3125
+369.1378479 29100.759765625
+376.1701355 132905.453125
+377.1576233 72199.9921875
+378.1546631 22875.255859375
+386.1668396 42395.88671875
+394.1373291 15581.009765625
+394.1814575 721075.9375
+395.1824341 153204.484375
+396.1865845 27809.775390625
+407.6309509 17933.720703125
+412.1882019 45796.23828125
+420.6828613 24747.4765625
+421.1837158 20840.125
+460.195282 20355.021484375
+468.2223206 53807.0625
+477.2194519 23501.330078125
+485.2475281 221207.3125
+486.2520752 62906.484375
+488.1862793 33852.203125
+492.2301636 161488.328125
+492.7315369 144682.671875
+493.2350769 40509.0078125
+495.2277527 56331.6640625
+496.2305603 28024.873046875
+503.2184448 26007.712890625
+503.7132874 34921.7265625
+504.224823 26599.94140625
+505.2129211 70107.515625
+506.2054443 36137.83203125
+512.2299805 55721.8203125
+512.7272339 30041.595703125
+513.2327881 26864.02734375
+521.234375 40418.68359375
+521.7377319 27372.078125
+523.2230225 487934.75
+524.2265625 144038.703125
+525.2332153 29212.48046875
+555.2557373 20615.583984375
+558.7438965 29845.83984375
+567.2554321 21945.673828125
+571.7498779 74648.7265625
+572.276123 359914.6875
+572.7574463 19827.93359375
+573.2821045 96480.4140625
+574.2788086 28264.2890625
+576.262146 46514.19921875
+576.7633667 27773.939453125
+577.2667236 26515.0
+580.263916 120126.5078125
+580.7559814 2621421.0
+581.2572021 1803751.5
+581.7589722 718345.5625
+581.8648682 24812.5078125
+582.2590332 123249.765625
+589.2677002 119270.984375
+589.7665405 72091.6328125
+598.2713623 59730.67578125
+598.7745361 41598.65234375
+599.2877808 20243.853515625
+599.7780151 93820.1796875
+606.2575684 29347.447265625
+607.2661133 21504.248046875
+624.2675171 56592.01171875
+625.2730713 24036.208984375
+673.3251953 455398.21875
+674.3276367 175928.765625
+675.3296509 25157.0859375
+693.2885132 18907.984375
+711.2993774 31010.63671875
+802.3687134 111203.8359375
+803.3729248 48604.28515625
+804.3713379 16740.310546875
+873.401001 121507.6484375
+874.4039307 55906.7421875
+1001.46106 26011.87109375
+1058.483276 18672.515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.389.389.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=389"
+RTINSECONDS=42.30263005
+PEPMASS=598.27001953125
+CHARGE=2+
+50.03562927 10171.708984375
+58.13416672 16323.3427734375
+58.13730621 14209.8369140625
+63.58497238 13308.5771484375
+64.52622986 67254.171875
+64.53063202 53105.828125
+64.58197784 48559.9453125
+64.58617401 23762.943359375
+64.6381073 17734.728515625
+64.71512604 11028.9638671875
+82.05387878 15594.8388671875
+111.7587128 12389.7080078125
+122.5085526 11209.2490234375
+135.072113 11086.833984375
+149.568573 49571.99609375
+167.0919037 37422.359375
+169.0597687 44266.83984375
+175.1178741 286159.65625
+176.1218109 21071.029296875
+177.076004 78008.8125
+178.0600128 304854.875
+178.0777588 17634.96484375
+178.3389282 64950.38671875
+179.0632782 22365.306640625
+179.090332 14764.7958984375
+180.7722168 11620.1015625
+183.0750122 14893.552734375
+186.0864105 76106.6953125
+187.0905304 11956.1552734375
+194.1023712 40215.99609375
+195.0864258 3941062.0
+195.1277924 30696.8984375
+196.0893402 355642.15625
+197.0914917 36087.46484375
+200.1008301 21708.541015625
+201.0861359 20274.91015625
+206.091217 158092.859375
+209.1015015 15355.3505859375
+215.0901184 17162.697265625
+218.1024628 63258.90625
+222.0864105 16279.91796875
+234.0971527 20390.625
+240.0958862 35532.94140625
+243.0883331 21445.326171875
+246.0970154 615982.75
+247.0996094 77575.140625
+257.1225891 99867.640625
+260.1123962 91436.828125
+270.0968933 135389.984375
+271.1004639 17858.173828125
+277.1393127 15070.1767578125
+278.1490479 24879.779296875
+283.1439819 38083.37109375
+287.1233521 154301.0625
+288.1074524 1510612.0
+289.1102905 207372.4375
+290.1173706 17837.333984375
+294.1140137 13881.9345703125
+295.1490784 26809.767578125
+303.1448059 25156.9296875
+304.1294556 13960.0654296875
+305.1340027 2930476.5
+306.1192627 1053828.625
+307.1210632 184149.125
+308.1227417 22478.29296875
+311.1342468 46871.1328125
+312.1145935 23259.380859375
+320.1337585 16377.830078125
+321.1539917 306832.25
+322.1572266 56717.19140625
+323.0981445 16494.140625
+323.1445618 1088027.5
+324.1470642 151104.1875
+325.1508789 14500.591796875
+328.1626587 14566.2138671875
+329.1438293 43060.0078125
+338.1416626 60634.30859375
+338.1808777 410361.1875
+339.183197 83646.1015625
+341.14505 13878.962890625
+349.157135 24375.724609375
+351.1357727 15978.89453125
+358.1659851 17398.3359375
+359.1450806 58032.90234375
+366.1868591 122253.515625
+367.1896362 15865.142578125
+369.1409302 20328.48828125
+376.1704712 100869.2734375
+377.1560974 82948.5
+378.1589355 17007.859375
+386.1639404 38121.7265625
+394.1811218 643830.5
+395.1835022 150267.09375
+396.1876831 18474.34375
+398.1719055 14095.0068359375
+412.1870422 37553.6640625
+460.1917114 25267.21875
+468.2227783 47573.703125
+469.2207642 21585.298828125
+478.2049255 19756.0625
+485.2472534 199826.515625
+486.2492981 65711.796875
+488.1875 41213.171875
+492.2297668 142551.375
+492.7313232 103795.984375
+493.2326965 24312.044921875
+495.2296448 56981.29296875
+496.2307129 16968.65625
+503.217865 15360.18359375
+503.7193298 16691.8046875
+505.2138062 44511.3984375
+506.2073364 33247.2890625
+506.7260132 15374.2060546875
+507.2046204 15871.572265625
+512.2277832 43970.71875
+513.2253418 16774.095703125
+521.2358398 27713.708984375
+521.7354126 20563.205078125
+523.2228394 430885.9375
+524.2249756 120804.53125
+525.2337646 16708.375
+534.4084473 13138.4140625
+554.2662964 15647.3935546875
+555.2503662 20557.580078125
+558.2519531 15357.9560546875
+558.7504272 23554.2578125
+563.2547607 22184.349609375
+571.7495117 69688.84375
+572.2744751 335152.25
+572.7556152 24355.865234375
+573.2804565 83091.015625
+574.2736816 18365.4375
+576.2583008 51275.38671875
+577.2631836 18323.2109375
+578.2675781 15247.25
+580.2631836 90266.03125
+580.755188 2275735.75
+581.2565918 1619486.625
+581.3652344 28480.841796875
+581.7582397 577316.1875
+582.2591553 120254.2734375
+589.2678833 43389.40234375
+589.7648926 23197.265625
+598.2713013 38300.3359375
+598.7732544 39335.94921875
+599.274231 37869.0625
+599.7774658 84986.9609375
+606.2598267 38673.72265625
+607.2496948 18670.66015625
+624.2689819 57929.3203125
+625.2689819 20755.541015625
+655.312561 20424.2109375
+673.3245239 412928.875
+674.2102661 19978.771484375
+674.328125 164493.546875
+675.3349609 22659.361328125
+711.2897949 25848.390625
+802.3613892 84805.515625
+803.3658447 54059.609375
+873.3989868 85099.859375
+874.4065552 57077.08984375
+1001.464966 16668.4453125
+1002.468506 15062.419921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.390.390.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=390"
+RTINSECONDS=42.41338043
+PEPMASS=598.27001953125
+CHARGE=2+
+58.0810318 13510.3720703125
+58.13451385 18562.8125
+64.52633667 66012.453125
+64.53047943 36854.53515625
+64.58206177 46376.56640625
+64.5861969 30226.71875
+64.63841248 16019.8369140625
+82.05458832 15335.705078125
+91.37932587 12337.0791015625
+101.8604889 12090.5966796875
+119.4854507 15413.9326171875
+127.9144516 14685.3251953125
+149.5704498 50845.99609375
+167.0919495 37214.1171875
+169.0600586 18317.4375
+175.1181183 290589.53125
+177.0759583 65211.421875
+178.0602264 319161.8125
+178.3477173 81601.1015625
+179.0643005 19744.091796875
+179.0917206 17122.935546875
+182.092392 20637.212890625
+183.0748444 26487.369140625
+186.0860748 116223.8203125
+190.0615234 20361.431640625
+194.1023407 21124.087890625
+195.0649719 37894.98828125
+195.0866089 4004598.75
+195.1281128 18764.9921875
+196.0896606 423328.15625
+197.091507 16300.2646484375
+200.1020203 22417.013671875
+201.0857849 17415.166015625
+206.0913086 145766.9375
+207.0936279 20945.892578125
+218.1026764 50317.44921875
+240.0976868 18626.05859375
+243.0858765 21619.73046875
+246.0972443 613188.6875
+247.0998077 80751.40625
+249.096817 22253.12890625
+257.1228943 98713.1015625
+258.1268311 24683.705078125
+260.1127014 110856.1875
+261.1160889 17345.80859375
+267.1105042 16402.80859375
+270.097229 138165.890625
+278.1192017 18455.302734375
+278.1491699 24367.42578125
+283.1437378 43200.3046875
+287.123291 153442.53125
+288.1076965 1600717.5
+289.1105957 233650.578125
+294.1164856 16304.8994140625
+295.1499329 17519.55859375
+302.1314392 13922.66015625
+303.1446838 28640.453125
+304.1323547 15169.11328125
+305.1342773 3132377.0
+306.1193848 1128539.0
+307.1214294 201415.75
+308.122406 18962.962890625
+311.134552 76723.8984375
+312.1177368 39237.83984375
+321.1542969 343456.75
+322.1565552 56100.34765625
+323.1447449 1120401.25
+324.1473694 182761.625
+325.1527405 25065.8828125
+329.1443787 67686.7265625
+330.1506958 17859.287109375
+331.1491699 17914.96875
+338.1419373 47087.87109375
+338.1809998 359629.15625
+339.1827087 69591.328125
+347.148468 19976.6640625
+349.1599426 30397.849609375
+359.1453247 67416.421875
+366.1864929 135517.296875
+367.1921082 16563.892578125
+376.1698608 127766.140625
+377.1570435 82736.2421875
+386.1647339 27661.8828125
+394.137146 13212.923828125
+394.181366 747250.1875
+395.1826782 144216.21875
+396.1838684 14694.595703125
+412.1893616 32161.482421875
+460.1902771 30730.587890625
+464.1688538 15912.009765625
+468.2210693 57201.71875
+477.2211609 20844.1953125
+483.227478 23027.7578125
+485.2481079 238199.5625
+486.250946 47844.15625
+488.1852112 57077.70703125
+492.2292175 160275.515625
+492.7310486 89607.5078125
+493.2327271 26596.412109375
+495.2258911 69797.6640625
+496.2289429 16865.62890625
+505.2113037 41244.77734375
+506.2033081 53202.77734375
+512.2279663 45859.9921875
+512.7268066 18698.087890625
+513.2211914 27676.220703125
+521.2310791 22046.013671875
+523.2227173 505059.875
+524.2254639 144219.515625
+525.2312622 27638.3125
+529.7463989 21915.939453125
+571.7530518 79978.5546875
+572.276062 345191.6875
+572.7557373 16530.462890625
+573.2802124 104067.5
+576.2613525 56401.7265625
+576.7633057 26312.951171875
+577.2623291 35494.54296875
+580.2613525 74879.84375
+580.7556152 2241751.0
+581.2567749 1617661.625
+581.6785889 15056.541015625
+581.7584229 542990.4375
+582.2605591 117070.515625
+589.2687988 73660.5625
+589.762085 35784.87109375
+598.2759399 52731.52734375
+598.7738037 36582.25390625
+599.2770386 29211.1640625
+599.7786255 108182.21875
+606.2566528 24048.146484375
+624.2694702 58102.6015625
+673.3250122 378904.96875
+674.3273926 140246.984375
+675.3273315 27425.328125
+711.2940674 21683.408203125
+802.3647461 93482.53125
+803.3717651 20569.400390625
+873.4002075 89302.984375
+874.4054565 51012.41796875
+917.5802002 14765.46484375
+963 14145.248046875
+1001.461975 25769.46484375
+1058.469604 20124.9765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.391.391.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=391"
+RTINSECONDS=42.52283951
+PEPMASS=598.27001953125
+CHARGE=2+
+52.55011749 11787.171875
+58.13724136 13011.025390625
+61.86063766 15072.4521484375
+63.16146851 13681.73828125
+64.52618408 58569.92578125
+64.53045654 42362.140625
+64.58200073 44080.62890625
+64.58624268 29267.341796875
+64.63829803 15733.734375
+64.64137268 16126.3828125
+82.05394745 15993.345703125
+149.5649719 33244.21484375
+149.5788269 22676.544921875
+158.7582397 13164.2998046875
+167.0916595 42494.984375
+169.060379 36759.0625
+175.1020813 22519.9609375
+175.1176605 281025.4375
+176.1205902 18412.1875
+176.4543457 11181.2255859375
+177.0759888 47183.6484375
+178.0434875 25009.853515625
+178.0598755 295564.90625
+178.0780029 22137.09765625
+178.3438721 81839.9609375
+179.063858 27648.701171875
+179.0913239 26226.919921875
+182.091095 22309.849609375
+183.0754547 29711.630859375
+186.0859375 118849.609375
+194.1030426 30739.84375
+195.0862885 3958357.0
+195.1280518 19366.197265625
+196.0892334 382768.15625
+197.0912323 19758.8046875
+200.101532 25864.103515625
+201.0856018 21122.41015625
+206.0908966 155005.171875
+212.1140289 13780.58984375
+218.1021423 52931.6796875
+234.0970154 19940.677734375
+239.1123505 15813.509765625
+240.0970917 16519.025390625
+243.0868225 19271.005859375
+246.0691376 28293.28515625
+246.0967865 577058.6875
+246.1257324 29632.923828125
+247.0987854 78547.6953125
+249.0947723 13222.5986328125
+252.0967407 15871.2578125
+257.1221924 92471.0234375
+260.1126709 114384.90625
+270.0970154 105560.546875
+278.1506958 22598.626953125
+283.1444397 38697.953125
+287.1232605 176574.9375
+288.1072083 1458596.5
+289.1098328 234378.3125
+290.1127625 16261.9365234375
+295.1503906 19194.5625
+303.1431274 31803.416015625
+305.133667 2940445.25
+306.03125 15225.2197265625
+306.1189575 1028105.625
+307.120575 194997.953125
+308.121521 18506.892578125
+311.1343384 55796.5703125
+312.1170044 30693.06640625
+321.153595 305654.1875
+322.1562195 59116.62109375
+323.144104 1095780.5
+324.1459656 147415.65625
+325.1502075 18458.080078125
+328.1599121 17831.3515625
+329.1443787 38602.4375
+338.1432495 39316.66015625
+338.1802673 429016.78125
+338.6466675 15825.8818359375
+339.1828613 68923.9375
+349.1576843 19956.376953125
+359.1435852 71139.6953125
+360.1495361 15813.47265625
+366.184845 133815.0
+369.1409302 26946.26171875
+376.1690979 101952.6875
+377.1576843 65670.0703125
+386.1665649 29777.06640625
+394.1805115 679029.125
+394.2407532 27411.48828125
+395.181488 122131.46875
+396.1856995 20991.095703125
+412.1885071 28633.951171875
+420.680481 21477.619140625
+460.1889648 16364.919921875
+468.218811 48574.7734375
+485.2466125 180966.84375
+486.2492065 57031.56640625
+488.1854248 51522.17578125
+492.2293091 152360.734375
+492.7296143 73784.4296875
+493.2314453 38046.8984375
+495.2271118 40435.83984375
+503.7192078 15905.041015625
+505.2111511 49674.13671875
+506.1994019 49093.33203125
+512.2255249 36943.671875
+512.7278442 21916.609375
+521.2391357 36966.828125
+523.2215576 413324.9375
+524.2240601 106793.171875
+525.2270508 25095.798828125
+529.7449951 17017.759765625
+530.241333 16982.5625
+541.2289429 18975.787109375
+558.7440186 26756.0859375
+571.7487793 82954.8671875
+572.2733765 330036.875
+572.7509766 26133.013671875
+573.2775879 81486.5078125
+576.2625732 36091.8515625
+576.7606201 35319.453125
+577.2593384 18700.8125
+580.2615356 92582.328125
+580.7543945 2169214.75
+581.2557983 1647322.75
+581.3359985 29493.052734375
+581.7576904 569484.6875
+582.2587891 114575.59375
+583.270752 19756.69140625
+589.2642822 48517.4921875
+589.7651367 22907.193359375
+598.2739868 54384.78515625
+598.7788086 19908.001953125
+599.7771606 52663.1953125
+606.2537842 27490.595703125
+624.2664795 53888.16796875
+673.3233032 393222.53125
+674.3250122 134806.015625
+675.3283081 20221.388671875
+802.3615723 78793.0859375
+803.3612671 37113.5859375
+873.3994141 100682.4921875
+874.3997192 42245.640625
+1001.456726 31893.400390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.392.392.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=392"
+RTINSECONDS=42.6327653
+PEPMASS=598.27001953125
+CHARGE=2+
+61.17981339 12747.1484375
+64.5262146 62194.06640625
+64.53050995 41301.078125
+64.58209229 48299.16796875
+64.58630371 26612.11328125
+64.63806915 22740.07421875
+64.64137268 14866.6650390625
+70.60325623 15206.880859375
+74.81180573 16818.7265625
+76.28543091 14630.4052734375
+76.80298615 13674.39453125
+110.9528351 14348.275390625
+149.5680847 58909.859375
+167.0919189 34401.75
+169.0597992 23294.7890625
+175.1177673 304143.34375
+176.1203613 25037.962890625
+177.076004 62264.76953125
+178.0600433 308223.0625
+178.3358154 49295.34375
+178.3546295 30637.33203125
+179.0635071 17613.943359375
+186.0861969 121291.703125
+194.102829 32106.14453125
+195.0864258 4015570.5
+196.0892029 392185.96875
+197.0914307 35349.890625
+200.1017151 25938.279296875
+206.0912323 129730.0703125
+215.0908356 22345.83984375
+218.1019592 41867.9921875
+240.0964203 25655.634765625
+243.0850983 16743.17578125
+246.0969086 590975.125
+246.1256256 32699.263671875
+247.0998688 78825.859375
+249.0965424 24102.0625
+257.1228638 97162.734375
+260.1124878 109888.3203125
+270.0969238 125995.2578125
+278.1505432 17111.607421875
+283.1429138 55178.50390625
+287.1233215 135862.765625
+288.1073303 1439061.875
+289.1103821 240929.453125
+290.1134033 20688.75390625
+294.1187134 18890.927734375
+295.1500549 27704.931640625
+303.1440735 24535.96484375
+305.1339417 3059217.5
+306.1191101 1102311.125
+307.1211243 177932.046875
+308.1222534 24531.408203125
+311.1338196 50492.08984375
+312.1174927 39899.96484375
+321.1541138 290494.65625
+322.1560364 58315.86328125
+323.1443787 1091401.625
+323.1885986 32349.107421875
+324.1467896 192908.09375
+325.1536255 19350.837890625
+329.1421204 59848.03515625
+338.1420898 47823.15625
+338.1806946 394753.4375
+338.6455078 18905.048828125
+339.1824341 73405.1640625
+347.1466675 29639.634765625
+349.1600342 16538.92578125
+358.1617432 19229.361328125
+359.1446533 50511.27734375
+366.1859741 112604.90625
+367.1893921 28021.31640625
+369.1376038 29918.75
+376.1699524 124505.96875
+377.15625 79507.21875
+386.1654358 31502.67578125
+394.1809387 684119.1875
+394.2401733 24885.3046875
+395.1832581 144928.515625
+396.1812134 17734.783203125
+412.1902466 28743.390625
+413.1662598 14486.146484375
+420.6819153 21554.388671875
+460.1906128 22255.578125
+468.2225342 44042.48828125
+469.213501 17751.931640625
+478.2105713 21390.634765625
+485.2474365 189013.15625
+486.2507324 60584.7109375
+488.1857605 42730.69921875
+492.2297058 137411.5
+492.7312012 91973.7421875
+495.2286987 31208.533203125
+505.2113037 50783.0234375
+506.2045288 42533.01171875
+512.2272339 32696.2578125
+512.7240601 28135.611328125
+521.7355957 20313.8984375
+523.2219238 385841.125
+524.2243042 110830.734375
+559.2456055 15995.271484375
+571.7481079 96781.734375
+572.274231 258956.1875
+573.281311 82897.7109375
+574.2803345 18168.7578125
+576.2609863 50916.30859375
+576.7603149 22943.990234375
+580.2617798 81178.4375
+580.7548218 2211182.25
+581.2559204 1538840.625
+581.3355713 26494.505859375
+581.3651123 26637.5234375
+581.7576294 568168.0625
+581.8632202 16409.986328125
+582.258728 108329.2265625
+589.2676392 80458.2421875
+589.7653198 41499.2421875
+598.2757568 45066.41015625
+598.7748413 33027.2109375
+599.2783813 25839.923828125
+599.7756348 87585.5625
+606.2553711 38277.4296875
+624.2665405 38816.82421875
+625.2663574 20771.5390625
+655.3105469 30378.365234375
+673.3240967 398167.65625
+674.3262329 160297.75
+675.326416 19897.759765625
+693.1422119 14435.6142578125
+720.5041504 16963.74609375
+802.362915 91379.21875
+803.3646851 34521.16015625
+873.401001 87419.625
+874.4064331 44470.078125
+1001.452515 25459.08984375
+1002.473999 19431.205078125
+1058.482422 21313.357421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.393.393.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=393"
+RTINSECONDS=42.74194027
+PEPMASS=598.27001953125
+CHARGE=2+
+55.15365601 12568.916015625
+58.13430023 13449.5439453125
+64.52629852 58249.609375
+64.53046417 38631.14453125
+64.58200836 39498.64453125
+64.5861969 27868.359375
+76.28097534 12956.05859375
+85.67516327 12632.8837890625
+98.41595459 12723.4873046875
+109.0677872 11996.5146484375
+119.1888428 12192.1796875
+149.573349 41234.08984375
+167.0911102 38216.7265625
+169.0597687 41692.09765625
+175.1177521 308711.40625
+177.0757141 54050.87109375
+178.0598755 287081.4375
+178.3459625 92389.0234375
+179.0631714 28713.75
+179.0915375 14840.7431640625
+182.0916901 16245.447265625
+183.0752411 16467.779296875
+186.0860443 94454.859375
+194.1019287 42439.45703125
+195.0863037 3944311.75
+196.0891724 376234.1875
+197.0912018 20062.44921875
+200.1007385 32329.16796875
+201.085556 18277.578125
+206.0909882 154621.890625
+207.0949249 17339.71875
+213.0849915 15017.34765625
+218.1022034 48810.44140625
+234.0980225 20647.287109375
+239.0859985 12417.89453125
+239.1118469 15179.9267578125
+240.0951385 17668.181640625
+243.0851593 17688.767578125
+244.1184998 18696.64453125
+246.096756 568150.8125
+246.1217346 9460.236328125
+247.0998383 86977.4453125
+249.095932 13628.3076171875
+257.1226196 105047.296875
+260.1122131 104384.046875
+261.1193848 17555.359375
+270.0966187 123022.6640625
+271.1037292 15604.8271484375
+283.1424866 45031.05078125
+287.1231384 127471.9921875
+288.1071167 1455375.25
+289.1096497 222838.515625
+295.1489868 23384.666015625
+303.141571 30232.431640625
+304.127594 18681.744140625
+305.133606 3031322.25
+306.0587463 18550.505859375
+306.1189575 1012214.375
+307.1209717 184567.296875
+308.1228333 16220.6806640625
+311.1348572 52039.66015625
+312.1141357 32751.8359375
+321.1535339 313070.71875
+322.1564331 53174.484375
+323.1440125 975459.625
+324.1460876 180266.78125
+325.1509094 13927.4072265625
+329.1424866 34967.23046875
+331.148407 17236.046875
+338.1421509 52493.984375
+338.1802368 362374.625
+339.183136 71606.0390625
+341.1483154 15697.634765625
+347.1489563 24828.771484375
+349.1600952 26100.484375
+351.1325989 20320.3828125
+359.1431885 57258.21484375
+366.1861267 107543.5390625
+367.1875305 23687.46484375
+369.1366577 37151.35546875
+376.1697083 118282.703125
+377.1548462 65117.9140625
+386.1650391 30250.787109375
+394.1802368 664450.75
+394.2389526 21413.560546875
+395.182251 147223.78125
+396.1860046 21987.3671875
+412.1876831 26489.96875
+460.1957703 19319.1953125
+468.2233582 37639.51953125
+469.2200928 20129.66015625
+477.2129822 16418.783203125
+483.2265015 14570.88671875
+483.7170715 14488.0458984375
+485.2464294 187466.875
+486.25177 59519.6328125
+488.1845093 49862.5078125
+492.2279663 120899.34375
+492.7286682 89757.0
+493.2312317 17695.8046875
+495.2267151 40815.6015625
+505.2115173 39644.3671875
+506.2044678 40501.60546875
+512.2298584 18051.556640625
+512.7300415 27460.0
+521.2327271 32603.744140625
+523.2208862 405967.25
+524.223999 140748.71875
+525.2335205 21283.921875
+555.2578735 18256.08984375
+559.239563 24618.189453125
+567.258667 18929.455078125
+571.7521973 83400.6640625
+572.2730103 274004.03125
+573.2788696 81923.3984375
+576.2618408 41485.83984375
+580.2623291 89021.4375
+580.7540283 2117568.5
+581.255249 1400027.0
+581.3363647 20647.177734375
+581.3666992 16933.349609375
+581.7562256 499170.3125
+582.2578735 111761.46875
+589.2680054 47808.4765625
+589.7609253 19947.279296875
+598.2745361 39655.48828125
+598.7745361 44646.2734375
+599.2798462 18508.78515625
+599.7745972 64555.8984375
+606.2581177 24012.521484375
+624.2660522 34623.015625
+655.3223267 19691.966796875
+673.3223267 362654.625
+674.3259277 146266.21875
+675.324646 26628.328125
+802.362854 105155.203125
+803.3659668 33174.7421875
+873.3988037 90951.09375
+874.3942261 47909.0703125
+1001.448486 26932.62890625
+1002.452271 18283.16796875
+1152.63501 15225.587890625
+1256.047974 17201.451171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.394.394.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=394"
+RTINSECONDS=42.8518387
+PEPMASS=598.27001953125
+CHARGE=2+
+52.52195358 12907.3984375
+53.78752136 12365.9931640625
+64.52623749 59706.87109375
+64.5304718 42541.05859375
+64.58201599 35986.71484375
+64.58621216 28411.384765625
+81.86584473 14981.9794921875
+104.8040619 13830.716796875
+145.182312 13953.71875
+149.5720978 45051.90234375
+167.0918274 39256.6796875
+169.0594482 33588.74609375
+175.1178131 266320.8125
+176.1196747 16138.4326171875
+177.0759583 55127.1796875
+178.059906 301264.75
+178.345993 89734.875
+179.0635529 30527.666015625
+179.0910645 18539.837890625
+183.0753174 17400.138671875
+186.0861969 99338.3671875
+190.0606995 15846.974609375
+194.102951 38337.59375
+195.0864105 3990451.5
+195.128067 29610.240234375
+196.0892792 385992.625
+197.0921783 26992.8984375
+200.1017303 30973.12890625
+201.0853271 26428.673828125
+206.091217 141545.21875
+207.094635 18218.236328125
+209.0792236 13331.7001953125
+209.1016693 15677.5576171875
+218.1021881 70882.7890625
+239.1143188 18379.923828125
+240.0953979 21448.29296875
+243.0862732 26158.986328125
+244.1191406 14465.2470703125
+246.0970306 632950.875
+247.0999756 90345.7734375
+249.096817 21579.765625
+257.1227722 100866.25
+260.1123047 109244.7421875
+261.1194763 17764.919921875
+267.1105957 15207.564453125
+270.0969238 121292.3828125
+271.1016541 22003.9140625
+278.1196899 18014.513671875
+278.1514282 20022.80859375
+283.1437683 46262.43359375
+287.1234131 139693.625
+288.1074524 1552918.25
+289.1103516 225298.515625
+290.1140137 27917.369140625
+294.1187744 20813.263671875
+295.1495972 28733.533203125
+303.1447449 22781.755859375
+305.1340027 3045710.75
+306.1191711 1129495.25
+307.1219482 154055.375
+308.1231995 25391.439453125
+311.1351013 54338.9296875
+312.1167908 27068.830078125
+320.1316223 14000.4794921875
+321.1540527 300172.40625
+322.1577148 52543.47265625
+323.1444702 1096822.0
+324.1470337 165131.546875
+329.1445007 51652.03125
+331.146698 16386.197265625
+338.142334 42579.4921875
+338.1807556 403935.96875
+339.1834717 79884.3828125
+346.1702576 18278.857421875
+348.1693726 13570.712890625
+349.1593628 29523.4453125
+358.164093 15204.439453125
+359.1434631 62629.0703125
+366.1860352 104792.109375
+367.1876526 23008.7109375
+369.1381531 40438.4140625
+376.1700439 112869.53125
+377.1560059 88544.328125
+378.1566467 21662.154296875
+386.1651001 39614.2421875
+394.1809387 639248.9375
+395.1826782 134869.015625
+412.1875305 17721.455078125
+420.6819153 36410.70703125
+460.1905518 20661.865234375
+468.2218628 58686.16015625
+477.2175903 23170.380859375
+478.2063293 23774.17578125
+483.7189941 31057.49609375
+485.2475891 227076.796875
+486.2505493 60126.2109375
+488.1869202 41339.34375
+492.2301941 154251.171875
+492.7311707 124396.359375
+493.2285156 29361.912109375
+495.2277527 70627.9765625
+503.7213135 16812.107421875
+505.2146606 43382.4296875
+506.2018127 42018.265625
+512.2285767 43972.75
+512.7333374 34031.30859375
+521.232666 43092.78125
+523.2223511 485190.03125
+524.2260742 154824.453125
+525.2265015 25602.087890625
+554.2617188 22333.783203125
+558.7453613 31125.09765625
+567.2558594 31050.7421875
+568.2514648 27003.40625
+571.7485352 83555.2265625
+572.2756348 360347.4375
+572.7526855 23230.591796875
+573.2804565 105434.953125
+574.2695923 23750.330078125
+576.2597656 48393.03125
+576.7663574 23976.46484375
+580.262207 90582.65625
+580.7554932 2342408.25
+581.2564697 1470015.25
+581.3652344 17331.072265625
+581.7584839 582568.8125
+582.2579346 129211.28125
+589.2697144 67841.796875
+589.7689819 29522.6875
+598.272644 65020.22265625
+598.7767334 28418.55859375
+599.2766724 41983.97265625
+599.7781372 73087.15625
+606.2563477 35619.21875
+624.2679443 57172.64453125
+656.3010864 20700.923828125
+673.3250122 432727.28125
+674.3296509 143149.109375
+675.3331909 31905.4609375
+693.293457 16847.705078125
+802.3646851 112866.15625
+803.3786011 31377.11328125
+873.3981323 92232.859375
+874.4050293 40028.87890625
+1001.462708 23487.3984375
+1059.483887 16781.4140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.395.395.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=395"
+RTINSECONDS=42.96166754
+PEPMASS=598.27001953125
+CHARGE=2+
+54.70220947 10874.1005859375
+59.84152985 12030.162109375
+64.52619934 49721.83203125
+64.53046417 36949.5234375
+64.58193207 38852.51171875
+64.58616638 22861.16796875
+64.63818359 15757.5126953125
+64.64135742 13699.912109375
+81.04628754 13675.3642578125
+98.25559235 10198.3828125
+149.5619965 16216.142578125
+149.5742645 36369.72265625
+164.5647888 11372.9384765625
+167.0913849 45192.640625
+169.0603027 23095.58203125
+175.1021729 20024.693359375
+175.1178131 261902.1875
+176.1205139 21990.947265625
+177.0756226 61270.48046875
+178.0427856 8765.388671875
+178.0600281 301010.3125
+178.0780945 14542.7431640625
+178.3491669 66048.671875
+179.0628815 19443.8359375
+179.0919037 18893.392578125
+182.0907593 23592.44140625
+183.0752716 30710.76171875
+186.0860291 92514.9453125
+194.1028442 29968.76171875
+195.0863647 3553794.5
+196.0891418 338806.1875
+197.0914001 37434.25
+200.1015778 22016.158203125
+201.0852509 24960.783203125
+206.0910797 137392.421875
+207.0938568 21513.45703125
+212.1133575 15557.8837890625
+215.0927582 11735.9306640625
+218.1026611 54299.80078125
+237.1072388 11855.22265625
+239.1100769 11493.556640625
+240.0952911 14249.9619140625
+246.0969238 576976.5
+246.125885 26265.69921875
+247.0998535 61547.5234375
+249.095108 19683.287109375
+257.1226807 101497.9453125
+260.1126709 108308.0546875
+270.0967407 129326.171875
+277.1395264 15294.6484375
+278.1480103 31427.62109375
+283.142395 41007.3515625
+287.1236572 127295.328125
+288.1073608 1420277.375
+289.11026 222948.109375
+290.1128845 25129.978515625
+294.1174622 22389.703125
+302.1325378 15106.2900390625
+303.1410217 20489.19921875
+304.1282349 20703.333984375
+305.1339111 2651188.0
+306.0591125 17849.763671875
+306.1191406 973523.25
+307.121582 169010.421875
+308.1211548 23211.21875
+311.134613 46090.73046875
+312.1179504 23723.740234375
+321.1540527 282578.0
+322.1560669 58996.265625
+323.1443481 967048.0
+324.1460876 137784.28125
+325.1474304 16968.4765625
+329.1426697 36172.40234375
+331.1485596 18866.693359375
+338.1422424 45406.046875
+338.1807556 341740.84375
+338.6441956 20747.98046875
+339.182373 63745.56640625
+346.1715698 20064.52734375
+347.1486511 17725.1953125
+349.1599731 21051.337890625
+358.1672058 18876.333984375
+359.1441345 57024.04296875
+360.1472778 16294.2216796875
+366.1860657 107883.84375
+369.1410217 15970.890625
+376.1702271 98123.3984375
+377.1576843 57468.10546875
+378.1634827 11787.6787109375
+386.1650696 24943.126953125
+394.1809692 546998.25
+394.2399902 22634.826171875
+395.1821899 121408.1015625
+396.1854858 15341.068359375
+412.1861267 24327.66796875
+420.6827087 17361.271484375
+450.2077026 14313.9404296875
+460.186615 23884.6328125
+468.2193298 36668.5234375
+483.7193298 14600.5166015625
+485.2476501 183974.46875
+486.2515564 46449.359375
+488.1855164 46718.046875
+492.2295227 130894.5703125
+492.7304688 77289.375
+495.226593 44966.28125
+505.2120056 35635.7578125
+506.2029724 30580.720703125
+512.2278442 19789.9140625
+512.7269897 32365.603515625
+513.2368164 16017.6240234375
+521.234375 26028.208984375
+523.22229 343094.90625
+524.2245483 113825.9921875
+525.227356 20848.095703125
+529.7410889 18698.861328125
+530.241333 15131.048828125
+555.2537842 14319.80078125
+558.7456665 21191.900390625
+571.7520142 82326.1640625
+572.2747192 244820.25
+572.7529297 19645.673828125
+573.2796631 71568.1875
+574.2789917 19696.037109375
+576.2629395 48619.30859375
+576.7618408 25585.755859375
+577.2676392 15828.1689453125
+580.2601318 54864.546875
+580.755249 1894499.875
+581.2565918 1344689.125
+581.3692627 22317.0859375
+581.7580566 538937.375
+581.8656006 21273.017578125
+582.2624512 83752.6015625
+589.2666626 24117.453125
+589.7709961 14241.8994140625
+598.2781372 51145.6015625
+598.7751465 34623.9921875
+599.2772217 40443.58984375
+599.7779541 67246.515625
+606.2550049 27437.732421875
+607.2421265 18208.4765625
+624.2686768 40396.203125
+625.2629395 23635.947265625
+673.3248901 383648.65625
+674.3265991 142112.015625
+675.3296509 31764.353515625
+693.2876587 27115.6484375
+784.3500977 12641.7568359375
+802.3634033 84163.5
+803.3686523 34961.69921875
+846.1212158 14311.462890625
+873.3972168 61918.015625
+874.4068604 37754.54296875
+959.5756226 12260.560546875
+1001.455383 18934.607421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.396.396.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=396"
+RTINSECONDS=43.07498024
+PEPMASS=598.27001953125
+CHARGE=2+
+54.52130127 16304.68359375
+63.5883522 14548.2890625
+64.52620697 63599.88671875
+64.53051758 43143.87890625
+64.58198547 43851.2265625
+64.58617401 34928.19921875
+64.63813019 20085.349609375
+87.88581848 18289.541015625
+149.5614014 29984.95703125
+149.5759888 43706.7578125
+167.0912933 37971.46875
+169.059906 24270.03125
+175.0590973 15863.16015625
+175.1179657 303410.84375
+176.1190033 16086.546875
+177.0757294 84407.828125
+178.0600739 317603.0
+178.333313 26037.810546875
+178.3525391 64733.93359375
+182.0908661 23836.3125
+182.7266846 15997.4072265625
+183.0745239 18004.666015625
+186.0861511 114228.1875
+194.1020203 43406.6015625
+195.0864258 4223764.5
+195.1281586 26107.802734375
+196.0892181 392048.40625
+197.0913544 28617.08203125
+206.091095 140657.78125
+216.6166534 17744.4765625
+218.1032867 35987.8046875
+226.8751526 14173.4404296875
+239.1130829 15642.255859375
+240.0961914 15928.4990234375
+244.1176605 21416.853515625
+246.0970612 625403.3125
+247.0991058 77077.9140625
+257.122406 105290.8671875
+260.1125488 121592.8984375
+267.1079712 27004.595703125
+270.0967407 125347.75
+278.1493835 23425.7265625
+283.1438293 49905.0390625
+284.1229248 16343.3837890625
+287.1235352 131682.9375
+288.1074219 1460028.125
+289.1105042 244493.4375
+303.1430969 46482.265625
+305.1339722 3234149.5
+306.1192017 1140995.875
+307.1211853 182405.171875
+308.1232605 24178.98046875
+311.1344604 48551.94140625
+312.1168213 40219.18359375
+321.1538391 343651.78125
+322.1566162 78411.234375
+322.2011414 13907.470703125
+323.1443787 1075019.125
+323.1886597 33377.234375
+324.1463623 143048.59375
+329.1429749 54323.91015625
+338.1427307 38973.09375
+338.180481 395487.40625
+338.6461792 18188.8359375
+339.1822815 78833.171875
+347.1515808 25312.095703125
+359.1436157 55468.23828125
+366.1863098 113926.5859375
+369.13974 32065.998046875
+376.1701965 129307.0078125
+377.1557922 90143.84375
+386.1648254 37073.7578125
+394.1809692 763249.75
+395.1820679 135381.34375
+396.1868286 21263.44140625
+411.6738586 20896.265625
+412.1894531 37817.16796875
+420.6813965 33809.3828125
+468.2217712 70008.0625
+469.2253723 15423.203125
+477.2164001 17403.70703125
+483.7140198 21438.60546875
+485.2474365 196867.34375
+486.2510986 37476.46484375
+488.1861267 57049.41015625
+492.230011 133539.53125
+492.730896 116160.734375
+495.2281799 53453.08984375
+505.2121277 59130.68359375
+506.2023315 55486.125
+512.2272949 24403.244140625
+512.7254028 48061.26953125
+521.2340698 29236.544921875
+523.222229 399730.75
+524.2241211 122456.4921875
+525.2250977 29152.87890625
+555.2498779 17516.162109375
+571.7502441 48012.72265625
+572.2739868 316126.375
+573.2805786 83184.15625
+574.2796021 23178.509765625
+576.2647095 34833.79296875
+577.2600098 19471.232421875
+580.2611694 53540.1484375
+580.755188 2376189.0
+581.2562256 1661669.875
+581.7579956 642947.3125
+582.2593384 164507.71875
+589.2687988 99752.4765625
+589.7675781 67179.484375
+598.2740479 48381.5625
+598.7695923 37193.86328125
+599.7738037 45875.45703125
+606.2660522 22188.720703125
+624.2682495 59064.73046875
+625.2787476 27297.59765625
+655.3181152 19525.205078125
+673.3249512 420207.09375
+674.3256836 153182.53125
+675.3288574 31961.193359375
+694.2998047 17670.3984375
+711.2950439 18090.19140625
+802.3670044 106347.4609375
+803.3683472 32612.927734375
+873.4021606 110491.453125
+874.4022217 67222.9296875
+1002.460327 32736.54296875
+1057.81604 16080.7216796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.397.397.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=397"
+RTINSECONDS=43.18275205
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 59204.9375
+64.53047943 39389.6171875
+64.58228302 36463.69921875
+64.58622742 32536.43359375
+64.63816833 21793.248046875
+64.64173126 18828.17578125
+74.81214142 14798.8251953125
+76.28610992 13407.134765625
+76.59459686 11887.177734375
+88.4421463 12758.333984375
+89.86528015 13339.0810546875
+122.9172211 13612.21484375
+149.5707092 50508.6875
+167.0912628 37372.7734375
+169.0600739 26087.7421875
+175.1018982 25237.958984375
+175.1177368 281033.71875
+177.0757599 68698.1796875
+178.0599213 320254.6875
+178.3356781 51928.6953125
+178.3547516 34035.1171875
+179.0635986 28975.1640625
+179.0916901 19750.30859375
+183.07547 29635.603515625
+186.0862427 102946.1328125
+194.1027222 32521.564453125
+195.086319 3999364.0
+196.0890808 384534.5
+197.0906372 20571.9609375
+200.1014404 28356.08203125
+201.0862274 22882.505859375
+206.0910645 147064.96875
+207.0944214 15106.654296875
+209.1016541 15262.2080078125
+215.0893555 18530.416015625
+218.1017609 55295.05078125
+239.1110535 19900.220703125
+240.0965271 26362.041015625
+243.0861359 20771.86328125
+246.096817 636114.0625
+246.1205292 7957.1591796875
+247.0998383 59307.6328125
+257.1227722 81543.0078125
+258.1227112 18824.15625
+260.1123047 103358.0234375
+261.1157837 17234.8828125
+270.0968323 109407.0546875
+278.148468 35471.1171875
+283.1430969 34865.29296875
+287.1230774 143982.921875
+288.1071777 1548948.5
+289.1102905 228686.609375
+290.112915 23762.873046875
+292.6489258 14032.09375
+294.118988 15422.134765625
+295.1493225 25896.8203125
+303.1439209 26608.3203125
+304.1281128 19316.828125
+305.133667 2922402.25
+306.118866 1065320.5
+307.1212463 192754.0
+308.124176 17094.71875
+310.1514282 14309.884765625
+311.1352234 42844.94140625
+312.1144104 28603.83203125
+321.1535645 328874.6875
+322.1560669 40759.046875
+323.144165 1020824.125
+323.1888733 27175.12890625
+324.1460266 165347.96875
+329.143219 50378.2890625
+338.1418457 51558.54296875
+338.1803284 359490.40625
+338.6423645 15453.5419921875
+339.1825562 59568.22265625
+347.1466064 15792.3466796875
+349.1593323 17114.7578125
+351.1416016 17097.755859375
+359.1427612 57301.76953125
+366.1854553 98398.953125
+369.136261 26079.91796875
+376.1702271 99568.2578125
+377.1570435 54746.8828125
+378.1557007 15570.2705078125
+386.164093 22565.5859375
+394.1805725 617605.1875
+394.2401123 26067.53515625
+395.1824951 144134.53125
+396.1845398 24577.5859375
+412.1905518 30526.265625
+413.1627808 13673.3046875
+420.6824646 27915.337890625
+428.1969604 15353.404296875
+460.187561 20826.189453125
+468.2187195 67109.515625
+469.2263489 16139.9755859375
+475.2061157 15815.3505859375
+483.7147522 18628.275390625
+484.2172852 15776.7236328125
+485.2469482 196897.484375
+486.2513123 58229.6171875
+488.1869812 30004.708984375
+492.2290344 132218.59375
+492.7313232 93794.21875
+493.2294617 27017.185546875
+493.7381287 16816.748046875
+495.2270508 53215.70703125
+504.2171936 22058.509765625
+505.2112122 45293.87109375
+506.2103882 42204.4375
+512.2288818 26177.091796875
+512.7297363 40456.81640625
+520.7364502 18435.4921875
+521.2335205 38996.359375
+523.2212524 391993.03125
+524.2236328 123896.3203125
+525.2329712 26477.11328125
+555.2496948 22632.2109375
+571.7480469 113887.9296875
+572.2758179 292952.375
+572.7515259 28693.5
+573.2802734 78802.71875
+574.28125 19073.046875
+576.2600098 55382.85546875
+576.7631226 30366.90625
+577.2653809 23869.314453125
+580.2615356 84505.75
+580.7542114 2277902.0
+581.2556763 1580201.75
+581.3359985 26635.341796875
+581.7572632 599721.6875
+582.2579346 105297.0
+589.2683716 75777.96875
+589.7589111 19261.71875
+598.2727661 42348.13671875
+598.7738037 34591.1640625
+599.2736206 24970.1171875
+599.7751465 79869.34375
+606.250061 33021.8125
+624.2634888 41956.0
+625.2684326 22339.611328125
+655.3113403 17643.7421875
+656.3019409 17384.345703125
+673.3232422 434610.84375
+674.3259888 150068.671875
+675.3275146 18351.98828125
+802.3625488 100749.375
+803.3613892 40175.203125
+873.3982544 95746.0859375
+874.4035645 53020.984375
+1001.45813 31795.521484375
+1002.450439 21426.083984375
+1058.465942 19954.12890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.398.398.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=398"
+RTINSECONDS=43.29235623
+PEPMASS=598.27001953125
+CHARGE=2+
+52.10586166 13523.4814453125
+58.13467026 13993.2392578125
+64.52625275 61102.8359375
+64.53063965 45521.92578125
+64.58202362 45554.2578125
+64.58618927 31604.697265625
+64.63790131 15073.6572265625
+69.65021515 12028.72265625
+82.05422974 22154.439453125
+84.6887207 16034.3837890625
+89.98684692 12737.17578125
+104.9598083 13462.064453125
+149.574173 44804.66796875
+164.5781555 17761.20703125
+167.0918884 36332.0234375
+169.0598145 34751.64453125
+175.118042 277726.21875
+176.1194916 16168.3935546875
+177.0762787 62001.5703125
+178.0601196 310660.78125
+178.0758667 10776.060546875
+178.3440552 90010.9453125
+179.0634918 29320.125
+179.0916901 18934.79296875
+183.0747223 14363.0732421875
+186.0860748 99587.390625
+190.0590057 13968.498046875
+194.1022186 40584.37890625
+195.0864563 3980701.5
+195.6767883 13243.33203125
+196.0892944 447756.4375
+197.0911713 43373.890625
+200.1005096 26238.576171875
+202.2077332 14008.0927734375
+206.0910034 138382.328125
+207.0951843 17759.158203125
+212.1135559 13538.4267578125
+218.1025238 61646.88671875
+234.0976105 16620.49609375
+240.0954895 32547.962890625
+244.4803162 12853.546875
+246.0970917 581513.625
+247.0997162 82168.078125
+257.1228333 111515.8125
+260.112854 117426.2578125
+262.1259766 18318.240234375
+270.0968018 129336.1796875
+271.1018982 21906.130859375
+278.1481323 24026.2734375
+283.1442261 50003.34765625
+287.1234131 152155.46875
+288.1075134 1547659.375
+289.1101685 223172.46875
+294.1148071 21017.72265625
+302.1320496 14104.65234375
+303.1437073 25498.0546875
+305.1340027 3013722.0
+306.1193542 1120257.625
+306.1975098 17316.080078125
+307.1217041 168693.71875
+311.1348267 54775.2890625
+312.1180725 36953.8515625
+318.143219 15972.5595703125
+321.1541748 313731.15625
+322.1563721 61423.9296875
+323.1445312 1059909.0
+324.1473694 163406.171875
+325.1490784 18661.65625
+329.1431274 43601.4140625
+331.1463318 16750.859375
+338.1418457 60367.10546875
+338.1807556 370018.59375
+338.6473083 31095.998046875
+339.1440735 18071.193359375
+339.1839294 87511.1328125
+359.1441956 74771.125
+366.1864319 105708.1953125
+369.1384277 33518.30859375
+376.1702576 115556.9765625
+377.1558533 69808.5703125
+378.1550903 19042.4375
+386.1643066 20674.115234375
+394.1810608 666517.375
+395.1829834 129649.828125
+396.1898499 15757.2919921875
+412.1877441 33549.40234375
+413.4468384 14906.033203125
+434.1694336 15321.626953125
+460.190979 26316.248046875
+468.22229 36447.4453125
+485.2472839 194304.203125
+486.2486572 57941.48828125
+488.1876831 40691.2421875
+489.184021 24772.59375
+492.2297668 175016.390625
+492.7304688 96089.5625
+493.230072 21275.41796875
+495.226532 57482.45703125
+503.2280579 18695.587890625
+503.7207336 19368.548828125
+505.2107849 42795.8125
+506.2109375 43504.71484375
+512.2252808 47317.6796875
+521.2325439 36886.25
+521.732666 22076.580078125
+523.2221069 430754.5
+524.2236938 126918.3515625
+530.2424316 18114.44921875
+558.7507935 25535.779296875
+571.7505493 75375.4765625
+572.2745361 314373.03125
+572.7524414 26561.869140625
+573.2813721 94884.828125
+574.28125 19858.86328125
+576.2625122 30348.90625
+576.767395 27575.326171875
+577.2642212 29231.09375
+580.2636719 95418.59375
+580.755127 2336808.75
+581.2564697 1554246.375
+581.7583618 607642.375
+582.2585449 119244.2890625
+589.2688599 96744.0859375
+589.7670898 36589.57421875
+598.2717896 80241.6875
+598.7755737 36990.33203125
+599.276123 54803.109375
+599.7772217 92279.03125
+606.2581177 34326.2578125
+624.2705688 56692.265625
+673.3244019 388067.1875
+674.3261719 143522.859375
+675.3264771 31103.1796875
+693.2861938 27274.85546875
+802.3677979 111489.6328125
+803.3657837 45171.109375
+873.4022827 80352.5625
+874.4014893 54550.76953125
+875.4108887 22709.345703125
+983.4384155 17066.1484375
+1001.451965 31493.943359375
+1058.467285 21095.638671875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.399.399.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=399"
+RTINSECONDS=43.40159235
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52633667 58094.0234375
+64.53076172 42222.43359375
+64.58200073 44978.6796875
+64.58617401 32677.2109375
+64.63818359 22390.419921875
+65.04603577 11469.22265625
+97.74005127 10751.556640625
+99.83320618 12666.9033203125
+113.4981689 12413.7978515625
+126.4069138 12796.7880859375
+149.5661774 47820.39453125
+167.0921326 43039.95703125
+169.0591278 19712.169921875
+175.117981 274425.125
+176.120636 15658.96484375
+177.0762939 62747.46484375
+178.0601044 329358.875
+178.078125 13801.3759765625
+178.3411865 75503.203125
+179.0630035 15761.8369140625
+182.0914459 20272.38671875
+183.0750732 18399.337890625
+186.0866394 94560.21875
+194.1023407 43313.30859375
+195.0864868 3791288.5
+195.128067 25969.380859375
+196.0893097 358662.21875
+197.0919952 21543.3828125
+200.1016693 32064.728515625
+201.0852356 15297.3564453125
+204.8985748 11710.4951171875
+206.0912018 148829.75
+207.0947571 14163.5712890625
+212.1131287 20079.68359375
+218.1022339 43522.6796875
+237.1053009 15657.5693359375
+240.0966492 26202.951171875
+243.0882111 19803.865234375
+244.1162262 13976.86328125
+246.0970612 567045.3125
+247.0998077 86874.9765625
+249.0951996 15411.8759765625
+257.1230469 99320.859375
+258.1237183 13760.9072265625
+260.1123657 101708.5390625
+266.7566528 13146.9775390625
+270.0965881 115295.7109375
+276.1328735 16301.041015625
+276.3869934 12852.615234375
+277.138855 14799.1728515625
+278.1497192 26435.8828125
+283.1428528 38862.2578125
+287.1235657 148409.234375
+288.1075745 1489104.375
+289.11026 234203.9375
+290.1125183 18755.60546875
+294.1173706 18986.419921875
+295.1474915 25870.7109375
+302.1334229 16442.890625
+303.1436462 27433.740234375
+305.1341553 3008638.0
+306.1192932 1056394.5
+307.1220703 168489.390625
+311.135437 51565.1640625
+312.118103 35649.28515625
+321.1543274 322252.0
+322.1577148 56595.0
+323.1445923 1000179.375
+324.1466064 173262.390625
+325.1516724 21372.25390625
+329.1443481 42492.94140625
+331.0966797 12290.9501953125
+338.1423645 52523.17578125
+338.1809387 334992.375
+338.6443481 24619.015625
+339.184021 42974.625
+341.144989 22119.697265625
+347.1483765 16355.8369140625
+351.1347046 16894.3046875
+358.17099 14032.6396484375
+359.1446838 61893.3515625
+366.186676 123864.5625
+367.1893311 17691.8203125
+369.1392517 28203.93359375
+376.1697693 115277.0625
+377.1549683 62448.3359375
+386.1640625 42476.30859375
+394.1810608 679481.875
+395.1823425 132113.0625
+412.1870422 27774.875
+413.1636658 17323.91015625
+420.6860046 12844.2470703125
+428.1983948 17265.12109375
+460.1915894 24266.1796875
+468.221405 60104.21484375
+469.2260437 17809.107421875
+477.2175598 21362.068359375
+483.7215881 16566.423828125
+485.2477112 175166.984375
+486.2495422 49806.31640625
+488.1863403 41911.8515625
+489.1957397 13973.1103515625
+492.2295227 145604.8125
+492.7310791 94998.8359375
+493.2302551 16751.3515625
+495.2253723 62866.0546875
+501.2360535 17730.408203125
+503.7111816 28959.791015625
+505.2111511 48670.06640625
+506.2053528 41870.16796875
+506.728302 20610.791015625
+507.2073059 16483.65234375
+512.2271118 55855.671875
+512.7271118 26632.810546875
+513.2282104 24264.53125
+521.2340698 35073.359375
+521.7339478 18825.005859375
+523.2226562 423787.8125
+524.2246094 108625.109375
+525.2332153 25732.48046875
+530.2496948 18328.1015625
+558.2537842 16078.6806640625
+558.7424927 20233.017578125
+567.2563477 15587.81640625
+571.7508545 93195.4765625
+572.2751465 300117.21875
+573.2810669 94349.53125
+574.2828979 16281.109375
+576.2627563 44285.82421875
+576.7625732 19215.1484375
+577.2686157 20960.40234375
+580.2620239 63671.703125
+580.7555542 2081704.25
+581.2567139 1531155.375
+581.758606 559502.4375
+582.2585449 113844.1796875
+589.2658691 39987.15234375
+589.7696533 21961.087890625
+598.2724609 52957.9375
+599.2804565 22347.306640625
+599.7746582 47781.890625
+606.2626953 32032.232421875
+607.2620239 17004.419921875
+624.2693481 60846.87109375
+625.270874 22220.84765625
+656.3120117 21185.939453125
+673.3251343 372794.625
+674.3279419 141922.578125
+675.3208618 19029.955078125
+784.3466797 15118.318359375
+802.3694458 72337.2109375
+803.3665771 39607.9921875
+873.4020386 83477.4453125
+874.4053345 42416.3359375
+875.4082031 14372.7666015625
+1001.457703 17880.021484375
+1058.495239 16328.4375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.400.400.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=400"
+RTINSECONDS=43.51281302
+PEPMASS=598.27001953125
+CHARGE=2+
+51.50207138 12676.771484375
+58.13447189 14765.2978515625
+58.13721466 18159.978515625
+64.52632141 61441.37109375
+64.53047943 39516.18359375
+64.5819931 43595.16796875
+64.58618164 30843.734375
+64.63819122 16402.013671875
+82.05438995 14877.154296875
+149.5716858 52136.82421875
+154.0977173 14970.904296875
+158.4941254 14222.7119140625
+167.0918274 31710.18359375
+169.060257 32667.740234375
+169.4801788 12491.4990234375
+175.1180267 255043.15625
+176.1209717 12660.626953125
+177.0760193 58256.0234375
+178.0459137 8598.50390625
+178.0601349 301132.90625
+178.0778046 16577.748046875
+178.3351746 39889.0390625
+178.3542023 40368.7734375
+179.0632935 31316.01953125
+179.0920563 19104.205078125
+182.0915375 21202.70703125
+183.0754242 22350.658203125
+186.0862885 106104.8515625
+194.1024323 48863.4375
+195.0452881 19386.740234375
+195.0865326 4107503.25
+196.0893707 424997.3125
+197.0921478 29053.01953125
+200.1017761 27931.03515625
+206.0914154 135830.96875
+207.0944519 20541.56640625
+212.4167023 12993.0615234375
+218.1016388 45700.2890625
+222.0847473 16440.990234375
+240.0971222 24437.484375
+243.0873566 24850.080078125
+243.7287445 14715.4541015625
+244.1170349 16175.419921875
+246.0971832 646870.8125
+247.1003418 65746.2734375
+249.0952148 17080.8046875
+257.1230469 94703.4609375
+258.1252441 16155.423828125
+260.1125183 116244.296875
+270.0971985 116866.5703125
+283.1439514 45826.9765625
+283.1953735 13627.705078125
+287.1237793 142770.109375
+288.107605 1505573.0
+289.110321 247887.875
+290.1123352 28211.494140625
+303.1425781 26690.83203125
+304.1265259 19272.732421875
+305.1342468 2977003.25
+306.1196289 1008944.6875
+307.121582 192897.59375
+311.135376 48223.19921875
+312.1179199 21799.087890625
+320.1317749 16569.6640625
+321.1543884 307583.4375
+322.1556702 67783.5390625
+323.1447144 1063378.0
+324.1471252 190460.0625
+325.1495056 19173.447265625
+329.1444092 51366.97265625
+333.1444397 13832.609375
+338.1428528 47228.09765625
+338.1809998 387772.6875
+339.1426392 15055.22265625
+339.1835022 69448.703125
+347.1499634 31976.58203125
+349.1590271 22685.12109375
+351.1314087 16955.361328125
+358.1641235 15133.8662109375
+359.1442871 58216.54296875
+366.1859741 117113.7734375
+369.1385498 26249.646484375
+376.1708069 108276.546875
+377.1578674 67430.8359375
+386.1627808 41459.109375
+394.181366 698828.25
+394.2407532 23848.83984375
+395.1835938 134125.625
+396.1882019 18145.966796875
+412.1899109 39423.32421875
+413.1624146 15974.626953125
+434.1724243 13612.9345703125
+464.1723328 21538.126953125
+468.2220154 61998.66796875
+469.2200928 15353.5654296875
+478.2069702 17377.484375
+485.2480774 230995.1875
+486.2503967 61520.453125
+488.1873474 61731.5625
+492.2301331 176005.859375
+492.731781 97720.7890625
+493.2331543 21342.14453125
+495.2257385 57507.6328125
+505.2136841 61520.98828125
+506.2081909 47399.125
+512.2263794 43344.80078125
+512.7276611 24930.041015625
+521.2338257 27948.21484375
+521.7324219 19010.994140625
+523.2226562 483455.96875
+524.2247314 122762.8359375
+525.2297363 33103.0234375
+529.7473755 22700.49609375
+555.2562256 25383.677734375
+558.7459106 28924.73046875
+567.2617188 22402.20703125
+571.7514648 77802.28125
+572.2758789 331744.78125
+572.7487793 20737.6328125
+573.2811279 105962.875
+574.2874146 19920.12109375
+576.2623291 53136.953125
+576.7664795 21685.7421875
+580.2623291 62366.09375
+580.7557983 2321271.25
+581.256897 1637617.125
+581.678894 13886.5419921875
+581.758728 583609.8125
+582.2595825 117941.15625
+589.2678833 71811.3984375
+589.7655029 33215.35546875
+598.2741699 60564.7578125
+598.7746582 34993.921875
+599.274353 39955.8515625
+599.7803345 74262.7265625
+606.2606201 26320.849609375
+624.267395 54873.81640625
+625.2659302 20260.064453125
+655.3156128 21255.134765625
+673.3245239 377828.78125
+674.3276978 153777.0625
+675.3266602 20107.91796875
+693.2857056 19184.5859375
+711.3034058 21513.853515625
+802.3686523 86338.5
+803.3694458 45245.74609375
+873.4008179 76355.953125
+874.4030151 42970.65234375
+875.4085693 19208.51953125
+1001.447205 25021.693359375
+1002.451904 15335.8740234375
+1058.499268 21448.140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.401.401.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=401"
+RTINSECONDS=43.62269046
+PEPMASS=598.27001953125
+CHARGE=2+
+56.63505936 13609.076171875
+64.52625275 59027.38671875
+64.53064728 47268.10546875
+64.58206177 44921.20703125
+64.58618164 28710.384765625
+64.63828278 21648.83203125
+64.64157867 15817.880859375
+73.42588806 14540.4921875
+76.28515625 13841.2841796875
+82.05417633 16594.265625
+90.63368988 13598.482421875
+103.0001144 15590.6005859375
+104.4823303 13348.0205078125
+119.5433578 12895.166015625
+149.5632477 30375.556640625
+149.5769196 25847.056640625
+167.0913086 44006.6953125
+169.0595245 32093.12890625
+175.1003571 17576.24609375
+175.1177673 287119.875
+176.1216888 22322.98828125
+177.0759888 63748.921875
+178.0598755 302031.09375
+178.3462372 94399.78125
+179.0634918 26821.908203125
+183.0750122 22654.86328125
+186.0858612 96183.796875
+194.1022644 49346.2265625
+195.0862732 3985113.25
+195.1281586 24437.8359375
+196.089035 372020.1875
+197.0908508 27440.337890625
+200.1022339 20557.15234375
+206.0909271 151487.8125
+218.1028595 55129.3359375
+221.1011505 12966.07421875
+240.0961456 16180.5244140625
+241.6204681 14199.9609375
+243.0846558 21098.41796875
+246.0967407 593838.9375
+246.1209869 11346.248046875
+247.0998993 66684.4921875
+252.0933838 17062.328125
+257.1224365 105044.421875
+258.1235962 20813.833984375
+260.1123352 112799.078125
+270.0969543 133688.65625
+276.1355896 18631.802734375
+283.1400757 25624.94140625
+287.1233521 167339.109375
+288.1071777 1516207.375
+289.1094055 215862.9375
+294.1173096 15357.744140625
+303.1451416 24080.830078125
+304.1253662 15793.845703125
+305.133728 3185257.75
+306.1191101 1003610.1875
+307.1210632 178139.0625
+308.1236572 17213.6953125
+311.1360168 40734.30859375
+312.1173096 30459.8359375
+321.1536865 296001.40625
+322.1558533 43838.79296875
+323.144104 1111401.0
+323.1892395 30954.6328125
+324.1459351 203957.671875
+325.1473999 21878.45703125
+329.1435852 49409.140625
+338.1422424 54775.421875
+338.1801453 358845.59375
+338.645752 25964.6171875
+339.1815796 67595.140625
+347.1468201 26658.134765625
+359.1446838 73289.8984375
+366.1859436 117202.359375
+368.1515503 16971.44921875
+369.1372375 38923.453125
+376.170166 129514.2578125
+377.1569824 69983.34375
+386.1627808 28903.091796875
+394.1200562 18529.37109375
+394.180542 727521.9375
+395.1817322 125817.0234375
+396.1842346 40352.8671875
+412.189209 38854.48828125
+420.6821594 20811.158203125
+460.1874084 21520.44921875
+468.2220459 47522.0625
+469.223053 18298.794921875
+478.2041931 26295.234375
+485.2467651 171970.5625
+486.2490234 53619.140625
+488.1822205 45496.296875
+492.2287598 168044.515625
+492.7290039 77273.4765625
+493.2276611 31319.1953125
+495.2251282 66412.03125
+505.2096863 51171.41015625
+506.2028198 49025.01953125
+507.2105408 19977.7734375
+512.229187 48657.859375
+512.7230225 28287.888671875
+521.2282715 32960.03125
+521.7356567 18574.365234375
+523.2212524 460191.21875
+524.2246704 128498.703125
+525.2252197 23519.251953125
+555.2559814 22896.015625
+558.739502 21104.3984375
+567.7558594 23602.724609375
+571.7490234 88621.0546875
+572.2737427 324466.59375
+572.7484131 25505.603515625
+573.2810059 92261.171875
+576.2662354 26712.845703125
+576.7642212 39965.5859375
+577.2669678 24063.521484375
+580.2606812 80450.765625
+580.7543945 2450554.25
+581.2556152 1629703.5
+581.7572632 629535.9375
+582.1638794 21641.541015625
+582.2584229 124971.8984375
+589.2680664 89499.1171875
+589.765686 54713.97265625
+598.2709351 65925.34375
+598.774353 39785.1015625
+599.2714844 31991.302734375
+599.7747803 64773.6875
+606.2687378 23444.3984375
+624.2685547 62298.96875
+655.3173218 17795.951171875
+673.3234253 399335.84375
+674.3255005 144754.515625
+675.3257446 32279.373046875
+693.2831421 20096.1484375
+711.2956543 22992.390625
+802.3629761 75125.8203125
+803.3631592 34396.82421875
+873.3989258 99802.5625
+874.4033813 53210.73046875
+1058.465698 21155.37890625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.402.402.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=402"
+RTINSECONDS=43.73165902
+PEPMASS=598.27001953125
+CHARGE=2+
+50.03325272 12192.9052734375
+55.64598465 13370.98046875
+58.13453293 16591.8125
+60.43916321 13269.69921875
+61.11782455 14699.80859375
+64.52629852 64735.57421875
+64.53050232 42145.53125
+64.58222961 32360.873046875
+64.58624268 31143.0703125
+64.63809967 18790.779296875
+77.35050964 13278.751953125
+86.07064819 12971.033203125
+112.4736862 15814.9228515625
+135.5304718 13755.95703125
+149.5708771 50671.296875
+167.0919037 33213.53125
+169.0600128 34223.72265625
+175.118042 271685.59375
+176.121521 19728.693359375
+177.0756378 58959.8359375
+178.0601044 305854.875
+178.0757599 9086.130859375
+178.3384705 75324.3359375
+178.3962708 17506.5859375
+179.0638123 24019.359375
+179.0921021 17945.7265625
+183.0742035 22381.943359375
+186.0862885 87285.8359375
+194.1025391 47125.44921875
+195.0865021 4070373.75
+196.0893097 431764.96875
+197.0915985 21587.52734375
+200.1010132 24817.818359375
+206.0911713 149966.515625
+207.0948334 21993.84765625
+212.1130066 16621.193359375
+218.1027374 58763.1640625
+222.0844879 19392.314453125
+232.1161041 19788.7109375
+233.1278534 20489.669921875
+240.0971375 30852.37890625
+243.0834198 15154.0810546875
+246.0970764 640071.0625
+246.1257629 32192.1953125
+247.0995483 81748.296875
+249.0971069 18301.263671875
+257.1229858 79363.9375
+260.1124268 102443.5703125
+270.0973511 123737.0
+278.1214905 33253.85546875
+283.1429749 38095.51953125
+287.1236267 139855.1875
+288.1075134 1512396.0
+289.1103516 230988.9375
+290.116333 20451.328125
+295.1479492 20493.099609375
+303.1445007 23040.345703125
+305.1340942 3083768.25
+306.059082 18736.34765625
+306.1193542 1013648.375
+307.1211548 196895.78125
+308.1212769 24133.083984375
+311.1356201 40029.44140625
+312.1164856 30734.11328125
+321.1541748 315033.9375
+322.1569824 51597.4765625
+323.1445618 1026995.125
+324.147644 183327.96875
+325.1509705 28463.048828125
+328.1636047 18040.42578125
+329.144104 45279.85546875
+338.1422424 51103.5625
+338.1808167 377878.125
+338.6459351 21582.755859375
+339.1832886 70037.0546875
+347.1482544 33434.890625
+349.1607056 29713.083984375
+351.1329956 20306.251953125
+358.1642761 27080.39453125
+359.1442566 56538.9453125
+366.1861572 125560.3125
+367.1886597 19915.24609375
+369.1399231 17858.537109375
+376.1702271 138480.53125
+377.1561279 68241.3828125
+386.1662598 33576.96875
+394.136322 14942.0498046875
+394.1810913 701948.6875
+394.2399902 25163.705078125
+395.1827698 161601.359375
+412.1889343 27093.41015625
+464.1654663 14922.7119140625
+468.2223206 65390.00390625
+469.2295532 13896.2763671875
+485.247467 209417.734375
+486.2492676 52289.1015625
+488.1847839 40245.42578125
+492.2293396 142639.875
+492.7310181 69898.4609375
+493.2324524 21335.2890625
+495.2265015 54035.22265625
+496.2341309 17205.9140625
+503.7173462 21074.302734375
+504.218689 17082.365234375
+505.2122192 43991.078125
+506.2033386 50828.88671875
+512.227356 28490.748046875
+512.729248 20296.30078125
+521.2340088 27984.134765625
+523.222168 420648.1875
+524.2254028 114073.0078125
+525.2339478 20556.41015625
+558.7455444 31844.09375
+567.2533569 21034.69921875
+571.7505493 85595.15625
+572.2752686 315248.9375
+572.7536011 25512.953125
+573.2822876 83072.25
+574.2810669 20843.015625
+576.2629395 54773.4765625
+577.2684937 24287.560546875
+580.2620239 79731.4296875
+580.7553101 2279902.0
+581.2564697 1599388.375
+581.7583618 609578.75
+582.2587891 118461.265625
+589.2671509 85706.6796875
+589.7671509 42187.9296875
+598.272644 60005.67578125
+598.7745361 30690.990234375
+599.2774658 18137.181640625
+599.7783813 64650.28125
+606.2581177 38937.08984375
+607.262207 16631.146484375
+624.2686157 44567.57421875
+673.3247681 417639.78125
+674.3268433 156203.5625
+675.3290405 37011.03515625
+693.2947388 24216.7578125
+708.2449951 17290.578125
+802.3624878 98531.9765625
+803.3685913 49056.37109375
+804.3741455 17516.111328125
+873.4024658 94299.765625
+874.4035645 56339.0078125
+1001.461487 28524.8984375
+1002.448425 19783.73046875
+1058.47168 20565.095703125
+1073.648193 16806.625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.403.403.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=403"
+RTINSECONDS=43.84049082
+PEPMASS=598.27001953125
+CHARGE=2+
+57.67692566 12402.728515625
+57.96003723 11527.40625
+58.13435745 15267.23828125
+58.4859581 12008.1796875
+64.52622986 64774.6484375
+64.53046417 39896.50390625
+64.58200836 43998.17578125
+64.58621216 28491.6640625
+74.8163681 18986.884765625
+74.83998108 11698.9287109375
+76.28141785 15556.4765625
+82.05381012 12609.1376953125
+132.7563019 13682.6005859375
+145.3935852 13222.248046875
+149.5691681 52410.42578125
+167.0914764 39164.015625
+169.0597534 31147.4453125
+175.1178894 302593.28125
+176.1203156 18092.3984375
+177.0761261 60252.51953125
+178.0601807 305952.125
+178.3471375 73385.921875
+179.0634003 26096.404296875
+179.0925598 23212.8671875
+182.0902252 19031.1640625
+183.0755005 27939.451171875
+186.0861206 96317.6796875
+194.1023712 42677.5234375
+195.0865479 3695371.0
+195.1283417 18334.171875
+196.0894928 386844.78125
+197.09198 33102.7109375
+200.102005 14574.0654296875
+205.0605316 13731.5390625
+206.0912781 133409.375
+209.100769 16798.5078125
+212.1135254 16888.150390625
+218.1024933 50211.953125
+234.0974274 19165.462890625
+239.1123657 21890.845703125
+240.0961609 15140.3310546875
+243.08638 22866.59765625
+246.0971375 603526.5
+247.0996857 86556.859375
+249.0956573 14518.9443359375
+257.1230469 118936.3046875
+260.1127319 107880.5546875
+261.1156006 15269.634765625
+267.1100464 13324.728515625
+270.0971375 101675.0546875
+276.1355591 15926.330078125
+278.1488953 36194.78515625
+283.1438599 36559.140625
+287.1237793 127277.5546875
+288.07724 20538.2890625
+288.107666 1436499.375
+289.1104736 214769.328125
+290.1156616 14248.421875
+294.1201172 17945.3515625
+295.1512756 26385.33203125
+303.1444397 29234.806640625
+305.1042175 49929.05078125
+305.1343384 2940078.5
+306.1196899 981350.9375
+307.1217041 180706.15625
+308.1249084 30748.6484375
+311.135437 46712.234375
+312.1160889 30778.630859375
+321.1545715 337004.5625
+322.1562195 49550.3984375
+323.1109924 18150.92578125
+323.1448364 1049445.625
+324.1468506 172918.234375
+329.1430054 52436.37109375
+331.1491394 14259.2333984375
+338.1427002 37762.81640625
+338.1809998 395726.28125
+338.6463623 24744.494140625
+339.183075 54440.578125
+349.1609192 21328.923828125
+359.1462097 55096.46484375
+366.1867371 97133.6953125
+369.1404419 28217.052734375
+376.1711731 112537.3984375
+377.1575317 70680.2734375
+378.1625671 19736.4609375
+386.1668396 29282.9375
+394.1372986 11191.794921875
+394.1815186 670352.5625
+394.2398376 28058.59375
+395.1834717 128584.1953125
+412.1916809 37812.8125
+420.6832886 19765.61328125
+460.1941833 26409.017578125
+468.2207642 52087.5
+469.2222595 15625.51953125
+477.2195129 17293.068359375
+478.2068787 14261.2685546875
+483.7193909 15950.4541015625
+485.2479248 199650.28125
+486.2499084 59682.578125
+488.1881104 43639.86328125
+492.2304077 143832.5
+492.7332458 56470.0546875
+493.2348328 21046.56640625
+495.2271729 41966.55078125
+503.215332 17473.14453125
+505.2117004 54045.75390625
+506.2080383 48728.2578125
+512.2272339 46617.82421875
+512.7259521 17413.419921875
+520.7338257 14443.119140625
+521.2315674 37184.7578125
+523.2230835 412898.78125
+524.225769 119149.6015625
+529.7495728 22357.36328125
+530.2394409 15487.6435546875
+555.2622681 15132.24609375
+558.7459717 23183.4375
+559.2477417 19248.1171875
+567.7573242 20501.46484375
+571.7521973 81493.640625
+572.2766724 322856.46875
+572.7526245 19439.58203125
+573.2811279 77340.5
+576.2605591 37900.79296875
+576.7683716 39982.66015625
+577.2677612 21530.546875
+580.2648315 87775.8046875
+580.6710205 25487.435546875
+580.7565918 2243966.25
+581.2576904 1563952.875
+581.366333 18052.115234375
+581.7593994 525418.25
+581.8641357 21669.607421875
+582.2590942 119855.3671875
+589.2675781 53849.8203125
+598.2741089 57083.89453125
+598.7756958 23544.876953125
+599.2800293 26721.56640625
+599.7789307 94368.6484375
+606.260376 34820.1171875
+607.2571411 28090.798828125
+624.2714233 45865.375
+655.3112183 21213.505859375
+673.3257446 417579.875
+674.3276978 167532.703125
+675.3342285 22145.169921875
+802.3654175 86848.1640625
+803.3670654 51150.828125
+873.4054565 85243.7265625
+874.4017334 43513.56640625
+1001.457397 20274.451171875
+1002.460815 16428.927734375
+1058.48584 17998.59375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.404.404.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=404"
+RTINSECONDS=43.95128811
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52630615 60314.015625
+64.53050995 38330.69921875
+64.58197784 50645.62109375
+64.58624268 33568.94921875
+64.63822174 17363.328125
+75.364151 14007.412109375
+85.9054184 14880.8994140625
+145.1832886 13307.666015625
+149.5732574 42641.81640625
+167.0927734 24877.00390625
+169.0595093 30311.265625
+171.5477142 12796.05859375
+175.1178741 288282.375
+176.120163 20695.099609375
+177.0760803 58316.8125
+178.0436554 27742.927734375
+178.0600891 361225.15625
+178.3425903 95383.5390625
+179.0644226 21201.2890625
+179.0911407 30533.099609375
+183.0750122 30059.796875
+186.0862427 120635.7421875
+194.102066 42982.89453125
+195.086441 4131051.25
+196.0892334 408381.625
+197.0916443 21222.162109375
+200.1020508 27387.275390625
+201.0870209 19050.150390625
+206.0910187 181871.84375
+207.0927887 18952.580078125
+212.1142883 17224.421875
+218.1020355 71488.4296875
+222.0853882 14100.1923828125
+239.1136627 12872.3720703125
+240.0966187 23454.732421875
+243.0860138 24704.263671875
+244.1173248 27447.609375
+246.0969543 614506.0
+247.0997925 79111.328125
+249.0973816 17212.544921875
+252.0932465 17872.158203125
+257.1225891 107871.6796875
+260.1124573 118293.7734375
+261.119812 19501.068359375
+270.0969238 126769.84375
+276.1349182 20879.078125
+278.1495972 26810.625
+283.1426697 52618.21484375
+284.1234741 16384.0703125
+287.1235046 146409.234375
+288.1074524 1553492.0
+289.1101379 225100.078125
+295.1507263 23905.484375
+305.1339722 3085321.75
+306.1190186 1128045.25
+307.1216431 159098.375
+307.8451233 17205.400390625
+311.1352539 62847.63671875
+312.1167603 28868.41796875
+321.1539612 321075.46875
+322.1588745 40029.87109375
+323.1444092 1127866.875
+324.1470337 175101.453125
+325.1471252 20108.84765625
+329.1434021 45763.38671875
+338.1427002 51682.31640625
+338.1806641 382583.46875
+339.1825867 71297.5234375
+349.1601562 20577.892578125
+359.1448364 49177.4765625
+366.1864319 131060.078125
+367.1905518 19868.009765625
+369.1377258 36269.5078125
+376.1706238 118850.7578125
+377.1564941 74571.15625
+386.1663513 26771.892578125
+394.1808777 699900.3125
+395.1825256 138627.609375
+412.187439 44299.01171875
+413.1592407 17201.40625
+468.2212219 45369.6796875
+469.2263489 22992.3515625
+477.2149658 29107.07421875
+478.2064209 27827.669921875
+483.7145996 16571.17578125
+485.2470093 209514.234375
+486.2484741 58987.49609375
+488.1835938 49622.0390625
+492.229126 165760.71875
+492.7304993 80367.3984375
+493.2329102 20995.884765625
+495.227417 58275.671875
+503.2232056 26181.30078125
+505.2115784 58744.1484375
+506.2051697 57356.64453125
+512.2268677 24593.4453125
+512.7280884 25313.021484375
+521.2318115 28861.826171875
+523.2219238 472259.59375
+524.2243042 118343.96875
+529.7445679 20971.748046875
+555.2504883 19383.490234375
+567.7539673 23840.5859375
+571.7513428 70375.796875
+572.2752075 292706.0625
+572.7507324 20748.70703125
+573.2805176 96004.4453125
+574.2841187 19930.037109375
+576.2576904 27293.70703125
+576.7648315 22562.74609375
+577.2650757 32154.802734375
+577.767395 20296.40234375
+580.2590942 79815.140625
+580.7549438 2221084.25
+581.2561646 1475652.625
+581.3650513 21915.359375
+581.7577515 597744.0
+581.864563 22811.482421875
+582.2582397 110614.734375
+589.2651367 78768.3046875
+589.7633667 41564.83203125
+598.2702637 40863.28125
+598.7734985 44542.19140625
+599.270874 24654.048828125
+599.7776489 49206.1328125
+606.2625732 32594.79296875
+624.2652588 40025.19921875
+625.2652588 21710.646484375
+655.3137207 21380.1640625
+656.3068237 20415.6484375
+673.3245239 361863.125
+674.3265991 157509.96875
+675.3286743 32622.990234375
+711.2905884 20546.7265625
+802.3632812 82984.0703125
+802.5139771 16034.09375
+803.3634644 41990.4140625
+873.4012451 111774.7265625
+874.407959 55411.1015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.405.405.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=405"
+RTINSECONDS=44.06000018
+PEPMASS=598.27001953125
+CHARGE=2+
+52.71020508 12970.42578125
+56.08633041 14796.64453125
+64.52632904 56576.35546875
+64.5304718 36128.05078125
+64.58207703 42063.390625
+64.58618927 23109.826171875
+64.64154053 15140.40625
+71.30186462 11621.62109375
+71.50191498 11549.88671875
+74.8121109 12371.748046875
+76.85707092 12406.791015625
+78.07257843 12726.9384765625
+136.5511322 16408.8515625
+149.5642242 40316.77734375
+149.578537 23147.7109375
+167.0921783 33983.640625
+169.0597534 34849.2890625
+175.1180725 280273.4375
+176.1220093 19168.25
+177.0760803 68785.890625
+178.0601959 314627.90625
+178.3480682 77815.96875
+179.0636597 29934.15234375
+179.0914764 25803.3203125
+183.0746613 21611.5859375
+186.0864105 87055.2734375
+194.1027679 44199.52734375
+195.0865326 3987509.0
+195.1282349 19978.548828125
+196.0894165 424149.09375
+197.0926666 28022.431640625
+200.1026001 19513.966796875
+201.0856171 14898.7978515625
+206.0913391 157572.15625
+215.092514 14336.5751953125
+218.102005 43644.55859375
+234.0964203 19806.84375
+240.0966797 25576.201171875
+243.0860901 19750.763671875
+244.1172638 19666.873046875
+246.0971832 584945.875
+247.0997314 68101.1484375
+249.096283 12759.794921875
+257.1230469 82884.1796875
+258.125946 24735.62109375
+260.1127319 97084.0
+261.1172791 16936.40234375
+270.0971375 109762.2890625
+276.1339417 19154.09765625
+277.2475586 12580.744140625
+278.1488342 25561.8515625
+281.1341553 13100.9931640625
+283.14328 52430.5234375
+287.1235962 164006.03125
+288.1075439 1548656.125
+289.11026 236609.84375
+290.1132812 21993.58984375
+294.117218 17818.33203125
+295.1497498 24945.41015625
+303.1434937 28185.337890625
+305.1341248 3036847.25
+306.1194153 1064310.25
+307.1217346 159061.734375
+308.1205139 17014.521484375
+311.135437 39913.19140625
+312.114563 25104.369140625
+321.1542358 296467.96875
+322.1559143 47510.59375
+323.1445923 1006836.625
+323.1887817 31762.041015625
+324.1465759 158133.40625
+325.1487427 23301.603515625
+329.1437073 47717.515625
+338.1420593 51928.98828125
+338.1807556 366547.5625
+339.1832581 78719.8515625
+340.1825256 16289.6708984375
+347.1506042 21236.5390625
+349.1585388 19228.017578125
+358.166626 17036.42578125
+359.1447449 55902.796875
+360.2011414 14371.677734375
+366.1860962 112335.0390625
+369.1384888 27475.548828125
+376.1707153 125166.5703125
+377.1558228 69692.703125
+378.1575012 18903.4375
+386.1641846 29770.828125
+394.1811218 691844.5
+395.1829529 121826.6875
+412.1896667 35170.5078125
+420.684845 15423.1357421875
+460.1927795 22463.341796875
+463.1952515 13240.6201171875
+465.3303833 16288.4638671875
+468.22052 53301.80859375
+478.1992188 19744.998046875
+485.2478027 189983.765625
+486.2515259 56759.51953125
+488.1871948 50880.2734375
+492.2297668 123001.3203125
+492.7305908 74353.1796875
+493.2324829 21128.92578125
+495.2268066 58389.55078125
+496.2302246 14694.81640625
+505.2141113 43794.859375
+506.2008362 49969.18359375
+512.227356 39196.8671875
+522.2374878 17231.041015625
+523.2224731 419038.375
+524.2258301 120182.015625
+525.2282715 28854.447265625
+529.7460938 24296.65234375
+558.7491455 25526.943359375
+567.7573242 27144.26953125
+571.7525024 51893.5390625
+572.2754517 283398.75
+573.2798462 70362.21875
+574.2783813 21889.138671875
+576.2592773 41268.109375
+576.7601929 20701.427734375
+577.2652588 28322.009765625
+580.2614746 74544.2890625
+580.7553101 2164399.75
+581.2564697 1354237.5
+581.7581177 542337.6875
+582.2594604 113905.7109375
+589.2695312 31261.55078125
+589.7703857 19999.517578125
+598.2711182 66907.9296875
+598.772644 31792.0
+599.7776489 73954.1484375
+606.256897 28315.634765625
+624.269165 34801.19140625
+655.3132935 15089.6669921875
+673.3248291 388846.6875
+674.3276367 135870.28125
+675.3289795 30059.62109375
+802.3649902 77984.2890625
+803.3668823 47897.6484375
+873.3970947 95548.9765625
+874.4031372 53274.44921875
+875.4165039 17213.10546875
+1001.466125 24839.91796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.406.406.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=406"
+RTINSECONDS=44.16982467
+PEPMASS=598.27001953125
+CHARGE=2+
+56.10877228 13053.9765625
+58.1344223 18772.046875
+58.13729858 17395.75390625
+63.21163177 15211.2470703125
+64.52626038 66891.015625
+64.53070831 42766.49609375
+64.58207703 52777.3203125
+64.58628082 26211.7265625
+64.63811493 20686.86328125
+64.64148712 15663.7060546875
+149.5658875 43010.9140625
+166.2973938 14638.494140625
+167.0914917 25385.57421875
+169.0593109 33299.9453125
+172.2547302 13864.0791015625
+175.1179047 302400.125
+176.1204529 29243.54296875
+177.0760956 59423.72265625
+178.0600586 342582.46875
+178.3464661 85060.2890625
+179.0641327 22345.041015625
+179.0913086 19206.8984375
+182.0917664 14877.701171875
+186.0861511 92922.0234375
+194.1032257 30390.353515625
+195.086441 3968777.0
+195.1283112 19628.720703125
+196.0895233 452744.5
+197.0921478 36788.74609375
+200.1017609 25686.015625
+201.086731 14411.02734375
+206.0912476 127283.2890625
+207.0931091 20518.94921875
+212.1138153 15505.9287109375
+218.1021576 69821.015625
+233.1239777 13747.6875
+243.0851135 19243.275390625
+246.0969849 570776.8125
+246.1253815 34343.7265625
+247.1001434 52895.72265625
+249.0964203 14446.5439453125
+257.1228333 99362.0390625
+260.1130371 111070.703125
+261.116333 14992.24609375
+270.0970764 117510.9765625
+276.1334839 17382.826171875
+277.1386719 17080.611328125
+278.1162415 16732.322265625
+278.1483154 21838.923828125
+283.1436157 46952.51171875
+287.1235657 137089.859375
+288.1074219 1438035.75
+289.11026 218947.625
+290.113739 20256.263671875
+295.1503296 27364.8671875
+303.1419067 17962.626953125
+305.1339111 3039537.0
+306.1192017 1080633.5
+307.1216125 163149.046875
+308.1210022 31263.107421875
+311.1337585 48470.203125
+312.114502 21863.05078125
+318.1430664 15328.2294921875
+321.1538086 287688.65625
+322.1565857 46981.8984375
+323.1445312 1015726.8125
+324.1470642 165701.390625
+329.1435547 29243.140625
+331.1500854 19646.783203125
+338.1423035 47275.89453125
+338.1805115 375580.0625
+338.6463013 30039.927734375
+339.18396 71003.1640625
+347.1486206 25420.2890625
+351.1381836 16367.291015625
+359.1451721 52143.7109375
+366.186676 124888.1640625
+367.1914673 28333.744140625
+369.1394653 24296.171875
+376.1702271 122249.3671875
+377.1559143 72764.6796875
+386.1645203 30902.37890625
+394.1808167 665017.0625
+394.2397766 17528.951171875
+395.1826782 137698.65625
+412.1885681 24109.927734375
+460.191925 19774.53125
+468.2182922 46364.88671875
+469.2194824 20453.33984375
+477.2157898 21322.49609375
+478.2018433 14692.6787109375
+485.2473755 187019.5625
+486.2477417 50896.6796875
+488.1841736 55213.53515625
+492.2291565 182262.84375
+492.7300415 111068.3671875
+493.2342529 26883.466796875
+495.228363 47153.97265625
+496.2307129 15323.2734375
+505.2129517 60247.01171875
+506.2078857 42191.109375
+511.7717896 14417.623046875
+512.2268066 48077.48828125
+512.7304688 22504.28515625
+521.2322998 26399.77734375
+521.7370605 20151.09765625
+523.2218018 450260.0625
+524.2236938 110334.6015625
+525.2332764 15669.0
+529.7495117 19917.25
+558.7495728 22186.9140625
+559.2407837 20343.3984375
+571.7492676 93651.2890625
+572.2752075 324740.28125
+572.7529907 27475.576171875
+573.2764893 95020.015625
+574.2771606 18938.23046875
+576.2623291 64977.3515625
+576.7600098 22433.65234375
+577.262207 24130.32421875
+580.2591553 62952.8984375
+580.7546387 2385774.25
+581.2561035 1702124.125
+581.3689575 28439.62109375
+581.7576294 650353.9375
+581.8615723 13762.474609375
+582.258728 104452.0390625
+589.2661133 75752.4375
+589.7637939 38158.0546875
+598.2752686 65654.25
+598.7727051 48438.7734375
+599.7773438 45113.5234375
+606.255127 35735.83203125
+607.2615356 23781.396484375
+624.2669067 62275.66796875
+625.2674561 22518.287109375
+655.3152466 19805.791015625
+673.3234253 424904.875
+674.3253174 126331.125
+675.3276978 29277.78125
+693.2944946 18832.943359375
+802.3646851 103536.8203125
+803.3641968 47354.11328125
+873.4003906 100436.5
+874.3994141 38653.05078125
+875.4092407 18177.46875
+1002.445435 17341.9609375
+1058.485718 25143.685546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.407.407.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=407"
+RTINSECONDS=44.27930259
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13434601 16091.16015625
+64.5262146 56867.02734375
+64.53046417 36055.734375
+64.58197021 41047.7890625
+64.58617401 29218.419921875
+64.63826752 18661.775390625
+65.62693787 15266.974609375
+69.67816162 11686.087890625
+79.84328461 13438.2822265625
+82.04930115 16210.8857421875
+82.05422211 20573.294921875
+105.2116928 11353.1328125
+149.5764008 27624.935546875
+162.5409546 12243.5302734375
+167.0921936 34918.48828125
+169.059906 39002.19921875
+175.1003723 13223.5625
+175.1179047 272762.5
+177.0761871 71634.390625
+178.0599823 313865.46875
+178.0765686 11775.587890625
+178.3315735 23493.83203125
+178.3508148 67253.1640625
+179.0638123 23323.921875
+183.0747833 22111.126953125
+186.0860596 97589.1015625
+187.0889282 14705.9111328125
+190.0598297 16332.876953125
+194.1021118 37690.48828125
+195.0864258 3834128.75
+196.089325 381037.90625
+197.0921478 33716.5546875
+200.1010742 21362.888671875
+201.0853424 27082.1875
+206.091217 127524.3515625
+207.0935059 17471.6875
+213.086319 15253.5244140625
+215.0916138 17865.7109375
+215.4173279 12499.2958984375
+218.1023102 46953.140625
+221.1014557 13609.37109375
+222.0844574 14112.7919921875
+231.0958252 14521.8701171875
+240.0958405 21407.900390625
+243.0849762 17292.33984375
+246.0739899 9112.28125
+246.0969849 540797.1875
+247.1001129 55596.57421875
+249.0963898 26119.861328125
+257.122345 90908.7578125
+260.1127014 104341.5546875
+270.0970154 126005.1640625
+272.1127625 14801.8408203125
+277.1387329 12100.3154296875
+278.1488953 22940.7578125
+283.1435547 38961.65625
+287.1236267 161817.546875
+288.1074524 1487029.25
+289.11026 220790.859375
+294.1157227 17802.599609375
+295.1494751 17972.947265625
+303.1431274 24479.51953125
+304.1269531 18050.712890625
+305.1340332 2891532.5
+305.2163086 16967.8984375
+306.1192322 1034344.5
+307.1214294 152356.0625
+311.1342773 37258.8125
+312.117157 27713.169921875
+321.1543274 308770.25
+322.1557007 61648.34765625
+323.1445312 1023678.0
+324.146698 163824.3125
+325.1538391 20254.107421875
+328.1586304 14647.4208984375
+329.144104 47962.71484375
+338.1419983 52420.47265625
+338.1807556 355327.65625
+339.1828918 72288.953125
+346.1710815 13146.97265625
+347.1472473 17554.595703125
+349.1593628 23008.66015625
+359.1436157 65888.4296875
+366.1866455 123632.0546875
+369.1382446 21554.244140625
+376.1708374 116321.1875
+377.15625 85102.3671875
+386.1672363 29120.751953125
+394.1811523 653115.0
+394.240509 20300.998046875
+395.1824646 135944.109375
+396.1856384 23034.1875
+412.1821594 22914.482421875
+420.6890869 15967.8369140625
+460.1912537 18684.21484375
+468.2216187 50675.47265625
+474.7097168 12629.0830078125
+477.2164307 22366.0
+485.2476196 208387.515625
+486.2501831 61866.00390625
+486.3269653 13144.5283203125
+488.1877441 37348.90625
+492.2297974 141427.0625
+492.7312012 93010.3828125
+493.2327271 35980.07421875
+495.2294922 52244.22265625
+503.7168579 25327.02734375
+505.2114563 60768.10546875
+506.2097168 52790.94921875
+507.1967468 17631.87109375
+512.2290039 48852.6953125
+512.7272949 19067.80859375
+513.2324219 19439.642578125
+521.2337646 44129.0625
+521.7368774 27621.115234375
+523.1447144 9227.03125
+523.2223511 428436.8125
+524.2250977 110783.0078125
+525.2268066 29527.681640625
+555.2542725 19988.2421875
+571.7468872 53432.40625
+572.2746582 314985.75
+573.28125 92201.0546875
+576.2642212 46361.1171875
+576.7600098 41276.37890625
+580.2640991 112620.9296875
+580.7553101 2147896.25
+581.2566528 1426629.625
+581.7583008 574505.0625
+581.8641357 17388.1484375
+582.2600708 109632.125
+589.2641602 44269.87109375
+589.7595215 20999.201171875
+598.274292 40817.46875
+598.7736206 48377.47265625
+599.2771606 38395.2109375
+599.777832 83569.2578125
+606.258606 25763.64453125
+624.2672729 35710.609375
+625.2686768 15327.9384765625
+656.3046875 21542.0625
+673.3243408 386157.0625
+674.3273315 141331.75
+675.3305664 21886.85546875
+693.2953491 19057.52734375
+802.3637085 68299.9609375
+803.3673706 35524.79296875
+873.4016724 84997.046875
+874.4014893 58415.08984375
+875.4042969 16701.921875
+1001.46814 26235.587890625
+1256.019897 14572.34375
+1269.206177 14183.357421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.408.408.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=408"
+RTINSECONDS=44.3905176
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632904 58236.6171875
+64.53046417 42848.41015625
+64.58227539 34124.015625
+64.58621216 27157.4296875
+64.63813782 15522.8056640625
+80.21292877 14781.4970703125
+82.05407715 22951.005859375
+124.184906 13276.48828125
+149.570282 62226.71484375
+167.0915985 30460.234375
+169.060318 30098.369140625
+175.1178894 267315.03125
+176.1205292 28762.65625
+177.0761566 63401.2421875
+178.0601196 317240.3125
+178.3502197 79205.9453125
+179.0636292 35717.25390625
+182.090744 29050.337890625
+183.0753937 36319.765625
+186.0861206 88615.8515625
+194.1027222 32584.3984375
+195.0648651 23984.2265625
+195.0865326 3934335.25
+195.1282806 24098.119140625
+196.0894623 420223.4375
+197.092041 23434.2890625
+200.1016846 19744.685546875
+201.2484894 15658.1865234375
+205.8179321 13042.01171875
+206.0913849 126117.421875
+213.0852203 19470.7890625
+218.1032715 47291.4296875
+234.0979004 15172.1806640625
+240.0982666 16936.279296875
+243.0850067 27863.1171875
+244.120285 16624.509765625
+246.0971985 605398.6875
+247.098999 56609.71875
+249.0961456 28156.646484375
+257.1226807 88828.53125
+260.1120911 101932.5078125
+262.1260071 20484.109375
+270.097168 128672.125
+274.8010559 14215.5263671875
+278.1486206 22518.86328125
+283.1433716 39581.9765625
+287.1237488 144153.96875
+288.107605 1463404.0
+289.1104431 214974.71875
+294.1185913 22104.359375
+295.151123 19087.23828125
+303.1435547 29540.091796875
+305.1341858 3085677.5
+306.0588074 21878.8984375
+306.1194458 1068598.875
+307.1216125 174085.703125
+308.1244507 21680.2734375
+311.1350098 55103.25
+312.1149597 30690.560546875
+320.1312256 16149.43359375
+321.1539917 325852.40625
+322.1565247 63129.81640625
+323.1446838 1130959.625
+324.1469421 163553.953125
+325.1494446 19835.001953125
+329.1438599 48662.375
+338.1427002 53605.328125
+338.1809082 362830.96875
+338.6452637 21331.177734375
+339.1842346 85148.140625
+341.1457825 24629.783203125
+347.1478271 22437.27734375
+359.1443787 57571.2890625
+366.186554 122653.9140625
+369.1383362 23448.326171875
+376.1705627 121564.484375
+377.1557922 91191.0859375
+386.1636353 26359.015625
+394.1812744 705805.1875
+394.2394409 25363.43359375
+395.1822815 143645.125
+396.1843262 26106.052734375
+420.6838074 15743.3818359375
+468.220459 38825.51953125
+484.2166443 18234.8125
+485.2472534 206949.96875
+486.2493896 55437.6953125
+488.18573 46524.5390625
+492.2301331 145858.5
+492.730011 89219.5625
+493.228241 26745.509765625
+495.2261353 42583.97265625
+496.2364197 19726.62890625
+503.7180176 16256.5771484375
+505.2133484 38527.75390625
+506.2062988 48385.2421875
+512.2250366 21563.07421875
+512.7305908 19452.287109375
+520.7421875 17311.890625
+521.2290649 23648.416015625
+523.2225952 402834.40625
+524.2254639 135792.828125
+525.2276001 24866.21875
+571.7528076 60644.24609375
+572.2764282 318444.96875
+572.7540894 17769.62109375
+573.2800903 75954.7109375
+574.2857666 27331.9140625
+576.258728 38424.81640625
+576.7644043 35594.2734375
+577.2663574 25517.60546875
+580.2642822 73325.0703125
+580.7555542 2195236.75
+581.2567749 1459007.5
+581.7589111 542272.25
+582.2572021 116296.609375
+589.2661743 100646.21875
+589.7659302 60394.9375
+598.272583 40221.640625
+598.7769165 39360.51953125
+599.776123 71622.171875
+606.2543335 37496.12109375
+624.2689819 54543.9609375
+673.324707 379475.875
+674.3290405 167455.859375
+675.3286743 24890.8359375
+711.300293 22032.451171875
+802.3634644 109219.84375
+803.3674316 48607.21875
+873.4029541 97589.0390625
+874.4024658 32406.037109375
+1001.455688 21641.67578125
+1058.465942 19145.376953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.409.409.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=409"
+RTINSECONDS=44.49901338
+PEPMASS=598.27001953125
+CHARGE=2+
+56.80120468 13375.6044921875
+58.1342659 12267.02734375
+58.137146 11774.3349609375
+62.92999268 10159.8310546875
+64.5262146 52909.328125
+64.53045654 34915.12890625
+64.58207703 39593.25390625
+64.58618927 23105.900390625
+64.63819885 14438.0
+64.64168549 11940.0439453125
+71.20684052 10019.884765625
+82.78878021 11811.7919921875
+98.53500366 11251.0732421875
+104.7552032 11881.0869140625
+128.1530762 11279.822265625
+149.5674438 42255.0
+149.5808868 10488.3447265625
+163.4910431 9902.4609375
+167.0918732 24480.787109375
+169.0598755 29794.447265625
+175.1176453 263258.34375
+176.119812 18318.79296875
+177.075943 56209.74609375
+178.059845 300885.1875
+178.0777588 15478.3603515625
+178.348526 66334.640625
+179.0641022 16627.44921875
+179.0919952 17255.6171875
+182.0900726 13984.224609375
+183.0746918 17146.509765625
+186.0857849 77277.265625
+194.1027222 36117.95703125
+195.0862732 3600242.75
+195.1277161 30669.56640625
+196.0891266 357308.8125
+197.0902405 22162.40625
+200.1006622 20382.09765625
+201.0850372 16970.28125
+206.0909576 156411.015625
+211.4295044 12398.224609375
+215.092392 14892.296875
+218.1018677 55913.85546875
+222.0852814 21233.203125
+240.0960388 27243.138671875
+244.1177979 15010.3017578125
+246.0967255 600712.375
+247.0990906 70323.6640625
+249.0951538 15628.9052734375
+257.122467 75769.03125
+258.1242371 15761.009765625
+260.1122742 98069.0
+270.0966797 116758.03125
+278.1496582 20674.779296875
+283.1435242 38629.484375
+287.12323 148426.0625
+288.1070862 1381927.0
+289.1092834 208880.921875
+294.1152344 22527.873046875
+295.1499634 28209.994140625
+303.1423035 22503.572265625
+305.1335449 2853992.5
+306.1186523 980388.375
+307.1211853 174663.5625
+308.1230469 17570.341796875
+311.134552 49174.8046875
+312.1172485 40023.92578125
+321.1534424 310791.84375
+322.1570435 47921.6484375
+323.144043 915705.125
+323.1891479 23046.232421875
+324.1462402 155320.765625
+329.1435242 35859.7734375
+338.1419067 37922.44921875
+338.1801758 355635.8125
+338.6469421 18832.041015625
+339.1387939 14858.7421875
+339.1825867 58170.63671875
+347.1505127 37988.37109375
+359.1434326 63804.58984375
+366.1853943 98537.796875
+367.1875916 31190.84375
+369.1379395 30632.63671875
+376.1694946 106145.140625
+377.1557617 67446.890625
+386.1645813 29981.640625
+394.1804199 620836.3125
+394.2400818 18195.46875
+395.1817017 110363.4375
+396.1844788 20736.82421875
+412.1896057 24645.107421875
+421.1843567 16320.5498046875
+434.1672668 15158.7646484375
+460.1928101 17977.814453125
+468.2200012 48775.3203125
+469.2248535 16364.3525390625
+478.2026978 19117.4765625
+483.7173462 18242.451171875
+485.2467957 161614.03125
+486.2494812 54546.84375
+488.1864014 45575.359375
+492.2287292 131024.7109375
+492.7291565 82828.7265625
+493.2287598 26698.23046875
+495.2247925 54349.671875
+503.72052 15124.095703125
+505.2110596 37414.77734375
+506.2045898 44353.11328125
+511.7198486 13567.560546875
+512.2233887 42475.91796875
+512.7266846 33716.91015625
+521.2321777 26498.447265625
+523.2208862 351913.5625
+524.2233276 93398.953125
+525.2301025 23959.5078125
+531.161438 13254.8330078125
+555.256958 22804.681640625
+558.7401733 20227.251953125
+559.244873 21853.236328125
+559.7432251 14463.708984375
+571.75 84176.8828125
+572.2736816 277967.4375
+572.7446899 13835.443359375
+573.2800293 99532.1640625
+575.2751465 16583.40625
+576.2592773 37466.34375
+576.7659912 28468.828125
+577.2605591 16206.119140625
+580.2583008 72302.390625
+580.7540894 1915966.5
+581.2554932 1419474.125
+581.3668823 19395.70703125
+581.7567139 550020.125
+581.8355103 11092.0927734375
+581.8636475 20617.8515625
+582.2581177 123368.9609375
+583.2711792 14247.0556640625
+589.265686 40651.453125
+598.2734375 56440.921875
+598.7745361 34234.0234375
+599.2730103 34188.84765625
+599.7756348 92947.34375
+606.2614746 21890.953125
+607.2521973 16164.4375
+624.2643433 44021.515625
+673.3233032 366324.78125
+674.324646 146284.234375
+675.3267822 18448.3125
+693.2865601 21779.62109375
+711.3011475 13917.734375
+802.3618164 79679.59375
+803.3607788 36951.8203125
+804.3743896 15425.708984375
+858.3500366 14673.7626953125
+873.3959351 87441.8828125
+874.4014282 45868.48046875
+1001.480896 25623.1171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.410.410.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=410"
+RTINSECONDS=44.6112413
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632141 74112.4609375
+64.53050232 47769.34375
+64.58203125 51461.60546875
+64.58625031 30984.900390625
+90.27555084 14627.4013671875
+92.02037048 17016.8828125
+98.20103455 15490.1572265625
+149.5654297 47766.94921875
+149.5776978 31871.923828125
+167.0908661 20116.248046875
+169.059845 36955.4453125
+175.1178131 287196.3125
+177.0759125 58115.0078125
+178.0432892 30369.80859375
+178.0601807 285827.84375
+178.3388214 95256.28125
+178.3579254 24550.685546875
+179.0634613 37081.81640625
+179.0905457 19485.650390625
+183.0758667 19004.8828125
+186.0858917 127574.4296875
+194.1035461 33902.52734375
+195.0864563 4386648.0
+195.1287994 28895.92578125
+196.0892639 457746.40625
+197.0920105 40701.203125
+200.1019287 22351.2890625
+206.0909119 165171.0
+218.1018066 48342.47265625
+221.1007385 18217.357421875
+232.118576 22016.46484375
+240.0958252 34979.7109375
+243.0861664 30997.7578125
+246.0970001 601838.5
+247.1002808 80556.125
+257.1223145 97229.65625
+260.1123962 106005.484375
+261.1176453 34463.46875
+270.0961304 88128.34375
+278.1488037 21072.638671875
+283.1118774 18494.24609375
+283.1438904 46588.79296875
+287.1236877 149629.71875
+288.1074524 1613284.5
+289.1098633 226626.03125
+294.1180115 22276.810546875
+303.1426392 39808.9296875
+305.1339722 3151528.25
+306.0585938 24458.396484375
+306.1192017 1121085.375
+307.1213989 210667.453125
+311.1352539 53827.93359375
+312.1149902 30082.123046875
+321.1537781 362239.625
+322.1569824 53785.76953125
+323.1444397 1150039.75
+324.1469116 171071.625
+329.1433411 48260.68359375
+338.1418152 62129.87890625
+338.1806946 381224.8125
+339.1843872 69612.7734375
+347.1501465 24161.69140625
+349.1565552 22202.703125
+351.1337585 25820.42578125
+359.144928 67879.5390625
+366.1862488 155279.328125
+367.1870422 29044.865234375
+369.1337891 34646.7265625
+376.1698608 121092.6171875
+377.1581116 80495.4375
+377.9220581 19324.00390625
+386.1646423 24540.40625
+394.1809082 712519.375
+395.183075 170453.921875
+396.1881409 27947.306640625
+407.1715698 19088.42578125
+412.1893005 23307.3125
+413.163208 22849.59765625
+468.2170715 33185.046875
+485.2472839 208752.28125
+486.2501831 29393.853515625
+488.1847839 47429.3515625
+492.2287903 140196.375
+492.7307129 100516.875
+493.2308655 19110.208984375
+495.2273254 55717.54296875
+496.2224731 25455.240234375
+499.8530579 22038.53515625
+505.2123413 69151.609375
+506.2071533 54286.08984375
+512.2243042 50223.64453125
+521.2330322 44202.375
+521.734314 22317.794921875
+523.2220459 442061.75
+524.2247925 124104.703125
+558.7507324 24284.298828125
+559.2513428 25393.767578125
+567.2580566 28443.185546875
+571.7496338 103853.9921875
+572.2756348 322773.0
+572.7491455 33646.0390625
+573.2802124 98727.078125
+576.2611084 52027.5625
+577.2682495 21904.572265625
+580.2617798 131513.796875
+580.7550049 2686318.75
+581.2562256 1790716.75
+581.366333 34411.140625
+581.7580566 667769.375
+582.2587891 166366.984375
+589.267334 167155.15625
+589.767334 86786.6484375
+590.2640381 32828.171875
+598.2733765 60835.7890625
+598.7717896 41714.18359375
+599.7763672 59782.5390625
+606.2563477 32221.94140625
+607.2646484 27725.087890625
+624.2661133 58552.37109375
+673.3242798 452172.46875
+674.3265381 175581.65625
+675.3309326 36463.6015625
+802.3618164 127978.3671875
+803.3673706 49870.08203125
+873.4004517 122137.125
+874.4078979 39756.984375
+1059.487549 22191.607421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.411.411.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=411"
+RTINSECONDS=44.71766816
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629852 47880.0234375
+64.53062439 38213.26171875
+64.58197784 34719.73828125
+64.5861969 26811.53515625
+64.63814545 14440.5732421875
+64.64152527 14361.8349609375
+65.12891388 11190.841796875
+82.05410004 14567.4775390625
+95.43399811 12906.9150390625
+108.2003708 12670.4736328125
+123.2693253 12305.787109375
+124.586647 10801.08203125
+149.5671234 31059.732421875
+167.0914001 39984.55078125
+168.4146881 10032.080078125
+169.0593414 15917.203125
+175.1023254 19740.515625
+175.1177673 270721.8125
+176.1203918 16868.48046875
+177.0761108 71596.2421875
+178.0599518 318561.125
+178.3352051 39255.015625
+178.3543243 34070.5625
+179.0639191 19189.98828125
+179.091507 31070.736328125
+182.0915833 14553.1337890625
+183.0743713 17162.33203125
+186.0861664 95249.28125
+190.0601349 15043.1337890625
+194.1017609 40178.2734375
+195.086319 3587565.25
+195.1279907 17489.982421875
+196.0891266 362413.6875
+197.0901642 30270.9765625
+200.1006927 19498.728515625
+206.0910034 140840.578125
+217.1276703 14303.8779296875
+218.1026764 36990.21875
+222.0856781 14170.0107421875
+240.0959473 19818.181640625
+243.0867767 22606.17578125
+246.0968018 601492.1875
+246.1210938 11440.7705078125
+247.0995636 82657.4921875
+248.1086884 17996.998046875
+249.0993042 12076.06640625
+257.1225281 76347.8671875
+258.1277771 16314.2041015625
+260.1124573 95395.328125
+270.0966187 121409.0625
+271.1017456 18717.5859375
+277.1394043 12133.2646484375
+278.1168518 14237.0439453125
+278.1491699 27150.591796875
+283.14151 36563.69921875
+287.1233215 145693.234375
+288.1071167 1360525.0
+289.1098328 215387.03125
+290.1115723 15210.4990234375
+303.1443176 25274.626953125
+305.1336365 2836609.5
+306.118927 1025020.0
+307.1212463 148675.75
+308.1224976 14815.46484375
+311.1348877 45495.12890625
+312.118042 36457.51953125
+318.1403809 13472.505859375
+321.1536865 311872.375
+322.1565552 52934.43359375
+323.0990601 20198.326171875
+323.144043 1022655.4375
+324.1461487 144901.25
+325.151947 20087.322265625
+329.1437683 39644.03125
+331.1468506 14418.1923828125
+338.1430969 37064.68359375
+338.1801758 349140.4375
+338.6438904 14434.927734375
+339.1821594 66514.421875
+347.1496277 18671.6640625
+349.1619873 22716.939453125
+358.1648865 21087.90625
+359.1437683 53953.69140625
+366.1853027 91170.2109375
+367.184845 13701.8681640625
+376.170166 95751.9375
+377.155426 61983.78515625
+386.1656494 15808.505859375
+389.1556702 12982.3056640625
+394.1804504 645608.875
+394.2406921 19744.2421875
+395.182312 112164.4609375
+396.1859741 16857.13671875
+412.1861572 37611.68359375
+420.684082 22626.66796875
+434.1737671 12666.669921875
+460.1933899 15271.1572265625
+464.1749268 14218.9208984375
+468.2206726 44189.93359375
+477.2159729 18842.0
+485.2467346 162433.21875
+486.2495422 45752.53515625
+488.1859131 34715.98828125
+492.2281189 133555.890625
+492.7301331 67299.1015625
+493.2288513 23149.056640625
+495.2242432 43243.05078125
+499.2179565 14315.5986328125
+503.2231445 18710.162109375
+503.7159729 14296.5703125
+505.2123718 43846.44140625
+506.2012939 54431.87890625
+512.2258301 28090.076171875
+512.7305298 31691.97265625
+521.2307129 18839.2734375
+521.7319946 24977.470703125
+523.2210693 399280.65625
+524.2236328 72951.7734375
+525.2322388 21676.0546875
+555.2544556 18383.916015625
+559.2470703 17226.58203125
+567.2521362 20295.365234375
+567.7456665 19992.728515625
+571.7481079 77171.7109375
+572.2736816 257584.875
+573.27771 77606.8515625
+576.2600098 29010.279296875
+576.7584839 23516.09765625
+580.2593994 43725.625
+580.7540894 1878742.375
+580.8388672 23605.720703125
+581.2553101 1250886.375
+581.3380737 18418.87890625
+581.7565918 495695.125
+582.2590942 95504.9140625
+589.2667847 28104.322265625
+598.2734985 29959.421875
+598.7765503 26460.80078125
+599.2733765 45711.09375
+599.776001 89603.2734375
+606.2620239 26689.013671875
+624.2662964 43625.72265625
+673.322937 340265.875
+674.3259888 128760.71875
+693.2872925 15860.9677734375
+802.3634033 77977.109375
+803.3696289 43979.8984375
+873.3974609 89306.4609375
+874.4020386 35643.2421875
+875.4069214 21106.353515625
+1001.454407 21101.34375
+1009.631653 18507.2265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.412.412.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=412"
+RTINSECONDS=44.83003023
+PEPMASS=598.27001953125
+CHARGE=2+
+59.06470871 13699.7666015625
+64.52625275 51204.54296875
+64.5304718 34457.17578125
+64.58221436 29547.728515625
+64.58620453 28286.765625
+74.81214905 12413.181640625
+90.89195251 12576.7998046875
+149.5689697 53202.609375
+167.0922546 40921.9765625
+169.0594025 31436.697265625
+175.1179047 261173.0
+177.0760651 60793.375
+178.0600739 295755.09375
+178.3479919 80829.4296875
+179.0632172 24080.212890625
+179.0913239 27004.76953125
+183.0747223 21231.8515625
+186.0860748 88545.046875
+194.1018677 39541.1484375
+195.0864716 3962751.75
+195.1281128 19525.869140625
+196.0893707 377834.78125
+197.0914459 31392.673828125
+200.1008301 30984.5
+206.0911102 132982.078125
+209.1018829 12678.1572265625
+215.0924835 19222.158203125
+218.1022949 51439.5859375
+221.1002655 15110.333984375
+234.0974731 15190.599609375
+246.0970612 551130.9375
+247.0997009 70895.6015625
+257.1231689 80208.0
+258.1256714 16906.326171875
+260.1123657 100570.9296875
+261.1157532 20495.7265625
+267.1079102 15966.6962890625
+270.0968628 103761.2421875
+278.1481323 21144.859375
+283.144043 50074.53125
+287.1235962 163114.890625
+288.1075134 1493551.125
+289.1102905 238081.515625
+290.1115112 25695.84765625
+294.1196594 24827.453125
+295.1488037 33611.88671875
+303.1439209 29078.44140625
+304.1255493 16769.287109375
+305.1340942 2998830.0
+305.914093 15067.46484375
+306.1191711 1075380.25
+307.1213074 191867.921875
+308.1222534 16923.056640625
+311.1353455 45373.96484375
+312.1141357 30488.96484375
+315.1270142 18049.998046875
+321.1540833 299488.25
+322.1564636 57393.57421875
+323.1445312 1059705.5
+324.146698 162957.078125
+325.1539612 16998.349609375
+329.1426392 27587.18359375
+338.1418457 45791.64453125
+338.1808472 372777.71875
+339.1833801 54865.3125
+347.1499023 22762.8359375
+349.1607971 29566.5390625
+358.1678772 15213.0439453125
+359.1447754 53738.73046875
+366.185791 102205.171875
+367.1907043 21658.634765625
+369.1403198 26442.33203125
+376.1701355 141892.421875
+377.1564331 65830.2109375
+378.1584473 16789.38671875
+386.1619873 23336.6640625
+394.1811218 684630.375
+395.1834106 146876.578125
+412.1889648 36997.82421875
+413.1669312 18487.76171875
+420.6817932 17972.55859375
+468.222168 63262.1171875
+477.2198486 17608.61328125
+478.2018738 22809.17578125
+485.2477112 201394.71875
+486.2503052 57043.15625
+488.1844788 56767.83203125
+492.2299194 127298.6640625
+492.7312927 86315.8828125
+493.2330627 36460.6640625
+495.2258911 63361.3984375
+496.2340698 17166.3515625
+503.7129822 16157.3525390625
+505.2108459 59715.06640625
+506.2079163 41901.0
+507.1999207 19943.783203125
+512.2283936 35788.8359375
+512.7290649 32793.35546875
+521.2365112 32295.861328125
+523.2225342 437610.84375
+524.2245483 114512.90625
+525.2319946 33870.80859375
+529.7435303 21805.81640625
+559.246521 24646.400390625
+571.7498169 46097.8046875
+572.274353 292256.46875
+573.2810669 112608.9296875
+576.2619019 26401.39453125
+576.7597656 25378.951171875
+580.2629395 76965.21875
+580.7553711 1977077.5
+581.2565918 1400013.25
+581.3658447 16494.22265625
+581.7584839 458901.5625
+582.258606 147216.828125
+589.2688599 59496.1328125
+589.7650146 30516.046875
+598.2729492 38583.55078125
+598.7748413 26950.900390625
+599.2702637 18252.6875
+599.7782593 95840.65625
+606.260437 27114.755859375
+624.2701416 31457.990234375
+655.3104858 17719.1953125
+673.324707 380684.625
+674.3269653 137745.6875
+675.3287354 21401.0859375
+711.2975464 15984.474609375
+802.362793 78078.4140625
+803.3640137 41395.1640625
+873.4036255 79028.046875
+874.4017334 45387.140625
+902.8356323 15383.2119140625
+1001.456482 18220.447265625
+1058.486938 16193.125
+1059.47876 16515.787109375
+1092.34375 15272.8427734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.413.413.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=413"
+RTINSECONDS=44.94006898
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13432312 14544.013671875
+58.13705444 13891.2509765625
+64.52626038 69778.9140625
+64.53072357 47026.515625
+64.58197784 37974.94921875
+64.5861969 25253.224609375
+64.63844299 19091.33984375
+64.64170837 17941.859375
+88.20153046 12779.779296875
+96.65397644 12227.4228515625
+98.78163147 15939.001953125
+103.807869 12648.8828125
+149.566803 49895.953125
+167.0918732 30991.60546875
+169.0594025 33672.69921875
+175.1180725 288979.8125
+177.0762329 63363.015625
+178.0600739 308865.96875
+178.344574 89721.125
+179.0639343 23807.125
+179.0915985 29613.125
+183.0752411 18912.58984375
+186.0861664 82466.015625
+190.060379 20195.1171875
+194.1022491 29125.28125
+195.0865631 3869038.5
+195.1281891 24715.91796875
+196.0895081 388212.96875
+197.0924377 16030.8623046875
+200.102417 28676.263671875
+206.0909576 131702.84375
+207.0927734 19465.521484375
+215.091217 24895.2265625
+218.1023712 45955.4921875
+222.0858307 14934.76953125
+233.1256256 25810.6640625
+237.1089325 14547.103515625
+240.0978851 21851.087890625
+246.0971832 583567.1875
+247.0999603 56993.68359375
+257.1231079 85442.8125
+260.1129456 102882.5546875
+261.1177979 18521.26953125
+270.09729 110057.4375
+283.1440735 38888.3515625
+287.1236267 132761.203125
+288.1076355 1484873.25
+289.11026 201211.90625
+290.1152039 19259.578125
+294.1217041 20346.5234375
+295.1496582 22915.884765625
+303.1448059 33599.8984375
+304.1262207 17066.103515625
+305.1342773 3010079.25
+305.2156677 19056.20703125
+306.1193542 1110310.375
+307.1214294 166100.59375
+308.1217651 20721.560546875
+311.1335144 43825.40234375
+312.1145935 27584.48046875
+321.1543579 272216.71875
+322.1564636 47935.90234375
+323.0993958 15748.634765625
+323.1448059 982761.6875
+324.1474915 191911.421875
+325.1522522 37717.90234375
+329.1439819 50700.37890625
+338.1420898 54688.27734375
+338.1809692 352972.25
+338.6483154 17995.494140625
+339.1838379 87710.71875
+349.1593628 25057.517578125
+359.1445923 56973.64453125
+366.1867065 114350.2890625
+369.1408691 33170.54296875
+376.1706238 98496.234375
+377.1575012 79173.4140625
+386.164093 28590.015625
+394.1813354 706906.3125
+394.2406616 25055.435546875
+395.1832275 128915.0859375
+396.1877136 23464.849609375
+407.1663513 15070.1708984375
+411.4492493 14131.79296875
+460.1962891 17410.5234375
+468.220459 46182.52734375
+469.2227478 17332.87109375
+483.7172546 21454.03515625
+485.2485352 199968.203125
+486.2512512 64451.015625
+488.1878662 51044.24609375
+492.2301025 167448.453125
+492.7307434 90088.2734375
+493.2301636 19501.453125
+494.710968 16740.099609375
+495.2271118 55433.69921875
+505.2120361 47727.6171875
+506.2058716 47230.63671875
+506.7215881 18083.603515625
+512.2285156 56443.0859375
+512.7301025 36680.69140625
+521.2315063 45818.8203125
+521.737915 19750.79296875
+523.2227173 469064.25
+524.2250977 117165.5703125
+525.2346191 20325.84765625
+530.2405396 14636.4970703125
+555.2558594 23070.798828125
+558.7484741 25143.716796875
+559.2468262 23328.251953125
+571.7515869 70263.421875
+572.2752075 306138.84375
+572.7529297 17281.39453125
+573.2793579 103128.7734375
+574.2769165 23174.376953125
+576.2633667 57220.59765625
+576.7590332 31806.314453125
+577.2652588 24658.052734375
+580.2642822 71170.8203125
+580.7558594 2403404.5
+581.256958 1634485.375
+581.7584229 603244.8125
+582.2599487 117916.2734375
+589.267395 62818.4765625
+589.7685547 32194.853515625
+598.2748413 53499.20703125
+598.7738647 32576.65625
+599.2780762 19955.2578125
+599.7788696 92640.390625
+606.2614136 29231.8671875
+624.2680664 57496.33203125
+625.2745972 17138.109375
+673.3250732 395419.78125
+674.3285522 134832.640625
+675.3334351 19761.58203125
+693.2962646 17459.470703125
+802.3640747 88595.328125
+803.3728638 34598.5234375
+804.3748779 16355.6357421875
+873.4021606 87413.8203125
+874.4042358 60505.80859375
+875.4064941 17039.1953125
+952.4296875 18748.619140625
+1001.456848 18460.10546875
+1058.465698 15139.2001953125
+1159.172363 14575.033203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.414.414.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=414"
+RTINSECONDS=45.04988962
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13415527 11287.32421875
+64.52619934 51686.03125
+64.53047943 34529.17578125
+64.58197021 38082.453125
+64.58618927 31439.140625
+64.63792419 19487.24609375
+68.09429932 11856.634765625
+80.16573334 9417.015625
+87.43225098 10205.5654296875
+102.376442 10448.359375
+110.0738449 11812.849609375
+136.2636719 13215.998046875
+149.5688324 43631.03515625
+167.0919342 36211.58984375
+169.0600281 20640.72265625
+175.1020203 20504.451171875
+175.1177673 253787.5625
+175.1349792 9091.2509765625
+176.1215057 22285.650390625
+177.0761719 75106.484375
+178.0600433 317557.34375
+178.0779114 15762.9814453125
+178.3328552 27687.13671875
+178.3521118 56192.7421875
+179.0632935 25382.751953125
+179.0905457 13735.052734375
+182.0920868 15889.302734375
+183.0748444 24397.0
+186.0861664 85861.25
+194.1027679 35074.80078125
+195.0864258 3552614.75
+195.1281586 20863.3828125
+196.0892334 397167.0
+197.0908966 35662.8046875
+200.1021576 26127.20703125
+201.0846558 15141.5869140625
+206.0911102 130761.078125
+207.095108 13700.7666015625
+209.1009369 11880.2158203125
+215.0910187 14902.626953125
+217.1282043 13917.4609375
+218.1029205 50165.6640625
+222.0858002 23623.408203125
+228.5432739 13284.5478515625
+234.0977936 17677.302734375
+239.1142731 13710.271484375
+240.0964813 24944.98828125
+244.1170654 19030.98828125
+246.0970001 562734.0625
+247.1004028 74100.125
+249.095459 17692.515625
+257.1229553 93313.1484375
+258.1242676 17164.064453125
+259.128418 11308.953125
+260.1124268 100060.9921875
+270.0963745 127915.0
+276.1335754 15035.0341796875
+278.1492615 22200.376953125
+283.1438293 43946.87890625
+287.1234741 127895.3984375
+288.1074219 1437485.875
+289.1104431 223607.296875
+290.1149292 17967.078125
+295.1511841 27345.681640625
+303.1441956 33880.06640625
+305.1340332 2686317.5
+306.1191711 982355.4375
+307.1215515 165524.78125
+311.1346436 30215.619140625
+312.1166687 35953.26171875
+321.1541443 286151.90625
+322.1566772 56730.234375
+323.1444702 1046943.0
+324.1469421 142875.53125
+325.1526184 22048.48828125
+329.1453857 50925.38671875
+331.1498108 14853.0087890625
+338.1429138 30706.9296875
+338.1807251 369726.34375
+339.1831665 62066.10546875
+341.143219 17319.755859375
+346.1686707 13202.814453125
+347.1468811 26432.779296875
+349.1614685 18857.44140625
+358.1647034 19860.845703125
+359.1443481 65350.6640625
+366.186676 116092.859375
+369.1405945 23087.66015625
+376.1702881 97685.75
+377.1565247 82694.25
+386.164978 24839.341796875
+394.1809387 679014.5
+395.1829834 118652.8671875
+396.1884766 19718.845703125
+412.1885681 36163.4453125
+413.1688538 14483.4228515625
+420.6843872 30644.693359375
+460.1923828 32030.0078125
+468.2202759 52703.21875
+474.7097473 14306.294921875
+478.2080078 17468.306640625
+485.247345 194392.359375
+486.2502441 59318.14453125
+488.1868286 42290.1796875
+492.2294006 141290.671875
+492.7293091 73216.3828125
+495.2279358 46496.69921875
+503.2168884 16245.884765625
+503.7137451 16140.0341796875
+505.2120361 42941.7265625
+506.2037659 51789.7109375
+507.2125244 20869.337890625
+512.229248 26366.392578125
+512.7277832 28855.01171875
+520.739624 15975.41796875
+521.2347412 32276.982421875
+522.2332764 13857.9521484375
+523.2223511 422980.59375
+524.2255249 100048.7578125
+525.2322998 33711.75
+555.250061 18868.501953125
+558.7420654 27142.787109375
+571.7514648 58007.95703125
+572.2750854 296269.0
+572.7529297 27690.55078125
+573.2807617 93362.46875
+576.2593384 33991.4375
+577.262146 31601.30078125
+577.7561035 25202.36328125
+580.262207 80106.09375
+580.755249 2078950.25
+581.2564697 1449987.0
+581.7578125 528719.375
+581.8640137 18505.44921875
+582.2576294 76367.3984375
+589.2617798 30253.36328125
+589.7666626 27210.759765625
+598.2733765 57518.65234375
+598.7749634 30409.765625
+599.2778931 19460.392578125
+599.7806396 64417.45703125
+606.2606812 37655.75390625
+607.2577515 14519.689453125
+624.269165 51019.0390625
+656.302002 14588.412109375
+673.3247681 339354.09375
+674.3270874 123777.1484375
+675.3283081 35059.9375
+693.2888794 20823.4765625
+785.3354492 15991.697265625
+802.362793 83796.7734375
+803.3648682 34266.53125
+804.3740234 19048.86328125
+873.3999634 55518.06640625
+874.3972168 30651.5234375
+1001.454651 16540.916015625
+1002.456787 21760.70703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.415.415.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=415"
+RTINSECONDS=45.16169951
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 67035.484375
+64.53051758 35388.41796875
+64.5822525 39784.203125
+64.58626556 34833.4765625
+74.93738556 13998.3173828125
+79.39723206 18671.0859375
+101.7197266 16909.15234375
+103.7757874 16074.0859375
+128.1266479 14178.3251953125
+143.7587738 15643.7353515625
+149.5740509 46804.4140625
+152.2509918 15656.162109375
+162.9272156 14919.4873046875
+167.0925293 30437.98828125
+169.0597534 29622.333984375
+175.1179657 268748.5
+176.1206055 28088.40234375
+177.0760956 63501.953125
+178.0601044 323574.0
+178.3366394 61162.74609375
+178.356308 36097.53515625
+179.0634308 24294.1015625
+183.0749054 27597.462890625
+186.0862427 91104.8203125
+186.1024933 16312.25390625
+187.4537506 14864.9931640625
+190.0612488 19338.375
+194.1027527 39121.875
+195.0864563 4217686.0
+195.1283417 23877.02734375
+196.0892334 397160.71875
+197.0910492 27736.771484375
+200.1014557 32236.3046875
+206.0911255 141009.046875
+211.3956451 15444.2431640625
+218.102066 41107.65234375
+239.1125336 24556.626953125
+240.0971832 24531.994140625
+246.0970001 577103.3125
+247.0996552 75620.0859375
+257.122467 101053.09375
+260.1126709 127790.9375
+261.1160278 23026.6171875
+270.0962524 124886.1953125
+276.1340637 26303.451171875
+278.1477661 26631.693359375
+283.1425171 44484.921875
+287.1236877 160331.3125
+288.1073608 1467801.875
+289.1105957 231780.5
+290.1113892 19566.18359375
+294.1178284 22654.484375
+295.1501465 28431.9609375
+305.1339417 3130852.0
+306.118927 1157996.875
+307.1215515 194158.546875
+311.133728 46958.39453125
+312.1154175 23845.27734375
+321.1539612 305944.65625
+322.1563416 67348.890625
+323.1444092 1144511.25
+324.1469727 190347.484375
+325.1577148 16687.24609375
+329.1423035 47526.05859375
+330.1477356 17836.4453125
+338.1419373 51117.77734375
+338.1806946 407583.25
+339.1844788 59605.34765625
+349.1628113 30652.837890625
+359.1455994 57043.59765625
+366.1859741 105680.140625
+367.1885376 26897.123046875
+369.1375427 27896.158203125
+376.1701965 113826.703125
+377.1582642 56313.55859375
+386.1655273 44581.5625
+394.1808472 685671.875
+394.2403259 23765.900390625
+395.1830444 136301.328125
+396.1865845 25661.08984375
+412.183136 18684.837890625
+420.6825256 39596.78515625
+445.7071533 18399.490234375
+460.1930237 29576.359375
+466.4630127 18086.990234375
+468.2182922 46955.88671875
+477.2176514 18903.521484375
+485.2468872 179140.4375
+486.2471008 58617.84375
+488.1901855 40655.84375
+492.2290039 118808.9921875
+492.7304993 85593.03125
+493.2311401 44344.51953125
+495.2267456 51459.9765625
+505.2105103 62169.96484375
+506.203949 23043.134765625
+512.2262573 32570.984375
+512.7304688 22462.54296875
+521.2322388 35051.59375
+521.7355347 27068.009765625
+523.222168 457484.3125
+524.2234497 135844.765625
+559.250061 23200.6484375
+567.2533569 21972.265625
+571.7479858 69565.359375
+572.2752075 302129.125
+572.7542114 24754.6875
+573.2775879 89137.6484375
+576.2580566 74325.1875
+576.7685547 39261.984375
+577.2626343 25710.986328125
+580.2611084 64479.08984375
+580.7548218 2503623.0
+581.2559814 1704845.75
+581.3651123 20854.787109375
+581.7570801 592075.0
+582.2579956 125850.484375
+588.2377319 21450.47265625
+589.2687988 131400.765625
+589.765686 82804.0
+590.2647705 21820.11328125
+598.2753906 66818.484375
+598.7717285 38839.78125
+599.7792358 48866.0078125
+606.2592773 35859.98828125
+624.2639771 45983.5234375
+655.3143311 20144.833984375
+673.3230591 457251.5
+674.3262939 154418.15625
+675.3326416 33659.87109375
+693.2822876 25529.666015625
+784.3475342 20518.322265625
+802.3651733 112757.25
+803.3717651 36253.5546875
+873.4004517 115923.4140625
+874.4049683 73265.3046875
+1001.446228 24636.68359375
+1058.480713 25441.96875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.416.416.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=416"
+RTINSECONDS=45.26890832
+PEPMASS=598.27001953125
+CHARGE=2+
+58.22532654 11906.716796875
+64.52626801 56718.6796875
+64.5307312 41147.0859375
+64.58201599 38410.59765625
+64.58618164 24918.396484375
+64.63821411 12504.978515625
+64.64141846 12595.4873046875
+74.81589508 12041.1259765625
+118.0591049 13231.28515625
+130.8005219 11343.9814453125
+149.562912 23386.08203125
+149.5768585 24752.765625
+167.0915375 36478.90234375
+169.0597687 34081.06640625
+175.1178741 297127.53125
+176.1207733 27390.462890625
+177.0762787 44688.17578125
+178.059906 296016.375
+178.335083 33777.9765625
+178.3542175 38356.24609375
+179.0635529 19987.826171875
+182.0921783 12676.1103515625
+182.490448 11870.84375
+183.074585 21168.384765625
+186.0862427 98498.0
+187.0906525 12416.0859375
+194.1027679 32433.138671875
+195.086441 3618829.75
+195.1280365 18594.7578125
+196.0892944 395807.15625
+197.0922241 27020.7890625
+200.1009369 37145.07421875
+201.0844574 20597.830078125
+203.1523743 11143.1162109375
+206.0910492 138841.015625
+207.0934143 19974.201171875
+212.112381 14603.1572265625
+215.0904694 12681.388671875
+218.1026917 49355.25
+239.1121216 19915.2421875
+240.0956726 32510.166015625
+243.0862732 17716.865234375
+246.0970154 614142.75
+247.0997467 69766.390625
+248.1118011 12468.291015625
+249.0984344 15560.6767578125
+257.1227112 111285.8984375
+258.1259155 14496.291015625
+260.1122131 97351.8671875
+261.117157 19166.328125
+270.0971375 104153.6328125
+271.099762 26774.583984375
+278.1484375 28015.908203125
+283.1423035 38520.62890625
+287.1233826 149320.09375
+288.1074524 1493400.125
+289.1102905 223758.515625
+294.1174316 24002.337890625
+303.1434021 29931.59765625
+304.1271973 12910.451171875
+305.1340637 2862520.5
+306.1193848 1004480.1875
+307.1216431 155408.890625
+308.124054 32527.025390625
+311.1362 55858.94140625
+312.1177368 32599.599609375
+313.1213684 14778.0751953125
+321.1542358 292910.71875
+322.1577148 53062.625
+323.1445923 1002401.125
+324.1461487 156180.109375
+325.1486206 28279.41015625
+329.1438293 55513.9140625
+331.1499023 19083.990234375
+338.1423645 47925.19921875
+338.1808472 357546.125
+338.6452332 20948.966796875
+339.1832886 59852.4609375
+347.1506958 18174.845703125
+351.1324158 14650.9423828125
+358.1604004 14741.31640625
+359.1442871 63646.7421875
+366.1867981 119102.7890625
+367.1896973 19850.611328125
+369.1394348 27174.373046875
+376.1696167 106352.4921875
+377.1574707 69826.421875
+378.1634827 14277.7373046875
+386.1669617 30891.630859375
+394.1810913 633366.625
+394.2679749 14630.189453125
+395.1835938 130709.78125
+412.1880493 37662.88671875
+413.1629333 15822.7294921875
+468.2213135 46793.11328125
+483.7239685 19057.623046875
+485.2479248 182048.21875
+486.2501221 41024.3359375
+488.1871948 40583.00390625
+492.2292175 156829.171875
+492.730835 89727.2890625
+493.2322388 28747.0703125
+495.2279053 54678.57421875
+503.7156067 21018.91015625
+505.2114563 54334.89453125
+506.2000732 37360.55859375
+507.1946411 12989.703125
+512.2263794 32991.0234375
+512.7263794 33271.91796875
+520.7420044 16191.3544921875
+521.2313232 33610.703125
+521.7356567 15768.40234375
+523.2224731 409899.125
+524.2245483 112371.625
+525.2319336 16681.72265625
+529.7463379 19791.845703125
+555.2523804 18654.283203125
+558.7456665 18528.015625
+571.7507324 78262.3203125
+572.2746582 293601.0
+572.7581177 27679.07421875
+573.2811279 97772.9765625
+576.2612915 48166.9453125
+576.7614136 17917.4296875
+580.2645874 70200.09375
+580.7553711 2184974.0
+581.2566528 1461809.25
+581.758606 594117.9375
+582.2589722 117093.8671875
+589.2640381 40224.48828125
+589.7689209 28906.154296875
+598.2744141 42726.0390625
+598.7712402 29721.53515625
+599.2745361 34599.25
+599.777832 89860.84375
+606.2619019 27911.5078125
+624.2723999 41687.3359375
+655.3099365 18668.876953125
+673.1986084 21480.345703125
+673.3256226 358732.71875
+674.3285522 147366.90625
+675.328064 25234.876953125
+711.2995605 18961.603515625
+802.3671875 76563.3359375
+803.3632812 34930.94140625
+873.4020996 73021.7421875
+874.4055176 42048.77734375
+984.428894 12538.09765625
+1001.459778 23817.091796875
+1059.466064 14649.6162109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.417.417.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=417"
+RTINSECONDS=45.38056331
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1373291 16101.4375
+64.52625275 51258.69140625
+64.53046417 32203.994140625
+64.58197784 43306.68359375
+64.58618927 32227.74609375
+64.63843536 17264.75390625
+64.6415329 12381.8623046875
+75.85449219 11692.0087890625
+76.77095795 11757.5673828125
+80.7279892 12458.583984375
+109.000885 13246.9345703125
+109.1362991 13045.7314453125
+139.5639496 12868.2724609375
+149.5627594 27726.3359375
+149.5769196 27922.26953125
+167.0924072 29048.111328125
+167.4314117 13061.8212890625
+169.059082 31319.271484375
+175.1177826 276708.6875
+176.1209869 19587.89453125
+177.075592 59548.9765625
+178.0600128 328647.875
+178.0779266 21010.982421875
+178.3320618 25197.115234375
+178.3510742 65767.9765625
+179.0640564 31198.75
+179.0919495 19107.658203125
+183.075882 14434.7685546875
+186.0859985 101237.3828125
+190.0600281 18599.671875
+194.1024475 37273.35546875
+195.0864105 3950203.5
+196.0891876 383838.71875
+197.09198 29609.12890625
+200.101944 36510.68359375
+201.0865021 22220.828125
+206.0911407 136613.765625
+207.0937042 14086.03125
+209.0778503 16658.36328125
+209.1024628 18000.26171875
+218.1026154 55777.15625
+222.0861359 14198.2451171875
+240.0956573 17412.736328125
+243.08638 28417.177734375
+246.0969543 605823.75
+247.0997925 69754.53125
+257.1227722 93199.921875
+260.1124573 104349.0
+261.863739 14287.9208984375
+267.1117859 15077.259765625
+270.0968323 111973.2734375
+278.1478882 24789.361328125
+283.1423035 31436.05859375
+287.1235962 144215.0625
+288.1074524 1538655.5
+289.1101074 227130.203125
+290.1136169 17237.986328125
+295.1489258 20363.791015625
+303.1422119 34083.60546875
+304.1293335 20568.796875
+305.1340027 2991657.75
+306.1191406 1076954.875
+307.1217346 156207.484375
+308.1237488 14871.3134765625
+311.1341553 42088.72265625
+312.1165771 28717.46484375
+320.5188293 14328.822265625
+321.1538696 285913.875
+322.1566467 58704.015625
+323.1444397 1040454.1875
+324.1469116 173352.15625
+329.1425476 39714.265625
+338.1427612 39608.203125
+338.1806335 383396.625
+338.6459045 16793.009765625
+339.1829224 68580.875
+347.1484985 30008.607421875
+349.1557922 14468.1533203125
+353.1951294 14270.126953125
+359.1447144 53035.88671875
+366.1867065 121441.9375
+367.1824646 17272.953125
+369.1390686 38260.62890625
+376.1709595 119111.4921875
+377.1568604 73143.7890625
+378.1611938 24776.392578125
+386.1636353 21067.2890625
+394.1811523 700888.1875
+394.2397156 25819.46875
+395.1824951 126165.8828125
+396.1864319 16918.17578125
+397.6779175 17475.822265625
+407.3746643 16090.2236328125
+412.1877136 36530.80859375
+420.6815491 24839.701171875
+434.176178 16239.3837890625
+460.1882935 26704.822265625
+468.2230835 50941.65625
+469.2214966 19292.001953125
+485.2478333 198305.515625
+486.2503662 64839.9453125
+488.1858215 60171.52734375
+492.2296448 143890.90625
+492.730896 111512.3359375
+493.2322693 16888.498046875
+495.2272034 60780.16015625
+496.2312012 14234.09375
+503.7232971 22746.767578125
+505.2106018 49021.29296875
+506.2113953 47256.625
+512.2277832 46259.25
+512.7264404 18154.73828125
+513.2329712 16530.71484375
+521.2337036 40944.58984375
+523.2223511 475998.90625
+524.2246094 100438.4765625
+525.2246094 17522.162109375
+558.7462158 22508.431640625
+565.7432251 18021.384765625
+571.7515259 85843.140625
+572.2761841 321751.40625
+573.2828369 89890.640625
+576.2617188 38935.32421875
+576.7643433 29044.0390625
+577.2640991 20612.521484375
+580.2629395 68025.859375
+580.755249 2235183.25
+581.2565918 1543896.375
+581.7582397 508731.96875
+582.2581787 109665.234375
+589.2643433 45825.375
+589.7670288 48112.6640625
+598.272583 42728.92578125
+598.7728882 18816.037109375
+599.2808228 24214.54296875
+599.7772827 73921.125
+606.258667 35928.875
+624.2658081 48507.87109375
+655.3186646 19864.90234375
+673.3242798 333510.09375
+674.3273315 143431.578125
+675.3359375 32374.048828125
+802.3643799 76672.90625
+803.3665161 37447.2890625
+873.4023438 65878.578125
+874.4023438 41016.796875
+1001.45874 24383.04296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.418.418.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=418"
+RTINSECONDS=45.49087286
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52620697 66734.6640625
+64.53050232 40312.1875
+64.58195496 47847.73046875
+64.58617401 26474.404296875
+64.63803864 18872.025390625
+64.64157867 15384.826171875
+82.05406952 21049.13671875
+83.57250214 13800.935546875
+116.7575455 12554.369140625
+119.4652023 14265.994140625
+124.2041168 14308.9609375
+126.7444229 13311.3759765625
+149.5595856 15929.7919921875
+149.5725708 51653.10546875
+152.8712616 16064.947265625
+167.0919189 45156.68359375
+169.0594482 30685.423828125
+175.1178589 295755.0
+176.120636 22652.88671875
+177.0758057 73756.90625
+178.0599976 338041.71875
+178.0746613 7138.6684570313
+178.0780334 14135.6337890625
+178.3355865 47335.921875
+178.354599 34798.57421875
+179.0633545 32203.76953125
+179.0925751 18827.634765625
+182.0912781 18866.58203125
+183.0750885 17470.3515625
+186.0860291 106333.65625
+194.1025543 36249.4296875
+195.0864258 4189242.0
+195.1282349 24735.662109375
+196.0893097 388331.1875
+197.0919647 37585.62109375
+200.1012115 19891.283203125
+206.091095 147502.859375
+207.0938873 14552.9736328125
+209.1018066 13646.3671875
+215.0924225 22736.3203125
+217.1241608 15633.234375
+218.1019745 62459.40234375
+239.1113129 18442.0078125
+240.096283 25023.171875
+243.0860901 16520.04296875
+244.0212555 14723.7060546875
+244.1178589 21545.421875
+246.0743561 9854.32421875
+246.0970001 623270.125
+247.0991058 70533.515625
+249.0970459 16396.02734375
+257.1230469 99140.5078125
+260.1126404 121995.6953125
+262.1299438 15621.3349609375
+269.1351624 13892.4365234375
+270.0971985 130178.8828125
+276.1341858 21355.634765625
+277.1402283 17083.837890625
+278.1490784 20508.14453125
+283.1434326 32787.546875
+284.1208801 18227.154296875
+287.1231995 126558.8359375
+288.1074219 1498943.75
+289.1100464 267149.09375
+290.1114197 21820.8671875
+294.1187744 26354.294921875
+295.1480713 25702.615234375
+303.1429749 26227.609375
+304.129303 16127.3291015625
+305.1340332 3108207.0
+306.1190186 1107768.375
+307.1217957 174184.65625
+308.1230164 17028.94921875
+311.1347656 46731.01953125
+312.1174622 43711.73828125
+321.1541443 311446.84375
+322.1556091 75138.1796875
+323.1444702 1006982.875
+324.1467285 154353.40625
+329.1443481 50469.390625
+338.1418457 42579.7734375
+338.1807556 372581.21875
+338.644165 24847.4140625
+339.1829529 49884.765625
+347.1479797 30869.556640625
+349.15979 18079.91015625
+356.1067505 15006.7490234375
+359.1443787 51755.0078125
+366.1863098 115683.8984375
+367.190033 15441.5595703125
+369.1377869 28984.30078125
+376.1706543 124403.2109375
+377.1560669 76176.2890625
+378.1565247 13921.873046875
+386.1632996 18972.82421875
+394.1810608 635369.8125
+395.1830139 149631.625
+398.1759644 18449.095703125
+412.1879272 41685.54296875
+460.1933899 19253.42578125
+468.2197266 53891.421875
+477.21521 24667.130859375
+478.1996155 17781.939453125
+483.7185364 20787.8828125
+485.2473145 214921.421875
+486.2520447 52949.625
+488.1858521 38402.40234375
+489.1925354 23280.17578125
+492.2297363 189437.71875
+492.7296143 77021.734375
+493.2287903 40288.1875
+495.228363 60565.4296875
+496.2301331 16440.943359375
+503.2173462 25926.705078125
+505.2105713 55516.51171875
+506.2048645 50826.734375
+512.2275391 56803.24609375
+512.725708 37053.5625
+521.2311401 34511.9609375
+521.7330933 20705.94140625
+523.2224121 444302.1875
+524.2241821 133214.421875
+529.7385254 23609.580078125
+558.7380371 21839.552734375
+571.7493896 68208.703125
+572.274292 342073.84375
+573.2788086 89475.5703125
+574.2750244 39586.984375
+576.2645874 38253.95703125
+576.7597656 45374.37890625
+577.2687378 16632.6953125
+580.2615356 71890.171875
+580.755127 2372743.0
+581.2564087 1695693.625
+581.3656616 24086.841796875
+581.7580566 661554.4375
+582.2601318 135815.0
+589.2675171 59831.27734375
+589.7693481 33743.57421875
+598.2735596 61296.32421875
+598.7780762 18188.896484375
+599.2744141 31027.05859375
+599.7770386 59071.86328125
+606.2589111 41130.015625
+624.2670898 57188.41796875
+625.270874 15677.9033203125
+656.3108521 18925.779296875
+659.2529907 16179.388671875
+673.3247681 414408.5
+674.3259888 163541.515625
+675.3240356 42756.16015625
+693.2912598 20082.025390625
+802.3666382 79065.2734375
+803.3695068 39367.4609375
+873.401062 81182.4765625
+874.4048462 41347.66796875
+1001.459106 29347.779296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.419.419.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=419"
+RTINSECONDS=45.6000245
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 65654.546875
+64.53046417 46430.77734375
+64.58191681 44989.4296875
+64.58616638 30031.8203125
+64.63793182 30740.048828125
+64.64160919 20210.431640625
+70.65565491 15015.0615234375
+74.81639862 13818.857421875
+82.05410004 20743.806640625
+89.89691925 14045.423828125
+90.03748322 14691.818359375
+96.81842804 14202.8701171875
+98.62677765 13873.3642578125
+126.1448746 12911.533203125
+149.567627 55194.37109375
+162.0867157 15689.6875
+167.0907593 33360.02734375
+169.059433 33401.28515625
+175.1177216 288760.34375
+176.1214294 18459.986328125
+177.0761871 59013.1484375
+178.0438232 24922.55078125
+178.0598145 324568.8125
+178.340683 87693.2890625
+179.0641785 33317.5625
+179.0911407 19526.33984375
+183.072937 17524.623046875
+186.0858307 114744.6015625
+187.0908813 18249.03125
+194.1023712 41359.796875
+195.0862732 4143770.5
+195.1280212 30636.921875
+196.0892181 462653.25
+197.0916595 24980.53125
+200.1022034 24566.962890625
+206.0907898 146303.734375
+207.0937653 19864.1640625
+209.077652 22814.01171875
+218.1025391 57243.88671875
+222.0854797 21687.83984375
+232.5877533 16438.33203125
+234.0965271 19098.685546875
+246.0967712 616898.875
+247.099472 71776.734375
+257.122345 93979.1953125
+260.1126404 114523.3828125
+262.1279602 14144.755859375
+270.0968018 145561.34375
+278.1488953 25503.36328125
+283.1433105 28088.904296875
+287.1231689 115095.453125
+288.1072388 1543393.375
+289.1100769 224562.78125
+290.1099854 29003.3203125
+294.1176147 29987.984375
+303.1426392 21478.169921875
+304.1261902 16168.134765625
+305.133728 3052029.75
+306.1189575 1092049.0
+307.120697 179523.90625
+308.1252136 18949.708984375
+311.1333008 49947.3125
+312.116394 30502.90625
+321.1536865 343330.4375
+322.1564941 33957.3515625
+323.1441345 1094506.375
+324.1455688 184362.515625
+325.153717 29373.181640625
+329.1443481 55143.80859375
+338.1425476 51327.484375
+338.1802063 368573.84375
+339.1824341 55168.3046875
+341.1434937 22965.099609375
+347.151001 17852.330078125
+351.1255188 17565.916015625
+359.14328 56184.90234375
+366.1858826 134760.34375
+376.1697998 90374.515625
+377.1548157 88167.34375
+378.1552734 19563.685546875
+386.1629028 18885.224609375
+394.1805115 712955.9375
+395.1826477 148759.609375
+412.183075 27798.2421875
+433.1899109 19026.10546875
+468.2200012 47261.2578125
+483.7169495 27058.609375
+485.2470093 160918.625
+486.2497253 63521.90625
+488.1822205 43881.37109375
+492.2288818 211168.0
+492.7301331 120109.8359375
+493.2311096 21539.99609375
+495.2258606 63325.9609375
+505.2106323 54108.95703125
+506.2059326 48050.5234375
+512.2260132 41793.953125
+512.7215576 17835.146484375
+521.2315674 26740.328125
+521.736145 28041.720703125
+523.2218018 482229.53125
+524.2231445 128207.609375
+525.2313843 33523.76953125
+554.2678223 21792.125
+558.7489624 22356.953125
+567.2520752 19104.80859375
+571.7492065 119276.84375
+572.2753906 369917.03125
+573.2788696 119964.3203125
+574.2797852 21284.275390625
+576.2610474 44532.87890625
+576.7675781 37463.17578125
+577.2630615 35976.65234375
+580.2598877 81314.4609375
+580.7544556 2414970.0
+580.8392334 30059.96484375
+581.2557983 1757145.25
+581.7578125 629823.6875
+582.2598267 83401.640625
+589.2664795 98881.5703125
+589.7679443 63996.21484375
+598.2739258 53171.07421875
+598.7719116 44170.7734375
+599.776001 64098.5234375
+606.2593994 25792.09375
+607.2553711 20394.580078125
+624.2681274 63216.02734375
+673.322998 402554.84375
+674.3269043 152764.28125
+693.2939453 21354.197265625
+711.2987061 21586.12890625
+802.3631592 102090.4921875
+803.3670654 31856.51953125
+873.3983765 95230.5703125
+874.4041138 47761.421875
+1001.461975 29239.419921875
+1058.467041 21410.193359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.420.420.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=420"
+RTINSECONDS=45.70805774
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13442612 18802.5390625
+63.58496094 13724.330078125
+64.52623749 65654.96875
+64.53066254 52173.48828125
+64.58200073 41761.20703125
+64.58615112 32013.384765625
+64.63812256 15611.7021484375
+74.81174469 17457.82421875
+85.40512085 12859.1474609375
+98.58559418 13231.8056640625
+149.568161 49699.1953125
+167.0913696 36049.94140625
+169.0596771 32933.66015625
+175.1176605 324392.0
+176.1211395 18723.521484375
+177.0756989 43681.64453125
+178.0597839 315771.84375
+178.3390656 71649.34375
+179.0633087 34436.9375
+183.0744781 21498.80078125
+186.0858917 116040.6796875
+194.1024933 28401.87109375
+195.0862122 4171532.25
+195.1278534 23076.34765625
+196.088974 405756.28125
+197.092804 33957.5078125
+200.1018524 27934.775390625
+201.085083 33266.06640625
+206.0909576 133259.90625
+207.0919647 21042.30859375
+209.0772705 16955.818359375
+218.1013947 46278.3359375
+234.097168 18541.435546875
+237.1095734 18552.275390625
+240.0963593 18955.94921875
+243.0851288 20110.7578125
+246.0967255 662722.9375
+247.09935 76760.15625
+249.0960999 14323.6435546875
+257.1225281 106950.75
+260.1122131 89345.5
+261.118042 18522.9296875
+270.0968628 112981.203125
+278.1192932 19984.869140625
+278.1497803 28158.515625
+283.1429138 48900.58984375
+287.12323 147196.4375
+288.1070251 1486398.5
+289.1097107 217598.5625
+290.0652466 15203.1923828125
+290.1121216 19330.9765625
+295.1502686 32328.267578125
+302.1313171 17457.005859375
+303.1420898 37232.125
+305.1335144 3082638.75
+306.118866 1059999.875
+307.1211548 198997.109375
+311.1349487 49703.29296875
+312.1144409 28827.056640625
+320.1330566 20004.40625
+321.1534119 315115.71875
+322.1557922 66990.890625
+323.1439209 1046743.25
+323.1891785 29903.671875
+324.1458435 187582.59375
+325.149353 20841.759765625
+329.1413879 41479.09375
+338.1419983 55299.68359375
+338.1800232 394641.46875
+338.6464539 26460.501953125
+339.1821594 69590.9140625
+347.1489563 39017.1796875
+349.1599426 17358.208984375
+351.1292419 18290.87890625
+358.1623535 20393.8046875
+359.1452637 50902.09375
+366.1848145 113306.3671875
+367.1895447 24736.251953125
+369.1409912 29759.150390625
+376.1696472 132551.78125
+377.1565247 75144.71875
+386.1644897 22001.21484375
+389.1564636 21188.302734375
+394.1802673 697872.0625
+395.1807861 151423.28125
+396.1828308 22343.875
+412.188446 18941.32421875
+420.6808167 22476.796875
+460.189209 25835.7734375
+468.2201233 55167.33984375
+478.1979675 18943.49609375
+485.2466125 216819.25
+486.2489929 88007.1875
+488.1816101 35995.51171875
+492.2280273 193991.421875
+492.7293701 114604.9609375
+493.2276917 25056.26171875
+495.2254944 52445.34375
+496.2294006 21138.400390625
+503.7189331 31654.013671875
+505.210968 45504.5234375
+506.2033691 43139.8671875
+512.2265015 45162.35546875
+512.7268066 36263.890625
+521.232605 23653.712890625
+521.7341919 32627.16015625
+523.2212524 477862.875
+524.223938 139588.34375
+525.2277832 35649.1171875
+529.7463989 17923.5859375
+530.2354736 22149.990234375
+554.2593994 17542.853515625
+555.2478027 20763.7890625
+558.2475586 16631.693359375
+558.744873 17054.3828125
+567.757019 19363.06640625
+571.7495728 97598.984375
+572.2745972 344044.75
+573.2801514 89861.484375
+574.2780762 18351.013671875
+576.2591553 54945.16015625
+576.7600098 36650.83203125
+580.2630005 107433.0234375
+580.7539062 2507279.25
+580.8406372 32328.10546875
+581.255127 1640863.625
+581.7566528 584775.1875
+581.8635254 18566.40234375
+582.2573242 158635.5
+583.2684937 18824.9140625
+589.2677612 91220.5546875
+589.7640381 40583.8671875
+598.2713623 53648.84765625
+598.7717896 48431.4296875
+599.2781982 19081.98828125
+599.776123 50418.0625
+606.2580566 46206.65234375
+624.2669678 53238.33203125
+655.3112793 21633.2890625
+673.3228149 472955.09375
+674.3250732 155594.15625
+675.3237305 22186.29296875
+802.3630371 110557.0
+803.364502 28466.298828125
+873.3947754 98399.8359375
+874.4014282 51231.328125
+1001.4552 25637.068359375
+1002.456848 20750.283203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.421.421.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=421"
+RTINSECONDS=45.81687443
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1343689 14165.4794921875
+58.13717651 12104.1689453125
+64.52619934 52796.04296875
+64.53068542 40331.22265625
+64.58194733 38528.46484375
+64.58617401 31294.8046875
+64.63796997 15939.869140625
+64.64156342 13791.775390625
+74.81210327 12875.6201171875
+74.81628418 13454.62890625
+80.08946991 11318.529296875
+82.05439758 17089.662109375
+149.5704803 46688.15234375
+151.1717529 12151.8271484375
+151.6223297 10924.7626953125
+167.0914307 54332.9375
+169.0593872 18248.416015625
+175.1178131 268056.625
+176.12146 16037.2958984375
+177.0760345 76577.6171875
+178.0599518 312406.1875
+178.0769196 11227.3408203125
+178.341507 65520.7265625
+179.0634003 28326.58203125
+179.0911407 22320.50390625
+182.0911407 20036.494140625
+183.0753937 16042.4521484375
+186.0861664 99700.4609375
+190.0598755 13990.546875
+194.1027679 34875.36328125
+195.0864105 3862036.25
+196.0891418 366504.65625
+197.0907745 36620.8515625
+200.1007996 19938.9375
+206.0910645 163426.125
+207.0933685 18950.794921875
+218.1016998 48255.6015625
+240.0955048 26158.060546875
+243.086792 17470.48828125
+246.0969238 589848.5625
+247.0996399 69028.15625
+249.0970306 13331.75
+257.1227417 74366.90625
+258.1260681 14989.5390625
+260.1128845 103317.875
+270.0970764 119068.0625
+276.1327515 17674.27734375
+277.1387329 14166.951171875
+278.1485901 31870.416015625
+283.1427307 38594.7109375
+287.1233521 137176.84375
+288.1073914 1477321.875
+289.1101379 215812.046875
+290.11203 21006.720703125
+294.1174011 18211.52734375
+295.1483154 27408.89453125
+303.1447754 23393.779296875
+304.1257019 21019.2421875
+305.1340027 2914282.25
+305.2158813 17416.287109375
+306.1192017 1038093.0625
+307.1220398 138425.203125
+308.1233826 17488.96875
+311.134613 55128.328125
+312.1167297 27148.298828125
+320.1312256 13328.5439453125
+321.1540833 307004.78125
+322.1564636 48284.78125
+323.1445007 1022869.5625
+324.1464233 183347.734375
+325.1492004 18940.43359375
+329.1421814 38710.69921875
+331.1482544 19855.6953125
+338.1431274 36485.203125
+338.180603 369135.0625
+339.1829529 71647.8125
+347.1525879 13290.2880859375
+349.1600342 25255.71484375
+351.131012 18704.69921875
+353.1452942 16118.8408203125
+358.1663818 16538.95703125
+359.1447144 72969.484375
+360.1481934 17955.201171875
+366.1865234 125990.5703125
+367.1884766 21302.966796875
+369.1404724 35900.7109375
+376.1702271 109411.1953125
+377.1571655 80612.8046875
+386.1639404 20522.8671875
+394.1808777 631462.875
+395.1826172 144396.96875
+412.1886292 31092.3515625
+421.1864624 13860.2470703125
+460.1907349 15510.6318359375
+468.2214355 44590.8671875
+477.2192078 24148.89453125
+483.7243958 14999.22265625
+485.2469177 184997.59375
+486.2512512 46261.06640625
+488.1859131 38991.02734375
+492.2294922 112585.7109375
+492.7297974 69678.3984375
+493.2316895 21899.3203125
+495.2267456 48338.734375
+505.2112427 58559.37890625
+506.2066345 39829.65625
+512.2260742 39299.57421875
+512.7280884 25365.263671875
+521.2317505 19746.177734375
+523.222168 388385.3125
+524.2244873 132065.625
+525.2282715 26233.03125
+567.2594604 20064.30078125
+567.7515869 20878.5859375
+571.7512817 116027.2109375
+572.2746582 285644.09375
+572.7520752 24020.267578125
+573.2811279 99453.875
+574.2834473 18543.228515625
+576.2613525 39523.640625
+576.7615967 26185.48828125
+577.2582397 15558.5244140625
+580.2631226 59094.6328125
+580.7550049 2124319.75
+581.2561646 1415188.5
+581.3673706 23488.697265625
+581.7579346 549098.375
+582.2594604 113512.6328125
+589.2648315 37774.4375
+589.7711182 14442.4072265625
+598.2733154 50860.83203125
+598.7765503 22551.705078125
+599.2761841 46063.84375
+599.7775879 69030.6875
+606.2531128 17526.40625
+607.2566528 14966.80859375
+624.2666626 57240.625
+625.2716064 25335.08984375
+673.3242798 402076.34375
+674.3270874 143068.5
+675.3282471 38346.546875
+693.2808228 17835.78515625
+711.3039551 22993.1328125
+802.362793 75037.1953125
+803.3687744 44368.734375
+873.399231 74216.3984375
+874.4055786 48559.1875
+1001.461243 30053.58203125
+1217.078613 15931.0732421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.422.422.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=422"
+RTINSECONDS=45.92794829
+PEPMASS=598.27001953125
+CHARGE=2+
+53.57692719 16262.7421875
+53.68438339 18161.171875
+54.59863281 15118.0224609375
+64.52640533 74850.7265625
+64.53055573 40915.2578125
+64.58203888 49063.1484375
+64.58621216 33258.33203125
+64.63812256 21922.404296875
+64.6415329 18071.943359375
+149.5732727 60979.98828125
+154.4260864 17412.9609375
+167.0919952 38617.55859375
+169.0595703 46498.05078125
+175.118042 329145.84375
+176.1211243 26546.20703125
+177.0762329 53818.1953125
+178.0602112 321420.1875
+178.3321838 35353.6875
+178.3512573 85583.6328125
+179.0635223 28103.21484375
+179.0916138 19855.162109375
+182.0916748 20071.1484375
+183.0749817 25172.26171875
+186.0862274 130500.2578125
+190.0586243 20327.52734375
+194.1031036 37536.19140625
+195.0866089 4517150.5
+196.0895844 442991.9375
+197.0923004 33554.3125
+200.1010132 29340.6171875
+206.0912781 138562.25
+210.9938049 15273.154296875
+212.098999 22837.43359375
+213.085083 17208.71875
+218.1027527 42758.61328125
+240.0969696 36751.61328125
+243.0861206 19379.9765625
+243.7163391 15051.095703125
+246.0971527 609417.875
+247.1000519 66339.2890625
+248.1080933 17366.197265625
+257.1221924 103429.359375
+258.1263123 36378.60546875
+260.1130676 105949.9453125
+270.0970154 118183.453125
+277.1400452 18727.505859375
+278.1194763 23895.48046875
+278.1497803 23207.40234375
+278.8508911 15394.94140625
+283.1421509 51003.84765625
+284.5032349 16058.474609375
+287.1235046 178736.6875
+288.0775757 25104.9453125
+288.1076965 1643655.875
+289.1103821 260053.4375
+289.1428833 22597.32421875
+294.1148987 25102.78515625
+303.1429749 24428.453125
+305.1044617 63085.609375
+305.1343079 3355062.25
+306.1194153 1200375.75
+307.1219788 190309.9375
+311.1354675 50610.09375
+312.1180115 45352.26171875
+318.1423035 18614.4921875
+321.15448 365166.90625
+322.1567688 59728.86328125
+323.1447754 1164394.75
+324.1468201 207074.71875
+329.1445312 62763.078125
+338.1424255 45795.69921875
+338.1809082 404448.375
+338.6454163 28030.400390625
+339.1843262 85009.7578125
+359.1429443 59472.6796875
+366.1871033 128150.90625
+369.13974 20394.708984375
+376.1705627 124777.7109375
+377.1580811 74366.3984375
+394.1812744 773003.75
+394.2399902 27745.779296875
+395.1825562 184111.40625
+409.7850952 19100.62890625
+412.1909485 39907.16015625
+460.1938477 17843.865234375
+468.2236023 49836.1328125
+485.2477417 226152.015625
+486.2523499 65937.4609375
+488.186554 43975.42578125
+492.2295532 163653.15625
+492.7305603 94461.6953125
+493.2252197 22207.623046875
+495.2272644 61575.5625
+505.2123413 48047.4453125
+506.2068481 56595.3984375
+506.7273254 19678.076171875
+512.2277832 49480.046875
+512.7277832 35410.3515625
+521.2346802 49443.0234375
+521.746521 23530.34375
+522.2423096 23607.703125
+523.2229614 561440.9375
+524.2249146 122428.5625
+525.2354126 23276.140625
+554.2679443 19232.341796875
+571.7485962 88629.3828125
+572.2757568 340745.5625
+573.2800903 97475.96875
+574.2821045 27942.11328125
+576.2600708 32424.5234375
+576.762207 28346.693359375
+577.7642822 24458.083984375
+580.2631836 108365.203125
+580.7558594 2505284.0
+581.257019 1716055.375
+581.7589111 606199.3125
+581.8649902 28516.2578125
+582.258606 146377.25
+589.269043 175765.5625
+589.7658691 71318.4375
+598.272522 71621.6328125
+598.7769165 56162.70703125
+599.2762451 24070.599609375
+599.7772217 37884.66015625
+606.2573853 33439.18359375
+624.2643433 48156.03125
+673.3245239 412768.46875
+674.3270874 161460.46875
+675.3283691 35856.5859375
+802.3652344 110156.7734375
+803.3660889 53993.73046875
+873.4006348 109994.3359375
+874.4025879 37179.875
+1058.48938 23315.423828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.423.423.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=423"
+RTINSECONDS=46.03537971
+PEPMASS=598.27001953125
+CHARGE=2+
+58.41539001 13451.611328125
+63.11421585 10298.2275390625
+64.52620697 56691.87890625
+64.53067017 43976.9765625
+64.58197021 37187.30078125
+64.58615112 29160.53125
+75.05466461 13221.7451171875
+84.35665131 12761.76953125
+149.5655823 39523.04296875
+167.0919037 39644.0546875
+169.0597992 28016.228515625
+175.1177673 285122.03125
+176.1189575 14194.9345703125
+177.0758667 67614.859375
+178.0598602 350572.46875
+178.3435364 85316.546875
+179.0626373 29620.158203125
+179.0915527 23031.755859375
+183.0749817 22429.95703125
+186.0859528 106406.265625
+187.0911102 15092.431640625
+194.1015778 41212.3671875
+195.0862885 3935447.75
+195.1278229 30955.267578125
+196.0891418 375136.1875
+197.0915375 30739.611328125
+200.1018372 22237.4296875
+201.0866089 22087.947265625
+201.6792297 12900.6591796875
+206.0908203 154219.328125
+207.0935211 15867.5400390625
+212.1104889 13682.765625
+215.090683 17969.158203125
+218.1023102 52227.23828125
+234.0992279 16724.453125
+239.1126099 20271.701171875
+240.0953674 22017.130859375
+243.0851288 25245.83984375
+244.1172638 12900.666015625
+246.0967712 589277.0
+247.0997162 78973.8828125
+248.1082306 17063.029296875
+249.0968781 19592.03515625
+257.1223145 83413.2265625
+260.1121216 103310.609375
+270.0970154 124103.3984375
+278.1494141 26586.865234375
+283.1427002 47495.25
+287.1233521 133530.21875
+287.9657288 13204.7431640625
+288.1071472 1526824.125
+289.1100769 251395.125
+290.1149902 20412.978515625
+295.1481628 23310.138671875
+303.1437988 24194.298828125
+303.6296692 14702.7236328125
+305.1336365 3019720.5
+306.118988 1050698.5
+307.1211548 197648.140625
+311.1341248 41342.6953125
+312.118103 41672.98828125
+321.1535339 313636.78125
+322.1565857 44154.078125
+323.1441345 1034156.25
+323.1889038 28383.4375
+324.1459656 182387.265625
+325.1513977 18385.5234375
+329.1433411 36053.0859375
+338.1418762 46356.9765625
+338.1801453 373233.9375
+339.184021 49340.4140625
+347.15271 15577.7734375
+349.1591797 16701.158203125
+359.1447449 51249.91015625
+366.1860352 120609.34375
+369.1401367 18341.767578125
+376.1696777 102585.71875
+377.1560974 72236.40625
+386.1638794 29131.486328125
+394.1204834 14195.4248046875
+394.1805115 616291.0
+394.240448 18775.373046875
+395.1817627 115842.6953125
+396.1841125 15028.4384765625
+412.1849365 19334.822265625
+420.6752625 16666.85546875
+421.1825256 16843.044921875
+468.2215576 52004.02734375
+469.2237549 18555.564453125
+477.2127686 14477.958984375
+485.2468872 183537.890625
+486.2488403 54217.1640625
+488.1843567 54279.97265625
+492.2295532 141746.6875
+492.7285767 66720.8828125
+493.2316589 34657.9140625
+495.2250366 55175.04296875
+496.228241 15183.1787109375
+503.7139587 21492.966796875
+505.2121582 42962.88671875
+506.2070312 48906.11328125
+512.2260742 23631.76171875
+521.2272339 21994.224609375
+523.2210693 393747.0
+524.2233276 116256.71875
+525.2247925 22717.79296875
+530.2472534 17053.73828125
+555.2512207 20152.5390625
+571.7474976 85141.7734375
+572.2738647 302224.9375
+572.7540894 17938.29296875
+573.2778931 85877.4609375
+576.2620239 29740.58984375
+576.7648315 30656.12890625
+577.2587891 21179.23828125
+580.2599487 62759.84375
+580.7541504 2027966.75
+580.8400879 27635.615234375
+581.2554321 1336602.125
+581.3363037 19249.71484375
+581.3686523 21526.306640625
+581.757019 519786.71875
+582.2583618 111481.734375
+589.2678833 40520.8125
+589.7658081 21875.3046875
+598.2705688 55393.8671875
+598.7723389 27769.931640625
+599.2751465 39789.18359375
+599.7764282 60338.85546875
+606.2575684 43822.828125
+607.2633057 16543.921875
+624.2688599 44996.015625
+625.2630005 28445.302734375
+655.3118286 16432.82421875
+656.3129883 16497.341796875
+673.3231812 348408.375
+674.3256226 124639.296875
+675.3275757 35253.85546875
+802.3626709 68202.4921875
+803.3658447 41285.484375
+873.4001465 70727.3203125
+874.3987427 38206.015625
+975.8563843 13697.2197265625
+1002.439026 17293.5390625
+1058.484009 17285.6953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.424.424.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=424"
+RTINSECONDS=46.14597299
+PEPMASS=598.27001953125
+CHARGE=2+
+50.94018936 13239.8740234375
+60.9358139 13152.4833984375
+64.52620697 59560.0
+64.53046417 37043.64453125
+64.58198547 35821.58984375
+64.58612823 29247.451171875
+64.63835907 17492.009765625
+64.64151001 14686.341796875
+67.60302734 11601.828125
+74.8115921 15279.8984375
+82.05416107 22359.837890625
+149.5621948 27307.49609375
+149.5747528 34271.5078125
+167.0921021 37885.79296875
+169.0601349 29598.466796875
+175.1179657 315629.71875
+176.1212158 23577.67578125
+177.0765228 57683.84375
+178.0599823 369174.125
+178.0782013 20935.490234375
+178.3396149 72220.0234375
+179.0646362 15862.470703125
+179.0908813 15655.8212890625
+183.0752258 20034.435546875
+186.0865479 91641.90625
+194.1027222 37018.9375
+195.0864716 4032773.0
+195.1282043 21057.994140625
+196.0892792 423815.40625
+197.0921783 29637.3828125
+200.1026917 24661.48828125
+201.0866547 13327.384765625
+206.091095 137422.78125
+207.0930634 29066.177734375
+215.0920563 14415.3818359375
+218.102951 60380.6796875
+222.0859222 23591.125
+240.0951385 28007.435546875
+243.0846405 15301.0126953125
+246.0970154 582287.375
+247.1000519 67718.875
+249.0969391 17119.74609375
+257.122467 82863.015625
+260.112854 111460.9375
+270.0968323 118817.28125
+271.1020508 25368.26171875
+278.1188965 22926.375
+278.1512451 24980.173828125
+283.1423645 37925.109375
+287.12323 151739.046875
+288.1074524 1471284.875
+289.1103516 217408.484375
+290.1122437 19036.490234375
+295.1514587 20607.890625
+303.1417542 31266.505859375
+304.1256714 24658.330078125
+305.1339722 2948973.5
+306.1191711 1031444.5625
+307.1219788 167419.1875
+311.134552 56952.59765625
+312.1174622 37839.37109375
+321.1541138 307923.21875
+322.1568298 50974.8203125
+323.098877 21207.30859375
+323.1445007 1068488.75
+324.1469116 144631.390625
+329.1438599 67927.140625
+338.1412659 47964.94921875
+338.1807556 349760.625
+338.6426086 27111.208984375
+339.1822205 65994.453125
+347.1496582 17254.7421875
+349.1605835 22137.931640625
+359.1443481 48528.71875
+366.1858521 123074.3203125
+367.1890259 24772.68359375
+369.1394348 22531.076171875
+376.170929 119417.390625
+377.1570435 75884.0625
+378.1589355 15416.5087890625
+386.1671143 32506.271484375
+394.1809387 680757.0
+394.2401733 25350.26953125
+395.1826477 150233.28125
+398.1721802 15099.6474609375
+412.1881409 24461.7578125
+460.1906738 24080.896484375
+468.2227173 48560.5703125
+485.247467 191465.796875
+486.2492065 38612.32421875
+488.185791 35433.25
+492.2290955 152283.796875
+492.7295227 81334.34375
+493.2311096 26881.2734375
+495.2278748 56779.08203125
+496.2283325 18111.056640625
+505.2114563 49608.51171875
+506.2036133 37408.93359375
+512.2279053 39000.7578125
+512.7288818 23267.521484375
+513.2301636 15287.2880859375
+521.2374878 20777.56640625
+523.2215576 403433.5625
+524.2238159 112253.5
+525.2299805 20316.080078125
+558.7461548 18742.162109375
+559.2489014 21129.228515625
+571.7505493 71828.75
+572.2745972 300148.84375
+573.2819824 93121.90625
+576.262207 36449.0234375
+576.7693481 17815.314453125
+577.2678833 19760.59375
+580.2608032 76556.3359375
+580.7549438 2201299.5
+581.2562866 1420643.875
+581.7581787 619804.125
+581.8657227 23180.06640625
+582.2590942 113225.671875
+589.2642212 46835.94921875
+598.2736206 73234.1796875
+598.7778931 36142.34765625
+599.2739868 41461.5546875
+599.7739258 75295.8984375
+606.2609253 38641.19140625
+624.2693481 57186.06640625
+655.3225708 24777.705078125
+656.31073 21233.912109375
+673.3241577 381963.15625
+674.3272095 120706.4453125
+675.3228149 21705.3359375
+802.3635864 79701.171875
+803.3634033 46671.984375
+858.3733521 14295.666015625
+873.3999023 95167.3203125
+874.4000244 52546.015625
+1001.467346 19877.447265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.425.425.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=425"
+RTINSECONDS=46.25598971
+PEPMASS=598.27001953125
+CHARGE=2+
+53.7635231 14381.072265625
+57.72763824 12760.4453125
+64.52627563 63384.1328125
+64.53048706 45231.18359375
+64.5819931 47374.51171875
+64.58620453 28349.169921875
+64.63813019 17482.685546875
+64.64152527 18625.671875
+108.2217255 15119.705078125
+135.5046082 14442.2509765625
+139.8905945 15109.2197265625
+149.5646057 34002.79296875
+149.5785675 28211.796875
+160.6779938 13719.1826171875
+167.0916443 44874.9140625
+169.0594177 46319.80859375
+175.1178589 309683.5625
+176.1218262 23952.236328125
+177.0761261 52002.7734375
+178.0601501 309406.46875
+178.3335876 29524.5
+178.3527679 66602.65625
+179.0635834 19770.453125
+179.091629 25604.57421875
+182.0907898 23798.380859375
+183.0751343 27187.716796875
+186.0861359 129924.90625
+192.9806824 14106.6044921875
+194.102356 55004.6875
+195.0864716 4345153.5
+196.0894623 494492.875
+197.0915833 33319.16796875
+200.102478 21560.810546875
+201.0864716 30961.126953125
+206.0910797 187034.4375
+207.0943909 30055.900390625
+209.0772858 18065.669921875
+215.0922852 17652.767578125
+218.1018066 45804.75390625
+222.085022 20688.30078125
+234.0966492 23382.39453125
+239.1116028 18275.005859375
+240.0957184 23917.42578125
+243.0863953 20783.439453125
+244.1180725 29205.111328125
+246.0970917 646840.1875
+247.0997314 69311.0078125
+249.0998383 22859.166015625
+257.122467 123961.4609375
+260.1124573 114263.8046875
+270.0971375 136025.53125
+278.1491089 25935.833984375
+283.1434631 44420.09765625
+287.1239929 168423.953125
+288.1075134 1607254.25
+289.1103516 240898.8125
+290.1125488 23485.3671875
+295.1495361 29203.216796875
+303.1444397 38036.09765625
+305.1340942 3203063.75
+306.0596313 20934.017578125
+306.1194153 1140257.5
+307.1211853 210335.765625
+308.124115 25042.66796875
+311.1347656 42707.16796875
+321.1541138 351461.15625
+322.1561279 49041.96875
+323.0977173 27017.97265625
+323.1445312 1154783.125
+323.1880188 36887.8125
+324.146759 204625.984375
+325.1505432 16947.88671875
+328.1593323 20207.7265625
+329.1434631 57793.11328125
+338.1416321 51385.4921875
+338.1806946 439380.9375
+339.1829529 67469.78125
+340.1832886 16608.712890625
+349.1587524 25912.99609375
+351.132782 18109.208984375
+358.1660156 20064.7109375
+359.1447144 60933.98828125
+366.1859131 118674.984375
+369.1396179 23630.162109375
+376.1700745 113974.0859375
+377.1569824 88901.3046875
+386.1661072 22575.228515625
+394.1810303 786750.5
+394.2406311 27283.32421875
+395.1827698 168369.671875
+396.1850586 20621.052734375
+412.1889038 32033.2265625
+414.1912231 17027.25390625
+416.1549072 16428.384765625
+460.1869202 21250.541015625
+468.2217712 41358.06640625
+477.2123108 24070.919921875
+485.2472839 240602.03125
+486.2481384 57753.80859375
+488.1868896 42896.78515625
+492.2295227 183023.71875
+492.7286682 72251.078125
+493.2286682 25255.189453125
+495.2257996 74674.90625
+505.2115784 50697.546875
+506.2046509 60829.8984375
+506.7316284 23426.23046875
+512.2277222 51152.5859375
+512.727417 50067.140625
+521.2401123 29959.22265625
+521.7331543 21245.51171875
+523.2225952 502323.0
+524.2253418 156810.03125
+525.2281494 31453.26953125
+531.1489868 18141.923828125
+558.7433472 40192.73828125
+571.7495117 91453.328125
+572.2747803 336826.78125
+572.7463989 33559.2265625
+573.2794189 106262.640625
+574.2816162 21447.2734375
+576.2616577 59269.53515625
+576.7602539 33992.34375
+577.2714844 23339.009765625
+580.2634277 93774.9609375
+580.7554321 2501372.0
+581.2567139 1669855.125
+581.7580566 589774.6875
+582.2596436 125303.3046875
+589.2692871 92101.703125
+589.769043 62954.0078125
+598.2753906 55385.08984375
+598.774353 43173.1953125
+599.2807617 27132.95703125
+599.7764282 56733.0234375
+606.2630615 31401.888671875
+624.270752 43676.84375
+656.3091431 27579.978515625
+673.3247681 416538.375
+674.3261719 130245.8828125
+675.3239136 23132.388671875
+711.303894 27360.634765625
+802.3689575 79763.2734375
+803.3720093 40535.69140625
+873.4018555 98016.125
+874.4046631 49058.87109375
+875.4082642 18824.462890625
+1002.470276 16967.6796875
+1058.481079 19908.41015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.426.426.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=426"
+RTINSECONDS=46.36378215
+PEPMASS=598.27001953125
+CHARGE=2+
+50.1867981 10913.8359375
+58.13437271 14948.1650390625
+63.5851593 13798.42578125
+64.52637482 57803.203125
+64.53050995 38107.69140625
+64.5819931 42830.3671875
+64.5861969 26723.35546875
+64.63815308 19101.189453125
+68.42126465 12320.673828125
+82.05367279 13198.537109375
+91.77296448 14136.3935546875
+94.66098022 14611.1171875
+104.6830368 12684.3203125
+149.5673065 48136.38671875
+167.0916595 37529.41796875
+169.0596924 28623.751953125
+175.118042 291134.65625
+176.1213074 21753.6171875
+177.0760651 65427.59375
+178.0601044 335365.5
+178.3356628 45964.54296875
+178.35466 33389.03125
+179.0626526 12718.173828125
+179.0916443 14034.5615234375
+182.0918274 15120.552734375
+183.0754242 16657.162109375
+186.0864105 86622.90625
+190.0603943 17517.279296875
+194.1033173 25657.333984375
+195.0865479 3891904.5
+195.1281891 21929.310546875
+196.089447 422470.46875
+197.0931396 24484.458984375
+200.102005 15530.5830078125
+206.0914764 122766.015625
+207.0943451 19002.76953125
+218.1026001 44632.4453125
+233.127182 14459.9677734375
+234.0962524 15682.5517578125
+240.0975952 23040.30859375
+243.0872192 22324.625
+244.1187439 17191.259765625
+246.0971222 560485.25
+246.1203613 9148.9658203125
+247.0993805 57299.0
+257.1224976 110798.2265625
+258.1251221 15930.43359375
+260.1124268 101804.1484375
+261.1181946 18043.048828125
+270.0974731 120771.2421875
+283.1439819 40337.48046875
+287.1236572 141906.515625
+288.107605 1548364.75
+289.1102905 251154.4375
+294.1126099 18760.970703125
+295.1523132 13919.5107421875
+303.1438293 46814.48828125
+304.1268616 22522.158203125
+305.1342163 2968957.25
+305.217041 19987.845703125
+306.1193542 1081621.875
+307.1215515 175820.859375
+308.1222839 27973.359375
+311.1340637 53757.6875
+312.1170654 31063.521484375
+321.1543274 289078.34375
+322.1569824 57234.12109375
+323.1447449 1082692.375
+324.1469727 193673.046875
+325.1494446 20472.998046875
+329.144989 44760.875
+337.1601868 19485.13671875
+338.1427612 50882.24609375
+338.1808167 368809.65625
+338.6437683 23042.771484375
+339.183136 60589.69921875
+341.1456299 17671.4453125
+346.1660767 21200.986328125
+347.1473999 20658.95703125
+351.1317139 24902.388671875
+359.1459656 59089.36328125
+366.1865234 125544.7421875
+367.1889038 20261.97265625
+369.1393738 33552.3359375
+376.1701965 109356.0546875
+377.1578369 74828.7265625
+386.1651917 32471.822265625
+394.1812744 662461.625
+395.1834717 155439.078125
+412.1873474 40424.00390625
+464.177063 18968.697265625
+468.2217712 40528.35546875
+469.2158508 17469.28125
+478.2022095 14701.1083984375
+483.7192993 17621.041015625
+485.2474365 177789.5625
+486.2518616 53698.98828125
+488.1850281 53350.64453125
+492.2295837 143735.5
+492.7312317 91734.9140625
+493.2330017 22428.9140625
+495.2269592 55414.7734375
+496.2322083 19649.466796875
+503.2225037 19506.6953125
+503.7193604 15878.296875
+505.2142334 54637.23046875
+506.2070923 49114.85546875
+512.2261353 41344.28515625
+512.7282104 22204.416015625
+521.2329102 39107.33984375
+521.7365112 22056.525390625
+523.2226562 474222.5
+524.223938 105465.4140625
+525.2318115 21757.435546875
+529.7451172 17727.046875
+558.7490845 31333.888671875
+571.7490845 50795.125
+572.2757568 315880.625
+572.7492065 34467.1640625
+573.2794189 86853.453125
+576.263855 32933.03125
+576.7675171 30044.44140625
+577.2668457 22530.046875
+580.2645874 71585.5390625
+580.7554932 2112246.75
+581.2567139 1467730.375
+581.7584229 608139.5625
+582.2590332 107601.0
+589.2655029 59927.53515625
+598.2720337 44326.30078125
+598.7740479 43605.75
+599.2783203 26972.9375
+599.7781372 71472.3203125
+606.2577515 27845.3046875
+624.2668457 49502.86328125
+625.2717896 25778.318359375
+655.31073 19439.4140625
+656.3044434 20485.30859375
+673.324585 361998.03125
+674.3291016 140051.984375
+675.3231201 28055.19140625
+802.366333 87760.3203125
+802.5314941 13654.13671875
+803.369812 20527.6875
+873.4015503 88925.734375
+874.4038086 26521.806640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.427.427.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=427"
+RTINSECONDS=46.47381184
+PEPMASS=598.27001953125
+CHARGE=2+
+61.35581207 11100.5908203125
+64.52618408 49175.96875
+64.53062439 40691.08984375
+64.58194733 33039.12890625
+64.58610535 27901.91796875
+64.63821411 17163.609375
+64.64152527 15999.4404296875
+67.72022247 11882.1025390625
+98.5953598 10911.791015625
+103.4526291 10974.255859375
+149.5672302 51421.96875
+167.091568 49718.734375
+169.0595703 32234.77734375
+175.1177521 246890.75
+176.1203918 19895.0390625
+177.0758514 79228.90625
+178.0598602 315672.8125
+178.3371582 51875.15625
+178.3567963 31149.5
+179.0633392 22455.169921875
+179.0918274 18130.240234375
+182.0905762 21697.513671875
+183.0750732 29105.8515625
+186.0862274 92230.015625
+194.102005 44751.59765625
+195.0441895 25341.931640625
+195.0863037 3788320.5
+195.1277771 35738.234375
+196.0891266 375196.5
+197.0911407 18618.884765625
+200.1013947 36661.71484375
+201.0847778 16059.169921875
+206.0909729 162077.109375
+207.0941467 14676.0341796875
+215.0929413 14668.46484375
+218.1022644 50610.0
+233.127121 16443.8046875
+234.0981445 12155.5556640625
+239.1139984 15252.5439453125
+240.0962982 28247.056640625
+243.0863342 25362.068359375
+244.1171875 15260.876953125
+246.0968475 589306.25
+247.0995789 72562.4453125
+249.095047 13414.591796875
+257.1226807 79685.765625
+258.1256409 19388.185546875
+260.1125488 84375.5234375
+267.109436 13486.255859375
+270.0966187 139763.1875
+271.1004333 16273.1181640625
+276.1335449 18058.0078125
+277.1380005 14770.48828125
+278.1489563 31771.8203125
+283.1426392 36279.77734375
+287.1233215 131236.578125
+288.1072998 1501706.375
+289.1099243 217447.375
+290.1124573 20173.75
+295.1494141 30505.119140625
+303.1446533 19457.611328125
+304.1281128 24089.62109375
+305.1337891 2856543.75
+306.0595398 17627.56640625
+306.1188965 1020140.5
+307.1211243 170423.375
+308.1222839 18447.2265625
+311.1349487 47866.85546875
+312.1166992 38558.76953125
+318.1429749 15387.4892578125
+320.132782 14702.6298828125
+321.1540833 309862.96875
+322.1564331 73523.0
+323.1443176 1004985.3125
+323.1882935 30308.87890625
+324.1464844 146402.296875
+325.1547852 25734.37890625
+328.1615601 15481.78125
+329.1435547 47260.2421875
+338.1421509 47884.47265625
+338.1806335 385025.4375
+339.1827393 63566.2578125
+346.1666565 21139.005859375
+359.1453857 55859.9140625
+366.1863708 121126.6953125
+367.1838074 13643.943359375
+376.1700134 119702.703125
+377.156311 73705.28125
+378.1583862 12965.4296875
+386.1651306 26183.5078125
+394.1807861 607638.0
+395.1830139 154302.9375
+396.1912842 17422.8359375
+412.190918 27479.525390625
+430.1897583 14897.10546875
+468.2214355 48850.96875
+469.2213745 13681.732421875
+483.7199097 24593.775390625
+485.2478027 177634.75
+486.2498474 43874.98046875
+488.1861572 41459.42578125
+492.228302 163398.953125
+492.7285767 63929.80859375
+493.2336426 28351.443359375
+495.2270813 56680.8203125
+496.2288818 13568.197265625
+503.7200012 16264.4306640625
+505.2105408 46222.109375
+506.2006836 40170.56640625
+512.2251587 27531.849609375
+523.2216187 390101.40625
+524.223999 98557.375
+525.2282104 19269.541015625
+530.2469482 16773.365234375
+558.7435303 32659.220703125
+567.2557983 19936.8203125
+567.7575684 15130.193359375
+571.7508545 62120.19921875
+572.2744751 246737.046875
+572.7489014 23262.525390625
+573.2791748 71788.9140625
+576.2599487 61977.72265625
+576.7658081 30655.923828125
+577.2625732 34675.38671875
+580.2647095 53971.39453125
+580.755127 1927309.25
+581.2561646 1288929.25
+581.3700562 17704.927734375
+581.7582397 517553.1875
+582.258606 91174.03125
+589.2677002 34082.1796875
+589.7628784 20404.763671875
+598.2762451 48718.89453125
+598.7745361 39171.78125
+599.272644 37062.2890625
+599.7770996 45405.828125
+606.2587891 18388.056640625
+607.2608643 18596.140625
+624.2678833 50763.6640625
+625.272522 15608.5302734375
+656.3048706 14318.2724609375
+673.3240967 392905.78125
+674.3287354 144566.234375
+675.3288574 24411.87109375
+693.2765503 14316.5849609375
+711.3013306 14238.6064453125
+802.3648682 99458.78125
+803.3665161 46601.38671875
+873.4007568 68218.6875
+874.4039307 42356.234375
+1001.46344 27196.26953125
+1005.026672 14069.326171875
+1021.38269 15095.220703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.428.428.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=428"
+RTINSECONDS=46.58481054
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 64436.49609375
+64.53044891 44632.29296875
+64.5819397 40517.203125
+64.58615875 34468.234375
+64.63822174 21956.578125
+64.64138794 16405.931640625
+72.5221405 13507.640625
+86.16242218 12100.2509765625
+110.5388412 12583.7734375
+115.348175 14604.2099609375
+128.757843 12804.6689453125
+141.7650299 13164.41796875
+149.5716248 58557.52734375
+167.0923004 21723.31640625
+169.059906 32474.154296875
+169.519577 14033.123046875
+175.11763 256442.15625
+176.1205139 12500.94140625
+177.0757751 75698.1796875
+178.0596466 296311.78125
+178.352417 54762.6015625
+179.0630035 33204.83984375
+182.09198 22021.787109375
+183.0756836 23277.146484375
+186.0859833 120116.1875
+190.0593414 17442.203125
+194.1016846 34362.50390625
+195.0861969 3984670.25
+195.1279755 19699.578125
+196.0890503 402333.53125
+197.0915985 30370.640625
+197.1126556 14402.0810546875
+200.1014557 28271.201171875
+201.0852356 19484.1328125
+206.0909424 136018.5625
+218.1016846 48126.75
+244.1194153 13965.15234375
+246.0967102 655388.375
+247.0997467 68223.1171875
+248.1151123 14837.8896484375
+257.122345 84502.2734375
+260.1122131 114936.203125
+261.1164246 21719.0078125
+270.0967407 123203.015625
+271.3830566 15379.3447265625
+283.142395 45224.5
+287.1229858 135310.0
+288.1069946 1566406.25
+289.1094971 218112.3125
+290.1127319 29913.384765625
+294.1176758 17808.85546875
+303.141571 37701.0390625
+304.1280823 16543.748046875
+305.1335754 2978147.0
+306.1187439 1121676.5
+307.1213684 165242.984375
+311.1350098 46849.421875
+312.1165771 28914.025390625
+321.153595 316253.625
+322.1565857 52094.85546875
+323.0985413 15574.267578125
+323.144043 991586.125
+324.146759 157453.5625
+329.1443787 42560.09375
+338.1423645 47051.53125
+338.1801758 421138.4375
+339.182312 57129.25390625
+346.1688232 16387.43359375
+347.1464539 25078.3515625
+349.1601868 21625.15625
+358.1643677 22163.087890625
+359.1437683 51079.46875
+366.1855469 108076.2109375
+367.1880188 21399.2578125
+369.1378784 20032.43359375
+376.1702881 95436.109375
+377.1564026 73182.65625
+378.1563721 18296.64453125
+386.1655579 28806.916015625
+394.1803589 676780.4375
+395.1821289 119002.421875
+396.1846619 23992.146484375
+412.1864929 25878.240234375
+420.178009 15451.388671875
+424.0311279 13546.74609375
+460.1939392 21371.7890625
+468.2216187 69869.4453125
+477.2158203 24284.44921875
+478.2045898 21036.07421875
+483.717926 16445.30078125
+485.246521 182329.0
+486.2492981 62147.78515625
+488.1850586 48426.5234375
+492.2286377 132503.515625
+492.7310486 94441.203125
+493.2292175 28151.470703125
+495.2256165 54400.625
+505.2114868 55060.8125
+506.2034912 43359.52734375
+507.210968 14685.3955078125
+512.2281494 54003.49609375
+512.7240601 37654.75
+521.2337036 48031.94921875
+521.730957 22616.126953125
+523.2211304 444635.28125
+524.2238159 130702.3515625
+525.2281494 23418.33203125
+529.7426147 17755.068359375
+541.2341309 18481.92578125
+555.2529297 16861.427734375
+558.25 21334.919921875
+558.7445068 20746.1875
+559.2474976 17396.255859375
+571.7496948 89347.1015625
+572.2733765 340566.0
+572.7515869 28554.49609375
+573.2787476 91252.7421875
+574.2792969 39291.05859375
+576.2606201 35906.703125
+576.7612915 28232.984375
+580.260376 99976.03125
+580.7542725 2311399.5
+581.2555542 1642162.0
+581.3362427 27060.806640625
+581.3664551 28881.697265625
+581.7573853 571480.9375
+582.2583618 161000.53125
+589.2661743 75986.2109375
+589.7648315 42727.47265625
+598.2720337 54220.30078125
+598.7765503 35503.1640625
+599.2731323 31940.75
+599.7759399 70643.2109375
+606.2617798 39532.125
+607.2594604 14488.5126953125
+624.2682495 44983.40625
+655.3053589 19683.796875
+673.322937 405858.8125
+674.3261719 134325.703125
+675.3284302 23263.166015625
+711.2900391 23933.841796875
+802.3635254 97382.703125
+803.3639526 34693.8828125
+873.4017334 98530.921875
+874.3944702 40534.71875
+1138.574219 16059.3310546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.429.429.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=429"
+RTINSECONDS=46.69465373
+PEPMASS=598.27001953125
+CHARGE=2+
+64.5262146 57687.73046875
+64.53071594 47923.93359375
+64.58203125 41725.93359375
+64.58626556 26500.740234375
+64.6384201 16132.6669921875
+74.81199646 18218.984375
+94.56272125 14772.26171875
+116.4153748 13746.1201171875
+141.6006622 16319.6259765625
+149.5634613 36649.45703125
+149.5777435 28770.8203125
+167.0922241 42020.96484375
+169.0597687 36474.3984375
+175.1177216 277309.84375
+175.1337585 25696.974609375
+177.0755615 64508.98828125
+178.0437927 29265.6953125
+178.0598602 342447.90625
+178.078064 23914.109375
+178.3437958 86000.75
+179.0635376 26057.87890625
+179.0908203 15992.8828125
+183.0751801 25889.44140625
+186.085907 114678.6640625
+190.0584564 17723.630859375
+194.1013641 47550.609375
+195.086319 4136028.75
+196.0891418 411102.15625
+197.0908966 20185.0859375
+200.1018677 30070.078125
+201.0864563 27203.21484375
+206.0908966 160138.625
+207.0942993 19611.529296875
+208.2251434 14258.9482421875
+218.1026764 52971.015625
+234.0959625 22244.5546875
+240.0963745 23873.728515625
+243.0866089 26602.263671875
+246.0967865 588738.0
+247.0990601 66588.3671875
+257.1226196 108326.0546875
+260.111908 91661.890625
+270.0966797 126918.1328125
+278.1488037 28188.66796875
+283.1436768 42728.61328125
+287.1231384 141770.828125
+288.1071777 1485217.375
+289.1100464 208745.578125
+290.1129761 23472.470703125
+294.1171875 22215.466796875
+295.1479492 17174.244140625
+303.1443481 38076.0390625
+304.125824 21226.986328125
+305.133667 3131026.0
+305.2383118 19369.0703125
+306.118866 1055565.375
+307.1210938 155796.703125
+311.134491 63171.9375
+312.1170349 24188.10546875
+321.153656 287809.75
+322.1561584 61542.55859375
+323.0979309 20466.734375
+323.144043 1169172.875
+323.2080688 19593.87109375
+324.145874 177367.421875
+325.1503601 18209.751953125
+329.1441345 54069.765625
+338.1429138 34703.25390625
+338.1802063 367456.90625
+338.6469421 15615.263671875
+339.1826172 57516.41796875
+347.1499023 35336.45703125
+349.1600952 22723.08984375
+359.1426697 44461.45703125
+366.1852722 119409.1484375
+367.1893921 18488.5390625
+369.1387634 28718.396484375
+376.1700439 125532.984375
+377.1578979 59942.72265625
+378.1559753 17382.42578125
+386.1636963 21095.951171875
+389.1555786 20204.26953125
+394.1203918 28801.82421875
+394.1802673 688155.625
+394.2386475 24256.80078125
+395.182251 133144.8125
+412.1920776 23534.841796875
+420.6799927 29525.408203125
+460.193634 21142.634765625
+468.2192688 56198.671875
+485.2468567 208075.5625
+486.249054 62603.1484375
+488.1879883 35610.5859375
+492.2283936 160807.859375
+492.7287292 110690.5703125
+493.2302551 25346.6796875
+495.2271423 53679.61328125
+503.7206421 18371.3125
+505.2096863 39491.48828125
+506.2073975 55971.7109375
+512.2310791 22769.810546875
+512.7316895 31081.228515625
+521.2333984 35443.609375
+521.7341919 25734.775390625
+523.2214355 432454.125
+524.2241211 127449.796875
+525.2272949 28486.662109375
+529.7461548 16629.484375
+559.2514038 19519.67578125
+571.7467041 70486.390625
+572.2737427 296125.25
+573.2786255 93211.3203125
+574.2710571 17648.70703125
+576.2619019 40642.59375
+576.7678223 19077.962890625
+577.7583618 23555.693359375
+580.2605591 74949.4296875
+580.7543335 2116953.5
+581.2556152 1455787.375
+581.3365479 19613.3125
+581.3684692 22113.68359375
+581.756958 548526.875
+581.864502 25224.33984375
+582.258606 95180.5546875
+589.2681885 69515.828125
+589.7645264 48770.25390625
+598.2735596 42904.48828125
+598.7733765 23596.591796875
+599.2769775 20395.943359375
+599.7772217 31174.162109375
+624.2702637 41878.94140625
+673.1975098 27696.728515625
+673.3225708 391727.3125
+674.3242188 150830.0625
+675.3227539 26634.318359375
+711.2975464 22825.1171875
+802.3635864 89136.3359375
+803.3604736 40965.953125
+873.4007568 88405.09375
+874.4048462 42105.29296875
+1001.453552 25003.775390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.430.430.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=430"
+RTINSECONDS=46.80306003
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13412857 17417.982421875
+64.52623749 59706.296875
+64.53050995 31256.59375
+64.58204651 38449.2578125
+64.58629608 24197.720703125
+64.63813019 13252.466796875
+64.64170837 13209.806640625
+69.81193542 13048.423828125
+82.05419159 16402.24609375
+84.10049438 12910.345703125
+149.5734253 47224.25
+167.0920715 39531.6484375
+169.059082 22738.32421875
+175.1180267 282021.4375
+175.1318817 7934.7641601563
+175.5402527 14518.5908203125
+175.5587616 10924.5693359375
+177.0761261 59158.04296875
+178.0600891 331174.5
+178.0780945 16083.6875
+178.3328857 27569.34765625
+178.3518372 54314.671875
+179.0637512 20817.7421875
+179.0916138 24953.13671875
+182.0917358 16932.25
+183.0756073 18349.578125
+186.0862732 101690.234375
+189.4893188 11925.6328125
+190.1074829 15498.5908203125
+194.1029968 34080.11328125
+195.0865173 3946328.0
+196.0892639 396456.25
+197.092865 19090.0234375
+200.1019745 23123.908203125
+206.0911713 143357.90625
+218.1027222 39829.38671875
+222.0863037 18418.37890625
+231.0928955 13568.521484375
+232.117981 13868.515625
+234.0987396 20187.650390625
+239.1138 14416.7705078125
+240.0962524 14809.4326171875
+243.086441 25334.0859375
+244.1169128 15103.0712890625
+246.0971069 570776.0625
+247.1001587 50051.22265625
+257.1227722 96685.8671875
+258.1253967 14331.6162109375
+260.1127319 104699.5625
+261.1158752 23875.708984375
+270.0970764 127232.8046875
+277.1381226 11330.63671875
+278.1491394 20117.939453125
+283.1434021 41661.4453125
+287.1236877 140274.234375
+288.1075439 1558630.0
+289.1105957 219870.65625
+290.1116028 18135.46875
+294.1176147 17870.123046875
+295.1482849 27445.412109375
+303.1439514 23900.13671875
+304.1273499 21662.095703125
+305.1341248 2885162.75
+306.1191711 1035600.0
+307.1217957 170166.703125
+308.1262207 17269.021484375
+311.134491 46595.8125
+312.1167297 34016.0703125
+321.1541138 306681.5
+322.1564941 70189.953125
+323.0976868 21764.23828125
+323.1445312 1013904.5625
+323.1890564 28264.798828125
+324.1464844 178743.78125
+329.1434021 48590.984375
+338.1421509 48659.87890625
+338.1808167 354628.96875
+339.1831665 80753.7109375
+341.1474304 19828.25
+347.1494141 26506.19921875
+349.1580505 28640.619140625
+359.1437378 57733.02734375
+366.1862488 124527.7109375
+367.1913147 13929.267578125
+369.1402588 42632.54296875
+376.1701965 99809.5234375
+377.156311 75802.078125
+386.1665039 26851.3125
+394.118927 19532.07421875
+394.1812439 699778.8125
+394.2400818 21190.8828125
+395.1828918 141799.796875
+398.1716003 14223.8720703125
+409.1916199 12212.783203125
+412.1877747 36555.55078125
+420.683136 15672.021484375
+434.1698914 20243.09375
+460.1904297 33612.84375
+468.2228699 57226.5625
+477.2168579 24598.833984375
+478.2056885 20230.439453125
+483.2210693 18230.892578125
+483.7167358 24238.43359375
+485.2474976 186730.125
+486.2512207 38887.21875
+488.1866455 30291.09765625
+489.1851196 18392.8359375
+492.2295837 107168.828125
+492.7299194 65034.14453125
+493.2344971 23368.541015625
+495.2279053 49589.87890625
+503.7153625 19462.17578125
+505.210968 47015.35546875
+506.2036438 38233.125
+512.2265015 39259.86328125
+512.7279663 26563.48046875
+513.2329712 14881.2587890625
+521.2338257 21363.5859375
+521.7352295 35102.78125
+523.2223511 419899.40625
+524.2250366 128805.8671875
+541.2402954 14849.5732421875
+571.7501221 45895.7578125
+572.2754517 260456.28125
+572.7533569 16845.001953125
+573.2802124 80596.4375
+576.2613525 27820.203125
+576.7603149 23188.224609375
+577.2642822 25699.947265625
+580.2653198 71402.5390625
+580.7554321 2054796.875
+581.2565918 1407451.375
+581.7583618 534550.75
+581.8631592 18202.369140625
+582.2593384 79638.359375
+589.2670288 33839.15625
+598.2709961 39841.65625
+598.7753296 37021.20703125
+599.276001 29816.998046875
+599.7767944 64847.8125
+606.255127 33613.5546875
+624.2705688 45795.45703125
+625.2828979 18988.845703125
+673.3250122 370207.5625
+674.328064 132043.609375
+675.3251343 36318.0703125
+711.3014526 26644.650390625
+802.3646851 97083.09375
+803.373291 36630.98046875
+873.4022827 95778.28125
+874.4059448 31978.474609375
+875.402832 17106.3671875
+1001.45636 15207.783203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.431.431.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=431"
+RTINSECONDS=46.91359763
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13437271 17891.02734375
+58.82384872 15079.4736328125
+64.52616882 63561.6796875
+64.53044128 47687.34765625
+64.58190918 37257.70703125
+64.58612061 35512.80078125
+64.63794708 21137.908203125
+64.6412735 15669.6640625
+149.5690613 61390.23046875
+167.09198 32660.876953125
+169.0596313 30840.013671875
+175.1175842 308496.84375
+177.0759125 81617.1953125
+178.0597687 301662.09375
+178.3489685 92130.734375
+179.0638885 20483.666015625
+179.091095 26747.076171875
+183.0754547 24867.71484375
+186.0858307 118385.0625
+194.1018372 45184.49609375
+195.0862274 4213132.0
+195.1281433 22899.69921875
+196.0890961 406994.09375
+197.0918274 23815.1328125
+200.1014709 25099.43359375
+206.0908051 169073.984375
+207.0938263 20745.376953125
+216.0950012 21908.37890625
+218.1019745 53961.828125
+234.0966949 21043.3203125
+240.0964661 27350.607421875
+240.9786377 15413.9462890625
+243.0848236 19709.66796875
+246.0967712 615070.6875
+246.1257629 31554.91015625
+247.0990906 69327.7734375
+257.122467 98822.4921875
+260.1120605 113015.7890625
+261.1157837 18582.34375
+267.1134644 13502.8134765625
+270.0965881 162681.125
+271.1001892 26683.7578125
+276.1047058 18539.744140625
+278.1194458 19614.84765625
+283.1438293 40104.96484375
+287.1230164 134802.765625
+288.1071167 1524404.625
+289.1099854 247524.609375
+289.1454468 12642.2744140625
+290.1100159 16233.78515625
+295.1491089 23437.126953125
+303.1434326 31686.751953125
+304.1271973 19300.515625
+305.133667 3030050.25
+306.1188049 1130384.5
+307.1212158 198323.15625
+308.1247253 27974.529296875
+311.1346436 46398.109375
+312.1142273 31304.25390625
+321.1534119 306534.75
+322.1552429 51166.6328125
+323.0984192 18232.515625
+323.144104 1065799.25
+324.1461792 176818.0625
+325.1499939 26367.9140625
+329.1436462 51764.84765625
+338.1418762 49168.703125
+338.180481 411123.375
+338.6430054 22560.4140625
+339.1826477 67805.4453125
+349.1611633 16289.1220703125
+359.1439819 71978.234375
+366.1858215 145288.8125
+369.1374207 32632.126953125
+376.1694641 115754.9453125
+377.1555786 82704.015625
+386.1662903 18744.978515625
+394.180542 714951.875
+395.1816711 134394.15625
+396.1818542 20086.853515625
+412.1885986 24798.826171875
+420.6817017 21615.693359375
+450.2079163 14224.8037109375
+464.1776733 22239.68359375
+468.2194519 51059.06640625
+485.2468567 225218.46875
+486.2479553 69989.6640625
+488.1865845 56170.62890625
+492.2287292 157975.65625
+492.7301636 91598.515625
+493.229126 40669.31640625
+495.2249451 65577.046875
+503.2197571 23702.052734375
+503.7188416 21324.771484375
+505.2117615 62860.5703125
+506.2077026 55763.015625
+512.2247925 38103.5859375
+512.7270508 31646.357421875
+520.7391357 19491.880859375
+521.2310181 39489.22265625
+521.7323608 16776.3125
+523.2214355 529137.0625
+524.2243042 120262.3984375
+525.2262573 26473.376953125
+554.2703247 21026.931640625
+558.7433472 19640.830078125
+559.2462158 20589.626953125
+571.7485962 99981.7734375
+572.2738647 334597.875
+573.2805176 109214.3359375
+574.2731934 24297.626953125
+576.262207 38213.24609375
+576.7576294 27686.181640625
+580.2618408 86758.578125
+580.7547607 2532618.0
+581.2558594 1558303.625
+581.7573853 645033.8125
+582.2583618 124543.7421875
+589.2667236 85642.96875
+589.7660522 54054.71484375
+598.2741699 57267.62890625
+598.7739868 56023.3125
+599.7778931 56167.078125
+606.2581177 43631.71484375
+624.2694702 53389.38671875
+625.2672119 25550.41796875
+673.3233643 403107.5625
+674.3260498 158051.75
+675.3255005 34479.31640625
+693.2842407 28299.845703125
+694.2796021 22106.28125
+802.3665771 68494.4921875
+803.3693848 30065.994140625
+873.397644 108839.3671875
+874.4069214 62567.92578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.432.432.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=432"
+RTINSECONDS=47.02225395
+PEPMASS=598.27001953125
+CHARGE=2+
+53.39091873 11433.291015625
+60.18070984 10819.76953125
+64.52626038 63200.98828125
+64.53050995 37200.91796875
+64.58200073 35608.4609375
+64.58618164 26554.40625
+64.63803864 23421.0390625
+64.64135742 15728.3662109375
+74.34270477 13409.8056640625
+76.55796814 12482.16796875
+77.86226654 12401.4921875
+82.05373383 13091.4208984375
+124.1837692 13167.994140625
+125.0465851 11738.06640625
+141.3715363 15424.513671875
+149.5647583 42234.80078125
+167.0918579 55388.8671875
+169.0604858 22949.009765625
+175.1178436 278038.4375
+176.12146 15812.267578125
+177.0760345 56540.296875
+178.0600891 334785.125
+178.3355255 44445.5234375
+178.3545227 31714.611328125
+179.0630188 15278.884765625
+179.0917664 17364.16796875
+183.0757751 16524.44140625
+186.0862579 101527.765625
+194.1025543 41273.3671875
+195.0864258 4048392.0
+196.0894165 411104.4375
+197.0923004 24990.208984375
+200.102005 36305.5703125
+201.0861816 19479.755859375
+206.0911102 130952.3515625
+207.0934753 21833.833984375
+218.1026459 56986.68359375
+234.0973053 14444.6826171875
+240.0963593 36392.734375
+244.1177216 17123.59375
+246.0970306 640309.875
+247.1003723 81151.265625
+257.1226501 96243.859375
+260.1124878 117186.0859375
+261.1151123 18249.40625
+270.0974121 126030.171875
+278.1495667 19194.9296875
+283.1436768 45038.98046875
+287.1235046 146194.0625
+288.0777893 18875.478515625
+288.1074524 1459222.875
+289.1105957 240745.53125
+290.1128845 24063.736328125
+294.1162109 20807.60546875
+295.1513062 28482.0390625
+303.1426697 30098.1953125
+304.1253662 16358.3681640625
+305.1340027 3029379.25
+306.1192627 1072908.625
+307.1211548 169722.171875
+308.1253662 19648.99609375
+311.1345825 39255.05078125
+312.1132812 32698.568359375
+321.1539612 313043.8125
+322.1565857 59332.76171875
+323.0983887 16209.2021484375
+323.1445618 1082754.5
+324.1469421 156618.78125
+325.1509094 20817.4453125
+329.1443787 58291.609375
+331.1494751 19929.17578125
+338.1422119 46246.5625
+338.1807556 382283.96875
+338.225708 28577.970703125
+339.1830139 67801.7890625
+347.1495056 24180.423828125
+351.1266785 18823.267578125
+359.1447754 58010.796875
+366.1863403 130913.78125
+367.1895142 15800.796875
+369.1358337 44541.79296875
+376.1698608 110500.1875
+377.1555786 75219.703125
+386.1630859 26046.912109375
+394.1810608 650132.1875
+395.1830139 126387.328125
+396.1859436 25893.123046875
+412.1890869 21562.146484375
+420.6825256 25445.1015625
+421.1811829 21090.39453125
+460.1878967 17457.44921875
+468.2199707 47146.37109375
+469.2189941 21028.74609375
+478.2067261 22213.296875
+483.2169495 17051.67578125
+483.7199097 18597.765625
+485.247345 206590.328125
+486.2502441 66656.421875
+488.1857605 46898.52734375
+492.2294922 142063.0
+492.730072 77825.2109375
+495.2278748 51429.54296875
+503.2218323 15993.4521484375
+503.7221375 18914.24609375
+505.2117615 56088.96484375
+506.2008667 55157.0390625
+512.227417 25455.953125
+512.729248 25977.958984375
+521.2313232 36677.2890625
+523.2223511 376761.46875
+524.2249146 110812.1171875
+525.2416382 22694.337890625
+529.7454834 22628.333984375
+541.2338867 16185.44140625
+571.7506104 84438.5078125
+572.2746582 294962.1875
+572.7554321 20130.580078125
+573.2797241 86219.8359375
+576.2637939 40679.4375
+576.7619629 23319.505859375
+577.265686 22382.1015625
+580.2630615 77615.578125
+580.755188 2195955.5
+581.2562256 1438715.25
+581.7579956 533773.1875
+581.8637085 24684.408203125
+582.258728 129462.609375
+589.2717285 42401.84765625
+589.7658081 32912.3359375
+598.2762451 32449.296875
+598.7765503 41173.19921875
+599.2727051 33162.80859375
+599.7766724 80091.796875
+606.2619629 37090.15625
+607.258667 22973.890625
+624.2684937 57112.29296875
+625.276062 20131.134765625
+673.3253174 378409.0
+674.3284302 171420.28125
+675.3236694 19037.890625
+693.2871704 24016.62890625
+784.3579102 16741.265625
+802.3625488 78515.609375
+803.3649292 45157.1328125
+804.364563 15808.5380859375
+873.3989868 92221.75
+874.4033813 52185.25
+875.4204712 18391.865234375
+1001.466431 30635.39453125
+1058.468262 20008.26953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.433.433.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=433"
+RTINSECONDS=47.13201363
+PEPMASS=598.27001953125
+CHARGE=2+
+51.62172318 13594.3154296875
+58.13736725 15136.759765625
+64.52627563 66196.859375
+64.53046417 47363.86328125
+64.5819931 40003.62890625
+64.58620453 29411.158203125
+64.63793945 30800.873046875
+149.5647583 31080.2734375
+149.5786285 26519.537109375
+167.0918884 47605.49609375
+169.059082 24027.912109375
+175.1177826 308075.3125
+177.0759125 73951.046875
+178.0598755 291439.15625
+178.337738 57202.3125
+178.3568878 31873.310546875
+179.0636902 22659.275390625
+183.0752106 24233.119140625
+186.0860443 90261.34375
+192.4095612 14539.83984375
+194.1019592 61932.17578125
+195.08638 4260811.5
+195.1282043 21329.71875
+196.089325 381045.4375
+197.0907288 32282.64453125
+197.5055847 14569.6591796875
+201.0853577 23516.6875
+205.0584106 15941.8818359375
+206.0912018 152678.53125
+207.09375 19903.888671875
+209.1017914 15259.265625
+218.1020355 57903.2890625
+240.0962372 22212.609375
+242.1017456 14439.07421875
+243.0867157 23429.423828125
+244.1176605 16938.939453125
+246.0969238 600282.8125
+247.1000519 85626.8828125
+257.1225891 115801.9609375
+260.1125183 84415.609375
+270.09729 114233.6640625
+278.1489258 26903.158203125
+283.1420898 52454.34765625
+287.1235657 166774.96875
+288.054718 23106.380859375
+288.1074219 1615136.625
+289.1104431 223670.40625
+295.1487122 17869.83984375
+303.1426392 50372.08203125
+305.1340027 3131327.75
+306.1190186 1093483.625
+307.121521 183175.15625
+308.1283264 17647.125
+311.1338806 35144.62890625
+312.1182861 46056.79296875
+321.1539612 327464.34375
+322.1566467 52431.03515625
+323.1444702 1096981.5
+324.1472778 183191.015625
+325.1519165 16459.140625
+329.143158 51955.80078125
+338.1420593 48456.23828125
+338.1805725 414435.09375
+339.1825256 73673.0703125
+349.1563416 23472.6328125
+359.1453247 51918.828125
+366.1863403 112555.328125
+367.1873779 40295.80859375
+369.1399841 27718.787109375
+376.1704712 139720.0625
+377.1552734 109748.34375
+386.16745 21920.21484375
+394.1207886 19718.744140625
+394.1343689 13310.984375
+394.1811829 752484.5
+394.2401123 18417.794921875
+395.1824036 154111.515625
+412.1882324 41012.84375
+420.6810608 19678.03125
+450.2078552 14719.39453125
+460.1900635 22049.107421875
+468.2221069 61665.29296875
+477.2189941 22378.23828125
+485.2480774 188804.296875
+486.2506104 53839.33203125
+488.1861572 50782.84375
+492.2296143 188548.078125
+492.7314758 73397.703125
+493.2299194 30058.88671875
+495.2268372 71596.515625
+496.2290649 15778.1513671875
+503.7134094 26893.24609375
+504.2175293 19243.228515625
+505.212616 56919.03125
+506.2077637 48591.515625
+512.2282715 49008.62109375
+512.7287598 34034.0390625
+513.2304077 21701.658203125
+520.741272 19171.51953125
+521.2323608 39390.26171875
+521.7367554 25993.986328125
+523.2223511 527971.9375
+524.2240601 147863.234375
+525.2293701 25704.419921875
+558.7483521 33853.21484375
+571.7492065 84527.7421875
+572.276001 355883.65625
+572.755188 18225.962890625
+573.2808838 108984.5546875
+574.2820435 28056.95703125
+576.2613525 51736.6875
+576.7646484 32842.109375
+577.2669678 37849.6171875
+580.2631836 122321.7890625
+580.7553711 2551134.5
+581.2567139 1641748.25
+581.7583008 672030.5
+582.258667 113232.2421875
+589.2697144 70173.9765625
+589.7670898 48504.63671875
+598.2717285 50738.98046875
+598.7716675 54793.79296875
+599.2785645 36804.2890625
+599.777832 65264.14453125
+606.2582397 36670.31640625
+607.2489624 22484.923828125
+624.2695312 47008.4765625
+625.2722168 19850.69921875
+656.3253784 19850.84765625
+673.3242188 383622.125
+674.3268433 153623.1875
+675.3312378 26479.345703125
+802.3643799 96018.7109375
+803.3691406 46331.12109375
+873.4000244 97397.890625
+874.4083252 43955.62890625
+944.8384399 17658.0
+1001.445923 19787.048828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.434.434.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=434"
+RTINSECONDS=47.24015253
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626801 57207.02734375
+64.53070068 40235.5234375
+64.58202362 41387.4765625
+64.58615112 29475.322265625
+64.63805389 15655.2939453125
+64.64136505 15975.6357421875
+68.78326416 14161.0048828125
+74.81164551 15577.4267578125
+82.28955078 11570.890625
+113.8930664 11545.95703125
+149.5657501 38911.64453125
+167.0914154 43814.0625
+169.0594025 29444.67578125
+175.1178131 317506.125
+176.120636 16901.544921875
+177.076416 67638.3359375
+178.0599213 333379.71875
+178.0778809 16415.390625
+178.3491669 71667.2734375
+179.063446 21285.755859375
+186.0859528 103281.0078125
+190.0592651 21899.779296875
+194.1027374 31833.794921875
+195.0863342 3870243.0
+195.1281128 18270.125
+196.0890808 367593.375
+197.0910645 28841.826171875
+200.1017151 29725.103515625
+201.0868225 16507.75390625
+206.0909424 138515.796875
+207.0944977 14682.8056640625
+207.1139984 12796.623046875
+215.0911255 15353.390625
+218.1023102 51894.7421875
+222.0851746 14683.9453125
+229.1276093 13829.53125
+234.098175 15160.8466796875
+240.0952606 20393.021484375
+246.0968628 586669.5625
+246.1211243 9734.666015625
+247.099472 82114.53125
+257.1228333 103211.609375
+258.1237793 18755.955078125
+260.1125488 104942.8828125
+261.1191101 14714.041015625
+262.1286621 17178.4296875
+270.0964661 135869.484375
+271.1023865 18610.65625
+278.1188965 18408.662109375
+278.1498108 22200.728515625
+283.1436768 33738.5859375
+287.1236267 138755.515625
+288.1071777 1558036.25
+289.1099854 220661.03125
+294.1167297 14217.435546875
+295.1484985 25536.37109375
+302.1304321 17245.9765625
+303.1437378 32327.197265625
+304.1276245 14765.603515625
+305.133728 2996297.75
+305.2158203 19476.837890625
+306.1189575 1065501.5
+307.1213989 184581.09375
+308.1228638 21029.033203125
+311.133728 42118.0390625
+312.1174927 40798.33203125
+321.1537476 303530.59375
+322.1567078 52519.859375
+323.098938 21353.1875
+323.1442261 1061668.5
+324.1461487 175482.15625
+325.1415405 16277.748046875
+329.1437988 39179.72265625
+338.1421814 58718.1953125
+338.1805115 331582.09375
+338.642395 13242.7314453125
+339.1418457 15095.0478515625
+339.1826172 77555.984375
+347.6487427 13798.6318359375
+349.1593018 16411.634765625
+351.1334839 14709.4404296875
+358.161438 18599.6328125
+359.1434021 63362.19921875
+366.186676 118821.3125
+368.1551819 15910.33203125
+369.1386719 37708.43359375
+376.1704102 93286.21875
+377.1569519 81661.8671875
+386.1695251 14265.8154296875
+394.1194458 16545.7578125
+394.180542 685791.1875
+394.2403259 25156.865234375
+395.1821899 135934.046875
+396.1847229 18277.798828125
+412.1884766 29323.9140625
+420.6807861 23896.76171875
+421.1835632 18587.158203125
+450.2065125 13922.7099609375
+460.1931763 29565.677734375
+468.2201843 51223.25
+477.2196045 23989.078125
+478.2057495 22022.361328125
+484.2219849 20801.78125
+485.2469177 191141.21875
+486.2484131 64156.07421875
+488.18573 42314.30078125
+489.1868591 13526.2021484375
+492.2292175 125262.96875
+492.7301025 79867.09375
+493.2310791 31915.171875
+495.2286682 41619.8828125
+503.71875 30302.60546875
+505.2131348 61851.98046875
+506.2068176 39156.8203125
+512.2251587 45767.68359375
+512.7251587 19306.978515625
+521.2332764 29007.08984375
+521.7392578 17151.57421875
+523.2211914 431516.21875
+524.2233887 129758.578125
+525.223938 40784.9921875
+529.7469482 20662.451171875
+554.2694092 17312.76171875
+557.2349243 16372.9677734375
+559.2451172 16729.65625
+559.741333 20660.578125
+568.2550049 18062.74609375
+571.74646 55731.6171875
+572.274231 296295.5
+573.2797852 89807.46875
+574.2773438 22163.404296875
+576.2592163 37267.01171875
+576.7631226 26441.892578125
+580.2598877 81285.8671875
+580.7543945 2178824.5
+581.2557373 1455810.625
+581.3377075 24369.384765625
+581.3660278 29009.44140625
+581.7572021 583707.75
+582.2583618 97028.140625
+589.2667236 50806.640625
+598.2722778 43911.05859375
+598.7764893 36314.6015625
+599.2766113 50167.0234375
+599.7781372 98750.2109375
+606.2561646 35165.671875
+624.269165 42000.80078125
+625.2736816 18398.55859375
+655.3099365 21899.5546875
+673.322937 404323.875
+674.3252563 165657.59375
+675.3264771 18561.29296875
+711.2930908 22274.6953125
+802.3630981 96105.1484375
+803.366333 36796.3671875
+873.4006348 86198.7890625
+874.4046631 37364.0703125
+983.4393921 13926.4404296875
+1002.470337 16895.421875
+1058.467651 14469.8779296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.435.435.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=435"
+RTINSECONDS=47.35080526
+PEPMASS=598.27001953125
+CHARGE=2+
+50.84828186 13316.4052734375
+64.52619934 52929.1953125
+64.53045654 33159.6640625
+64.58227539 34153.0546875
+64.58616638 29634.314453125
+64.63819885 14300.1669921875
+71.47592163 12901.998046875
+76.28126526 16371.46484375
+76.28578186 18849.96875
+81.04595184 13247.470703125
+92.12164307 13081.525390625
+119.3960114 12433.041015625
+149.5667877 51193.49609375
+167.0917664 43209.53125
+169.0596161 31959.435546875
+175.1177979 293556.96875
+177.0756073 41637.7265625
+178.059845 320231.90625
+178.3365631 53117.19140625
+178.355545 22962.1015625
+179.0629272 25730.43359375
+179.0924988 18744.36328125
+182.0897217 13805.6552734375
+183.0755157 27295.052734375
+186.0862579 87674.0859375
+194.1025543 19105.560546875
+195.0863342 4044177.75
+196.0892792 413120.65625
+197.0908051 26397.75390625
+200.1008606 26974.724609375
+201.0849609 21979.31640625
+205.0612793 15233.17578125
+206.0911407 152106.234375
+215.0890808 17332.052734375
+218.1019897 73253.84375
+222.086319 19773.3671875
+233.1259155 20779.0390625
+234.097702 17307.0625
+240.095108 24085.6328125
+243.0861664 23810.4140625
+244.1170959 25670.318359375
+246.0968018 600071.125
+246.1209564 8918.1884765625
+247.0997925 71328.6484375
+249.0959625 13357.3740234375
+253.1053009 14822.31640625
+257.1226196 98478.7109375
+258.1247559 17848.029296875
+260.1126099 110041.96875
+270.0965271 126785.2578125
+271.1027832 19347.46875
+283.1439209 43516.1640625
+287.123291 148413.203125
+288.1071777 1541442.25
+289.1098938 234441.390625
+290.1147461 21787.61328125
+295.1486511 30428.623046875
+303.144104 29831.767578125
+304.1295471 25404.10546875
+305.1336975 3025971.75
+306.1188354 1054706.625
+307.1211853 170532.359375
+311.135498 37584.36328125
+312.1170044 19475.03125
+321.1537781 325286.5
+322.1567078 62927.18359375
+323.144104 1006407.0625
+324.145874 174155.890625
+325.1495056 22127.1015625
+329.1437683 44985.296875
+338.1420288 45273.78515625
+338.1803589 373484.625
+339.182373 71429.7109375
+341.1427307 13660.4375
+346.1687012 17643.9140625
+347.1441956 20111.55859375
+349.1590881 29181.494140625
+351.131134 14314.564453125
+359.1440125 56209.20703125
+366.1859131 101790.953125
+367.1882935 17674.501953125
+369.1388245 31447.244140625
+376.1699524 118720.9140625
+377.1564331 73604.3203125
+378.1565857 14602.234375
+386.1644592 22630.412109375
+394.1803894 667572.9375
+394.2398071 25073.4375
+395.1821899 123080.671875
+412.1870422 27090.337890625
+434.1741943 16256.5849609375
+464.1717834 16278.27734375
+468.2225647 51459.9296875
+469.2129211 17100.39453125
+474.7128296 19927.400390625
+478.2086792 17901.29296875
+483.7171326 23882.775390625
+485.2469788 185379.84375
+486.2486267 56495.1328125
+488.1869812 45897.68359375
+492.2286377 164398.953125
+492.7301331 77314.53125
+493.2333374 36365.84375
+495.2285156 65311.1953125
+503.7142944 19489.32421875
+505.2091064 55265.46484375
+506.2029724 48553.640625
+512.2260742 44729.28515625
+512.7269287 26644.294921875
+521.2385254 32578.38671875
+521.7341309 23531.16796875
+523.2211914 438146.59375
+524.223999 105827.75
+525.2298584 23430.25390625
+529.74823 19022.71484375
+571.7490845 80176.71875
+572.2745972 317517.71875
+573.2796021 80672.1484375
+576.2561646 36104.83203125
+576.7601929 42557.13671875
+577.2629395 20058.3203125
+580.2633057 60963.8359375
+580.7540894 2038859.875
+580.8394775 26767.578125
+581.2556763 1426769.125
+581.3675537 22038.552734375
+581.7571411 504520.4375
+582.2584839 123845.9921875
+589.2682495 59837.36328125
+589.7667236 30152.67578125
+598.2692871 40260.109375
+598.7736816 37826.89453125
+599.7744141 63201.78515625
+606.255188 41680.546875
+624.2664795 54801.40625
+656.8666382 14069.8701171875
+673.3230591 372554.71875
+674.3261108 112436.546875
+675.3306274 30225.630859375
+693.2877808 16941.83203125
+711.2937622 25867.810546875
+802.3619385 107714.203125
+803.3653564 27791.373046875
+858.3652954 15790.6845703125
+873.3984985 127178.296875
+874.4017944 45783.640625
+1001.462524 27244.11328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.436.436.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=436"
+RTINSECONDS=47.46049355
+PEPMASS=598.27001953125
+CHARGE=2+
+52.83262253 12448.8212890625
+54.25689316 12700.41015625
+58.13436127 15635.658203125
+61.6931076 13798.3203125
+64.52623749 74959.34375
+64.53064728 48546.578125
+64.58204651 48702.1015625
+64.5861969 29730.77734375
+64.63806152 23141.302734375
+64.64130402 14289.68359375
+72.6872406 17572.021484375
+81.04686737 15976.4775390625
+82.05388641 16870.212890625
+120.4512558 15712.005859375
+149.576416 31493.64453125
+167.0919647 25278.58203125
+169.0595856 29685.548828125
+175.1177063 268494.40625
+176.1222992 16923.865234375
+177.075531 62700.953125
+178.059906 301340.8125
+178.3444977 91112.5
+179.0646362 24372.89453125
+179.0916595 19174.51953125
+183.0751343 20622.82421875
+186.0860138 103192.078125
+194.1021271 38099.94140625
+195.0863342 4094994.25
+195.128006 21234.43359375
+196.0890503 440176.625
+197.0906372 15275.0927734375
+200.1014709 39343.20703125
+203.5076599 12267.4658203125
+206.0908203 137825.234375
+207.0934906 17458.572265625
+208.896759 14991.8955078125
+218.1027679 62422.703125
+219.0397949 14710.2568359375
+240.0958252 23978.73828125
+243.0845795 19908.009765625
+244.1165771 14188.93359375
+246.0968018 625585.25
+247.0991516 84406.375
+249.0957947 15830.8662109375
+257.1225891 93928.6171875
+260.1124268 104990.953125
+270.0969849 114711.1875
+278.1497192 24904.0546875
+283.1446838 30983.900390625
+287.1234131 146038.796875
+288.1072388 1545492.875
+289.1099548 245357.203125
+294.1169434 19175.640625
+295.1487122 27639.232421875
+303.1409607 26470.701171875
+304.1264648 16603.009765625
+305.1337585 3165333.5
+305.2389526 16005.375
+306.1191406 1069621.875
+307.1213684 164862.3125
+308.1208801 23910.95703125
+311.1342773 52862.7578125
+312.1135864 33850.03515625
+321.1538391 342036.6875
+322.1558228 43429.61328125
+323.1442261 1105631.375
+324.1461182 172443.015625
+325.1488647 18404.048828125
+329.1435242 55888.140625
+330.1478882 17740.521484375
+338.1420593 35703.62109375
+338.1805725 384194.4375
+339.1828613 75535.8359375
+341.1478882 23288.30078125
+349.1596069 19444.740234375
+351.1307678 13720.4248046875
+359.1444702 45841.10546875
+360.1451111 20690.662109375
+364.6515198 14183.880859375
+366.1854858 115595.53125
+367.1856079 28776.66796875
+369.1372986 19312.4140625
+376.1702881 109607.953125
+377.1551208 76999.2421875
+386.1668091 31268.119140625
+394.1805725 704089.125
+395.1824341 136374.984375
+396.1833191 24429.267578125
+407.1635437 17157.279296875
+412.1852417 26641.861328125
+460.1941223 24648.71875
+468.2214966 46944.796875
+469.2133484 15832.5322265625
+485.2466736 190274.75
+486.2504272 49242.12109375
+488.1865845 42273.15234375
+492.228363 175150.25
+492.7310181 79794.0546875
+493.2302856 30102.68359375
+495.2259216 64495.1796875
+503.0171509 15662.5009765625
+505.2122192 70207.640625
+506.2060852 61005.2578125
+512.2279053 38868.9140625
+512.7265015 28423.646484375
+521.2324219 26938.33984375
+521.7327271 18589.8515625
+523.2214966 433450.96875
+524.2248535 112368.609375
+525.2272949 38724.61328125
+529.7431641 26422.359375
+541.2288818 20561.49609375
+558.7449951 24398.98046875
+559.2443848 16084.470703125
+567.7530518 27244.26171875
+571.750061 85308.9609375
+572.2737427 295535.8125
+572.7507935 21656.95703125
+573.2791138 113583.78125
+574.272522 18700.564453125
+576.2608643 32343.04296875
+576.7679443 38221.71875
+577.2642212 22521.990234375
+580.2618408 104165.9453125
+580.7543945 2511839.25
+581.2557373 1603086.5
+581.7574463 607017.3125
+582.2580566 104545.0234375
+589.267395 76968.234375
+589.7659912 32977.61328125
+598.2733154 37779.359375
+598.7741089 49902.11328125
+599.7766724 70604.265625
+606.2584839 33378.73828125
+607.2460327 20383.701171875
+624.269104 54393.00390625
+629.3029175 15032.7177734375
+655.3117065 16121.224609375
+673.3234863 442846.15625
+674.3259888 172436.5625
+675.3258667 43580.43359375
+693.2888184 26517.8828125
+802.3632812 94095.453125
+803.364624 37525.9921875
+804.3744507 24079.005859375
+873.3984375 100537.4453125
+874.3991699 49632.48046875
+1001.452087 23782.845703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.437.437.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=437"
+RTINSECONDS=47.56948122
+PEPMASS=598.27001953125
+CHARGE=2+
+60.64926147 13743.4189453125
+64.52617645 61285.328125
+64.5304184 47115.0625
+64.58193207 45229.24609375
+64.58599091 33971.30078125
+64.63825226 18545.931640625
+64.64125824 16246.7646484375
+74.81160736 15575.578125
+74.8159256 18092.333984375
+82.66760254 13442.568359375
+149.5647278 32843.9296875
+167.0917358 37010.375
+169.0589294 20852.673828125
+170.3247681 14134.16796875
+175.1175537 274077.5625
+176.1214905 29107.095703125
+177.075943 77674.1796875
+177.0904999 14126.8720703125
+178.0596924 326548.65625
+178.0753937 9890.0244140625
+178.3357391 53136.4375
+178.3544464 38442.76171875
+179.0636444 32723.744140625
+179.0918427 31015.919921875
+182.0914154 15741.5791015625
+183.0750885 18246.416015625
+186.0860291 99626.4609375
+187.0889435 17505.57421875
+194.1020966 37998.2734375
+195.0862122 4191375.5
+196.088974 382834.6875
+197.0914307 35842.0625
+200.1004791 38520.82421875
+201.0848999 26388.029296875
+206.0909424 159415.015625
+207.0935211 20076.927734375
+218.1021729 60078.44140625
+234.0971985 21861.423828125
+240.0950317 24060.0859375
+243.0873718 16857.634765625
+246.0966949 609415.8125
+247.0993805 85942.8671875
+249.0970917 15945.4599609375
+257.0957642 14063.3359375
+257.1226196 91050.578125
+260.1122131 116095.703125
+262.1307373 13333.078125
+270.0967407 105530.171875
+271.099884 17562.20703125
+278.1485291 23051.51953125
+283.1433105 29461.52734375
+287.1229553 155900.6875
+288.1070862 1545472.625
+289.1101074 219815.890625
+295.1525574 18405.23828125
+303.1410217 26782.115234375
+304.1264343 20880.236328125
+305.133606 2959486.25
+305.2158813 20685.423828125
+306.1187134 1127079.5
+307.1211853 184552.890625
+308.1224976 23956.037109375
+311.1333313 43429.22265625
+312.1143799 23769.275390625
+321.1535034 346630.71875
+322.1562195 44999.5546875
+323.0986023 16594.869140625
+323.144104 1081157.75
+324.1467896 159821.390625
+325.148468 19838.9765625
+329.1431885 48537.21484375
+338.1426086 39793.94140625
+338.1802673 379496.03125
+338.6448669 27744.970703125
+339.1834412 61871.2421875
+347.1483765 18093.43359375
+349.1592102 17450.263671875
+359.1437988 72530.9921875
+366.1856384 115684.6328125
+367.1872864 20323.263671875
+369.1403503 17856.947265625
+376.1696472 135313.0625
+377.1537781 93807.1484375
+383.0157166 15913.322265625
+386.1645508 34326.05078125
+394.1805115 721194.6875
+395.1828918 148747.3125
+396.1862488 26487.046875
+412.1870117 27705.197265625
+420.6794739 19929.271484375
+434.1737061 16880.33984375
+468.2193604 55283.09765625
+477.2125549 16918.57421875
+483.7142334 15976.734375
+485.2467041 192367.40625
+486.2507019 67955.9140625
+488.1865234 50423.65625
+492.2289734 193015.421875
+492.7304688 93256.4609375
+493.2266541 24150.634765625
+495.230072 60326.2890625
+503.2226257 31596.37890625
+503.7141113 27464.47265625
+505.2096863 49316.66796875
+506.2044983 45600.421875
+512.2230225 32846.89453125
+512.7258301 35918.3828125
+521.2328491 44547.95703125
+521.7321777 20852.6796875
+523.2213745 460863.34375
+524.2242432 123320.84375
+525.2271118 26338.138671875
+555.2568359 27522.732421875
+571.7489624 96569.875
+572.274231 319909.90625
+572.7462769 28055.66796875
+573.2780762 106181.5546875
+576.2613525 45291.734375
+576.762207 33708.03125
+577.2601929 22560.4921875
+580.2626343 68676.90625
+580.7542725 2433227.5
+581.2557373 1710970.625
+581.7575684 634074.4375
+582.2592773 115615.3515625
+589.2636719 67908.703125
+589.7619629 19843.8515625
+598.2731323 59725.70703125
+598.774353 32863.34765625
+599.2754517 25253.828125
+599.7753906 73429.546875
+606.2505493 34906.8125
+624.2645264 60050.890625
+655.3100586 21738.228515625
+673.3231201 471134.90625
+674.3256836 136845.328125
+675.3244019 26575.22265625
+784.3535156 20762.369140625
+802.3648682 117374.453125
+803.3668213 45288.14453125
+855.3804932 14119.0322265625
+873.4007568 97265.90625
+874.3956299 61366.15234375
+1001.457642 15826.0849609375
+1047.106567 15181.318359375
+1057.876343 15824.0625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.438.438.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=438"
+RTINSECONDS=47.67838082
+PEPMASS=598.27001953125
+CHARGE=2+
+61.77166748 11456.453125
+63.58478546 12799.9970703125
+64.52627563 50904.36328125
+64.53050995 35675.59765625
+64.58197784 38717.390625
+64.58615875 26620.1875
+64.63816071 23828.0546875
+64.64143372 15199.5830078125
+87.34838104 13236.9931640625
+109.89048 12069.947265625
+110.0735245 14145.017578125
+149.5662537 43388.72265625
+167.0916443 42507.328125
+169.0596008 29737.642578125
+175.1179047 302062.0
+176.1216431 16837.90234375
+177.0761871 61448.8828125
+178.0600433 291708.4375
+178.0778351 17317.798828125
+178.3317413 25343.1640625
+178.351181 59807.76953125
+179.0642548 20132.142578125
+179.0917053 21417.568359375
+182.091095 12998.92578125
+183.0747681 14063.1630859375
+186.0860748 103129.3671875
+194.1020966 32544.3671875
+194.8205872 13177.3427734375
+195.0864258 3749811.0
+195.1280975 19547.0859375
+196.0892181 416537.0625
+197.09021 23471.60546875
+200.1010284 17299.96875
+201.0853424 17160.04296875
+206.0910492 129720.3515625
+218.1027832 58882.4140625
+222.0860748 13500.42578125
+234.0979767 18193.40625
+239.2318115 13400.75
+240.0954437 25820.75390625
+243.086319 23900.94921875
+244.1170807 15264.1123046875
+246.0969849 592031.5
+247.1003113 72359.2109375
+257.1226807 103101.5
+258.1255798 17978.8125
+260.1122742 96161.796875
+270.0970764 114755.703125
+276.1347046 18955.72265625
+278.1182251 16965.83203125
+278.1486511 22719.634765625
+283.1428223 29459.404296875
+287.1235657 143566.1875
+287.1547852 19702.92578125
+288.0777588 18767.224609375
+288.1074524 1497537.5
+289.1105347 216470.015625
+290.1132202 20397.64453125
+295.1506348 20797.634765625
+302.1355286 20713.708984375
+303.1428223 26440.58203125
+305.1340027 2962248.75
+306.059021 17685.380859375
+306.1193237 1042908.6875
+306.4286804 13884.392578125
+307.1211548 187220.15625
+308.1248474 19051.20703125
+311.1351624 37813.73046875
+312.1170654 39823.30078125
+321.1539917 309403.28125
+322.1566162 56160.03515625
+323.0976868 19616.876953125
+323.1444397 1071170.25
+324.1471252 180843.453125
+325.1461792 18236.16015625
+329.1444702 42405.58203125
+331.1459351 22407.650390625
+338.1425171 44299.875
+338.1806641 373396.71875
+339.1828003 68910.25
+347.149353 23247.328125
+349.1591187 27235.453125
+359.1447449 73835.3203125
+366.1855774 111007.375
+369.1399536 38023.2890625
+376.1701965 121187.5
+377.1557617 89620.34375
+378.1577759 17150.560546875
+386.1648865 17794.322265625
+394.1373596 15500.087890625
+394.1809692 663076.1875
+394.2399292 21577.841796875
+395.1828003 122463.9609375
+412.1890564 27896.896484375
+460.1898499 27965.90625
+468.2204895 46909.04296875
+469.2219849 23318.8203125
+477.2139893 16162.388671875
+483.7206116 18133.46484375
+485.2472839 207066.84375
+486.2515564 70060.703125
+488.1832886 31291.517578125
+492.2294312 177423.96875
+492.7304688 103698.9765625
+493.2272034 37835.62890625
+495.2262878 53832.109375
+505.2118225 53992.3203125
+506.2049255 43358.671875
+506.7260437 15004.1025390625
+512.2278442 40837.796875
+512.7318115 32841.11328125
+521.2348022 29814.826171875
+521.7374268 16878.916015625
+523.222229 436141.84375
+524.2243652 95954.5546875
+525.2282715 31723.369140625
+554.2711182 18304.82421875
+555.2529297 20356.77734375
+568.2568359 19327.583984375
+569.2149658 15743.34765625
+571.7523804 80208.4765625
+572.2755737 293424.375
+572.7558594 25373.390625
+573.2807007 87849.0546875
+576.2624512 31237.08984375
+577.2658081 26173.50390625
+580.2644043 85880.078125
+580.755188 2019716.25
+581.2564697 1454248.125
+581.3650513 14708.517578125
+581.7581787 559899.9375
+581.8656006 26222.82421875
+582.2591553 110787.203125
+589.2704468 54965.62109375
+589.7665405 40280.484375
+598.2723999 47397.01953125
+598.776123 21934.71484375
+599.2786255 28407.392578125
+599.7751465 70482.1328125
+606.2564087 30295.1953125
+624.2696533 54133.85546875
+655.3172607 16795.478515625
+673.3247681 380758.75
+674.3273926 121125.9453125
+675.3264771 26792.67578125
+711.3010864 16036.20703125
+802.3635254 79499.8359375
+803.3664551 49753.87890625
+873.3955078 87851.8984375
+874.4012451 33141.87890625
+875.4205933 16158.8466796875
+1001.440247 15651.3359375
+1002.433899 15257.4296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.439.439.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=439"
+RTINSECONDS=47.78922317
+PEPMASS=598.27001953125
+CHARGE=2+
+56.05577087 12273.0537109375
+58.13442993 18972.029296875
+64.52635193 65032.828125
+64.53048706 45932.4609375
+64.58202362 44299.62109375
+64.58625031 32705.947265625
+64.63809967 24169.0703125
+64.64150238 21466.724609375
+82.57325745 13973.1435546875
+117.0206757 13165.923828125
+149.5639343 37181.26171875
+167.0915375 45466.97265625
+169.0595245 38221.1953125
+175.1178894 266194.65625
+176.1195221 22721.392578125
+177.0757141 73398.0546875
+178.059967 367901.40625
+178.076004 11957.5185546875
+178.3317871 30826.9453125
+178.3503113 77741.9140625
+179.0914612 27622.412109375
+182.0914917 18817.326171875
+183.0752411 21389.912109375
+186.0862427 97737.7734375
+194.1026306 45900.21875
+195.086441 4222529.5
+195.1281281 23769.7578125
+196.0892944 423069.34375
+197.092041 31581.673828125
+200.1024475 27830.384765625
+201.0843964 16424.708984375
+206.0911102 159313.671875
+212.1130371 16800.98046875
+218.1018829 41991.2578125
+240.0955505 21188.3125
+243.0867157 30770.533203125
+246.0969696 599589.4375
+247.0995331 78030.8828125
+257.1226501 121761.6484375
+260.1121216 109836.8515625
+261.1176453 23896.890625
+270.0974731 139782.9375
+278.1505432 27983.486328125
+283.1426697 46758.890625
+287.1238098 152003.515625
+288.1074219 1548115.25
+289.1101379 227175.15625
+294.1165771 25734.70703125
+303.1434937 25689.5625
+305.1339722 3177028.75
+306.118927 1121766.375
+307.1217957 163046.71875
+308.1227417 27802.431640625
+311.1353149 69007.7890625
+312.1169128 26152.181640625
+321.1540833 324474.375
+322.1573792 66600.1171875
+323.1444702 1056442.75
+324.1463623 190146.546875
+325.1514587 20813.478515625
+329.1418457 37683.375
+336.1529236 16771.27734375
+338.1419983 48240.03125
+338.1803589 405426.9375
+338.6478577 22542.025390625
+339.1827087 76077.875
+341.1448059 16983.59765625
+347.1496277 22075.783203125
+359.1440125 55690.50390625
+360.1502075 20367.0703125
+366.1856079 144216.65625
+369.1383362 23570.361328125
+376.1703796 105954.1328125
+377.1556396 82247.8125
+386.1644592 22551.365234375
+394.1809387 650742.1875
+394.2393799 20147.1015625
+395.1828003 152112.546875
+412.188385 27126.412109375
+420.6799927 24050.91015625
+460.1904602 18195.298828125
+463.1971436 18252.48828125
+468.2212219 54529.53515625
+485.2472534 233495.265625
+486.25 61170.28515625
+492.2291565 124835.828125
+492.7303467 82236.0625
+495.2269287 49232.0390625
+496.229126 20867.96484375
+505.211853 37813.703125
+506.1987305 42332.1640625
+512.227356 49040.84765625
+520.7420044 19099.052734375
+521.2376709 18860.94921875
+523.2215576 410015.46875
+524.2230835 116648.7578125
+525.2337036 17911.560546875
+571.7476196 81749.0078125
+572.274231 297638.5625
+573.2813721 73107.75
+576.2640381 31979.904296875
+577.2647095 39464.3359375
+580.2617798 80188.7421875
+580.7550659 2455732.0
+581.2562256 1683015.625
+581.3683472 21670.845703125
+581.7578125 703086.4375
+581.8650513 24409.201171875
+582.2589111 151875.90625
+589.265686 103907.0625
+589.7660522 52956.84765625
+598.2706299 50654.34765625
+598.7759399 44299.109375
+599.2752686 28666.375
+599.7767944 64686.28125
+606.2556763 38825.0
+624.2669678 53938.77734375
+655.3165894 29102.005859375
+673.3239136 436273.5625
+674.3276367 165609.15625
+675.3308105 31080.4375
+693.2906494 26854.98046875
+802.3626099 87505.078125
+803.3652954 43387.9921875
+873.3979492 83421.8359375
+874.4032593 43761.5078125
+1059.483398 18738.025390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.440.440.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=440"
+RTINSECONDS=47.89759731
+PEPMASS=598.27001953125
+CHARGE=2+
+51.50066376 14920.0947265625
+54.55963898 13518.19921875
+55.91452408 14656.005859375
+64.52620697 56664.71875
+64.53061676 46331.4765625
+64.58195496 47059.66015625
+64.58609772 36896.91015625
+64.63803101 21721.68359375
+64.64160919 18930.888671875
+99.96370697 15283.6689453125
+118.7797852 15722.4462890625
+149.5635681 34019.84375
+149.5773163 24074.421875
+167.0918579 30336.759765625
+169.0594635 28845.572265625
+175.1175842 285124.53125
+175.1335449 12042.7216796875
+176.12117 17811.412109375
+177.0765839 39388.37109375
+178.059845 318414.53125
+178.3338623 32040.98828125
+178.353363 60926.07421875
+179.0633087 27673.171875
+179.0920105 29450.369140625
+183.075943 27427.12109375
+186.0859222 100981.5546875
+194.1022491 40137.51171875
+195.0862274 4152717.5
+196.0888672 383564.125
+197.0910492 41303.67578125
+200.101944 33260.54296875
+201.0864868 21514.19140625
+206.0908661 123339.03125
+215.0914154 22451.556640625
+218.1018524 59812.65625
+234.0971985 22773.921875
+239.1113434 21353.783203125
+240.0952301 22317.125
+243.0857544 21834.09375
+246.0966797 583536.875
+247.09935 70924.390625
+250.1415405 14795.7607421875
+257.1222839 99359.65625
+260.1116638 102278.421875
+261.1152039 33528.8515625
+267.1094971 17600.654296875
+270.0963745 125433.5546875
+278.1488647 30972.10546875
+283.1422729 54333.734375
+287.1228027 162840.203125
+288.1069336 1517784.5
+289.1096802 215295.0625
+294.1139832 22612.70703125
+295.1135864 17175.318359375
+295.1492615 21177.4140625
+303.1420288 26971.724609375
+305.1334229 3132941.5
+305.2160034 23826.669921875
+306.1185608 1146246.375
+307.1208191 173599.328125
+308.119812 23918.46875
+311.134613 60301.72265625
+312.1168213 44166.9140625
+321.1535645 329693.21875
+322.1561279 48674.83984375
+323.1438904 1061911.375
+324.1455688 168700.578125
+329.1439514 57091.06640625
+338.1421204 43017.64453125
+338.1798706 387346.6875
+339.1818237 75337.3046875
+347.1445312 21004.326171875
+349.1628113 32942.36328125
+359.1430969 50053.6640625
+366.1852722 123900.203125
+367.1914978 19010.41015625
+369.1387939 31451.6328125
+376.1699219 142397.578125
+377.1567078 62063.80078125
+386.1660767 23939.80078125
+389.156311 21176.162109375
+394.1800842 715238.3125
+395.1819763 157052.53125
+412.1828308 37832.2421875
+420.6841431 17059.974609375
+421.1854248 16162.3154296875
+450.2101135 16690.291015625
+468.2221069 45323.6640625
+469.2195129 17063.1484375
+477.2167358 18769.34375
+485.2461853 186661.8125
+486.2484131 51919.3828125
+488.1837158 43387.7109375
+492.2290955 142115.453125
+492.7292175 116841.53125
+493.2312927 36270.42578125
+495.2256165 40190.0
+505.2121582 42280.8203125
+506.2028198 41206.4765625
+512.2255859 53488.3203125
+512.7262573 32533.08203125
+521.2275391 44608.390625
+523.2208862 453411.0625
+524.2238159 110091.140625
+525.2352905 27178.310546875
+571.7479248 108150.234375
+572.2731323 289326.21875
+573.2798462 98869.328125
+576.2620239 38504.265625
+576.760498 28673.00390625
+577.260498 24120.94921875
+580.2622681 79945.2734375
+580.7537842 2282448.25
+581.2550659 1554477.0
+581.3391724 18420.615234375
+581.3705444 30298.849609375
+581.7562256 598873.5625
+582.2578735 123306.4609375
+589.2670288 106170.0234375
+589.7628784 49387.0859375
+598.2733765 44707.98046875
+598.7747803 33898.7578125
+599.2761841 24992.3046875
+599.7759399 43805.25
+606.2547607 28016.771484375
+624.2667236 47612.765625
+655.3114624 22268.328125
+656.3043823 19208.951171875
+673.3218994 431204.625
+674.3270264 174098.671875
+675.3237305 40344.140625
+711.3018799 23453.724609375
+802.3613281 106865.4765625
+803.3675537 35619.9609375
+823.6166382 17841.423828125
+873.3986206 102118.0703125
+874.4017944 60711.10546875
+875.4061279 21732.044921875
+1001.456909 46541.28515625
+1058.481079 21131.43359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.441.441.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=441"
+RTINSECONDS=48.00582386
+PEPMASS=598.27001953125
+CHARGE=2+
+53.74271774 10675.4111328125
+61.67895126 11518.6025390625
+63.58468246 12736.2275390625
+64.5262146 55304.25
+64.53050995 32180.6484375
+64.58203888 42348.0078125
+64.58618164 29748.0
+64.63793945 14815.3515625
+82.04959106 13582.3369140625
+82.05415344 18664.609375
+149.5712738 49999.8125
+167.0917969 47517.67578125
+169.0594635 24174.826171875
+175.1178589 279210.71875
+175.1338348 24525.435546875
+177.0760956 63348.11328125
+178.0602264 318343.53125
+178.0779114 16377.62890625
+178.3382568 60466.8828125
+179.0634766 26899.771484375
+179.0914459 15058.4423828125
+186.0860748 84798.2890625
+190.0608215 17122.95703125
+194.102478 44152.39453125
+195.0865173 3770312.5
+196.0893555 361939.375
+197.0906677 23043.359375
+200.101944 29954.208984375
+201.0859375 20500.990234375
+206.0912781 145741.328125
+215.0908051 18138.009765625
+218.1026611 44558.04296875
+222.0855255 16604.021484375
+237.1054077 11176.640625
+239.114151 17409.30859375
+240.0966644 23259.0
+243.0869751 16455.537109375
+246.0970612 636148.4375
+247.1000366 72428.7421875
+249.0945435 18881.537109375
+257.12323 85502.5625
+258.1257935 14415.283203125
+260.1124573 112301.6953125
+261.1162415 21824.5
+270.0970459 119803.046875
+276.1334229 21346.783203125
+277.13797 16173.3505859375
+278.1482544 20890.74609375
+283.144043 36101.41015625
+287.1235046 145341.421875
+288.1075745 1497338.0
+289.1105042 234449.984375
+290.1123962 18173.705078125
+295.1499634 26008.810546875
+297.125824 12797.916015625
+303.1419373 17023.083984375
+305.1341248 2928538.0
+306.1192017 1101499.75
+307.1216736 197842.828125
+311.1352539 51964.6953125
+312.1176453 35182.828125
+321.1539001 295897.5
+322.1567078 55718.96484375
+323.0984802 25168.15234375
+323.1445923 1094235.375
+324.1466675 182953.546875
+325.1494141 27031.138671875
+329.1435852 55946.33203125
+332.0826111 12960.021484375
+338.1421814 39389.8046875
+338.1807861 371137.6875
+338.6453247 26446.072265625
+339.1835022 59962.125
+341.1449585 13910.8955078125
+346.1712646 20157.890625
+349.1612549 28937.47265625
+359.143158 68875.78125
+366.1867065 111213.2109375
+367.1910706 30205.142578125
+369.1393738 28472.943359375
+376.1706238 128366.21875
+377.158844 66170.7890625
+386.1651917 23964.04296875
+394.1811829 658598.25
+394.2403259 20493.005859375
+394.6554565 14603.7880859375
+395.1831665 146332.296875
+396.1882019 21744.21484375
+412.1875916 38861.1015625
+420.6843262 18309.359375
+434.1732483 13162.41015625
+460.1932983 22587.236328125
+468.2210388 47442.7734375
+477.2169189 15760.47265625
+483.2250366 18261.92578125
+483.720459 22230.443359375
+485.2474976 184053.6875
+486.250061 61986.171875
+488.1865845 54239.5703125
+492.2296753 155217.875
+492.7313232 82548.296875
+493.2322388 31557.173828125
+495.2272339 74073.1484375
+496.2286987 14761.8388671875
+504.2146606 15930.615234375
+505.2117004 51582.734375
+506.20578 48851.57421875
+512.2285156 37604.4609375
+512.7277832 28638.85546875
+521.2348633 27126.701171875
+523.2227783 390596.59375
+524.2247314 118149.3203125
+525.2262573 19244.615234375
+554.2645874 15492.1416015625
+558.2512817 14250.505859375
+558.7384644 19753.2109375
+567.7509766 17131.01953125
+571.7519531 68392.0546875
+572.276123 265350.15625
+572.7642822 16226.90625
+573.2826538 83359.1015625
+574.2730713 17248.8515625
+576.2590942 40910.01171875
+576.7617798 20659.744140625
+577.2625122 25423.14453125
+577.7642822 17865.615234375
+580.2642212 67602.5
+580.7553101 2086696.25
+581.2565918 1354896.25
+581.7584229 547786.625
+582.2589722 106240.4375
+583.2559814 15837.55078125
+589.2680054 28856.962890625
+589.7659302 17800.447265625
+598.2796021 39434.83984375
+598.781189 33826.3203125
+599.2736206 29103.826171875
+599.7783203 72751.078125
+606.258606 33789.31640625
+624.2686157 49105.9140625
+673.3242188 325270.28125
+674.3291626 141699.578125
+675.3272095 15899.109375
+693.2960205 15405.1025390625
+712.3112183 19419.810546875
+726.5723877 14972.4384765625
+784.7953491 14822.9794921875
+802.3660889 99032.75
+803.3657837 34833.79296875
+873.4041138 86183.640625
+874.4017944 36301.703125
+1001.458496 23901.0078125
+1058.478882 14876.6484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.442.442.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=442"
+RTINSECONDS=48.11642827
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1342926 16039.6044921875
+58.13726044 16504.77734375
+61.74660873 15151.2197265625
+64.52629852 72187.3984375
+64.53050232 45078.296875
+64.58197021 51505.25390625
+64.58616638 33366.5
+64.63833618 18515.326171875
+74.81607819 17990.38671875
+110.0735855 14312.6181640625
+115.1889954 16134.5732421875
+149.5633392 29753.21484375
+149.5770264 26539.26171875
+167.0918427 39168.2734375
+168.094635 16754.40234375
+169.0597687 39012.40625
+175.1178284 347134.28125
+176.1212463 22685.505859375
+177.0762329 67972.9765625
+178.0598602 327255.3125
+178.3315277 32358.759765625
+178.3506622 81818.140625
+179.0631256 17326.43359375
+183.0757599 25774.58984375
+186.0863342 115687.6484375
+194.1029053 37662.66796875
+195.0864105 4255287.5
+196.0892944 441815.375
+197.0925293 28121.11328125
+198.9179535 17239.8515625
+200.1022339 25327.46484375
+201.0862122 22710.41015625
+206.0910645 140393.046875
+207.0943451 15291.8271484375
+218.101181 33045.97265625
+239.1119537 16296.5546875
+240.0946198 18273.021484375
+243.0856323 18450.8984375
+246.0969086 637834.625
+247.099762 100667.015625
+257.1227722 141420.609375
+258.1253662 16681.146484375
+260.1128845 113665.4296875
+261.1165161 19412.365234375
+270.0969238 120083.671875
+276.1324158 24497.18359375
+277.1376038 17419.060546875
+278.1178589 16014.5048828125
+278.1483459 30876.419921875
+283.1427002 47027.68359375
+287.1234131 149243.390625
+288.1074219 1580865.375
+289.1099243 262240.15625
+290.1142883 20395.220703125
+294.1181641 24512.16015625
+295.1485596 21623.310546875
+303.1410828 30998.390625
+305.1339417 3192028.25
+306.059082 22726.447265625
+306.1193848 1081548.0
+307.1213684 193550.0625
+311.1358948 49718.4609375
+312.1172791 37185.015625
+321.1540527 319745.4375
+322.1560059 49278.69921875
+323.1444092 1094337.625
+324.1465454 182511.859375
+329.144043 43541.28515625
+338.1427612 49723.22265625
+338.180603 405062.3125
+338.6443176 24648.392578125
+339.1821289 64041.34375
+359.1456909 51438.99609375
+366.1856079 119532.09375
+367.1907043 24069.681640625
+369.1369324 24550.0546875
+376.1708984 93945.2421875
+377.156189 80301.3828125
+386.1640625 22594.150390625
+394.1809387 779954.3125
+395.1828918 151809.140625
+396.1838989 19223.77734375
+412.1877747 39058.875
+413.1665039 23855.58984375
+420.677124 17025.021484375
+460.1921387 18046.4375
+468.2205505 40692.125
+478.2041626 23507.64453125
+483.7154541 25505.341796875
+485.247467 218728.625
+486.2494812 48365.7265625
+488.1860046 52634.08203125
+489.184967 16856.544921875
+492.2297058 210134.59375
+492.7290955 132415.171875
+493.2299805 34115.28515625
+495.225769 37680.01953125
+504.21698 18684.267578125
+505.2119141 58132.11328125
+506.2055664 49217.78515625
+512.225769 42963.55078125
+512.7219238 24324.75390625
+521.2341309 56901.6953125
+521.7341919 17460.568359375
+523.133606 32945.640625
+523.2219238 524865.75
+524.2246704 115454.640625
+529.7412109 19607.927734375
+558.748291 19725.845703125
+571.7540283 75675.6796875
+572.274353 372352.4375
+573.2821655 90658.34375
+574.2833862 24806.978515625
+576.2654419 51104.984375
+576.7633667 18081.1953125
+577.2648315 42356.421875
+580.2639771 99141.1484375
+580.7550659 2634538.0
+581.2564087 1780689.625
+581.7584839 635249.5625
+582.2590332 156929.546875
+589.2667236 125525.21875
+589.7658081 58273.765625
+598.2746582 64868.4140625
+598.7736206 57525.34375
+599.7799683 77979.03125
+602.1102905 21545.546875
+606.2589111 34187.0859375
+607.2628174 22280.49609375
+624.2675781 77043.1328125
+625.2671509 22328.39453125
+673.3243408 430180.875
+674.3274536 156730.6875
+675.3270264 41648.80078125
+693.2873535 28421.0859375
+802.3629761 80432.3984375
+803.3616333 36756.26171875
+865.2644043 18749.033203125
+873.4025879 81081.6484375
+874.4023438 63767.60546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.443.443.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=443"
+RTINSECONDS=48.22393997
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13764572 11702.09375
+64.52618408 54668.6484375
+64.53057861 43883.2265625
+64.5819931 41658.390625
+64.58615112 30886.27734375
+64.63792419 20335.349609375
+81.64146423 12416.0185546875
+82.05417633 19501.208984375
+113.7792053 11580.515625
+127.268959 11368.908203125
+140.7788391 11799.380859375
+149.5644379 37397.26953125
+167.0913239 43225.98828125
+169.060318 21805.998046875
+175.1020966 20334.400390625
+175.117569 272628.5
+176.1195526 18257.859375
+177.0760193 63693.87109375
+178.0598297 292235.0
+178.0779572 26453.677734375
+178.3368378 48038.18359375
+178.3563232 29646.46875
+179.0637054 28120.919921875
+179.0913696 16375.0390625
+182.0924377 17672.900390625
+183.0748291 19857.474609375
+186.0858612 92727.109375
+194.1027679 32753.6796875
+195.0444183 22405.162109375
+195.0862122 3793934.75
+195.1277771 19136.41015625
+196.0892181 384886.3125
+197.0905151 37942.46484375
+200.1019745 30813.822265625
+201.0827332 13090.9267578125
+206.0911407 143185.234375
+208.070282 12406.1015625
+212.1123352 16402.703125
+218.1021118 51821.19921875
+222.0843811 16551.005859375
+232.1175537 16935.48046875
+240.0952759 31671.3125
+243.0861206 20648.990234375
+244.1168365 15739.6611328125
+246.096756 591879.6875
+246.1202545 9995.5146484375
+247.0992126 67916.5859375
+249.0980682 19231.005859375
+257.1229248 86332.3984375
+260.1124268 105151.0078125
+270.0967712 126120.9375
+278.1184692 13963.4638671875
+278.1480103 32556.0234375
+283.1428223 39147.16796875
+287.1233521 146422.09375
+288.1070557 1499528.5
+289.1102295 209226.953125
+290.1116333 16953.326171875
+294.1141968 14333.408203125
+295.1509399 18050.466796875
+303.142334 23086.763671875
+304.1292114 25627.021484375
+305.133667 2805525.0
+306.1188049 1061587.5
+307.1207581 177007.1875
+308.1231689 20041.8515625
+311.1345825 47081.89453125
+312.1181946 34752.91796875
+320.171875 18351.892578125
+321.153595 319833.40625
+322.1560364 73846.2109375
+323.0984497 14664.9501953125
+323.1441345 957758.4375
+324.1464233 134209.71875
+329.1424866 54414.41015625
+338.1495667 29833.814453125
+338.1802368 368778.75
+338.645813 14191.66796875
+339.182251 56149.140625
+341.1416321 14686.845703125
+347.1481628 25962.705078125
+349.1600952 21881.033203125
+351.1339722 16884.423828125
+358.1635437 20057.564453125
+359.1445312 61701.13671875
+366.1860046 114259.5703125
+367.188385 20767.2421875
+369.1383362 28797.525390625
+376.1703796 113634.2734375
+377.1570129 79960.8828125
+378.1527405 16424.58984375
+386.1634216 21257.8515625
+394.1805725 635242.25
+394.2406616 20579.328125
+395.1834106 123886.09375
+411.6738586 14153.7392578125
+412.1884766 33108.5234375
+434.1764221 21326.43359375
+460.1954346 17548.37109375
+468.2224121 40557.1796875
+469.2121277 14671.4013671875
+477.2147522 21054.22265625
+481.7052002 14447.4501953125
+483.7197571 26670.388671875
+485.2470703 213109.703125
+486.252533 46052.00390625
+488.1847229 38376.9140625
+492.2283325 150035.03125
+492.7290649 99474.8046875
+493.231781 34721.34765625
+494.7011108 14295.6103515625
+495.2264099 40030.68359375
+503.7115479 19604.802734375
+505.211853 56164.1875
+506.2067871 40501.5
+512.2251587 23712.484375
+512.7289429 15303.12109375
+521.2333374 38330.0390625
+521.7349243 17430.8359375
+523.2217407 346650.5625
+523.309082 25540.3515625
+524.2237549 104078.4375
+525.234375 23892.158203125
+529.7452393 16232.544921875
+531.1580811 16052.572265625
+554.267334 12821.529296875
+555.2546997 15318.078125
+558.2435303 17014.23046875
+558.7443848 25634.466796875
+559.2479248 21476.373046875
+567.7594604 16789.55859375
+571.7501831 80705.078125
+572.274353 297457.96875
+572.7496338 26714.029296875
+573.2785645 90064.171875
+574.2822266 25601.400390625
+576.2601929 46676.82421875
+576.7633057 25307.216796875
+577.2647095 25289.896484375
+577.7654419 24119.39453125
+580.2611084 56894.83203125
+580.7546387 2123458.5
+581.2559204 1531746.625
+581.3649902 20379.31640625
+581.7575073 523039.09375
+582.2582397 77955.5859375
+589.2623291 25146.9921875
+598.2745972 47222.8046875
+598.7765503 24614.01171875
+599.2774658 37637.7265625
+599.7769775 93177.6953125
+606.2574463 39065.8984375
+607.2582397 17740.474609375
+624.2670898 49139.56640625
+625.2694702 19697.677734375
+673.3238525 396437.59375
+674.3261108 154769.421875
+675.3244629 33966.78125
+693.2823486 14706.6982421875
+711.2988892 18348.005859375
+732.5761719 15253.9130859375
+802.3638306 78017.0078125
+803.3675537 38270.50390625
+873.3988647 87666.875
+874.4002075 41536.5
+1001.463623 21045.39453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.444.444.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=444"
+RTINSECONDS=48.3355852
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13432693 23320.181640625
+58.13707733 14556.5009765625
+61.79956436 15309.263671875
+64.52622986 67676.4296875
+64.53046417 42531.3515625
+64.58198547 43697.51953125
+64.58614349 33135.94140625
+68.4831543 13475.5927734375
+74.81169128 13873.3291015625
+82.05474091 20782.400390625
+86.60337067 16784.873046875
+110.0648193 15403.6767578125
+122.4636765 17160.87109375
+145.1829834 13393.0576171875
+149.5714569 48482.53125
+167.0914612 21826.474609375
+169.0599365 31832.89453125
+175.1178589 279151.25
+177.0760956 60795.48828125
+178.0435791 27759.23828125
+178.0600128 357810.625
+178.3431549 96815.6171875
+179.0643005 31641.142578125
+179.0910034 24492.8046875
+183.0752411 41532.96875
+186.0862732 108258.953125
+190.9105988 14508.775390625
+194.1019135 26471.576171875
+195.0863953 4278001.0
+195.1281281 30586.404296875
+196.0893097 439663.90625
+197.0919647 22871.96875
+201.086319 19768.673828125
+206.0909424 138789.828125
+212.1120148 17923.6796875
+218.1018219 57839.81640625
+222.0852356 15224.0302734375
+226.3050842 14416.2646484375
+237.7591248 15108.837890625
+240.0959015 25280.93359375
+243.0857086 31729.919921875
+246.0970001 597569.625
+246.1204376 12728.6923828125
+247.099472 76696.0859375
+249.0982666 17822.953125
+257.1228027 95444.8828125
+260.1127319 105248.609375
+270.0970154 121542.7734375
+277.1382751 25602.96875
+278.1490173 24036.353515625
+283.1435242 34432.609375
+287.1234436 160754.578125
+288.0539856 20943.025390625
+288.0776062 20003.978515625
+288.1075439 1494254.0
+289.1101074 238350.96875
+295.1490784 31848.30859375
+303.142334 28661.005859375
+304.1283569 24140.630859375
+305.1340332 3260068.0
+306.1193237 1071480.875
+307.1211548 172907.375
+308.1235352 19256.595703125
+311.1353455 33964.8828125
+312.1177979 38224.078125
+321.1542664 349420.4375
+322.1564331 51351.63671875
+323.1445312 1062399.0
+324.1459961 162095.46875
+329.1443176 63557.23828125
+338.1416931 56388.81640625
+338.1807556 388884.21875
+338.6463928 15234.74609375
+339.1834717 65916.078125
+341.146759 22164.5234375
+347.1486206 17899.666015625
+349.1585388 19861.880859375
+359.1437378 58931.88671875
+366.1864624 123929.40625
+367.1867981 20212.3828125
+369.1378784 28582.958984375
+376.1700439 114816.2890625
+377.1559753 95152.625
+386.1617737 32530.89453125
+394.1809692 708981.0625
+395.1820068 111881.7421875
+412.1890259 34228.58984375
+468.2217102 51073.5
+478.2107544 19001.259765625
+485.2478027 219914.015625
+486.2503662 62922.5390625
+488.1864014 62025.46875
+492.2298889 177358.921875
+492.7305298 91847.296875
+493.2298889 27286.802734375
+495.2255249 53293.10546875
+496.2222595 23163.580078125
+503.2229309 22374.14453125
+505.210907 58675.9140625
+506.2018738 47072.16796875
+512.223877 30493.27734375
+512.7300415 29051.5234375
+521.2347412 38480.6796875
+523.2225342 493755.0
+524.2249756 140345.859375
+525.2319946 29356.25390625
+571.7504272 61651.875
+572.2756348 348555.65625
+572.7480469 21555.537109375
+573.2807007 107021.2578125
+576.2608032 58390.90234375
+580.2645874 102938.0234375
+580.7555542 2473379.5
+581.2567139 1589316.625
+581.6787109 12137.4013671875
+581.758667 599118.875
+582.2600098 136324.15625
+589.2664795 72789.9375
+589.7633667 43140.2109375
+598.2764893 50352.76171875
+598.7758789 24496.796875
+599.2727051 21046.98046875
+599.7770386 65005.9375
+606.2565918 34265.046875
+624.2719727 49352.0703125
+655.3162842 20654.263671875
+656.3105469 18955.17578125
+673.3244019 407898.34375
+674.3265381 168660.875
+675.3377686 30194.345703125
+693.296814 27503.689453125
+711.3025513 20305.31640625
+802.3681641 96423.7421875
+803.3777466 21767.5546875
+873.4009399 108926.703125
+874.4057617 52150.74609375
+875.4245605 20261.248046875
+1001.458313 29402.580078125
+1058.4823 20505.630859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.445.445.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=445"
+RTINSECONDS=48.44411734
+PEPMASS=598.27001953125
+CHARGE=2+
+50.27739334 11674.580078125
+55.72575378 11812.8193359375
+61.64569855 12612.15234375
+63.5882988 12057.7294921875
+64.06673431 12241.302734375
+64.52620697 52758.53515625
+64.53047943 35013.9453125
+64.58200836 36154.87109375
+64.58622742 30222.62890625
+64.63825226 17957.875
+64.64147186 12280.1982421875
+66.12715149 11339.4619140625
+68.45158386 11395.0390625
+96.68038177 11475.8212890625
+115.7907333 12828.892578125
+149.5754395 39970.20703125
+150.5736847 12332.8486328125
+167.0915222 34478.78125
+169.0595703 32850.55078125
+175.1179199 274355.46875
+176.1203461 21690.68359375
+177.0761566 48911.2734375
+178.0599518 320337.6875
+178.3343048 28024.10546875
+178.353363 48019.9375
+179.0638275 29080.05078125
+183.0751801 25782.787109375
+186.0861969 109955.9609375
+194.1024933 39520.578125
+195.0864563 3900518.25
+195.1280975 28753.62109375
+196.0892487 391308.3125
+197.0908508 24563.583984375
+200.1013794 32074.056640625
+201.0871124 16641.060546875
+206.0911713 145967.296875
+209.0783386 16264.44140625
+209.1019287 13159.486328125
+212.1126099 21454.611328125
+218.1028137 47454.98046875
+222.0860596 23038.71484375
+234.0969696 14550.9716796875
+239.114151 13820.7490234375
+240.0954895 17046.3359375
+243.0857544 23426.42578125
+244.638031 14547.98828125
+246.0711823 8746.298828125
+246.0970917 654813.75
+247.0996552 67421.5703125
+249.0970001 20100.40625
+257.1227722 86574.4921875
+258.1263123 19440.419921875
+260.1122742 121177.1171875
+270.0974121 111001.96875
+271.1018677 21923.953125
+277.1386108 18840.048828125
+278.1495361 24544.9921875
+283.1429749 36527.0390625
+287.1237183 149289.953125
+288.1074524 1494582.5
+289.1102905 225375.125
+290.1147156 14999.1220703125
+295.1503906 18125.982421875
+302.1330566 14512.115234375
+303.1442871 38242.046875
+304.1333008 14204.009765625
+305.1340027 2988701.5
+305.2163696 18999.529296875
+306.1192627 1103233.875
+307.1217346 190458.921875
+308.1226807 15663.7607421875
+311.1355896 36395.0703125
+312.1160889 32199.484375
+320.1721802 16546.654296875
+321.1541443 315484.0625
+322.1574707 58292.36328125
+323.1445618 1020535.375
+323.1886292 30439.5859375
+324.1465759 183849.953125
+325.1505127 20518.91015625
+328.160553 13535.466796875
+329.1437073 38510.12109375
+331.1497803 21622.181640625
+338.1429138 45408.99609375
+338.1808167 387912.375
+338.645752 24857.7265625
+339.1419373 15564.841796875
+339.1832581 58069.79296875
+347.1490173 19761.626953125
+349.160553 30223.92578125
+358.1622925 15814.4501953125
+359.1447144 52114.41796875
+366.1865845 138595.5625
+367.188446 23813.28125
+369.1365051 26141.078125
+376.1699524 99162.6171875
+377.157135 88983.4765625
+377.2110901 12172.4375
+386.1635132 24593.16796875
+389.1569824 19812.255859375
+394.1809692 646239.4375
+394.2397766 16410.423828125
+395.1829834 136827.015625
+396.1838989 22851.84375
+412.1894226 34915.3984375
+420.6790161 20057.525390625
+460.1932373 20050.755859375
+468.2215576 50724.26171875
+469.2156067 18173.28125
+483.7132568 18187.193359375
+485.2472534 173436.640625
+486.2510681 42230.6875
+487.2018433 16533.7578125
+488.1872253 34333.0
+492.2294006 152220.75
+492.7301331 68830.5390625
+493.233551 35630.19140625
+495.226593 49979.16796875
+503.7172852 23182.076171875
+505.210144 59778.9921875
+506.2052002 36288.80859375
+512.2255249 44356.890625
+512.7265625 32018.36328125
+521.2367554 33541.1953125
+523.22229 389731.65625
+524.2244873 117719.3203125
+525.2297974 28419.896484375
+531.1776733 16599.482421875
+555.2627563 15691.375
+558.7445679 20229.171875
+571.7489624 79511.609375
+572.2755737 251121.5625
+573.2813721 83376.7734375
+574.2822876 26331.166015625
+576.2636108 40387.6953125
+576.7629395 28830.6015625
+577.265686 27460.23828125
+580.2615967 84081.859375
+580.755188 2018760.125
+581.2565308 1290099.125
+581.7578125 493672.375
+582.2598267 108064.9296875
+589.2677612 48551.69140625
+589.7662354 26862.0
+598.2747803 35837.87890625
+598.774292 41087.765625
+599.2771606 24445.3515625
+599.776001 38074.515625
+606.2583008 35087.38671875
+624.2697144 30283.333984375
+673.3245239 376477.6875
+674.3270264 160580.078125
+693.2922974 16803.482421875
+711.2991333 22167.94140625
+802.3641968 77274.109375
+803.3667603 41175.66796875
+804.3710938 22482.6640625
+873.4020996 88889.859375
+874.4053345 54931.76171875
+875.4072876 17693.9296875
+1001.455017 24511.826171875
+1002.468567 23645.953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.446.446.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=446"
+RTINSECONDS=48.55471221
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52619934 50695.7578125
+64.53041077 39361.1484375
+64.58197784 33588.03125
+64.58612823 30615.291015625
+64.6381073 16288.498046875
+74.81175995 14811.2119140625
+82.05410004 19959.0625
+85.841362 15414.337890625
+91.82622528 11792.3115234375
+135.0772858 13845.498046875
+149.5622406 28266.15234375
+149.5750732 25149.54296875
+153.5003662 13731.9326171875
+160.3005981 10925.5
+167.0912933 36399.28515625
+169.0589752 23971.69140625
+175.1177368 259124.546875
+176.1204224 15181.3642578125
+177.0760193 66914.2734375
+178.0598145 305812.5625
+178.33461 39386.09375
+178.3546295 44646.5859375
+179.0632477 23737.544921875
+186.0860291 104155.8828125
+194.1022949 38054.9921875
+195.0862885 3861950.25
+195.1280212 19346.837890625
+196.0890656 418569.78125
+197.0930023 16210.990234375
+200.1007843 28046.916015625
+201.0859222 25212.423828125
+206.0910492 160550.9375
+212.112854 17830.2578125
+218.1016693 52713.2578125
+237.1105652 13117.1162109375
+239.1136475 19755.83203125
+240.0955963 35574.8671875
+243.0853119 28498.08203125
+244.1165009 16518.38671875
+246.0968323 567280.375
+246.1256714 27180.337890625
+247.0996094 66155.3515625
+249.0972443 13949.9755859375
+257.1225586 103983.8984375
+260.1125183 109320.6328125
+267.10849 20879.869140625
+270.0966492 116558.953125
+271.1019287 13373.5546875
+278.1176453 14665.9482421875
+278.1488342 29683.3828125
+283.1428833 44436.578125
+287.1231689 125308.6484375
+288.1072388 1509620.375
+289.1097107 230086.296875
+290.1139526 23718.6171875
+295.1149292 14134.8310546875
+295.1492615 27644.34765625
+303.1414795 16761.5703125
+304.1285706 16309.03125
+305.1338196 3070642.75
+306.118866 1030368.75
+307.1212769 171039.75
+311.1346741 39867.46875
+312.118866 38153.60546875
+321.1539307 305380.6875
+322.1565857 69152.3828125
+323.0987244 25427.048828125
+323.1442871 1062285.375
+324.1463013 173064.859375
+325.1495361 20859.658203125
+329.1433716 46320.5546875
+338.1419373 49086.5234375
+338.1804504 330209.34375
+338.6454163 19892.2265625
+339.1439209 13810.0419921875
+339.18396 65761.4921875
+341.1479187 16643.193359375
+346.1697083 16445.87109375
+347.1504822 24696.2421875
+349.160553 24561.8125
+351.1299133 15143.5947265625
+359.1444702 70656.40625
+366.1857605 94331.15625
+369.1376648 22677.1953125
+376.170105 117796.4453125
+377.1568298 65762.8203125
+386.164032 34589.875
+394.1807251 623432.625
+394.2411499 22180.40234375
+395.1828918 132437.375
+412.1872559 40742.28515625
+421.1802063 17516.712890625
+460.1891785 15897.923828125
+468.2216797 36494.37109375
+469.2219238 24700.03125
+485.2472534 200629.828125
+486.2507324 57624.28125
+488.1862488 38276.85546875
+492.2289429 152775.140625
+492.73172 92807.4765625
+493.2318115 22626.7421875
+495.2300415 38990.765625
+503.7184143 20810.919921875
+505.2117004 56862.00390625
+506.2006836 43066.30078125
+512.2287598 35750.62109375
+521.2342529 17986.37109375
+523.2223511 397664.75
+524.2236938 118676.8671875
+529.7444458 19796.8515625
+541.2404175 18294.662109375
+545.2297363 14376.6123046875
+571.7513428 86863.53125
+572.2747192 318416.71875
+573.2790527 111032.421875
+576.2666626 22299.125
+576.7611694 32452.451171875
+577.2627563 18516.640625
+580.2634888 71168.6875
+580.7550049 2092834.875
+581.2563477 1433211.625
+581.3651733 16695.919921875
+581.7581787 495223.59375
+581.8629761 22972.16015625
+582.258606 95683.171875
+589.2689209 45434.390625
+589.7657471 18351.53515625
+598.2737427 30855.00390625
+598.7741089 42703.05078125
+599.2782593 40332.734375
+599.7783203 73999.5390625
+606.2581787 39934.81640625
+624.2679443 43098.6015625
+625.2695923 21725.982421875
+673.3241577 426889.1875
+674.3272095 150854.71875
+675.3295288 21277.982421875
+693.2821655 17256.69140625
+772.5354004 14024.708984375
+802.3676147 93193.5390625
+803.3676758 41122.24609375
+873.4041138 89798.625
+874.4040527 36700.23046875
+875.395874 19463.83203125
+1001.468079 17793.466796875
+1058.489746 16355.013671875
+1173.071289 14112.232421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.447.447.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=447"
+RTINSECONDS=48.66529682
+PEPMASS=598.27001953125
+CHARGE=2+
+50.23103714 13042.671875
+64.52626038 62299.69140625
+64.53044891 42692.9921875
+64.5819397 43365.23046875
+64.58615112 37118.984375
+78.87083435 16851.0078125
+82.05426788 17375.283203125
+101.8799133 14841.244140625
+109.2195816 14565.1806640625
+149.5617981 32694.44140625
+149.5762939 39378.0390625
+167.0914459 34557.76171875
+169.0594177 31027.005859375
+175.1180573 315745.3125
+176.1205139 15990.6748046875
+177.0760498 58250.93359375
+178.0600739 342005.71875
+178.3391876 86643.0546875
+179.0924072 26021.6328125
+182.091629 24382.2109375
+183.0755463 22641.767578125
+184.855545 17392.578125
+186.0860596 119376.3515625
+194.1026611 32810.109375
+195.0864716 4381164.5
+196.0892639 431312.21875
+197.091568 34381.5859375
+200.1015167 30161.9375
+201.0868378 16493.48828125
+206.0913239 156720.609375
+218.1030426 40271.23828125
+234.0988617 21652.095703125
+240.0953979 18325.158203125
+243.0837402 15207.2802734375
+244.1168518 22987.259765625
+246.097168 634421.6875
+247.0996094 79917.421875
+249.0956573 15022.619140625
+257.1231079 106452.765625
+259.1299438 15620.26953125
+260.1127014 133375.515625
+270.0971985 134620.109375
+278.1497803 21927.783203125
+283.1439209 46497.734375
+287.1236572 176197.25
+288.1075439 1622967.0
+289.1107483 245837.4375
+291.431366 16001.474609375
+295.1504211 25235.193359375
+303.142395 22873.771484375
+305.1341248 3336519.5
+306.1193237 1131052.0
+307.1217041 199636.90625
+308.1209412 18523.720703125
+311.1359253 55074.171875
+312.1166382 35267.45703125
+320.1720886 19839.42578125
+321.1542358 319216.40625
+322.1565247 59759.46875
+323.0982361 21902.966796875
+323.1445312 1136904.625
+324.146637 203266.078125
+325.1478577 29364.56640625
+329.1437073 46434.015625
+338.1442871 38058.078125
+338.1807556 401586.375
+339.1834412 79136.2109375
+349.1603699 23079.951171875
+359.1447754 63257.08984375
+366.1862183 123103.640625
+367.1899414 24154.619140625
+369.1409912 33290.7265625
+376.1707458 117612.171875
+377.1581726 62489.890625
+386.1660767 18233.064453125
+394.1811523 703560.25
+395.183197 169281.640625
+396.1835632 20075.228515625
+412.1853943 24406.23046875
+420.6850281 16211.16796875
+460.1886597 19394.86328125
+468.220459 54504.90625
+478.2014771 26484.7578125
+483.7179871 20315.748046875
+485.2468567 204902.25
+486.2513123 57117.83203125
+488.1871948 36258.72265625
+492.2301025 167280.796875
+492.7315979 103610.8984375
+493.230072 30865.96484375
+495.2313232 40973.95703125
+501.2266846 17616.849609375
+505.2138977 60296.07421875
+505.7207336 19256.294921875
+506.2066956 51343.76953125
+507.2101746 23778.595703125
+512.2293091 44784.3515625
+512.7277222 30865.53515625
+513.2297974 16070.5478515625
+521.2349243 36003.05859375
+523.2226562 472688.34375
+524.2241211 143758.8125
+525.230896 34396.84765625
+571.7520142 88748.0078125
+572.2758789 310053.25
+573.2809448 117342.2734375
+576.2619629 46671.37890625
+576.7611084 37773.34375
+577.2642212 37691.50390625
+580.2630615 100530.2265625
+580.7554932 2458372.0
+581.2566528 1597659.0
+581.6810303 14839.09375
+581.758728 569462.6875
+582.2589722 144699.484375
+589.2657471 98402.3828125
+589.7669678 51876.58203125
+598.2758179 81760.8671875
+598.7650757 26886.083984375
+599.2792358 26143.826171875
+599.7771606 53957.9609375
+606.258667 40573.58203125
+624.2697754 59549.89453125
+625.2672119 25311.439453125
+673.3242188 439909.09375
+674.3273926 145680.25
+675.3234863 33406.7734375
+802.366272 114069.0703125
+803.3695068 47611.4140625
+873.4015503 110882.5625
+874.4099121 45977.359375
+1001.482117 28276.876953125
+1002.468018 24421.224609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.448.448.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=448"
+RTINSECONDS=48.77295087
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629852 59589.08984375
+64.53047943 43433.515625
+64.58198547 48290.83984375
+64.58621216 25722.76171875
+64.63800049 23381.427734375
+78.35256958 12403.92578125
+82.05401611 15141.294921875
+149.5659637 38618.42578125
+167.0918884 41853.34765625
+169.0596008 36995.12109375
+175.101944 25631.212890625
+175.1178894 283833.0
+176.1203003 13682.54296875
+177.0760651 50454.515625
+178.0600433 322490.34375
+178.3425903 81756.46875
+179.0634308 21377.400390625
+179.0915985 18840.60546875
+182.0921783 24839.998046875
+183.0759583 18370.67578125
+186.0862427 94538.7734375
+187.0894928 14979.833984375
+194.1030579 47584.87109375
+195.0649109 36620.46875
+195.086441 4067899.25
+196.0892639 437947.53125
+197.0915527 23466.23828125
+200.1017761 21844.859375
+206.091095 164695.125
+209.0773163 15458.0771484375
+209.1012115 15053.2265625
+218.1023254 48994.91015625
+218.8729095 13349.2880859375
+222.0859833 23250.71875
+223.9866791 13368.3212890625
+232.1173401 14318.4111328125
+234.0964355 18602.576171875
+237.1085052 20750.0546875
+240.0956879 17524.8828125
+246.0970459 656968.25
+247.0995178 68714.8828125
+257.122406 92154.9453125
+258.1274109 17336.1484375
+260.1124268 105466.1875
+266.1239014 14329.7177734375
+267.1110535 16768.48046875
+270.0967102 130398.5703125
+278.1167908 19294.5625
+278.1496277 26341.26171875
+283.1442871 48784.67578125
+287.123291 134361.40625
+288.1074524 1530795.125
+289.1098328 191662.078125
+290.1130371 22966.798828125
+294.1156616 17369.27734375
+295.1486511 17530.2734375
+303.1435852 23914.33203125
+305.1339722 3072052.25
+306.1192932 1118830.625
+307.1209412 188594.34375
+308.120636 17794.84375
+311.1351624 46631.65234375
+312.1174316 46990.6953125
+321.1539307 348278.59375
+322.1565552 69291.90625
+323.1445007 1065573.375
+324.1469116 172364.40625
+325.1530762 16613.611328125
+329.1427612 39426.9609375
+331.1486206 16852.6015625
+338.1421204 45176.9765625
+338.1805725 382535.21875
+338.6438904 21805.33984375
+339.1833496 67169.359375
+346.1706238 15318.296875
+347.1464539 20098.556640625
+351.1311035 18251.271484375
+358.1685486 16662.97265625
+359.1448059 43493.60546875
+360.1462097 19889.26953125
+366.1857605 132045.28125
+369.1361084 25893.669921875
+376.1707458 106635.0625
+377.1574402 81154.7890625
+386.1638489 23391.572265625
+394.1807556 707213.25
+394.2387695 33191.55078125
+395.1825867 136308.390625
+396.1900635 22817.1484375
+412.1877136 36751.01171875
+420.6812744 31617.21875
+468.2207336 56528.60546875
+472.7289124 15071.89453125
+477.2148132 29187.13671875
+483.7181702 23936.138671875
+485.2472839 219836.578125
+486.2490845 62124.8203125
+488.1867371 42668.265625
+489.184906 18985.732421875
+492.2293091 144135.296875
+492.730896 72754.7421875
+493.2235718 23405.361328125
+495.2268066 61000.734375
+503.22229 23312.296875
+503.7191772 23417.791015625
+505.2120361 61825.296875
+506.203186 49398.171875
+507.2007751 24330.935546875
+512.2302856 39924.546875
+512.7279053 30567.49609375
+521.2338257 27938.9375
+523.2225342 441826.21875
+524.2255249 123302.6640625
+525.2295532 38557.12109375
+567.2487793 21254.5
+567.7599487 16874.3828125
+571.7495728 64985.4140625
+572.2736816 294545.21875
+573.2798462 98421.1875
+576.2584839 30723.3515625
+576.7661133 43795.12109375
+577.2653198 37612.60546875
+580.2634277 73097.6640625
+580.7550049 2318640.75
+581.2563477 1516019.5
+581.7578125 535150.8125
+582.2579346 85043.5625
+589.2668457 65336.90625
+589.7667236 38856.14453125
+598.2722168 51182.2421875
+598.7717285 23823.533203125
+599.2759399 39068.37890625
+599.7779541 68366.453125
+606.2530518 33156.9921875
+624.2688599 37939.3125
+625.2778931 17085.896484375
+629.6077271 15469.484375
+656.3010864 19552.189453125
+673.3236694 363463.8125
+674.3272705 137594.375
+675.3369141 26675.31640625
+802.366333 83017.2109375
+803.3690796 41593.47265625
+873.402771 90305.4609375
+874.4044189 36422.296875
+1001.437378 18651.14453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.449.449.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=449"
+RTINSECONDS=48.88224094
+PEPMASS=598.27001953125
+CHARGE=2+
+60.51139069 13747.0947265625
+63.58807755 12705.080078125
+64.52629089 54766.51953125
+64.53047943 33976.7265625
+64.5819931 39728.3046875
+64.58622742 26109.01171875
+64.63817596 13955.388671875
+75.05462646 10940.078125
+76.57850647 12196.3798828125
+82.0544281 11527.2802734375
+110.0735474 10944.166015625
+148.6328735 11549.052734375
+149.568161 52395.08984375
+167.091507 38483.234375
+169.0601044 24107.572265625
+175.118042 276639.03125
+177.0760345 60384.640625
+178.0601196 333349.8125
+178.3388672 67404.9375
+179.0635681 25616.763671875
+179.0924988 16960.830078125
+183.076004 18643.744140625
+186.086441 94639.90625
+190.1069031 19956.794921875
+194.102417 39283.37890625
+195.0650177 23440.509765625
+195.0865479 3790498.0
+195.128067 18534.26171875
+196.0894318 375419.625
+197.0908661 21908.271484375
+200.1023102 24280.490234375
+206.0911713 150612.8125
+207.0935059 14316.443359375
+218.1019745 51016.953125
+221.101944 19869.525390625
+234.0962372 16117.2568359375
+240.095871 28726.94140625
+243.0851135 25928.3671875
+244.1172028 16141.7802734375
+246.0728912 9061.41015625
+246.0971832 575022.0625
+247.099884 82776.2578125
+249.0984802 14051.6337890625
+257.1226501 91773.296875
+258.125946 21597.783203125
+260.1130066 104653.2265625
+261.1171265 15910.435546875
+270.0971375 111514.5234375
+278.1492004 33023.81640625
+283.1425171 45530.4609375
+286.6104431 13046.623046875
+287.1236267 122520.34375
+288.107605 1515673.125
+289.1106873 239504.8125
+290.1115723 20069.119140625
+294.1165161 19386.9140625
+295.1489563 25577.5546875
+303.1419983 37452.16796875
+305.1342163 2957063.25
+306.1193237 1105717.875
+307.1214294 166022.859375
+308.1216736 20411.94140625
+311.1339111 53609.35546875
+312.118103 29267.33203125
+321.1542664 325691.375
+322.1560669 49804.29296875
+323.0982361 15062.4130859375
+323.1446838 1064921.375
+324.1471252 156103.375
+325.1531067 14690.66796875
+328.1604614 15647.3486328125
+329.1439514 43214.0625
+338.1425171 57817.46875
+338.1809387 374248.4375
+338.643158 19341.7109375
+339.1832275 77626.828125
+341.1472473 17896.650390625
+347.1473999 26484.84765625
+349.1616821 27948.546875
+359.1453247 57398.1796875
+366.1864014 117955.484375
+367.1873474 15267.91015625
+369.1414185 13200.8359375
+376.1694336 106145.8984375
+377.158905 72897.484375
+386.1002502 13461.0
+386.1604919 28313.810546875
+389.1586609 16705.8828125
+394.1812744 653174.3125
+394.2400208 25675.9375
+395.1827393 138341.59375
+396.1867676 20262.34765625
+412.1898499 27995.962890625
+416.4922485 13004.5146484375
+420.688385 22565.1953125
+460.1944885 16126.4677734375
+468.2226257 48466.671875
+477.2184143 16077.2880859375
+478.2076721 17711.064453125
+483.2289734 16286.9453125
+483.7182922 23779.390625
+485.2476196 195468.203125
+486.2494202 55993.52734375
+488.1864319 62797.98828125
+488.2575073 12857.9462890625
+492.2299805 112056.8125
+492.7315979 94449.8984375
+493.2302246 40327.33203125
+495.2304993 55794.0078125
+503.7192383 24568.59765625
+505.2139282 45384.50390625
+506.2088623 34806.5390625
+507.2140503 13327.44921875
+512.2266235 49439.328125
+512.7310181 27468.625
+521.2352905 28100.08203125
+521.7374268 28674.564453125
+523.2226562 427896.0
+524.225769 110438.140625
+525.2277222 32810.50390625
+555.2595215 15836.384765625
+558.7461548 17941.51953125
+571.7525635 64201.5078125
+572.2756958 300632.15625
+572.7536621 31421.875
+573.2816772 109496.3359375
+574.2792969 15983.5205078125
+576.260376 32016.4296875
+576.760376 35505.0078125
+577.2650757 35641.44140625
+580.2620239 62161.671875
+580.7556763 2152051.5
+581.257019 1291792.5
+581.7588501 468352.53125
+582.2597046 76696.8984375
+589.2662964 48382.703125
+589.7658081 28609.798828125
+598.2721558 33466.19140625
+598.7755737 16568.12890625
+599.2750244 45472.09375
+599.7771606 66339.6640625
+606.2584229 24455.11328125
+624.2667847 56488.5390625
+673.3251953 331876.125
+674.3276978 134799.0625
+675.3297729 28261.728515625
+694.262207 12429.943359375
+711.2959595 18027.7421875
+802.3683472 85589.8828125
+803.3665161 34464.5
+804.3693848 17805.42578125
+873.4031982 83241.453125
+874.4022217 48518.12890625
+875.4162598 14350.5283203125
+1013.61261 13679.7861328125
+1058.47876 12651.9306640625
+1089.079224 15039.5537109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.450.450.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=450"
+RTINSECONDS=48.99333712
+PEPMASS=598.27001953125
+CHARGE=2+
+50.67534256 13676.95703125
+58.13441086 19911.86328125
+64.52626038 70322.9453125
+64.53045654 53307.73828125
+64.58198547 49476.33984375
+64.58615875 33963.83984375
+64.63816833 25882.263671875
+69.17974854 15872.19921875
+82.05365753 19237.974609375
+122.861412 16499.43359375
+149.5740204 52231.59765625
+167.0918274 38278.44140625
+169.0598145 21602.951171875
+175.117691 309244.9375
+176.1210785 15171.2197265625
+177.0758209 62620.42578125
+178.0434723 30593.548828125
+178.0598907 353047.5625
+178.3348236 42675.11328125
+178.3541718 55572.3203125
+179.0636749 31610.51171875
+182.0917358 15981.056640625
+183.0747375 27767.515625
+186.085907 132249.46875
+194.1022644 59168.53125
+195.0863953 4401153.0
+196.0891418 429921.125
+197.0924072 30418.970703125
+206.0909729 169977.4375
+207.0956268 19738.16015625
+218.1025696 56030.671875
+240.0921478 17530.23046875
+243.0863647 28646.794921875
+244.1183929 22639.48046875
+246.0969849 631606.375
+247.0996399 64840.81640625
+257.1229553 92530.4921875
+260.1121521 122820.7421875
+270.0969849 112991.8515625
+271.0997009 17980.427734375
+278.1497498 25386.58984375
+283.1407166 22266.6640625
+287.1235352 183928.890625
+288.1074219 1494914.125
+289.1105042 261518.921875
+290.1139832 37055.60546875
+294.1190491 29189.470703125
+295.1506042 26323.197265625
+303.1443481 33974.0859375
+305.1339722 3193204.0
+306.1192627 1129096.25
+307.1213684 218427.25
+308.1217651 25967.7734375
+311.1358032 46943.109375
+312.1176453 27929.283203125
+321.1538391 302908.21875
+322.1566162 58259.89453125
+323.0984192 25263.439453125
+323.1444092 1141711.25
+324.1462402 189100.546875
+325.1480713 29910.85546875
+329.1445618 44934.19140625
+338.1423645 45990.2109375
+338.180542 423164.21875
+338.6442566 21504.625
+339.1838074 78115.7421875
+341.1458435 19023.658203125
+347.1493225 22230.052734375
+348.1662292 19751.23828125
+349.1634521 22393.931640625
+359.1460571 53044.27734375
+360.1474304 22231.349609375
+366.1864624 130742.3359375
+369.1382446 27811.376953125
+376.1703186 117189.90625
+377.1559753 98919.7890625
+386.1656189 31650.171875
+394.1809082 783770.625
+395.1825867 151123.109375
+403.98703 23387.005859375
+412.1897278 47021.5625
+413.1707458 18760.384765625
+421.1862183 17515.66796875
+454.4106445 19722.642578125
+468.2246094 48178.265625
+483.7202759 26002.841796875
+485.2470398 227663.375
+486.2500916 70121.1796875
+488.1859131 65703.46875
+492.2295227 185435.578125
+492.7286377 84329.3203125
+493.2313843 33385.12890625
+495.227356 59704.35546875
+496.2241516 21535.953125
+505.2116394 65147.390625
+506.2028198 60640.9921875
+507.2030945 19712.90234375
+512.2282715 41149.26953125
+512.7268677 27083.4140625
+521.2376099 19236.162109375
+521.7362671 30635.11328125
+523.222168 474863.28125
+524.223938 160190.953125
+525.229248 25234.375
+558.7435913 22557.46484375
+571.7520142 66133.640625
+572.2761841 342135.59375
+573.2783203 121776.015625
+574.2803955 26521.11328125
+576.2611694 52867.89453125
+576.7614136 24651.326171875
+577.2648315 37590.97265625
+580.2611694 83195.5390625
+580.7550049 2731392.25
+581.2561646 1833344.875
+581.7579346 674317.5625
+582.2593994 134492.546875
+589.2670898 116964.6640625
+589.7659912 81761.1484375
+590.267395 31073.228515625
+598.2746582 81683.5625
+598.7712402 27978.478515625
+599.2769165 29003.01953125
+599.777832 64593.37109375
+606.2583008 42680.61328125
+624.1581421 21072.107421875
+624.2667847 72434.171875
+673.3241577 454971.03125
+674.3270874 168594.0
+693.2913208 25168.7421875
+802.3649902 81654.1484375
+803.3626709 38470.3671875
+873.3980713 101316.1171875
+874.3955078 54251.3203125
+879.2637329 18565.1953125
+1001.465454 29558.45703125
+1058.490723 29603.876953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.451.451.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=451"
+RTINSECONDS=49.10042147
+PEPMASS=598.27001953125
+CHARGE=2+
+53.55755615 11425.2783203125
+64.52629852 44862.9453125
+64.53046417 38804.890625
+64.58197021 37839.0625
+64.58610535 28077.28125
+64.63831329 21614.921875
+69.96748352 12606.421875
+74.81158447 21511.17578125
+149.5623474 20750.833984375
+149.5762787 34724.7109375
+167.0920258 40887.08203125
+169.0596771 31761.607421875
+175.1020966 21663.1875
+175.1177673 276447.34375
+176.1212463 29906.603515625
+177.0760498 64631.8359375
+178.0598755 327482.46875
+178.0745392 8304.8095703125
+178.3375092 57591.09375
+178.3565063 30707.7421875
+179.0627899 36589.0859375
+179.0916443 26646.185546875
+182.0914459 14930.853515625
+183.0752411 30065.81640625
+186.0860596 111297.7734375
+190.0608826 14757.861328125
+194.1034088 29794.615234375
+195.086319 4072382.5
+195.1280365 18124.3125
+196.0891876 408646.75
+197.0921631 16798.87890625
+201.0856476 21238.51171875
+202.059906 12537.244140625
+206.0910797 157009.125
+212.1121063 26128.255859375
+217.1282806 17253.38671875
+218.1020966 69334.4296875
+234.0967865 14755.7939453125
+240.0957336 28658.986328125
+243.0853271 17475.826171875
+246.0968323 611833.375
+247.0998535 80257.203125
+248.2975464 17063.435546875
+257.1225281 114668.09375
+260.1122437 109684.7421875
+270.0970154 120386.5234375
+271.1033936 16483.345703125
+276.1326294 15802.8115234375
+278.1166382 14724.8740234375
+278.1478577 32393.802734375
+283.1435242 45996.21484375
+287.1232605 140845.796875
+288.1072693 1558286.25
+289.1100159 202974.703125
+290.1109619 21737.0625
+294.1162109 16137.50390625
+303.1437988 30366.76953125
+305.1338196 3114377.75
+306.1191101 1092090.375
+307.1211243 189358.71875
+308.1220398 16034.0361328125
+311.1341858 43220.98046875
+312.117218 38163.953125
+321.1539612 319169.65625
+322.1575012 42844.15625
+323.1442871 1031048.125
+324.146698 171016.46875
+325.1526184 16158.216796875
+329.1434937 47101.9375
+338.1419373 48031.3671875
+338.180542 372213.28125
+338.6429749 15768.89453125
+339.1822205 60830.63671875
+346.1678467 17453.087890625
+349.1600952 22437.90625
+351.1308594 16472.228515625
+358.1618042 16904.74609375
+359.1459351 59291.7578125
+366.1863098 114086.109375
+367.187561 18457.39453125
+369.1397095 16378.1005859375
+376.1697083 97132.3984375
+377.155426 73165.1796875
+386.1644897 29908.87890625
+394.1805725 705349.625
+395.1827087 108859.328125
+412.1833191 18350.10546875
+416.1642761 13920.1513671875
+420.6817932 16304.6064453125
+468.2208862 55681.1796875
+477.2162476 20700.7421875
+485.2473145 204879.828125
+486.2497864 61894.24609375
+488.1863708 46815.50390625
+489.1833191 17259.490234375
+492.2297974 146338.0625
+492.7294617 89129.0
+493.2304993 15778.0283203125
+495.2253418 51088.4140625
+503.2173157 17425.71484375
+503.719696 25547.681640625
+505.2133789 52059.73046875
+506.2051086 42860.65234375
+512.2262573 46208.65625
+512.7285156 35985.828125
+513.2288818 22147.798828125
+521.2278442 21914.357421875
+523.2219238 410382.4375
+524.2243042 119101.4609375
+525.2319336 28358.39453125
+529.7415771 25867.349609375
+559.2451782 17871.5859375
+571.7507935 90148.84375
+572.2735596 251773.0625
+572.7490234 30991.189453125
+573.277832 68743.25
+576.262207 46082.94921875
+576.7652588 29062.763671875
+577.2625732 21721.349609375
+580.2610474 41873.53125
+580.7548828 2024113.0
+581.2561646 1349926.75
+581.7581787 553640.5
+581.862915 23313.94140625
+582.2572021 92972.3984375
+589.2625732 32949.17578125
+589.769165 31419.287109375
+598.2734375 44396.58203125
+598.7747192 31893.6640625
+599.7771606 60237.65234375
+606.2583008 39203.55078125
+624.2694702 54586.75
+673.3244019 395816.46875
+674.3257446 124613.9296875
+675.3291016 30932.02734375
+693.2883911 22399.6953125
+802.3657837 82331.9765625
+803.364624 41362.44140625
+873.3989258 80794.1171875
+874.4024658 38038.359375
+1001.449219 24580.935546875
+1002.464783 22382.92578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.452.452.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=452"
+RTINSECONDS=49.21025674
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13449478 14716.763671875
+64.52620697 55093.3046875
+64.53047943 33941.62890625
+64.58194733 38403.69921875
+64.58613586 28837.888671875
+64.63820648 19193.98828125
+79.59625244 11794.27734375
+89.94739532 13625.048828125
+149.57341 44684.8125
+167.0916595 41595.5625
+169.0596619 33042.0625
+175.11763 288806.03125
+176.1212616 20739.392578125
+177.0761719 54424.62109375
+178.0598297 309126.21875
+178.3454742 83128.3984375
+179.0630035 20584.669921875
+183.0749054 21872.701171875
+186.0857849 123325.734375
+190.0590668 12776.0400390625
+194.1042175 24654.50390625
+195.0862732 3967837.75
+195.1273804 21554.90234375
+196.089035 422629.0625
+197.0915833 28930.29296875
+200.1008759 33626.24609375
+201.0866699 19954.544921875
+206.0909119 145288.328125
+213.0844574 16903.02734375
+217.1292877 13804.177734375
+218.1021423 58037.01171875
+219.1060791 16957.46875
+222.0854645 22289.58984375
+232.1191254 14301.333984375
+234.0966949 15625.095703125
+240.0952759 27058.32421875
+246.0968018 620246.5
+247.0996552 54756.515625
+249.0978241 19556.2890625
+257.1224365 97723.1484375
+260.1121521 84973.40625
+261.1173706 18051.69921875
+270.0968628 135649.71875
+271.0991211 18185.966796875
+278.1494141 17668.03125
+283.1425476 42283.5
+287.1233826 122554.5
+288.0778198 21498.056640625
+288.1072083 1529883.25
+289.1097412 272768.125
+290.1109924 23766.7109375
+295.1492615 27470.31640625
+303.1417847 30161.74609375
+305.133667 3074160.25
+305.2154236 22173.626953125
+306.1188354 1018742.875
+307.1211243 178319.953125
+311.1348572 48308.2421875
+312.116394 26240.4609375
+321.1536865 337905.75
+322.1557922 47463.73046875
+323.098877 18823.240234375
+323.144165 1017220.6875
+324.1458435 177536.28125
+329.1429443 47300.33984375
+338.1419983 43492.140625
+338.1803284 394703.25
+338.6442261 16934.064453125
+339.1439819 15706.205078125
+339.1839905 69558.9765625
+349.1572876 40325.0390625
+358.1649475 24658.140625
+359.1443176 57195.7421875
+366.1858521 135560.25
+367.1870422 23577.62109375
+369.1374207 27820.859375
+376.1705017 147708.328125
+377.1576843 70721.40625
+386.164093 25918.880859375
+394.1197205 17162.7265625
+394.1805115 708382.9375
+395.1820374 142902.046875
+396.1856079 24913.224609375
+412.1826782 26393.849609375
+420.6811218 17373.939453125
+423.1593628 20204.134765625
+460.1894226 21406.58203125
+468.2194519 49196.07421875
+469.2157898 14820.5947265625
+477.2184143 19218.328125
+483.7184143 20610.150390625
+485.2467041 206772.5
+486.2501831 52798.734375
+488.1852417 68815.5078125
+492.2291565 147802.75
+492.728302 89343.421875
+493.2301636 30609.2578125
+495.2250366 57223.90234375
+505.2110291 68912.0078125
+506.2033081 65093.66796875
+512.2283325 27436.54296875
+512.7315674 27060.708984375
+521.2324829 26319.95703125
+523.2213745 434739.3125
+524.2240601 99117.8125
+525.2280884 38766.25390625
+554.2664795 16036.25
+558.2463379 18291.158203125
+558.744812 22647.05078125
+559.2426147 14741.2880859375
+571.7493896 63475.87890625
+572.2747803 278883.5625
+572.7531128 25379.111328125
+573.2791138 83409.5234375
+574.2753296 16592.58203125
+576.2583008 29210.380859375
+576.7639771 39420.9296875
+580.2600708 81064.6796875
+580.7543335 2011850.5
+581.2556763 1439064.0
+581.3692627 19954.771484375
+581.7573242 562674.9375
+581.864502 21100.94140625
+582.2584839 109249.765625
+589.270752 51855.49609375
+589.7610474 26553.283203125
+598.2733154 52561.22265625
+598.770752 16812.5703125
+599.2759399 32753.990234375
+599.7782593 53836.15234375
+606.2605591 27900.2109375
+624.2653198 39055.79296875
+673.3231201 367858.90625
+674.3267212 144509.21875
+675.3280029 31171.3046875
+711.2924194 16776.123046875
+802.3621826 75002.453125
+803.3688354 42387.5859375
+873.3983765 93506.8515625
+874.4072266 54113.59765625
+1001.471863 17409.986328125
+1002.455627 18844.69140625
+1059.491211 15493.16796875
+1204.469482 15675.931640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.453.453.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=453"
+RTINSECONDS=49.32010397
+PEPMASS=598.27001953125
+CHARGE=2+
+51.07354736 14462.5654296875
+64.52631378 77391.0625
+64.53065491 47744.2421875
+64.58208466 50935.79296875
+64.58613586 37169.2734375
+64.63790131 29494.27734375
+64.64155579 23942.95703125
+69.68626404 13828.1337890625
+76.28104401 14353.54296875
+82.05419922 15487.3095703125
+97.76277161 13558.798828125
+140.0127869 15345.0517578125
+143.5515747 15923.1181640625
+149.564621 31732.65625
+167.0919495 36100.48046875
+169.0597992 26014.42578125
+175.1177979 335247.40625
+176.1211853 29484.689453125
+177.076004 71457.78125
+178.0599976 291241.875
+178.3400726 81910.1015625
+179.062149 18933.91796875
+179.0912018 23141.68359375
+183.0749664 23461.34765625
+186.0860748 120165.8515625
+190.1073914 17245.5078125
+194.1027832 36999.91796875
+195.08638 4266667.0
+196.0891418 423290.3125
+197.0911102 30787.07421875
+200.1018524 32821.25
+206.091095 145207.796875
+207.0943604 15888.1328125
+218.1021729 57315.3984375
+222.0847778 17646.353515625
+234.0967865 15640.546875
+240.0954895 28335.453125
+243.0868378 16026.0185546875
+246.0968475 636983.4375
+246.1257019 30802.416015625
+247.0995178 69445.2578125
+257.1224365 96135.8125
+258.1237488 25583.37890625
+260.1124878 91013.375
+270.0967407 134001.734375
+271.1005554 20812.0078125
+277.1371765 29472.861328125
+283.1438904 40780.62109375
+287.1239014 143971.359375
+288.1072693 1629731.625
+289.1096497 232902.6875
+290.1126404 23541.44921875
+294.1182861 22187.98046875
+295.1498108 32940.1796875
+303.1422729 30571.3671875
+304.1278992 23052.171875
+305.1337891 3242870.0
+306.1188049 1144343.0
+307.1216431 185781.0625
+311.133728 35225.5390625
+312.1161804 24574.251953125
+321.1536865 356216.34375
+322.1564941 52325.96484375
+323.1442566 1178473.625
+324.1459351 177001.421875
+329.1445312 59435.58203125
+331.1490479 19273.09375
+338.1425476 50145.08984375
+338.1802063 405875.375
+338.6450806 35728.015625
+339.181366 57182.62890625
+347.1476746 20122.37890625
+349.1567383 17897.677734375
+359.1438293 71912.5703125
+360.1461182 21468.376953125
+366.1860352 129494.8984375
+367.1872864 22742.126953125
+368.1530457 16459.59375
+369.1377563 24789.55078125
+376.170166 143271.34375
+377.1572266 57227.57421875
+386.1646423 39295.4609375
+394.1806946 737243.375
+395.1824341 177891.46875
+396.1868591 26127.740234375
+412.1893005 34360.765625
+413.1631165 19520.45703125
+420.6859436 26477.875
+421.1809082 25236.724609375
+452.1829224 17180.673828125
+460.1904297 19317.265625
+468.2211914 50911.171875
+469.2195129 21959.298828125
+483.7232666 23493.1875
+485.2468567 201587.9375
+486.252655 69333.6484375
+488.1864014 54558.99609375
+489.1867981 16339.705078125
+492.2286072 148851.078125
+492.7297974 130666.609375
+493.2337952 25198.2890625
+495.2272339 56988.19140625
+503.2168579 19045.1953125
+503.7160034 26599.193359375
+505.2117004 68906.921875
+506.2104187 45344.4453125
+512.2236938 42010.88671875
+512.7232056 29937.9921875
+521.2348633 53159.37109375
+521.736145 25503.306640625
+523.2214355 467090.9375
+524.2240601 148329.9375
+525.2290039 30572.5546875
+529.7471924 20184.451171875
+530.2476196 21670.560546875
+558.7418213 27472.14453125
+571.7507935 82191.3125
+572.2737427 316567.03125
+573.2802124 123520.6953125
+574.286499 22015.138671875
+576.262207 41457.41015625
+576.7623291 30924.216796875
+577.267334 30815.931640625
+580.2625122 125159.8828125
+580.7542725 2651922.75
+581.2555542 1873618.5
+581.3657837 27636.923828125
+581.7572021 692351.875
+582.2579346 121311.1484375
+589.2653809 85908.8671875
+589.7681274 44491.73046875
+598.2720947 77305.9375
+598.7748413 64609.1328125
+599.2719116 29812.203125
+599.774292 66078.9921875
+606.2599487 40527.33203125
+607.258728 18920.845703125
+624.269043 67969.6796875
+625.2717896 24629.724609375
+673.3232422 427909.4375
+674.3268433 163197.96875
+675.324707 30764.931640625
+802.3617554 105071.5625
+803.3615112 45355.7421875
+873.3981323 103925.2578125
+874.4016724 44452.2578125
+875.3999023 29104.130859375
+1001.450012 31177.576171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.454.454.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=454"
+RTINSECONDS=49.42788586
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 57165.3515625
+64.53072357 42067.1640625
+64.58198547 44413.09375
+64.58612823 32653.705078125
+64.63815308 18550.916015625
+64.64136505 18354.052734375
+74.81172943 13556.7314453125
+75.1917038 13550.8583984375
+97.508255 12463.5849609375
+146.6363373 13520.412109375
+149.5652618 34074.5234375
+167.0919342 44968.3046875
+169.0593262 38672.87109375
+175.1180267 275932.03125
+176.1190643 13195.533203125
+177.0758972 51735.359375
+178.0435486 28095.154296875
+178.0600739 292776.78125
+178.076004 26149.64453125
+178.3369904 55416.2265625
+178.3567505 29003.298828125
+179.0638733 28229.052734375
+179.0909576 20543.232421875
+182.0928802 14941.4716796875
+183.0751343 28290.818359375
+186.0860138 94125.9609375
+194.1027374 31279.080078125
+195.0865021 4157478.75
+195.1281891 21347.85546875
+196.0891724 404321.34375
+197.0923157 20265.732421875
+201.0861969 20233.451171875
+206.0912018 146107.3125
+218.1022949 61702.73828125
+222.0865936 19544.03515625
+234.0968933 16194.0126953125
+239.1148529 14922.6025390625
+240.0957947 28476.310546875
+243.0867615 24131.71484375
+244.1174316 24710.701171875
+246.0970459 588523.875
+247.0996399 67640.6875
+249.0946198 26053.845703125
+251.1177979 18056.490234375
+257.12323 95575.8203125
+258.1253052 13446.97265625
+260.1122742 107036.2890625
+261.1174927 21848.044921875
+266.5083313 14451.2763671875
+267.1066284 14820.994140625
+270.09729 112479.625
+271.1003418 18422.20703125
+272.1144714 17296.458984375
+278.1195679 20107.951171875
+278.149353 28853.021484375
+280.5828857 12905.224609375
+283.1427307 43650.54296875
+287.1238403 141258.25
+288.0776672 19982.013671875
+288.1075439 1461264.375
+289.1105652 227315.96875
+290.1135559 25165.29296875
+294.1168213 23545.36328125
+295.1497192 35614.24609375
+303.1437683 23915.677734375
+305.1341553 2983899.0
+306.1192322 1090123.625
+307.12146 168430.4375
+308.1244812 26313.15234375
+311.1333618 42052.95703125
+312.1153564 29190.5078125
+321.1542053 311342.53125
+322.157135 66497.9296875
+323.0982361 25865.28515625
+323.1116333 14960.224609375
+323.1446533 1043542.0
+324.1471252 151980.96875
+325.1507874 21928.1953125
+329.1441345 28768.552734375
+331.1503296 21975.189453125
+338.1420898 36278.39453125
+338.1809387 383444.53125
+339.1829834 76622.09375
+347.6507568 17874.580078125
+349.1577759 24261.234375
+351.1325989 20110.158203125
+359.1448669 50386.7421875
+366.1863403 135829.765625
+367.1879578 22374.490234375
+369.1350403 28871.46484375
+376.1703491 110635.65625
+377.1577148 73190.4609375
+386.1650696 22026.8984375
+394.1811523 669516.5
+394.2400818 25216.83203125
+395.1824341 133942.78125
+396.1833191 18535.529296875
+412.187439 19265.240234375
+412.9761963 14078.98046875
+420.6838074 27389.658203125
+468.2210388 38577.45703125
+469.2203674 16398.126953125
+477.215271 21351.587890625
+485.2476501 183691.671875
+486.2501221 57654.8984375
+488.1870117 59565.34765625
+492.2293701 156316.234375
+492.7303467 89670.7890625
+493.2323608 25878.279296875
+495.2284546 50466.2578125
+505.2108765 49179.6875
+506.2073669 52808.11328125
+506.7304077 17421.7890625
+512.2264404 34151.9453125
+512.730896 27059.009765625
+521.237854 27912.537109375
+521.7338257 21888.6953125
+523.2227173 407768.125
+524.2259521 119610.6953125
+525.2296753 37527.1328125
+530.2432861 14552.0283203125
+558.7388306 19155.921875
+567.2625122 19105.875
+571.7495117 74903.2890625
+572.2755127 270714.25
+572.7549438 30477.15625
+573.2835083 96048.265625
+574.2843628 18098.26171875
+576.2598877 39295.85546875
+576.7657471 38903.82421875
+577.2590332 19419.798828125
+580.2643433 74387.515625
+580.7556763 2192877.75
+581.2565918 1472642.875
+581.7587891 553402.9375
+582.260437 100944.875
+589.267334 69033.6015625
+589.7745972 24225.853515625
+598.2738647 44331.609375
+598.7756348 44921.5625
+599.2712402 29125.068359375
+599.7766113 61978.5078125
+603.0231934 15137.13671875
+606.2572021 30762.640625
+624.2687378 49389.4140625
+625.2700806 15218.5859375
+655.312439 22218.685546875
+673.3248901 371026.1875
+674.3272705 162506.046875
+675.3304443 25702.552734375
+802.3643799 95297.34375
+803.3636475 36114.46875
+873.4003906 80384.0625
+874.4048462 42895.640625
+875.4087524 20226.0234375
+1001.452576 26193.02734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.455.455.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=455"
+RTINSECONDS=49.53741933
+PEPMASS=598.27001953125
+CHARGE=2+
+50.11810684 11084.6328125
+51.01239395 11796.9111328125
+53.16993713 13110.6162109375
+55.18183899 10966.1220703125
+57.02971268 13637.005859375
+61.07313538 12665.2666015625
+64.52631378 52193.7265625
+64.53047943 35291.8125
+64.58197021 36217.23828125
+64.58603668 32186.189453125
+64.63809967 17200.1328125
+64.6413269 16376.0732421875
+74.8116684 16162.7734375
+82.05420685 20180.6171875
+101.6939163 13049.8349609375
+149.5696869 55768.30078125
+158.9646149 12453.8876953125
+167.0919342 30972.076171875
+169.0603943 29017.318359375
+175.1177521 278291.5
+176.1212921 32610.05859375
+177.0760803 58759.41796875
+178.0599365 315452.65625
+178.3452759 89467.75
+179.0636597 21951.4140625
+179.0911713 15513.482421875
+183.0750275 24954.173828125
+186.0861053 102833.2421875
+188.6776733 11164.7958984375
+194.1019897 33565.11328125
+195.0864105 4024869.0
+195.1283417 19980.595703125
+196.089035 373009.5625
+197.0911255 31181.201171875
+200.1008148 13525.275390625
+201.0859833 15706.642578125
+206.0909424 159991.59375
+212.1122131 15631.4013671875
+215.0899353 16306.87109375
+218.1024323 41063.9765625
+222.0863953 16149.7568359375
+240.0975494 22097.400390625
+243.0863037 21779.240234375
+244.1177216 17364.095703125
+246.0970154 600832.6875
+247.0996399 71795.1015625
+257.1226501 77825.2734375
+260.1125183 101634.1640625
+267.1101379 13528.5322265625
+270.0965271 124765.078125
+278.1166077 16912.064453125
+278.1499634 20071.0390625
+283.1435547 42290.1875
+287.1235352 142917.046875
+288.1074219 1501231.875
+289.11026 215993.5625
+290.1115112 24469.7109375
+295.1494141 21130.048828125
+303.1445312 29725.98046875
+304.1286316 17959.0546875
+305.1340027 3034607.75
+306.1191101 1084956.5
+307.1213074 176784.109375
+308.1206665 20201.015625
+311.1343384 46418.69140625
+312.1166687 29398.30859375
+321.1538696 325293.8125
+321.1955566 21206.62890625
+322.1565857 58312.1875
+323.1445007 1067716.5
+324.146759 159875.796875
+329.1441345 33838.05078125
+338.1414795 59153.24609375
+338.1807556 366088.25
+339.1827698 80304.0234375
+347.1540527 17333.26171875
+349.1616821 13640.2294921875
+359.1452942 61789.83984375
+366.1867371 105793.5546875
+367.1882019 26170.884765625
+369.1390991 21444.36328125
+376.17099 106382.578125
+377.1558228 68582.3828125
+378.1572571 17482.26171875
+386.1662903 27434.865234375
+394.1812439 672290.75
+394.2413635 26733.125
+395.183197 130634.6953125
+412.1887207 32503.31640625
+413.1654358 16607.271484375
+420.6857605 20061.712890625
+460.1905518 24658.447265625
+468.2211914 41420.15625
+469.2139893 14798.5224609375
+477.2182922 29670.341796875
+478.2019043 18684.640625
+483.7169189 14480.9990234375
+485.2477112 196090.421875
+486.2507324 52750.28515625
+487.2071228 13293.5908203125
+488.1842346 48832.31640625
+489.1870117 13878.029296875
+492.2290955 172295.59375
+492.7295532 83887.2421875
+493.2340088 22359.337890625
+495.2273865 50472.89453125
+503.7113953 18137.1796875
+505.2109985 50108.08203125
+506.2030029 34101.55859375
+512.2275391 45611.578125
+512.725647 38242.75390625
+521.2277222 16324.626953125
+521.7339478 17300.76953125
+523.2226562 419737.4375
+524.2232666 104306.7578125
+555.2562866 20197.072265625
+558.7388306 17071.162109375
+571.7537231 54741.43359375
+572.2752686 297173.28125
+572.7504883 31068.515625
+573.2805786 94841.4140625
+576.2611694 38696.6328125
+576.7657471 43980.1875
+580.2641602 88235.28125
+580.7556152 2214409.25
+581.2568359 1452909.25
+581.7584839 579479.8125
+582.2602539 118629.609375
+589.2665405 82989.515625
+589.7620239 34112.375
+598.276001 57874.19921875
+599.2810669 32270.474609375
+599.7772217 75673.4140625
+606.2626953 35028.9375
+624.270813 67778.5625
+655.3187256 16428.646484375
+656.305481 18572.2890625
+673.3251343 382024.375
+674.3278809 162899.640625
+675.3256226 34707.15625
+802.3665771 111574.8046875
+803.3672485 43921.84375
+804.3699951 14205.2666015625
+873.4016724 89796.765625
+874.4000854 40433.69140625
+920.4802856 15383.1025390625
+1001.456848 28010.07421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.456.456.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=456"
+RTINSECONDS=49.64727296
+PEPMASS=598.27001953125
+CHARGE=2+
+59.8573761 11612.609375
+61.00792313 11209.212890625
+64.52622223 53598.87109375
+64.53062439 41538.79296875
+64.58200836 32077.814453125
+64.58610535 29530.01953125
+64.63828278 15130.6123046875
+82.05410767 18991.798828125
+111.9902954 13743.744140625
+136.5010681 10952.6591796875
+148.2812347 12752.9853515625
+149.5621948 24872.798828125
+149.5748901 24615.830078125
+167.0921478 39604.60546875
+169.0595093 41287.80859375
+175.1179047 282908.0625
+177.0760956 66578.703125
+178.0599976 355136.625
+178.3410034 75108.328125
+179.063797 29451.685546875
+179.0925903 16540.75390625
+183.075058 23520.623046875
+186.0863647 117344.484375
+194.1031799 41598.0
+195.0864105 3780195.5
+196.0892487 381381.6875
+197.0897369 20128.05078125
+200.1013794 26643.2734375
+206.0909882 135297.828125
+212.0681763 12541.91796875
+215.0923615 14136.9658203125
+218.1021881 41149.71484375
+222.0843048 13974.2734375
+233.1285553 13098.861328125
+234.0974731 19148.84375
+240.0951843 22598.275390625
+243.0854492 27681.13671875
+246.0969543 595508.0625
+246.1256866 25486.416015625
+247.0744324 12738.71484375
+247.100235 62032.36328125
+249.0950775 14988.20703125
+257.1226807 102194.28125
+260.1123962 111416.296875
+270.0969849 108891.53125
+277.1381531 27326.1015625
+278.1487732 24328.1484375
+283.1437378 43997.29296875
+287.1235962 133257.390625
+288.1074219 1476039.0
+289.1101074 215241.03125
+290.1141968 19178.927734375
+294.1157837 20272.37890625
+295.1489868 22380.22265625
+303.1438904 18586.439453125
+304.1286621 16608.876953125
+305.1339417 2813054.25
+306.1190491 1125800.75
+307.1214294 168194.671875
+308.1257629 20963.74609375
+311.1345215 41767.0078125
+312.1177368 41979.71484375
+321.1540222 266877.15625
+322.1572876 70860.2578125
+323.1444397 1032071.9375
+324.1471863 168579.78125
+325.1524658 23893.3828125
+329.1426086 44188.39453125
+338.1422424 51597.66015625
+338.1805725 348647.78125
+338.6460571 36759.84765625
+339.1826782 76544.03125
+349.1610718 14331.939453125
+351.1298218 18770.142578125
+358.1697388 15456.7578125
+359.1450806 61550.34375
+366.1860657 107083.671875
+367.186615 27218.904296875
+368.156311 14890.3359375
+369.1410217 30890.662109375
+376.1703796 104812.1796875
+377.1576538 67655.2421875
+386.1636353 29680.0546875
+394.1808777 654287.5625
+394.2404785 23734.9765625
+395.182251 134553.796875
+396.1861572 25708.03125
+412.1906128 35521.38671875
+432.8193665 13018.4794921875
+450.208374 13624.0673828125
+464.175354 12924.5673828125
+468.2196655 43911.453125
+469.2243347 18443.14453125
+477.2155151 15474.25390625
+483.7206421 18579.15625
+485.247406 178824.28125
+486.2508545 54517.18359375
+488.190094 43020.76171875
+492.2289734 129953.7890625
+492.7315979 66134.1640625
+493.2328796 26582.638671875
+495.2272339 53435.04296875
+503.2198486 12845.3984375
+505.2105408 56560.1171875
+506.2032471 44841.08984375
+512.2313232 38775.75
+512.7320557 14958.8115234375
+521.2322388 52076.203125
+523.2224121 407191.34375
+524.2249146 110927.2578125
+554.265686 17353.486328125
+558.7427979 17119.5703125
+571.7495117 68225.296875
+572.2749634 262967.75
+573.28125 68236.7734375
+576.2611694 49098.4765625
+576.7647095 47266.75390625
+577.2709351 13945.482421875
+577.7666016 16824.509765625
+580.2629395 72907.96875
+580.755127 1942298.5
+581.2564087 1278603.75
+581.3668213 12981.9287109375
+581.7579956 512772.9375
+582.2590332 86820.34375
+589.2752686 29198.505859375
+589.7684326 26433.419921875
+598.2733154 52556.5390625
+598.7746582 36454.421875
+599.2730713 24254.099609375
+599.7780151 69122.75
+606.2582397 26044.82421875
+607.2568359 16823.896484375
+624.2689819 43386.10546875
+625.274231 15991.0107421875
+655.3123169 16837.015625
+673.3249512 363543.03125
+674.3262329 144059.046875
+675.3285522 31201.671875
+711.2948608 23500.7734375
+802.3638916 86057.3828125
+803.3682861 35406.37890625
+804.3704834 15093.0576171875
+873.4024048 84191.921875
+874.4072876 40703.703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.457.457.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=457"
+RTINSECONDS=49.7581973
+PEPMASS=598.27001953125
+CHARGE=2+
+50.36092758 12431.0361328125
+58.13428116 12723.701171875
+62.8048439 13191.875
+63.58825302 14522.087890625
+64.52626801 62854.984375
+64.53046417 42324.4375
+64.58196259 44834.3671875
+64.58608246 30311.8828125
+64.63787842 24687.037109375
+66.32318878 12476.4091796875
+76.28609467 12872.0009765625
+80.50125885 12421.7890625
+106.126915 14260.533203125
+149.5625916 24618.119140625
+149.5763245 29985.677734375
+167.0918121 52620.703125
+169.059082 29218.484375
+175.1177673 278560.375
+177.0760345 68190.984375
+178.0436249 25825.8046875
+178.0599823 338637.34375
+178.3470001 88087.2734375
+179.0623779 39347.43359375
+179.091156 17582.771484375
+183.0752411 18083.35546875
+186.0860748 97819.4375
+190.107132 17444.369140625
+194.1028442 24338.3203125
+195.0447083 21533.48828125
+195.08638 4092776.75
+196.0892944 438693.0625
+197.0925598 22984.26171875
+200.1014557 20604.578125
+201.0855865 25079.583984375
+206.0910034 127545.4609375
+215.0921021 22671.7734375
+218.1019287 39886.46875
+240.0956268 20606.236328125
+243.0837555 14461.0205078125
+244.1175079 20784.12890625
+246.0969238 605701.6875
+246.1253662 26246.830078125
+247.0996246 63893.72265625
+257.1225586 93612.4765625
+260.1124268 97144.09375
+270.0964661 135870.265625
+271.1003418 15088.626953125
+278.1484375 22927.712890625
+281.133606 14848.0625
+283.1434326 41708.18359375
+287.1229858 136082.28125
+288.1073608 1615097.75
+289.1099243 239303.890625
+295.1470032 25066.943359375
+303.1438293 29172.349609375
+305.1338806 3135062.5
+306.059021 21052.5078125
+306.1191101 1113809.75
+307.1212463 200611.28125
+311.1362915 55692.37109375
+312.1174927 29949.921875
+313.4565125 14025.4833984375
+319.6514587 16161.21484375
+321.1538696 349888.75
+322.1560059 55444.7265625
+323.0982666 18049.056640625
+323.1443176 1138714.0
+324.145874 159758.265625
+329.1437988 39860.33203125
+338.1417236 68888.390625
+338.180603 385128.28125
+338.6471863 22353.072265625
+339.1829529 66113.6328125
+347.1486206 30075.021484375
+349.1584167 25408.712890625
+359.1443176 57260.625
+366.1867065 129237.1171875
+369.1377563 24717.283203125
+376.1707458 103187.3203125
+377.1569824 84569.125
+378.1563416 14676.4814453125
+386.1667786 24780.111328125
+394.1204834 14406.8837890625
+394.1806946 708753.875
+394.2406311 21568.1875
+395.1821289 155023.46875
+412.1872559 41946.86328125
+450.2082214 15968.150390625
+468.223175 59455.4453125
+469.2287292 16991.271484375
+478.1990356 16051.455078125
+483.7189331 23628.634765625
+485.2474976 219653.84375
+486.2510681 53001.921875
+488.1855774 46962.79296875
+489.1947937 16937.927734375
+492.2296143 176645.15625
+492.7307129 104975.25
+493.2311096 25028.05859375
+495.2284241 43983.15234375
+496.2267761 16975.552734375
+503.714325 27332.2265625
+505.2110291 54904.265625
+506.1987915 43899.5390625
+512.2271729 49352.78125
+512.7290039 22229.435546875
+521.2324829 35379.9375
+521.7365723 15967.935546875
+523.2221069 451415.0625
+524.2249146 104526.171875
+525.2248535 26646.451171875
+529.7462158 15623.1083984375
+555.2642212 14541.1484375
+558.7451782 30350.078125
+559.2445679 18997.19140625
+567.2676392 18334.015625
+568.2556152 18624.98828125
+571.7512817 80683.9453125
+572.2750854 310949.21875
+572.7509766 29577.931640625
+573.2814941 93191.6640625
+574.2772217 20072.71875
+576.263855 41993.03125
+576.7623291 20472.4140625
+577.2581787 33202.015625
+577.7622681 24545.953125
+580.2623291 92911.6328125
+580.7548828 2274440.75
+581.2561646 1558141.375
+581.7576294 564809.875
+582.2590942 116696.7421875
+589.2669678 76152.0234375
+589.7628174 25001.90234375
+598.274353 47867.38671875
+598.7741089 33854.16015625
+599.2783813 28010.875
+599.7773438 60868.84765625
+606.2525024 37300.1171875
+624.2660522 52472.07421875
+673.3237305 402898.5625
+674.3253174 123487.5
+675.3339844 23523.677734375
+802.364563 100006.8515625
+803.368042 42375.5078125
+873.397644 109515.8046875
+874.4001465 46719.1953125
+1001.460205 21519.1953125
+1058.468018 24511.197265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.458.458.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=458"
+RTINSECONDS=49.86709446
+PEPMASS=598.27001953125
+CHARGE=2+
+52.1221962 11961.23046875
+54.27548218 15313.9716796875
+58.13460159 12666.59375
+64.52624512 64666.1328125
+64.5304718 38331.22265625
+64.58202362 44386.88671875
+64.58618927 27617.056640625
+64.63811493 18286.935546875
+64.64141083 13549.18359375
+74.81177521 12332.6953125
+82.05439758 24211.90625
+106.1245804 11305.78125
+149.5707397 54209.515625
+161.4018402 12405.841796875
+167.0920563 33066.484375
+169.0596008 33338.96484375
+175.1177368 256787.25
+176.1213379 14724.328125
+177.0761414 62831.0078125
+178.059845 335841.4375
+178.3331146 19865.193359375
+178.352417 51165.06640625
+179.0639801 17508.28125
+179.0914307 29489.515625
+182.091156 12922.3515625
+183.0758514 17039.17578125
+186.0861359 89780.5859375
+194.1022186 37189.38671875
+195.0863037 3840648.25
+195.1276855 19626.087890625
+196.0891876 382803.59375
+197.092041 20775.8046875
+200.1018829 35034.69921875
+201.0848846 15925.28515625
+206.0910187 142642.6875
+212.1133118 14048.1142578125
+215.0914154 13607.6142578125
+218.1021118 68899.6484375
+240.0952454 14740.630859375
+243.0864716 31190.80859375
+244.1181488 18258.685546875
+246.096817 603154.375
+247.0994415 79273.1875
+257.1226807 104413.171875
+258.1238403 14348.578125
+260.1123657 117759.7734375
+270.0966187 118958.875
+278.1181335 16338.95703125
+278.1487122 28157.75390625
+283.1425781 54571.62109375
+287.1230774 140933.296875
+288.1071167 1479201.0
+289.1100464 212015.46875
+290.1129456 18814.234375
+295.1487122 17175.35546875
+302.1297913 16805.654296875
+303.1424255 34839.9296875
+304.1279297 14813.7958984375
+305.1336365 2866041.75
+305.2163086 22316.669921875
+306.1188049 1033711.0
+307.1207275 176097.84375
+308.1239014 20689.279296875
+311.1357727 43469.7265625
+312.1165771 34374.5703125
+321.153717 320304.875
+322.15625 58462.69140625
+323.0992126 17717.12890625
+323.1441345 1010735.4375
+324.1459961 169093.25
+325.1505127 16383.4111328125
+328.5444946 12230.296875
+329.1436462 42842.94140625
+338.1417847 36387.7109375
+338.1802368 356237.5625
+338.6452026 15907.59375
+339.1820679 70669.4140625
+347.1509399 15155.5966796875
+349.1610107 23074.21484375
+351.1303711 18924.66796875
+359.1441345 62410.4140625
+364.7136841 13313.248046875
+366.1859131 123759.2734375
+367.1908264 18464.392578125
+369.1396179 36490.34375
+376.1696167 116685.8671875
+377.1575317 51008.48046875
+386.164032 30425.3359375
+389.1569214 14372.794921875
+394.1804504 617913.375
+394.2403564 19569.9609375
+395.1828308 146353.078125
+412.1867981 23068.865234375
+468.2227173 40265.75390625
+477.2132263 17565.421875
+478.2089539 15461.4501953125
+483.7207642 25507.931640625
+484.2194824 23673.361328125
+485.2469177 173482.96875
+486.2500916 52718.1796875
+488.1879272 42420.01171875
+492.2287292 171983.5
+492.7301025 83028.0390625
+493.2334595 22866.091796875
+495.2259216 61449.25
+505.2115784 46651.51171875
+506.2077637 41831.140625
+512.2245483 50912.2890625
+512.7260132 28946.337890625
+513.229187 17578.021484375
+520.7375488 15850.7109375
+521.2313843 29064.015625
+521.7354126 16813.00390625
+523.2212524 401168.0
+523.3085327 23136.484375
+524.2238159 99473.625
+525.2267456 22465.71484375
+558.7531738 19717.58984375
+571.7494507 66357.0546875
+572.2738037 292312.59375
+572.7493286 19701.560546875
+573.2789917 87036.9375
+574.2797241 19356.185546875
+576.2594604 44554.69140625
+576.7664795 23720.73828125
+577.2626953 27369.5546875
+580.260376 77577.109375
+580.7540283 2177551.0
+580.8393555 28791.375
+581.2553711 1497652.75
+581.3362427 23658.611328125
+581.7570801 532925.625
+582.2581177 92176.5703125
+589.2648926 42585.9140625
+589.7578735 16401.783203125
+598.2710571 72908.9375
+598.7738647 19813.732421875
+599.2718506 40599.1015625
+599.7763672 81041.4765625
+606.2518921 29316.2578125
+624.2684326 50373.46484375
+655.3102417 17584.484375
+673.3227539 392511.875
+674.3265381 144596.390625
+675.3236084 34146.2109375
+693.2826538 18709.28125
+802.366333 87819.78125
+803.3705444 39902.94140625
+873.3978882 82274.6875
+874.4041138 24997.794921875
+1001.456726 24714.73828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.459.459.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=459"
+RTINSECONDS=49.97795936
+PEPMASS=598.27001953125
+CHARGE=2+
+64.5262146 60916.19921875
+64.53067017 48932.421875
+64.5819931 40158.8515625
+64.58615112 30228.115234375
+64.63819122 16607.181640625
+73.96607208 15275.4169921875
+74.81099701 13349.2490234375
+76.28101349 16372.146484375
+126.0748138 12993.515625
+149.5629883 30132.4375
+149.5769958 30300.271484375
+167.0916443 39888.6796875
+169.0594788 37843.46484375
+175.1021118 22214.20703125
+175.1177979 287082.09375
+176.1215973 15629.6611328125
+177.0761871 49811.42578125
+178.0436554 24471.978515625
+178.0599823 315906.9375
+178.3385315 64428.6328125
+178.3570404 31165.974609375
+179.0625305 25227.82421875
+179.0901794 15077.5634765625
+182.0903015 17892.017578125
+183.0752411 22482.474609375
+186.0860138 123394.1796875
+190.0614166 13219.4853515625
+194.1022034 39515.20703125
+195.0863037 4142032.0
+196.0890808 417671.34375
+197.0919952 26671.6875
+200.1020813 20005.62109375
+206.0910339 135294.40625
+212.1124878 17000.76171875
+215.0913849 23727.046875
+218.1018829 45814.12109375
+234.0986023 16692.173828125
+240.0961761 19509.3125
+243.0859375 21251.962890625
+246.0968628 560643.375
+247.0995789 70413.8984375
+257.1224365 93417.7265625
+258.1248474 17345.58984375
+260.1123352 112857.5625
+267.1170349 14616.6982421875
+270.0964661 112132.3203125
+277.1394043 22749.615234375
+278.1194153 19276.74609375
+278.1500549 33456.10546875
+283.1434021 30473.8828125
+287.1233826 149887.3125
+288.1072693 1565087.25
+289.1101379 214696.84375
+290.1114197 22508.12109375
+295.1516724 18047.736328125
+303.1436462 37426.84375
+305.1337891 3052496.0
+306.1190796 1066716.375
+307.1211548 180091.328125
+311.1340942 51790.19140625
+312.1161499 33898.86328125
+321.1538086 323268.65625
+322.1569214 56511.921875
+323.1442261 1165302.25
+324.1462097 187025.203125
+329.1426697 43507.7734375
+338.1417542 53769.37890625
+338.1803894 381800.84375
+338.6446228 18593.890625
+339.1820679 65829.2734375
+346.1673279 20382.666015625
+351.1324768 15637.404296875
+359.1440735 53763.99609375
+366.1857605 132463.171875
+367.1867065 22144.775390625
+369.1413879 25933.556640625
+376.1703186 111432.1015625
+377.1554871 82003.515625
+386.1644287 38821.66796875
+394.1807556 716661.6875
+394.2399597 23465.0703125
+395.1826782 149279.421875
+396.1850891 23719.203125
+412.1897583 39104.52734375
+420.6834412 31315.072265625
+439.7980957 14909.8486328125
+460.1894836 22080.1484375
+468.2210083 62673.8046875
+478.202301 28971.099609375
+485.247345 212427.671875
+486.2514648 38375.453125
+488.1878662 48664.39453125
+492.2295532 133302.90625
+492.7311707 94972.9765625
+495.2244263 46532.67578125
+503.2263184 23424.90234375
+505.2110901 50299.8125
+506.2025146 51782.95703125
+512.2265625 53581.3984375
+512.7263794 41721.80859375
+513.2301636 21135.162109375
+521.2350464 21417.40234375
+523.2219849 475055.46875
+524.2235718 141738.828125
+525.2280273 19921.4453125
+529.742981 17683.546875
+530.2416382 18962.1796875
+549.7426147 16377.0146484375
+558.7437134 25774.724609375
+559.2429199 15892.9609375
+567.2592773 29221.765625
+571.7476196 86465.3046875
+572.2739258 318442.5
+572.7505493 21037.169921875
+573.2789917 99084.40625
+576.2643433 25066.421875
+580.2617798 91793.7421875
+580.7548218 2329336.5
+581.2559204 1626033.625
+581.7572021 577684.875
+582.2583618 105914.9375
+589.2669067 102263.2890625
+589.7677002 45350.7734375
+598.2744751 76066.8203125
+598.7739868 32019.703125
+599.2763672 31060.345703125
+599.7737427 57380.7734375
+606.2612915 39465.640625
+624.2661133 44583.609375
+673.3239136 375256.28125
+674.3266602 141868.84375
+675.3250122 32435.04296875
+802.3642578 80341.4375
+803.3653564 47951.515625
+873.4005127 89602.09375
+874.4038086 43316.01171875
+875.4067383 17575.064453125
+1001.458313 27456.400390625
+1058.480103 18831.166015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.460.460.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=460"
+RTINSECONDS=50.0867251
+PEPMASS=598.27001953125
+CHARGE=2+
+61.55296326 14869.86328125
+64.52611542 55701.2578125
+64.53042603 42922.92578125
+64.5819931 37361.375
+64.58615875 28851.951171875
+72.25526428 15247.615234375
+148.6428833 14114.2275390625
+149.5694885 52971.09375
+150.6350708 13767.3466796875
+167.0915985 46425.98828125
+169.0589294 19329.12109375
+173.3314209 14012.7275390625
+175.117569 308993.84375
+176.1207123 25352.775390625
+177.0757446 71932.3203125
+178.0596466 330840.9375
+178.3444977 97727.375
+179.0924835 20147.28515625
+182.0907898 20634.412109375
+183.0761108 22737.419921875
+186.0857849 82370.6328125
+194.1016998 43997.8359375
+195.0861359 4141153.0
+195.1278076 25284.85546875
+196.0888214 378291.09375
+197.0915527 16522.57421875
+200.1019745 25696.138671875
+201.0856476 16680.841796875
+206.0908508 134704.875
+209.1011658 17798.748046875
+217.1277924 15917.951171875
+218.1021118 53674.8046875
+234.0971069 16138.1982421875
+240.0943909 20526.173828125
+243.0858917 20770.54296875
+244.117218 15894.4833984375
+246.0966034 606397.375
+247.0990906 64044.61328125
+257.122406 101156.9453125
+260.1126709 99189.3046875
+270.0966797 111056.0390625
+271.1035767 20615.666015625
+277.1396179 15137.1728515625
+278.1166687 14691.4326171875
+278.149292 25093.591796875
+283.1423645 32750.02734375
+287.1225891 149883.03125
+288.1069946 1561165.125
+289.1097412 214659.28125
+290.1145935 20539.55859375
+295.1473694 31143.21875
+303.1439209 17394.677734375
+305.1333923 3112174.25
+306.1186523 1049429.125
+307.1206665 178819.84375
+311.1353149 51854.23046875
+312.1163025 26288.435546875
+321.1531982 304020.0
+322.1564026 55089.94921875
+323.0987244 20965.52734375
+323.1438293 1077722.75
+324.1459961 173664.71875
+329.1435547 39820.83984375
+330.1459351 18340.505859375
+338.1412048 59505.1484375
+338.1800842 359245.1875
+339.1824646 88376.1015625
+341.1464844 20722.98828125
+351.1296082 19759.802734375
+358.1707764 17053.794921875
+359.1446533 55616.453125
+366.1860962 128848.265625
+369.1384888 36335.77734375
+376.1691895 95665.734375
+377.1577454 70080.4609375
+386.1656494 28881.359375
+394.1802673 737726.6875
+395.1802979 121216.3125
+412.1891479 28707.443359375
+460.1910706 17684.146484375
+468.2210999 45189.390625
+469.2167664 17069.447265625
+483.71875 23685.986328125
+485.2463989 214516.5
+486.2501221 64693.45703125
+488.1828308 45098.0078125
+492.2284851 178132.828125
+492.7298279 65050.15625
+495.2268066 47953.17578125
+503.7129517 20487.291015625
+505.2102356 69242.7109375
+506.1992798 51596.21484375
+512.2264404 31136.955078125
+512.7245483 27598.43359375
+521.2376709 21188.703125
+523.2211304 460474.59375
+524.2232056 139914.21875
+525.2233887 26570.75390625
+558.7424316 36183.7890625
+571.7485352 73739.7265625
+572.2746582 306193.25
+572.7523193 31868.138671875
+573.2781982 103083.4140625
+576.2600708 52410.34375
+577.2609253 31166.6640625
+580.262146 71984.2734375
+580.7540283 2129654.0
+581.2554321 1589144.5
+581.756897 517039.8125
+582.2579346 120027.984375
+589.2652588 59518.8359375
+589.7710571 34592.6640625
+598.272522 61021.80078125
+598.7730103 20612.6328125
+599.7763672 70587.484375
+606.2610474 30535.888671875
+624.2672729 46248.38671875
+625.269104 21947.765625
+673.3225708 377050.5
+674.3250122 126120.8828125
+693.2877808 23693.798828125
+802.3631592 95475.328125
+803.3659058 28792.427734375
+873.399292 98465.4765625
+874.4102783 32148.560546875
+1001.463745 28578.53125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.461.461.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=461"
+RTINSECONDS=50.19611997
+PEPMASS=598.27001953125
+CHARGE=2+
+50.33467102 9468.1953125
+53.91496658 10744.73046875
+54.94861221 10947.6064453125
+60.88456726 12469.4697265625
+64.52610779 52503.38671875
+64.53053284 41805.875
+64.58193207 37291.8828125
+64.58616638 24835.59765625
+64.638237 13718.7763671875
+64.6415863 14424.9072265625
+71.68987274 10140.6923828125
+74.81134796 11518.1572265625
+109.5103607 11410.6513671875
+110.073967 15296.119140625
+111.5281219 11448.705078125
+147.7997742 11806.4873046875
+149.5660706 42952.05078125
+153.9637146 10268.64453125
+167.091507 40473.390625
+169.0598297 25547.009765625
+175.11763 280574.625
+176.1213074 13753.984375
+177.0758514 56126.44140625
+178.0596466 339728.46875
+178.0779114 16203.845703125
+178.3351288 34596.44921875
+178.3543549 30908.14453125
+179.0635223 24124.908203125
+179.0917358 24530.845703125
+183.0747833 11647.6796875
+186.0857697 98958.890625
+190.1074677 11973.4658203125
+194.1023254 35667.39453125
+194.3171844 11839.091796875
+195.0861511 3539896.0
+195.1031342 66846.078125
+195.1277008 25982.095703125
+196.0889587 361239.34375
+197.0906525 25994.451171875
+199.1164703 12795.802734375
+200.0994568 19819.158203125
+201.0848999 17121.7734375
+205.0589294 11327.779296875
+206.0907593 142165.703125
+215.0909576 18783.162109375
+218.1017456 54011.2890625
+234.0982056 16159.6513671875
+240.0962677 34257.92578125
+243.0855865 29553.984375
+244.1154633 13127.2568359375
+246.0965881 585735.3125
+246.1255035 27223.08984375
+247.0997925 75812.546875
+249.0967102 21695.22265625
+257.1222534 81174.078125
+258.1220093 12826.7021484375
+260.1123657 112066.2421875
+270.0966797 106666.53125
+276.1316528 17052.837890625
+278.1503601 15921.2802734375
+283.1434937 40955.2578125
+287.1228027 126651.7890625
+288.1069031 1365009.125
+289.1094971 197245.140625
+290.1123352 21568.63671875
+294.1171265 20257.908203125
+303.1416626 23094.703125
+304.1277466 20789.947265625
+305.1333618 2781885.5
+306.1184998 1035384.5
+307.1209106 158450.84375
+308.1233521 29660.560546875
+311.1333618 40931.8203125
+312.116394 26011.01953125
+318.144989 14723.8359375
+321.1535645 269930.4375
+322.1566772 68478.2890625
+323.1437988 942149.4375
+324.1459656 163778.859375
+325.1487427 14423.1357421875
+329.1430054 43509.73046875
+331.1466675 15291.6767578125
+338.1429443 28466.560546875
+338.179718 369463.5
+338.6452026 15341.8955078125
+339.1826782 59949.2109375
+347.149292 31195.03125
+349.1569519 16299.578125
+351.1297607 16726.23828125
+353.1488037 17973.857421875
+358.1666565 15526.6103515625
+359.1436157 49880.8359375
+366.1854858 102766.9921875
+367.188446 26156.208984375
+369.137146 25351.07421875
+376.1697083 97733.40625
+377.1559753 73161.4140625
+386.1649475 21649.146484375
+394.1801758 627105.5625
+394.2402344 22661.787109375
+395.1821899 121876.703125
+404.1754456 14116.4287109375
+412.1847534 23874.27734375
+420.6813354 15609.4296875
+460.1898193 25436.978515625
+463.1903076 12633.1640625
+468.2220154 39313.91796875
+469.2201233 18900.744140625
+477.2155151 17512.04296875
+478.2006226 11983.017578125
+483.714386 19249.505859375
+485.2463989 187374.328125
+486.2501221 40017.60546875
+488.182373 37616.53515625
+489.1904602 14061.03515625
+492.2281494 132405.65625
+492.7313538 74183.7265625
+493.2272034 25259.30078125
+495.2251587 41711.86328125
+503.710907 14447.728515625
+505.2109985 39703.83984375
+506.2069092 41277.7109375
+512.2246704 32467.228515625
+512.7263794 15584.5712890625
+521.2349243 17686.201171875
+521.7312622 18244.0
+523.2212524 328909.59375
+524.2240601 103160.8046875
+525.2250977 24956.603515625
+529.739624 15918.2822265625
+554.2663574 11137.02734375
+555.2505493 20822.291015625
+558.741272 24305.630859375
+571.748291 66747.203125
+572.274353 256121.53125
+572.7459717 33192.546875
+573.2786255 82352.1484375
+574.2786255 14368.7197265625
+576.2614746 43827.734375
+577.2661133 36215.6015625
+580.2620239 75279.828125
+580.7539062 1907649.875
+580.840332 28153.146484375
+581.255249 1325819.0
+581.3375244 23648.888671875
+581.7567749 384391.71875
+582.2590942 89428.625
+589.2704468 32709.18359375
+589.769043 18077.412109375
+590.2636719 18866.015625
+598.2733765 39947.890625
+598.7745361 40130.3046875
+599.2750244 25471.158203125
+599.777832 76220.9921875
+606.2575684 30668.634765625
+624.2648315 44904.0625
+625.272644 20709.873046875
+655.3103638 19065.9765625
+673.3222656 349674.40625
+674.3243408 138031.0
+675.333313 26557.748046875
+693.2838135 22983.013671875
+802.3630981 82867.25
+803.3721924 23290.205078125
+873.3984985 80569.734375
+874.3977661 41768.33203125
+875.3842773 14085.0205078125
+1058.468018 18798.94921875
+1167.16394 13293.91796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.462.462.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=462"
+RTINSECONDS=50.30882488
+PEPMASS=598.27001953125
+CHARGE=2+
+61.09191895 14241.8173828125
+61.54462051 14475.6591796875
+64.25501251 16906.40625
+64.52619934 62372.0546875
+64.5304718 37067.625
+64.58213043 30304.21484375
+64.58603668 38670.43359375
+64.63809967 21744.806640625
+64.64135742 15682.525390625
+66.13230896 14563.259765625
+71.27194977 16890.171875
+92.42899323 15419.1806640625
+113.1089783 17111.544921875
+145.1829529 14690.521484375
+149.5740051 51187.64453125
+149.8031006 15697.1083984375
+157.4818268 17601.970703125
+167.0910034 27447.26953125
+169.0599823 34131.91796875
+175.1177826 295412.125
+176.1216125 19013.796875
+177.075882 61968.34765625
+178.0598297 289027.3125
+178.3387299 81817.0859375
+179.0641327 25882.103515625
+179.0917511 18345.150390625
+183.0730438 21057.55078125
+186.0861206 113452.8125
+194.1034088 23778.55859375
+195.0862885 4262866.0
+195.1282806 25107.87890625
+196.0890808 422172.84375
+197.0918732 40085.76171875
+200.1022339 31145.92578125
+206.0911865 128722.453125
+215.0908813 21358.9453125
+218.1022186 58590.5546875
+222.0841217 21965.671875
+240.0944061 19290.955078125
+243.0848999 35800.8125
+244.1174774 17771.962890625
+246.0966644 603413.1875
+246.122879 12755.0517578125
+247.0989685 90492.296875
+257.1221619 105827.3515625
+260.1121521 90828.546875
+267.1071777 22091.494140625
+270.0964355 123731.296875
+278.117981 25579.18359375
+278.1495361 27100.01171875
+283.1426392 34368.04296875
+287.1228638 168675.953125
+288.1071167 1561025.0
+289.1100159 210526.296875
+294.1167297 19852.1484375
+303.1416016 38762.39453125
+305.1335754 3217159.75
+306.1185303 1146191.875
+307.1204224 189720.703125
+311.1349487 43247.57421875
+312.114563 24100.15234375
+321.153595 343308.03125
+322.1561279 53934.625
+323.1439819 1085638.25
+323.1890564 31001.126953125
+324.1462708 194417.9375
+325.1463623 23257.03515625
+329.1419373 42952.41796875
+338.1418457 48370.91796875
+338.1801453 395673.21875
+339.1820679 57770.66796875
+347.1514893 24021.984375
+351.1299133 20868.982421875
+358.1633911 19353.103515625
+359.144043 52833.921875
+366.1855164 161655.625
+369.1373596 26201.255859375
+376.1695862 99441.640625
+377.1534119 81484.078125
+378.15625 29122.423828125
+386.1644897 34258.88671875
+394.1802673 722136.0
+395.1819763 134396.0
+412.1859436 20301.390625
+468.2195435 47215.17578125
+485.2463684 188053.859375
+486.2509155 54754.29296875
+488.1893921 39106.51953125
+492.2283936 148959.359375
+492.7301331 63343.8359375
+493.2321777 41746.25
+495.2249146 26930.779296875
+504.2193909 19861.076171875
+505.2114563 74451.7421875
+506.2046814 44382.8125
+512.2255249 42312.73046875
+512.7272339 24191.0078125
+520.7408447 23099.44921875
+521.2399292 29420.4140625
+523.2207642 445615.90625
+524.2230225 138120.3125
+525.2263184 22729.244140625
+529.7473145 21122.650390625
+559.2417603 30343.080078125
+571.7507324 79146.2421875
+572.2747192 287155.46875
+572.7545166 19938.57421875
+573.2786865 107309.1328125
+576.2584839 60869.28125
+576.7640991 33043.8984375
+577.2611694 27379.61328125
+580.2596436 82039.34375
+580.7541504 2380550.5
+581.2553711 1582139.625
+581.7570801 618621.625
+582.2570801 101546.0703125
+589.2659912 139432.328125
+589.7636719 77957.765625
+598.2723999 50482.08203125
+598.7788086 30990.4921875
+599.2722778 18920.01953125
+599.7785645 57285.4140625
+606.253418 29907.037109375
+624.2661133 67740.0546875
+625.2713013 25478.92578125
+673.3227539 430055.96875
+674.3245239 181933.8125
+675.3273926 30858.998046875
+802.3626709 104156.3984375
+803.364624 44600.69140625
+873.401001 104253.1015625
+874.4000244 42109.0625
+1001.477722 25335.349609375
+1058.478271 17928.755859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.463.463.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=463"
+RTINSECONDS=50.41616555
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430023 16829.044921875
+64.52627563 63476.34765625
+64.53048706 38284.25
+64.58198547 40350.2890625
+64.58615875 26686.921875
+64.64138031 13925.12890625
+76.28548431 14209.40625
+82.05395508 13566.96484375
+85.24168396 11368.2080078125
+89.0086441 14512.09375
+90.84991455 11986.869140625
+127.1960449 11834.7060546875
+149.5684662 47758.86328125
+167.0915375 38358.5625
+169.0596924 40009.3203125
+175.1177063 282761.09375
+176.1204681 20707.35546875
+177.0760803 68404.578125
+178.0598907 336735.125
+178.0782471 18395.75
+178.3490753 74696.4765625
+179.0632782 35073.15234375
+179.0914612 29941.2578125
+183.0762787 26768.0625
+186.0862427 98389.4375
+190.4463806 13946.1875
+194.1027374 33612.3046875
+195.0863342 3864301.5
+195.128418 18918.341796875
+196.0892487 378183.1875
+197.0924072 24833.263671875
+200.1012726 30883.646484375
+201.0849152 16715.03515625
+206.0908051 149495.140625
+212.100296 16552.76171875
+215.0907745 18470.15625
+218.1022034 63186.80078125
+232.1177063 16939.234375
+234.0943146 14086.3017578125
+240.0958862 20034.171875
+243.085434 29105.267578125
+244.1158295 14202.4814453125
+246.0968018 565895.875
+246.1211548 9150.484375
+247.0999603 61028.4765625
+253.4433594 13369.47265625
+257.1223755 109974.828125
+260.1122742 103651.3125
+261.118103 20089.087890625
+270.0965271 121513.03125
+278.1487427 23424.431640625
+283.1434937 49056.30078125
+284.1183472 19515.2265625
+287.1233215 114852.0078125
+288.1072083 1474321.5
+289.1100159 201422.140625
+290.1116638 19557.484375
+295.1503296 17814.044921875
+303.1423035 22156.314453125
+305.133728 2890403.5
+306.1191711 990491.5625
+307.12146 172158.640625
+311.1352234 38137.9609375
+312.1163635 38155.28125
+318.1430969 16358.697265625
+321.153717 320506.875
+322.1567993 53590.9765625
+323.1442871 1001810.125
+324.146759 191203.796875
+325.1520691 23609.720703125
+328.1603088 15326.6923828125
+329.1435242 61663.03515625
+338.1417542 43792.21875
+338.1804504 389902.96875
+338.6417542 14133.8984375
+339.1824036 72222.5859375
+347.1488342 29122.923828125
+347.6485901 20578.7734375
+349.1588745 20364.23828125
+351.1292725 14529.306640625
+359.143158 64318.65234375
+366.1860962 121187.5390625
+367.1865234 20313.783203125
+369.1369324 29457.984375
+376.170166 98175.1015625
+377.1562805 90771.8359375
+386.1645203 27806.36328125
+394.180542 652770.125
+394.2401428 32254.365234375
+395.1824341 125228.40625
+396.1830139 14770.6240234375
+399.7438354 12685.912109375
+412.1837158 30952.46484375
+413.1662903 17663.28515625
+420.6789246 20232.283203125
+434.1730957 15933.849609375
+460.1882935 24129.00390625
+468.218689 55462.80078125
+469.2170715 16345.8515625
+477.2185364 15525.486328125
+483.2263184 20102.46484375
+483.7174377 17218.869140625
+485.247345 182067.765625
+486.2496033 51813.765625
+488.1815491 51079.703125
+492.2290039 140080.671875
+492.7290955 104570.90625
+493.231842 36588.16015625
+495.2262878 59954.21484375
+503.717865 23878.865234375
+505.2117004 62263.140625
+506.2010803 39528.8046875
+512.2252808 45984.71484375
+512.725769 24837.189453125
+520.7437134 21658.724609375
+521.2376099 33025.19140625
+521.7340698 27134.52734375
+523.2213135 466359.25
+524.2231445 110820.25
+525.2255859 19807.34765625
+555.2521362 36111.4453125
+558.7406616 23093.396484375
+571.7488403 75450.5
+572.2739258 309620.84375
+572.7532349 21147.0234375
+573.2781982 85568.46875
+576.2589111 43376.10546875
+576.7643433 32180.49609375
+577.2645264 23019.306640625
+580.2619019 68438.765625
+580.7542725 2349076.25
+581.2554932 1495041.875
+581.3656006 16901.341796875
+581.7572021 588881.8125
+582.2573853 112229.2890625
+589.2680664 69244.4296875
+589.7701416 19664.076171875
+598.2716064 42040.203125
+598.7768555 18605.640625
+599.2774658 36220.43359375
+599.7758789 67020.484375
+606.2559814 41770.82421875
+607.2573853 16289.041015625
+624.2689819 64936.54296875
+625.2687378 17762.234375
+673.3233032 398182.0625
+674.3249512 138097.40625
+675.3268433 16712.701171875
+711.2988892 19599.9765625
+802.3633423 79167.3046875
+803.3641968 42040.3984375
+813.0167236 15046.388671875
+873.399231 98151.8046875
+874.4074097 37029.53125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.464.464.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=464"
+RTINSECONDS=50.52659253
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13440704 14550.09765625
+64.52620697 50151.83203125
+64.53046417 31726.837890625
+64.58192444 33445.3359375
+64.58605957 25521.021484375
+64.63825989 12275.6748046875
+87.74850464 12212.5625
+94.39026642 10749.34765625
+98.86037445 10329.3134765625
+112.9269791 9618.73828125
+119.421608 11166.056640625
+149.5706329 41807.2890625
+167.0912933 39370.42578125
+169.0597534 36593.14453125
+175.1178894 283543.375
+176.1215668 16162.5478515625
+177.075882 66830.4375
+178.0600586 300955.375
+178.0779877 14394.0
+178.3321838 23259.88671875
+178.3515625 51800.10546875
+179.0636444 24548.318359375
+179.09198 17049.259765625
+182.0924072 10662.8232421875
+183.0751648 21288.53125
+186.0860443 101446.046875
+190.0622406 12673.3623046875
+194.1029663 22965.13671875
+194.2917328 10070.10546875
+195.086441 3435667.0
+196.0894012 357658.6875
+197.0921478 19758.16015625
+200.1024017 25471.1875
+201.0862885 11931.0888671875
+206.0911255 129135.21875
+207.0934448 17151.111328125
+215.0909882 14851.1123046875
+218.102478 66297.5390625
+222.0856628 15563.271484375
+234.0973358 12834.5546875
+239.0873413 14076.84375
+239.1131897 11092.1484375
+240.0965424 29118.3671875
+243.0836029 11973.1953125
+244.1173401 13510.369140625
+244.3865204 10544.2314453125
+246.0970306 544549.0
+246.8403625 11135.5927734375
+247.099823 64437.78515625
+257.1223755 80570.03125
+260.112854 108258.9765625
+261.1187439 15765.4609375
+267.1098633 15319.05078125
+270.0971985 107325.71875
+277.13797 18152.5546875
+278.1505127 20318.1953125
+283.1430359 32551.76953125
+287.1230774 125853.3515625
+288.1075134 1377840.625
+289.1100769 186023.140625
+290.1122131 19878.86328125
+294.1173401 17385.642578125
+295.1490173 30022.353515625
+303.1427002 21911.142578125
+304.1300049 12126.359375
+305.1340942 2723712.75
+306.1193848 1003708.25
+307.1220398 151762.46875
+308.1236877 24043.12890625
+311.1330566 40742.05078125
+312.1167908 26290.693359375
+318.143219 13886.828125
+321.1542053 305789.59375
+322.1565247 58938.55859375
+323.0982666 12033.0556640625
+323.1446533 1007300.8125
+324.1469421 142072.203125
+325.1534424 15754.6728515625
+329.1437073 48153.12890625
+338.1425476 43422.00390625
+338.1808167 331449.875
+338.6473694 12030.419921875
+339.1831665 60553.234375
+341.1464233 16117.32421875
+347.151825 23668.14453125
+349.1588135 15561.1982421875
+358.1672668 15134.5537109375
+359.1448669 52599.1796875
+366.1871643 114635.7109375
+367.1887207 21093.287109375
+369.1366577 24181.673828125
+376.171051 111009.6484375
+377.1568298 66427.2578125
+378.1546326 16078.4443359375
+386.1662598 21292.927734375
+389.1604614 14128.8017578125
+394.1812134 597140.625
+394.2400818 23462.564453125
+395.1829224 125524.578125
+396.1786194 19484.33984375
+412.1895142 39054.859375
+420.6819153 15852.8330078125
+450.2054138 16081.2392578125
+460.1941528 21069.416015625
+468.2229614 42232.3359375
+469.2203979 13660.1640625
+477.2165222 20031.376953125
+478.2040405 12747.744140625
+480.1876221 12384.181640625
+485.2477417 170620.3125
+486.2518921 50917.67578125
+488.188324 36980.8828125
+492.2304993 107243.34375
+492.7322083 91708.2265625
+493.230896 21884.021484375
+495.2293701 43908.89453125
+496.2254639 14603.4365234375
+503.2262878 15793.203125
+504.2125244 14570.4326171875
+505.2124634 43459.734375
+506.2061768 36988.23828125
+512.2296143 44570.53515625
+512.7249146 22492.4765625
+520.7365723 18307.8828125
+521.2353516 20821.197265625
+521.7341309 19389.15625
+523.2226562 364910.75
+524.2247314 113408.5546875
+525.2243042 20297.134765625
+555.253418 19345.271484375
+571.7506714 61123.58203125
+572.276123 251216.484375
+572.7526855 36408.09375
+573.2813721 79850.890625
+576.2620239 37003.64453125
+576.7667847 19341.375
+577.2612915 22244.958984375
+580.2625122 56551.88671875
+580.7557373 1842377.125
+581.2568359 1240124.5
+581.7585449 522062.8125
+582.2592773 82504.546875
+589.2679443 31584.224609375
+589.7633057 19831.72265625
+598.2748413 50955.58984375
+598.7763672 33395.94921875
+599.2759399 31710.216796875
+599.7767334 60897.14453125
+606.2546387 25331.34765625
+624.2696533 33842.77734375
+655.3147583 16216.232421875
+656.3028564 15183.5732421875
+673.3250732 358280.40625
+674.3275146 150151.65625
+675.3273315 20622.595703125
+693.2866821 16518.47265625
+711.3027344 16303.2734375
+802.3657837 95221.65625
+803.3728027 34294.22265625
+873.4017334 79162.3046875
+874.4041748 35446.2421875
+1001.474548 20063.974609375
+1080.216797 14540.986328125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.465.465.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=465"
+RTINSECONDS=50.63932855
+PEPMASS=598.27001953125
+CHARGE=2+
+54.42324066 14749.83203125
+55.6560173 14824.4609375
+58.13415146 17596.626953125
+64.52630615 65213.16796875
+64.53055573 39937.546875
+64.58216095 28412.9140625
+64.58610535 31090.611328125
+74.81138611 14399.4375
+97.29560089 12968.7060546875
+105.318428 17866.431640625
+149.5735626 53028.91015625
+167.0923309 34842.05078125
+169.0598602 26020.7421875
+175.1177063 294807.53125
+177.0755005 61923.015625
+178.059906 319357.1875
+178.3448944 108190.6875
+179.0631409 19532.859375
+179.0911255 17381.107421875
+183.0749817 33556.97265625
+186.0860443 104939.5078125
+194.1044617 33782.1015625
+195.0862427 4268029.5
+195.1279907 36896.953125
+196.0890503 411926.21875
+197.0917053 31240.962890625
+200.1008148 23245.267578125
+206.0908661 184787.453125
+217.1278992 20450.681640625
+218.102005 57662.890625
+232.1186981 15768.6005859375
+240.0957336 21007.474609375
+243.0859375 27320.3671875
+246.0966644 620514.75
+247.0998993 66122.1796875
+257.1222229 94798.671875
+258.1256714 20832.345703125
+260.1122437 119130.6328125
+267.1098022 15669.37109375
+270.0964661 132528.078125
+271.0982361 17987.9609375
+275.2301025 18169.095703125
+278.1478577 27691.03125
+283.1430969 37636.765625
+287.1230774 149529.578125
+288.1070557 1540232.75
+289.1100464 241846.65625
+290.1123657 30167.86328125
+295.1494141 23453.16015625
+303.1450195 20420.677734375
+305.1335144 3182857.25
+306.1186523 1154771.0
+307.1214905 186944.234375
+311.1357422 40222.0859375
+312.1159973 24257.091796875
+321.1534729 357241.0625
+322.1567383 63305.35546875
+323.0992126 16103.23046875
+323.144043 1142855.875
+323.1890259 34900.5078125
+324.1461182 187168.625
+324.7669067 16337.9169921875
+325.149292 22553.498046875
+329.1420898 46423.49609375
+336.1459045 16886.630859375
+338.142395 42898.35546875
+338.1801147 413209.21875
+338.6400757 25227.689453125
+339.1836853 68894.609375
+349.1581116 23098.943359375
+351.1327209 23993.61328125
+357.9098816 17835.181640625
+359.1441956 55015.15625
+366.1844788 130581.890625
+367.1897583 26939.65625
+369.1385803 31349.57421875
+376.1698608 92991.859375
+377.1557922 83860.0390625
+381.2960205 18656.78515625
+386.1629639 37896.08203125
+394.1804199 746488.5625
+394.2407837 26959.671875
+395.1822205 143129.375
+395.9015503 17735.48046875
+433.4630127 17361.6796875
+468.2209473 43212.6640625
+485.2468872 208975.828125
+486.2490845 71385.796875
+488.184906 49974.14453125
+492.2289124 178823.984375
+492.7294617 122059.125
+493.2288818 32649.2109375
+495.2259216 44948.78515625
+503.7179871 20958.267578125
+504.2124939 19871.193359375
+505.2094727 50177.8515625
+506.2018127 50930.9453125
+512.2248535 36377.109375
+512.7236938 40671.171875
+521.2312012 37174.08984375
+521.7307739 19371.541015625
+523.2214355 460541.1875
+524.2227783 128636.3984375
+525.2285767 26728.19921875
+529.7468262 26720.30859375
+541.2370605 17268.083984375
+558.744751 23976.873046875
+571.7475586 74313.5703125
+572.2734375 293525.59375
+573.2784424 93797.3203125
+574.2719116 32351.4140625
+576.2607422 54044.7578125
+576.7593994 31137.427734375
+577.2632446 30759.427734375
+580.2624512 108138.484375
+580.7539673 2453630.25
+581.255127 1530869.875
+581.3411255 34080.3515625
+581.7567139 631033.125
+582.2583618 109787.8359375
+589.2662354 111256.828125
+589.765564 41913.421875
+590.2624512 27273.859375
+598.2712402 54548.7734375
+598.7772217 22459.845703125
+599.776062 48451.37109375
+606.2560425 45206.57421875
+624.265625 51174.69140625
+673.3227539 411597.15625
+674.3242798 138385.234375
+675.3295898 37028.24609375
+802.3636475 94522.6640625
+803.3656006 40840.73046875
+873.4016113 95409.3671875
+874.4039917 63407.8515625
+953.8497314 18730.88671875
+1001.452332 30063.083984375
+1058.475098 21340.732421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.466.466.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=466"
+RTINSECONDS=50.7466756
+PEPMASS=598.27001953125
+CHARGE=2+
+51.44098663 12208.25390625
+56.50543976 11989.5693359375
+58.13429642 17386.318359375
+58.13712311 12364.50390625
+64.52612305 48381.32421875
+64.53044128 40764.5546875
+64.58197784 40347.109375
+64.58612061 29180.078125
+64.63807678 20482.986328125
+64.64128113 16284.0244140625
+75.09185791 14281.3681640625
+102.8785324 13533.5673828125
+149.5695953 46587.1875
+167.0914001 42238.984375
+169.0588989 29654.89453125
+175.1020203 23364.326171875
+175.1175995 280215.0625
+176.1203461 18490.615234375
+177.0758667 60925.06640625
+178.043869 23862.34765625
+178.0597076 324866.09375
+178.3450928 91211.890625
+179.0631714 27555.17578125
+182.0915833 18889.6015625
+183.0749512 23737.658203125
+186.0858917 105870.359375
+194.1023102 29056.962890625
+195.0861511 3937457.25
+196.088974 351148.1875
+197.0923767 30287.302734375
+200.1016083 14208.345703125
+205.0588684 16360.046875
+206.0907745 124090.4296875
+218.1019135 51591.7265625
+222.8578491 13613.6826171875
+239.1126404 17166.1640625
+240.0960541 28586.841796875
+243.0864868 22133.837890625
+246.0966949 594875.875
+247.0988617 78223.109375
+248.1107025 13010.0126953125
+249.0969543 27055.357421875
+257.1225891 99702.90625
+258.124939 20658.474609375
+260.1121521 112798.6953125
+270.0963745 113017.265625
+271.0995178 15969.23828125
+278.1482239 23452.751953125
+283.1434326 44914.33984375
+287.1226196 149788.859375
+288.1069336 1448942.5
+289.1096497 236821.140625
+295.1489868 25806.953125
+303.1427002 27008.08984375
+304.1271057 20593.947265625
+305.1333618 2993448.0
+306.118866 1014713.4375
+307.1208496 163837.0625
+311.1334839 34742.140625
+312.1157837 30432.44921875
+321.1534119 344686.5625
+322.1565857 61910.60546875
+323.0984192 31587.1796875
+323.1438599 998790.0625
+324.1459351 144587.921875
+325.1514893 17844.283203125
+328.1600342 20845.4921875
+329.1429749 40215.4765625
+338.1409607 53671.03125
+338.1801453 353999.53125
+338.6443787 21927.896484375
+339.1816711 63037.25
+347.1479492 18224.06640625
+349.1602478 25950.607421875
+351.129303 22300.548828125
+358.1633606 16005.2802734375
+359.1442261 68409.984375
+366.1849365 102059.5625
+367.1889648 25600.9140625
+369.1382141 36166.8125
+376.1697998 132258.828125
+377.1547241 60286.2421875
+378.1562195 18281.59375
+386.1634827 33848.04296875
+387.1654663 16393.728515625
+394.1800232 664995.8125
+394.2400818 23899.935546875
+395.1824951 136754.578125
+396.1885071 17215.912109375
+412.1879272 22390.54296875
+460.1856689 18291.26171875
+468.2192078 44114.53515625
+477.2192078 22685.013671875
+483.225647 21678.333984375
+483.728302 18583.966796875
+485.2464905 158726.859375
+486.2471008 45944.9140625
+488.1868286 55130.453125
+492.2285767 125256.140625
+492.7304993 67271.9453125
+493.2306824 20408.814453125
+495.2260132 57347.703125
+503.2207336 17061.642578125
+503.7183838 18593.080078125
+504.2141724 14645.6806640625
+505.2117615 56994.40625
+506.199646 53839.390625
+512.2276611 56198.5234375
+512.729126 26226.931640625
+521.2296143 24847.1640625
+523.2207642 408737.28125
+524.2236938 99779.515625
+525.2417603 26479.291015625
+554.2662354 17993.76171875
+558.741394 19191.9375
+571.7485962 44946.01171875
+572.2727661 250440.65625
+572.7505493 36530.1328125
+573.2786865 85964.0234375
+574.2871704 19070.1015625
+576.2602539 38190.8125
+576.7608643 26193.607421875
+580.2581177 69984.0859375
+580.7539062 2137105.5
+580.8395996 26014.068359375
+581.2553711 1491685.875
+581.7567139 600466.5
+582.2574463 118441.4140625
+589.2678223 69267.1640625
+589.7582397 20932.037109375
+598.2713013 66057.9375
+598.7709961 45528.1015625
+599.2759399 29129.63671875
+599.7764893 74844.8046875
+606.2589111 28279.80859375
+624.2686768 46351.55859375
+673.3223267 392955.0625
+674.3259888 131416.3125
+675.3274536 22562.701171875
+802.3630981 86316.359375
+803.3638916 45710.125
+873.3978882 93056.5234375
+874.399353 39707.55859375
+1001.461731 25219.892578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.467.467.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=467"
+RTINSECONDS=50.85643515
+PEPMASS=598.27001953125
+CHARGE=2+
+53.9146347 11988.978515625
+64.52622223 54933.36328125
+64.53046417 37084.7578125
+64.5819931 41764.4453125
+64.5861969 26396.419921875
+64.63799286 19382.353515625
+75.81691742 11167.77734375
+76.50743103 11434.4951171875
+122.9774323 12885.5625
+149.5669403 43355.4296875
+167.091629 36101.70703125
+169.0592804 32878.0390625
+175.1020966 21796.501953125
+175.1177216 298101.8125
+176.1212616 12125.255859375
+177.0758362 60552.90625
+178.0598297 336135.71875
+178.0777588 23772.869140625
+178.3414459 78631.828125
+179.0629578 36708.015625
+179.0923309 17651.9921875
+182.0912323 20017.248046875
+183.0751343 18237.767578125
+186.0857697 107589.5546875
+194.1024933 43534.40625
+195.0862427 3751328.75
+195.1279449 20422.35546875
+196.089035 387436.03125
+197.0921326 27409.8046875
+200.1020966 24441.51953125
+201.0869446 16209.080078125
+205.0605316 13998.646484375
+206.0910187 132097.1875
+215.0902405 15603.3583984375
+217.1280975 12683.333984375
+218.1016846 45481.453125
+234.0973663 12224.6923828125
+240.0957336 25612.658203125
+243.0865326 17804.451171875
+246.096756 639140.0
+247.0997314 76275.75
+257.1226196 92503.8984375
+258.123291 17566.9921875
+260.1122131 111302.1796875
+270.0968323 124823.2890625
+271.1013489 19853.11328125
+278.1486206 26334.123046875
+283.1428528 39029.8671875
+284.1216431 16954.822265625
+287.123291 131508.4375
+288.1070557 1478953.0
+289.1096191 218215.578125
+290.1131592 14360.607421875
+294.117157 15259.890625
+303.1422119 27466.552734375
+305.1335144 2939464.25
+306.1188354 1028727.3125
+307.120697 182345.890625
+311.1338501 48898.87109375
+312.1156006 17852.595703125
+321.1535645 308733.71875
+322.1560364 52415.58203125
+323.0980835 20548.900390625
+323.1439514 1041917.375
+324.1464539 161491.140625
+329.144165 38648.58203125
+331.1499634 22195.421875
+338.14151 51862.3046875
+338.1802673 377126.8125
+338.6424866 19948.33984375
+339.1834412 86538.265625
+347.1500854 15513.8388671875
+349.1596375 21217.357421875
+359.1430359 44063.28515625
+366.1858521 134094.6875
+367.1888428 17103.16015625
+369.1387634 24757.771484375
+376.1695251 126686.4296875
+377.1578979 82754.0
+386.1639099 35577.94140625
+394.1202087 20055.224609375
+394.1802368 664551.1875
+394.2398071 17172.984375
+395.1817017 134793.9375
+396.1873169 18467.412109375
+412.1906433 25891.470703125
+452.1814575 16929.908203125
+468.2210083 43371.62890625
+483.7181702 16082.8056640625
+485.2467041 215142.890625
+486.2497253 63155.41015625
+488.1851501 42654.37890625
+492.2283325 133385.046875
+492.7297363 87698.7265625
+493.2286377 38261.72265625
+495.2259216 66884.1015625
+503.219635 15908.6640625
+505.2102051 48185.3984375
+506.201416 65247.859375
+512.2270508 39860.58203125
+512.7270508 21496.720703125
+521.2323608 24189.361328125
+523.2210693 389767.46875
+524.2233276 126059.140625
+525.2284546 29784.765625
+555.2491455 17067.84375
+558.7419434 26121.689453125
+571.7468262 60828.328125
+572.2736816 298943.40625
+573.2774048 78335.5234375
+574.274353 19795.833984375
+576.2606812 33020.2265625
+576.7616577 16106.875
+577.260376 19622.34765625
+580.2632446 55539.6484375
+580.7540894 1947066.75
+581.2553711 1407198.375
+581.3371582 20794.8125
+581.3670654 21217.74609375
+581.7563477 521887.96875
+582.2572632 98621.828125
+588.2488403 13789.658203125
+589.2664795 30359.806640625
+598.2720947 43087.52734375
+598.7794189 18389.294921875
+599.2735596 23253.640625
+599.7763062 74811.859375
+606.2530518 25525.515625
+609.6928101 16867.390625
+624.2715454 28122.462890625
+625.2625122 21077.76171875
+673.3223877 358783.0
+674.3252563 131320.125
+711.2959595 17505.009765625
+802.3638916 106762.0390625
+803.3636475 51555.734375
+873.3977661 77935.25
+874.399292 41056.59765625
+954.2144165 14995.3603515625
+1001.452148 20813.3125
+1002.463989 21984.84375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.468.468.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=468"
+RTINSECONDS=50.96741123
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52631378 64389.86328125
+64.53063965 46414.16015625
+64.58202362 41955.72265625
+64.58618927 25974.72265625
+64.63793182 17034.369140625
+114.9867249 14278.0830078125
+137.8942871 13407.005859375
+149.5732117 47314.7109375
+167.0917816 47766.62109375
+169.0595093 31534.58984375
+175.1178436 244902.03125
+176.120285 29831.8828125
+177.075882 45834.37109375
+178.0600128 332256.46875
+178.0770264 13125.376953125
+178.3451538 88633.796875
+179.0636444 23997.28515625
+179.0918121 16688.623046875
+183.0749512 18659.763671875
+186.0860596 114356.125
+190.0594635 17007.576171875
+194.1026917 33735.57421875
+195.0863647 4074241.75
+196.0892944 399949.40625
+196.984726 13168.4345703125
+197.0908051 15947.3447265625
+200.1010742 24381.236328125
+201.0852509 15654.27734375
+206.0911713 177063.171875
+207.0945282 16914.744140625
+209.1025543 16628.07421875
+215.0900879 13922.888671875
+218.1021729 45268.78515625
+222.0857697 14986.875
+233.124649 18371.349609375
+240.0948486 19729.708984375
+246.0968628 595189.375
+247.0997009 70258.6796875
+249.0969543 17683.4296875
+257.1226501 103041.09375
+258.122467 20402.78125
+260.1127319 112402.5546875
+270.0968933 118135.7890625
+278.1175842 19308.7421875
+278.1491089 24478.689453125
+283.14151 32134.71875
+287.1231995 134730.78125
+288.1072083 1544746.875
+289.1100464 193554.015625
+290.112915 21451.298828125
+295.1486816 25506.64453125
+303.141571 18935.005859375
+305.1337891 3043462.0
+306.0591125 20254.7890625
+306.1190796 1050228.5
+307.1207886 164234.296875
+308.1203308 29279.267578125
+311.1351318 51784.31640625
+312.1153564 30243.1953125
+320.132843 18926.69140625
+321.153717 301011.90625
+322.1565247 48123.66796875
+323.1441956 1074386.625
+323.2097778 19086.236328125
+324.1472168 172610.984375
+329.1443481 33148.26171875
+338.1420593 40679.41796875
+338.1806946 374717.09375
+339.1830139 77554.484375
+347.1493835 38935.34765625
+349.1592102 25728.8125
+359.1446228 60710.265625
+366.1854553 109918.421875
+367.1862488 18179.873046875
+369.1383362 41908.9765625
+376.170105 100032.8671875
+377.1565247 70516.171875
+386.1647644 30350.396484375
+394.1807251 659957.125
+395.1829834 141842.296875
+396.1847839 23619.2265625
+412.1878357 27914.197265625
+468.2189636 47172.18359375
+469.2319946 16581.787109375
+478.2068176 26551.80078125
+484.2200623 20774.173828125
+485.2470398 233231.734375
+486.2510071 43787.984375
+488.1871948 45597.19921875
+492.2290344 169810.5
+492.730072 90572.0
+493.2314453 16772.59375
+495.2272339 60001.52734375
+496.2281494 19337.931640625
+505.2112732 58699.50390625
+506.2102356 43978.56640625
+512.2252197 47552.4140625
+512.7280273 21648.599609375
+521.2383423 35402.47265625
+521.7312622 22268.1171875
+523.1351318 23084.140625
+523.2214966 418522.65625
+524.2245483 123966.3515625
+525.2272339 23290.654296875
+541.2330322 14181.3525390625
+555.2583618 18342.4296875
+567.2581177 24481.509765625
+571.7496948 55145.58203125
+572.2739258 293757.34375
+573.2806396 98128.75
+574.2836914 23549.142578125
+576.2598877 59277.4375
+576.7680664 34898.828125
+577.2618408 35361.6015625
+580.2606201 86507.03125
+580.7543335 2296378.25
+581.2557373 1633466.0
+581.7573853 587178.0625
+582.258606 126596.90625
+589.2671509 63649.11328125
+589.765564 39058.0390625
+598.2727661 48576.9765625
+598.7733154 37263.625
+599.2758789 32834.828125
+599.7758179 80094.90625
+606.2585449 27458.001953125
+624.2668457 54864.421875
+625.2680664 28412.46484375
+655.31427 22753.9453125
+673.3236694 398401.65625
+674.3269653 169130.171875
+675.3259277 37604.8046875
+693.2941895 16695.298828125
+711.2984619 17238.640625
+802.3649902 92669.625
+803.366272 40449.296875
+873.4006958 106559.7421875
+874.4005737 44479.046875
+918.8311768 14610.890625
+1001.465027 28467.76171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.469.469.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=469"
+RTINSECONDS=51.07676549
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 57105.78515625
+64.53050232 43371.578125
+64.58220673 30057.533203125
+64.58614349 32702.302734375
+64.63801575 22265.666015625
+64.64136505 15024.0615234375
+86.55998993 16802.9609375
+91.46268463 13662.533203125
+93.36255646 13963.576171875
+100.0262756 12416.3876953125
+101.3704681 15836.86328125
+121.1218948 13010.7578125
+130.787384 13705.6943359375
+149.5702515 55095.8828125
+166.8498383 13767.09375
+167.0913696 26999.744140625
+169.059967 23460.98046875
+175.1177521 289758.96875
+176.1212769 19339.705078125
+177.0760193 83363.7421875
+178.0599518 286612.125
+178.3454895 97793.84375
+179.0647583 30363.02734375
+179.0920868 19676.15234375
+181.3063202 14649.060546875
+183.0752716 17439.951171875
+186.0859833 110320.359375
+194.1028137 37185.98828125
+195.0863342 4088941.5
+196.0891418 399799.9375
+197.0917206 32359.62109375
+200.1019135 21852.693359375
+201.0855255 21845.087890625
+206.0909424 139885.28125
+215.0916443 17859.818359375
+217.1291046 19467.265625
+218.1021423 55867.703125
+222.0862885 15438.140625
+233.1274414 14713.052734375
+240.0960388 21633.7421875
+242.6361237 15493.5703125
+243.0873718 16518.390625
+246.0968475 570500.625
+246.1255341 29263.31640625
+247.0996094 54030.39453125
+257.1224365 83863.5703125
+260.1122131 102106.0390625
+261.1163025 17100.833984375
+270.0968323 132152.3125
+277.1369324 16977.119140625
+278.1502686 31865.650390625
+283.14328 40212.33203125
+287.123291 130795.6484375
+288.1072998 1455715.625
+289.1100769 228204.78125
+290.1120911 23313.880859375
+294.117157 22711.5078125
+295.1497803 27043.076171875
+303.1407776 26762.02734375
+304.1251221 24396.888671875
+305.1337585 2998761.75
+306.0594788 19564.8046875
+306.1188354 1095646.375
+307.1213074 196934.296875
+308.1210938 22601.615234375
+311.1345215 56163.73046875
+312.1169434 49748.3359375
+321.153717 303718.8125
+322.1573181 62492.6640625
+323.0990601 16183.4228515625
+323.1441956 1067396.125
+324.1467896 180228.375
+325.1514282 20151.40625
+329.144165 47324.4921875
+338.1422119 40430.97265625
+338.1802979 399956.8125
+338.6443481 28447.4375
+339.1821594 87209.96875
+347.1506958 25607.28125
+349.1560974 24667.423828125
+359.1442871 59906.02734375
+366.18573 111823.0546875
+367.1895447 22754.71484375
+369.1393433 34988.671875
+376.1707458 109958.3046875
+377.1545715 77327.5546875
+386.1664429 24489.46484375
+394.180603 729998.75
+395.1827087 139092.953125
+412.1892395 21082.33984375
+460.1911011 17876.42578125
+468.2201843 58324.65234375
+477.2153931 20067.314453125
+483.7215881 33143.37890625
+485.246521 167501.9375
+486.2490845 58793.3203125
+488.186554 45453.9765625
+492.2289429 133632.78125
+492.7299805 83320.8203125
+495.2270813 58739.9140625
+496.2266235 18376.76953125
+503.7176514 22930.443359375
+505.2103882 53303.87890625
+506.2029724 54328.546875
+512.2260132 31817.88671875
+521.2316284 28425.005859375
+521.7380981 17840.591796875
+523.1348877 25665.8984375
+523.2216187 433709.75
+524.2241211 141005.59375
+525.2296753 23184.294921875
+555.2550049 18100.875
+567.7596436 29720.490234375
+571.748291 92348.09375
+572.2745361 302404.0625
+573.2815552 94641.8515625
+576.2597656 49148.92578125
+576.7615967 28343.685546875
+577.2715454 18142.599609375
+580.2625122 108810.359375
+580.7545166 2273548.0
+581.2557983 1533204.875
+581.7572632 592857.625
+582.2584839 124541.6796875
+589.2685547 80719.6875
+589.7695923 47813.5546875
+598.2730103 57233.76171875
+598.7738647 50727.9296875
+599.7750854 56460.5078125
+606.2634277 33008.28125
+624.2662964 57171.375
+673.3230591 421339.21875
+674.3267822 153122.90625
+675.3300781 36346.59375
+693.2960815 17810.185546875
+711.2953491 16229.7177734375
+802.3638916 107484.09375
+803.369873 47983.01171875
+804.3555908 18521.771484375
+873.3966675 85687.234375
+874.4024658 55124.35546875
+875.3952637 19842.7890625
+1001.452148 33960.50390625
+1002.450134 24004.02734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.470.470.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=470"
+RTINSECONDS=51.18554707
+PEPMASS=598.27001953125
+CHARGE=2+
+53.91510773 15412.2578125
+64.52625275 61649.05859375
+64.53069305 53765.484375
+64.58200073 41704.5703125
+64.58620453 27815.669921875
+67.02370453 13400.962890625
+78.05492401 12261.59765625
+115.9949493 14258.595703125
+122.2791061 12346.1240234375
+149.5669708 46659.2890625
+167.0919037 44952.32421875
+169.0602264 21011.357421875
+175.1178894 292622.78125
+176.1206055 19965.71484375
+177.0761871 54301.9609375
+178.0600433 335411.28125
+178.0733032 9924.3876953125
+178.3491669 88999.4609375
+179.0635529 24963.017578125
+179.0923004 25044.302734375
+182.0915985 13884.751953125
+183.0752258 31027.75390625
+186.0858307 93022.0859375
+194.1023254 17448.8515625
+195.086441 4112400.25
+195.1280823 20196.443359375
+196.0892792 422309.34375
+197.0910492 39044.8125
+200.1021576 23201.79296875
+201.0856628 16573.32421875
+206.091156 128170.2421875
+212.1121979 17609.548828125
+215.0908966 23839.3671875
+218.1026459 47286.80078125
+222.0858459 24707.248046875
+234.0982513 30066.439453125
+243.0842285 24066.96484375
+246.0970154 586755.9375
+247.0993805 86921.8671875
+249.0957489 14254.78125
+257.122406 99040.28125
+260.1126099 82680.2109375
+261.1168213 17241.533203125
+270.0964661 126177.6640625
+278.1484985 17664.072265625
+283.1443481 29662.828125
+287.1236877 121718.78125
+288.1074829 1568527.875
+289.1105042 234134.890625
+290.1124878 19531.2265625
+294.1169434 18356.056640625
+303.1420593 24154.111328125
+305.1340027 2958024.75
+306.1192627 1069609.25
+307.1217651 184946.859375
+308.1218262 20485.326171875
+311.1348267 51468.66796875
+312.1193237 40123.57421875
+318.1410828 29397.076171875
+321.1542358 301373.28125
+322.1555176 54920.25
+323.1445618 1055025.75
+324.1470337 167488.921875
+325.1504211 20528.0625
+329.1444092 50070.59765625
+338.1420593 60234.5546875
+338.1807861 356811.375
+339.1837769 58116.88671875
+346.1682434 15533.619140625
+347.1477966 18210.6640625
+347.3888855 13774.455078125
+349.1569519 21860.962890625
+351.1326294 19062.66015625
+359.1443176 54328.59375
+366.1869202 104654.7265625
+367.1898499 21291.1015625
+369.1378479 21788.8203125
+376.1707153 113400.84375
+377.1555481 82378.984375
+386.1649475 28542.294921875
+394.1809692 635291.625
+395.1826477 159884.59375
+412.1887817 30459.515625
+413.1637268 16500.736328125
+420.6807251 32117.96484375
+460.1916504 22559.203125
+468.2221375 38747.55078125
+469.2181091 18569.1640625
+483.714386 24013.96484375
+485.2472839 198360.1875
+486.2506409 64136.69140625
+488.1850891 34368.2421875
+492.2290344 160298.734375
+492.7313538 108993.7578125
+493.2305908 28156.380859375
+495.2254333 43900.7421875
+505.2131653 38294.3515625
+506.2005005 57707.85546875
+512.2250366 54102.3984375
+512.7261963 21391.02734375
+521.2363281 25941.755859375
+523.2224121 434052.09375
+524.2250977 109361.890625
+525.2300415 19853.482421875
+530.2446899 17645.8359375
+558.7457275 21274.083984375
+571.7490234 93140.546875
+572.2756348 271889.71875
+572.7613525 27928.107421875
+573.2792358 73795.109375
+574.2761841 26053.96875
+576.262146 38962.703125
+576.7625732 38904.1953125
+577.2572632 25916.373046875
+580.2625732 95874.5234375
+580.755249 2352426.75
+581.2567139 1598904.125
+581.3656616 24902.673828125
+581.7584229 572963.0625
+582.2590332 109934.0078125
+589.2665405 94754.25
+589.7654419 42488.5703125
+598.274292 47061.02734375
+598.7722778 18301.4609375
+599.777832 67336.8359375
+606.2498169 32615.138671875
+624.2680054 37723.33984375
+655.3153687 27288.572265625
+673.3252563 419764.15625
+674.3279419 167132.125
+675.3269043 37030.17578125
+711.2985229 21204.705078125
+802.3665771 86711.7890625
+803.3646851 40601.40234375
+873.401123 104662.0625
+874.4078369 61651.76171875
+1001.457703 20305.083984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.471.471.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=471"
+RTINSECONDS=51.29469522
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13708496 10947.294921875
+63.58501816 11478.5595703125
+64.52626038 54823.85546875
+64.53066254 37753.3515625
+64.58202362 36377.0390625
+64.58613586 24049.234375
+64.63819885 18527.6640625
+64.64142609 14423.19921875
+76.28107452 14815.0263671875
+82.0542984 16529.265625
+149.5658569 40801.50390625
+152.0336456 11589.5048828125
+167.0922546 36455.16015625
+169.0595856 27825.3046875
+175.1179047 277308.25
+176.1215515 13208.466796875
+177.0758362 45738.50390625
+178.0599976 310501.28125
+178.0779877 13828.3974609375
+178.3384094 52213.390625
+178.3572235 22224.970703125
+179.0635986 22975.80078125
+182.0906982 15721.2392578125
+183.0755463 20586.37890625
+186.0860291 100807.0390625
+190.0589752 14899.9794921875
+194.1027832 27531.177734375
+195.0864258 3600805.75
+196.0891418 340702.375
+197.0926361 19010.30078125
+200.1013947 32986.10546875
+201.0844421 16061.9775390625
+205.0588531 14205.6279296875
+206.0911102 168133.9375
+207.0928497 17878.208984375
+207.1128998 15422.1796875
+212.1134491 13924.1220703125
+215.0914307 14903.7548828125
+218.1029053 44429.5625
+222.0848541 18740.341796875
+239.112915 19919.896484375
+240.0958557 25004.5078125
+243.0852203 14329.7021484375
+246.0970459 597159.4375
+247.0996094 56844.9375
+249.0957336 16719.8046875
+257.1228333 102311.375
+260.1126099 108149.4765625
+261.1184387 11945.3173828125
+267.1178894 13272.60546875
+267.6492615 12088.5166015625
+270.0968323 130067.9609375
+276.1345825 14489.1591796875
+278.1188965 15226.6298828125
+278.1494751 17095.134765625
+283.1423645 43339.85546875
+287.1234436 136056.421875
+288.1075439 1425682.375
+289.1102295 228317.21875
+290.1112061 14152.671875
+295.1513672 23814.515625
+303.1425781 16733.068359375
+305.1341248 2805769.25
+306.1192322 1019813.75
+307.1216125 137662.203125
+311.1339417 37113.4921875
+312.1179504 36293.94921875
+321.1542664 301969.875
+322.1573486 59889.73828125
+323.098053 17945.099609375
+323.1446838 1017259.3125
+324.1470032 166398.703125
+325.1532593 15302.9130859375
+328.1592407 20616.75390625
+329.1433105 44466.171875
+338.1421204 64546.1953125
+338.1807861 357465.625
+338.6454163 17106.44921875
+339.1835632 60136.12890625
+341.1418762 13686.4619140625
+347.148407 24611.328125
+349.1597595 19912.44921875
+351.1298523 13786.50390625
+358.3972473 12218.0283203125
+359.1450195 50167.13671875
+366.1868286 117317.2734375
+369.138031 30576.494140625
+376.1703186 98697.3984375
+377.1556396 73391.0546875
+377.5812378 11513.5546875
+378.1549683 13269.7421875
+386.1643066 30278.15234375
+394.1811523 645050.75
+395.1839294 155976.953125
+396.1856384 21562.15234375
+411.6768188 15483.509765625
+412.1895752 32215.013671875
+413.159668 14872.9228515625
+420.6839905 14966.103515625
+460.191925 18988.568359375
+468.2217102 47653.80859375
+478.2108154 14962.083984375
+483.2226868 14853.8310546875
+483.7135925 19483.4140625
+485.2479248 214005.953125
+486.2513733 67854.328125
+488.1861572 52845.859375
+489.1846008 14847.755859375
+492.2300415 134898.78125
+492.7315979 99704.25
+493.2283936 26695.19921875
+495.2267761 65814.5078125
+503.2184753 22942.39453125
+503.7172852 18678.89453125
+505.2119751 60108.5703125
+506.2056885 35339.94921875
+507.2067566 20436.9765625
+512.2254639 28886.5625
+512.7258301 17610.552734375
+521.2341309 36780.5
+523.2226562 409917.84375
+524.2260132 108179.8984375
+525.2282104 26101.1015625
+529.74823 14436.5126953125
+555.2502441 24331.052734375
+557.7575684 13601.2841796875
+558.7437744 23631.564453125
+559.2477417 26341.107421875
+571.75 74024.8671875
+572.274353 296141.6875
+572.7471924 23358.576171875
+573.2813721 82060.09375
+575.7695312 17948.099609375
+576.2588501 45483.2734375
+576.7616577 31963.53125
+577.2703857 23048.42578125
+580.2640991 65337.03125
+580.7559814 2058537.125
+581.256958 1439775.625
+581.3650513 17116.158203125
+581.6802979 13175.95703125
+581.7588501 565958.5625
+581.8643188 15821.2734375
+582.2596436 113523.0546875
+589.2681274 18114.671875
+589.7670898 26242.86328125
+598.2757568 33008.6796875
+598.7738647 37951.95703125
+599.2750854 45484.73046875
+599.777832 92528.09375
+606.2573242 33554.65234375
+624.269043 55660.29296875
+625.272644 17341.15234375
+655.3148193 20826.65234375
+673.324707 371135.5625
+674.3292847 135900.78125
+675.3282471 31916.70703125
+693.2824707 26435.228515625
+711.2994995 21638.85546875
+802.3637695 87842.40625
+803.3719482 21991.6171875
+873.4024048 81882.6328125
+874.402771 43853.984375
+875.4058228 14041.10546875
+1001.44989 19748.783203125
+1002.4729 13677.1416015625
+1043.123169 13165.3037109375
+1058.473511 15552.28125
+1199.528076 13603.3369140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.472.472.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=472"
+RTINSECONDS=51.40709464
+PEPMASS=598.27001953125
+CHARGE=2+
+51.33089066 15006.263671875
+56.54685593 16010.513671875
+64.52632904 67340.375
+64.53069305 50909.96875
+64.58207703 44242.03125
+64.5861969 33431.65234375
+64.63796234 22796.224609375
+82.05406189 17792.6953125
+124.0019379 15830.060546875
+124.714798 19238.572265625
+149.5717163 59434.84375
+167.0918732 44788.26953125
+169.0604095 25429.875
+175.1179962 330692.34375
+176.1207275 22594.115234375
+177.0756989 51721.296875
+178.0601044 294166.375
+178.3330536 39035.68359375
+178.3522644 72762.375
+179.063324 18273.076171875
+179.0919495 26250.900390625
+183.0749664 27787.423828125
+186.0861511 112829.3046875
+194.103241 24615.6640625
+195.0864716 4350668.5
+195.1278839 25356.60546875
+196.0893097 455189.625
+197.0919952 45293.43359375
+199.1182098 20782.83984375
+200.1021576 31398.98046875
+201.0864105 19435.7109375
+206.0912018 147925.1875
+207.0947723 25462.95703125
+212.1137085 18242.125
+218.1022491 59639.62890625
+222.0842896 24024.025390625
+240.0956726 23237.837890625
+243.0879517 21397.263671875
+246.0969696 598785.0625
+247.0997162 75654.9140625
+249.0966949 22660.798828125
+250.0959778 17458.33984375
+257.1227722 115870.4609375
+258.1257629 26280.083984375
+260.1131897 97754.890625
+267.1103821 22689.9375
+270.0973511 118285.4765625
+278.1467896 34186.4921875
+283.1443176 45325.24609375
+287.1233826 169405.609375
+288.1075439 1605156.0
+289.1103516 217110.625
+290.1125793 16795.3359375
+294.1170349 16964.2421875
+295.1489258 29776.984375
+297.1228943 18034.87890625
+303.1416321 29290.154296875
+305.0505981 19565.826171875
+305.1340637 3105706.5
+306.1190796 1187795.375
+307.12146 188620.953125
+308.1230469 30238.62109375
+311.1354065 47964.5859375
+312.1156921 18421.287109375
+321.1539917 295162.40625
+322.1560974 44158.03125
+323.1445007 1121932.5
+324.1472473 206767.84375
+328.1625366 19026.029296875
+329.1445618 51105.453125
+338.1073914 17839.0078125
+338.1438293 33561.7265625
+338.1806335 427594.8125
+339.1824951 79496.203125
+347.1487427 26739.994140625
+349.1608887 21173.439453125
+359.1436462 46890.48046875
+366.1864319 135027.21875
+369.1396179 27356.39453125
+376.1703491 142667.25
+377.1562195 83957.8359375
+378.1603394 22202.673828125
+384.1627502 17310.328125
+386.1629028 25641.9609375
+394.1810913 760978.25
+394.2403259 21618.294921875
+395.1828613 162991.09375
+396.1860352 36471.3828125
+412.1898499 34523.8359375
+468.221344 61056.3515625
+477.216095 25435.63671875
+485.2476807 214001.03125
+486.2505493 47822.51953125
+488.1868591 49982.2265625
+489.1944275 19646.115234375
+492.2296753 184060.484375
+492.7328186 89537.9765625
+493.2302246 39967.265625
+495.2259216 61070.87109375
+496.2309265 20984.82421875
+503.716095 28269.54296875
+505.2115479 73017.546875
+506.2035217 65439.63671875
+512.2264404 52248.546875
+512.7282104 33257.734375
+521.2365723 39484.52734375
+523.2225342 506486.46875
+524.2245483 110103.4140625
+525.2283936 40185.88671875
+529.7414551 18524.07421875
+558.7454834 26927.068359375
+571.7479248 81160.4609375
+572.2755737 336362.4375
+573.2782593 92226.2421875
+576.2636719 45173.46484375
+576.7616577 20516.79296875
+577.2767944 21608.412109375
+580.2626953 95762.90625
+580.7553101 2314152.75
+581.2565918 1572966.5
+581.7583008 596100.375
+582.2591553 108424.6640625
+589.2697754 100684.15625
+589.7714233 40976.1953125
+598.2736816 58465.15625
+598.7821655 20513.466796875
+599.7772217 83605.6953125
+606.2580566 37723.5859375
+624.2689209 50896.40234375
+625.274292 22810.65625
+673.3248901 443547.78125
+674.3284912 154184.265625
+675.3327026 27113.521484375
+693.2868042 25883.34375
+802.364624 94800.1328125
+803.3748779 47165.60546875
+873.4024658 105381.9453125
+874.4052734 50958.9765625
+1001.442017 23192.701171875
+1002.46991 22007.267578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.473.473.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=473"
+RTINSECONDS=51.51478045
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13437271 22450.234375
+64.5262146 60953.0625
+64.53064728 49866.859375
+64.5819931 41675.203125
+64.58612061 32044.802734375
+64.63806152 16383.966796875
+64.64134979 12549.7646484375
+70.58722687 12350.181640625
+78.67527771 13276.0703125
+82.05461121 15442.26171875
+88.93624878 11732.8671875
+103.0332336 13725.8330078125
+149.5683594 47377.71875
+167.0918579 40532.875
+169.0591583 32338.25390625
+173.7783661 13574.8916015625
+175.1178589 303555.53125
+176.1211243 19569.583984375
+177.0761566 62966.375
+178.0600128 343255.78125
+178.3427124 88865.0859375
+179.064209 26543.279296875
+179.0903015 15788.47265625
+182.091217 15722.3798828125
+183.0751038 29052.68359375
+186.08638 77657.1328125
+190.0613556 17010.505859375
+191.092041 13690.6435546875
+194.1022339 42924.1015625
+195.0863953 4079075.25
+195.1277771 35040.6796875
+196.0891876 398103.90625
+197.0922394 25322.8671875
+200.1018372 35302.8828125
+201.085907 25889.740234375
+206.0909882 145421.875
+207.0934448 15376.7880859375
+215.0898895 15155.3994140625
+218.1016846 52859.5078125
+234.0966797 17366.43359375
+240.0958862 18436.759765625
+243.0865326 15545.5732421875
+244.1164703 16375.6435546875
+246.0969543 607731.0625
+246.1257935 27871.576171875
+247.0998077 68319.6171875
+248.1094971 13381.3603515625
+255.1499634 12961.755859375
+257.1225281 90457.1796875
+258.1239929 19282.736328125
+260.1124878 104952.8984375
+261.1167603 15192.87109375
+267.1077881 12894.8427734375
+270.0967712 127362.2265625
+277.1410522 17833.19140625
+278.1498413 22060.763671875
+283.1419678 40464.11328125
+287.1234131 140170.5
+288.1073914 1530831.875
+289.11026 234857.4375
+290.1122131 27133.146484375
+294.118103 20968.427734375
+297.1141968 15200.9169921875
+303.1444397 27749.966796875
+304.1286621 27388.603515625
+305.1339417 2994130.25
+305.2159119 18347.701171875
+306.1193237 1013543.8125
+307.1211853 197418.984375
+308.1219788 14577.51171875
+309.1647644 14636.810546875
+311.1343079 39201.21484375
+312.117218 36880.19921875
+320.1306763 15606.8310546875
+321.1539917 328767.34375
+322.1569214 60725.3359375
+323.0988159 29578.25
+323.1444092 1012768.9375
+324.1461487 151684.53125
+325.1517944 17558.9375
+329.1440125 61807.83203125
+338.1422424 33209.88671875
+338.1804504 375694.25
+338.6455688 20329.197265625
+339.1833191 71160.5
+341.1451111 18149.53125
+347.6517944 16147.234375
+354.158783 14681.13671875
+358.166626 15634.1162109375
+359.1434937 57729.1875
+366.1864014 125224.1953125
+369.140686 19307.58203125
+376.1702576 121671.015625
+377.1558533 79003.6796875
+378.1546021 13607.37890625
+386.1673279 26383.720703125
+394.1807861 678308.5625
+394.2399597 22285.205078125
+395.1825562 133844.46875
+412.1875 39934.96484375
+413.1661682 16073.07421875
+420.6849976 20709.060546875
+450.2060547 14423.123046875
+468.2227173 60543.03515625
+469.2185364 16197.1015625
+483.7191467 22968.109375
+485.2473145 213763.78125
+486.2501831 62043.48828125
+488.187561 62345.5625
+492.2286987 162538.3125
+492.7307434 97928.2578125
+493.2319946 29259.4921875
+495.2277222 54028.69140625
+500.2080078 14745.5546875
+503.7157593 26897.21484375
+505.2124023 57194.81640625
+506.2059937 43985.25390625
+512.2284546 36008.89453125
+512.7319336 23552.908203125
+521.2322998 38425.29296875
+523.222168 498776.0
+524.2250977 134538.15625
+525.2280273 25653.59765625
+529.7429199 14702.8681640625
+555.2584839 20081.466796875
+558.7440186 41158.51953125
+559.2404175 16204.115234375
+571.75 73992.1484375
+572.2752686 319078.125
+572.7533569 29039.208984375
+573.2794189 88949.5859375
+574.2802124 23015.916015625
+575.2746582 21808.11328125
+576.2611694 52132.33984375
+576.7612915 25842.8828125
+580.2610474 58703.55078125
+580.7549438 2396245.75
+581.2561646 1555049.75
+581.7581787 557222.625
+581.8636475 19595.513671875
+582.2605591 94492.78125
+589.2647095 48246.546875
+589.7631226 25199.828125
+598.2715454 49414.640625
+598.7749634 23827.80078125
+599.2761841 33479.625
+599.7761841 71437.5234375
+606.2590942 27618.041015625
+624.2675171 62527.76953125
+625.2752075 20899.6640625
+656.3009033 29734.34375
+673.3234863 394189.84375
+674.326355 145205.203125
+675.3305054 30116.056640625
+693.2909546 18158.93359375
+711.2945557 17841.220703125
+784.375061 15201.875
+802.3620605 76570.953125
+803.3623657 41091.7109375
+873.3980713 77137.4765625
+874.4025879 57251.80078125
+1217.677979 15605.9208984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.474.474.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=474"
+RTINSECONDS=51.62484451
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52615356 64811.80859375
+64.53064728 49326.66796875
+64.58198547 45692.12109375
+64.58618164 36742.4453125
+64.63822937 17868.60546875
+64.64142609 16658.609375
+74.81183624 19955.34375
+82.05465698 18332.42578125
+90.93740845 14674.3310546875
+149.5635834 33829.94140625
+149.5770874 25326.755859375
+164.0313873 14933.1630859375
+165.3468475 14248.556640625
+167.0918732 43151.125
+169.0614166 29118.720703125
+175.1178131 286135.875
+177.0759125 48834.17578125
+178.0418549 16020.2646484375
+178.0599976 345255.71875
+178.3482056 97068.9296875
+179.091095 17232.291015625
+183.0758972 26027.025390625
+186.0861664 95399.859375
+190.0614166 17815.947265625
+194.1029358 38698.15234375
+195.0864105 4189347.0
+195.1283569 24604.470703125
+196.0891876 426805.0
+197.0921478 27072.333984375
+206.0911102 165583.578125
+212.1099701 17743.484375
+213.0855865 16214.2275390625
+215.0909271 17972.8515625
+218.1024323 46806.12890625
+222.0854797 14009.25
+239.1112061 15760.3798828125
+240.0975647 27161.638671875
+243.0852814 17681.556640625
+244.1158447 14431.337890625
+246.0741882 8798.01171875
+246.0970459 666725.0
+246.1255646 34448.63671875
+247.100235 91233.109375
+249.0971832 29450.73046875
+257.1227417 127954.390625
+258.1249084 17982.373046875
+260.1123962 93584.625
+267.1102295 18173.7890625
+270.0970764 116851.921875
+277.1395569 17325.810546875
+278.1495667 31466.10546875
+283.1430664 30641.9921875
+287.1231384 142644.21875
+288.1075134 1565612.125
+289.110321 244019.046875
+294.1166992 18138.25390625
+295.1497803 24213.283203125
+303.1435242 37532.88671875
+305.1340637 3185567.0
+306.1192627 1132953.5
+307.1209106 144290.703125
+308.1228333 26099.654296875
+311.1349792 46651.87109375
+312.1177673 46558.703125
+321.1542969 318471.84375
+322.1558228 53976.765625
+323.0976868 20104.787109375
+323.1446228 1116163.625
+324.1466675 196611.046875
+325.1523132 18538.423828125
+329.1462708 56073.2734375
+338.1424255 59882.59375
+338.1807251 431362.46875
+338.6437683 30945.759765625
+339.1839294 64301.2421875
+341.1463623 23365.501953125
+349.1627197 19991.224609375
+351.127594 21012.767578125
+359.1438599 58455.14453125
+366.1859131 126415.671875
+369.1379089 27594.71875
+376.1707458 123144.8671875
+377.1563416 62724.6171875
+386.164032 25618.7890625
+394.1810913 712160.25
+394.239624 26623.927734375
+394.7709961 18710.05078125
+395.1824341 134538.734375
+412.1897278 35006.20703125
+460.1925354 17761.908203125
+468.2243042 25593.46484375
+483.7214661 24257.685546875
+485.2477722 228153.3125
+486.2487793 40524.19140625
+488.1853638 54092.48046875
+492.2298889 199850.40625
+492.7311707 120022.3046875
+493.2327881 39201.39453125
+495.2276611 72318.1953125
+496.2304993 20549.41015625
+503.2193909 30677.609375
+505.2109985 63468.0
+506.2076416 44495.453125
+512.2250977 46743.90625
+512.7277832 34399.125
+520.7349854 21594.626953125
+521.2330322 33305.97265625
+523.2227783 484500.84375
+523.2973022 10986.923828125
+524.2250977 117196.234375
+525.2279663 20742.98828125
+555.2491455 21918.923828125
+558.7489014 26021.50390625
+567.2547607 34980.09765625
+571.7516479 66834.6796875
+572.2753906 323816.125
+573.2776489 99944.171875
+574.2808838 28671.970703125
+576.2597046 62690.27734375
+576.7639771 40583.67578125
+577.760498 23865.75
+580.2601318 105703.7734375
+580.7559204 2518793.25
+581.256897 1743271.375
+581.3657837 26997.966796875
+581.758667 657090.0
+582.2589722 129539.9140625
+589.2669678 89610.3515625
+589.7637329 46348.80078125
+598.2721558 43033.484375
+599.2687378 27124.3671875
+599.77771 92552.203125
+606.258728 39532.5390625
+624.2660522 58007.96484375
+625.2710571 17412.466796875
+673.3249512 423535.625
+674.3285522 161190.546875
+675.3231201 30089.5234375
+802.3655396 92169.21875
+803.3670654 41707.4609375
+873.4052734 108782.2578125
+874.4009399 48911.83203125
+875.4173584 17852.46875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.475.475.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=475"
+RTINSECONDS=51.7331953
+PEPMASS=598.27001953125
+CHARGE=2+
+51.4211731 15252.1376953125
+58.13420105 16021.759765625
+58.13718414 14154.443359375
+64.52624512 64590.91015625
+64.53063202 45511.42578125
+64.58204651 43623.390625
+64.58623505 26101.958984375
+64.63819122 25633.580078125
+64.64144897 18393.587890625
+80.28448486 12604.439453125
+100.1636353 12658.814453125
+111.5751877 12466.3427734375
+118.6188583 14513.5693359375
+123.8705978 12407.4384765625
+124.9508057 13891.826171875
+149.5683746 57497.24609375
+157.6687622 14430.251953125
+167.091568 40537.18359375
+169.0594635 38379.21484375
+175.1177979 290590.96875
+176.1206818 25835.6875
+177.0755005 60139.1328125
+178.059967 318868.5625
+178.3506165 68411.328125
+179.063324 23253.716796875
+179.0902557 38787.1640625
+183.0749207 18880.349609375
+186.0860901 106279.5078125
+194.1026917 37366.1484375
+195.0863647 4159800.75
+196.0891876 379767.53125
+197.0903168 24547.927734375
+200.1018219 16329.0439453125
+201.0858459 22334.783203125
+206.0910645 142635.71875
+212.0974884 15376.6875
+215.0914307 25354.9296875
+218.1021423 66207.359375
+222.0857086 25850.2109375
+234.0961304 20211.7734375
+240.0950928 24047.75
+243.0864258 21466.59765625
+244.1184387 18230.5703125
+246.096817 631898.1875
+247.0996552 72874.8671875
+249.0955353 16718.041015625
+257.1225586 98066.03125
+260.111908 92115.0703125
+262.1197205 17034.130859375
+267.1082764 15171.435546875
+270.0965881 120887.71875
+277.1394043 14869.654296875
+278.150116 22936.904296875
+283.1419983 40299.19921875
+287.1233521 132339.171875
+288.1072693 1584639.625
+289.1098633 214897.046875
+290.1127625 14098.7431640625
+294.1163635 18643.548828125
+295.1479492 23646.875
+302.1295776 21122.318359375
+303.1434021 25280.125
+305.1337585 3081761.0
+306.1188354 1107470.625
+307.1214294 176729.109375
+308.1207886 15977.748046875
+311.1351013 39004.9765625
+312.1165771 29037.271484375
+318.1445923 19714.267578125
+320.1704407 17098.947265625
+321.1538391 335481.15625
+322.1557617 62000.640625
+323.1442566 1187528.875
+324.1466064 175264.59375
+325.1503601 35142.6953125
+328.1616821 16239.7890625
+329.1440125 48107.234375
+331.1499023 23189.84765625
+338.1426086 37648.890625
+338.1802368 424041.28125
+338.6480713 22409.58203125
+339.183075 73821.296875
+340.5609131 16890.515625
+341.3802795 13315.09765625
+347.1481323 22956.51953125
+349.1591187 19538.85546875
+351.1286316 17943.865234375
+359.144043 49518.51171875
+366.1859741 114938.8515625
+367.1899719 22328.31640625
+369.1387939 32124.419921875
+376.1700439 116529.5
+377.1549683 108009.8515625
+386.1650696 37660.63671875
+394.180542 740712.9375
+394.2400513 25145.078125
+395.1826172 139531.875
+412.1851807 42875.953125
+413.1636047 15220.5390625
+420.6809387 25403.759765625
+460.1903687 21022.431640625
+468.2206421 56804.06640625
+477.2155762 18451.26171875
+483.7164612 33431.2734375
+485.2466431 207743.1875
+486.2480164 57676.8359375
+488.1860962 60566.92578125
+492.2285767 141903.734375
+492.72995 84373.3359375
+493.2328491 36419.25
+495.2261353 53564.80078125
+496.2288208 21354.837890625
+503.2233887 16900.326171875
+505.2106018 59651.6796875
+506.2055969 51265.3671875
+512.227478 45172.6171875
+512.7310181 31866.06640625
+521.2319946 34053.94921875
+521.7351074 19606.6328125
+523.2211914 495026.1875
+524.2243652 140497.765625
+525.2307129 45221.1328125
+558.74646 27612.41796875
+567.2589111 19843.1328125
+571.7490234 98363.84375
+572.2734375 315632.8125
+572.7450562 26167.033203125
+573.2785645 111562.328125
+574.2783813 20655.943359375
+576.2581177 37150.546875
+576.7642212 16625.44921875
+577.2623901 41756.6640625
+580.2624512 97304.765625
+580.7543335 2460122.0
+581.2555542 1571753.875
+581.7572021 623042.9375
+582.2581787 110625.6171875
+589.2643433 63692.6015625
+589.7651978 42464.33203125
+598.2721558 51021.13671875
+598.7763672 30824.9921875
+599.2781372 21128.1796875
+599.7769165 50335.82421875
+606.2541504 36892.296875
+624.265625 58538.08984375
+625.2639771 26868.390625
+655.3104248 25031.115234375
+673.3231812 407416.53125
+674.3260498 147150.578125
+675.3204346 20641.236328125
+711.3057251 22731.201171875
+802.3640137 81755.2265625
+803.3652954 50013.02734375
+873.3981323 108153.5625
+874.4056396 40105.80859375
+1001.457947 24481.244140625
+1058.469238 29950.55859375
+1196.790527 13839.8984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.476.476.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=476"
+RTINSECONDS=51.84218787
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 54579.69921875
+64.53070831 45083.796875
+64.58204651 39037.32421875
+64.58615112 30793.888671875
+64.63819122 16618.5546875
+64.64151764 14605.548828125
+66.71551514 13790.57421875
+67.87295532 12802.0771484375
+72.67932129 12124.5439453125
+83.60805511 13435.25390625
+93.19462585 12176.7490234375
+99.51242828 12006.44140625
+101.2441711 13426.98046875
+112.8391876 12168.66796875
+149.5695801 54615.484375
+167.0921326 26083.373046875
+169.0602417 30546.9140625
+175.101944 25194.263671875
+175.1179352 270900.875
+177.0758057 70976.1640625
+178.0600586 333774.25
+178.0779114 25681.4296875
+178.3345795 36157.4609375
+178.353775 48079.703125
+179.0631104 33789.3203125
+179.0913239 13318.685546875
+183.0752258 23589.443359375
+185.9364471 14097.0048828125
+186.0861053 107905.125
+190.0595703 15802.3505859375
+194.1027832 37430.390625
+195.0864868 3990420.75
+195.1281738 23124.908203125
+196.0894928 404112.65625
+197.091629 38716.37890625
+201.0858307 17985.474609375
+202.8515625 13589.126953125
+206.0911102 147843.90625
+218.1021423 72668.09375
+221.1018066 18146.662109375
+223.0932922 13822.94140625
+234.0979004 20409.478515625
+240.0961761 29930.9921875
+243.0861206 25291.654296875
+246.0970306 618097.1875
+247.0998383 70365.671875
+257.1228333 96477.0078125
+258.1265259 17729.447265625
+260.1128235 125737.875
+261.1170349 21899.27734375
+262.1274109 23212.060546875
+266.1193237 14138.9091796875
+270.0970154 121090.171875
+278.1175537 15807.615234375
+278.1491089 28804.849609375
+283.1421204 34775.45703125
+287.1236267 149291.15625
+288.1074829 1584653.25
+289.1102295 228617.828125
+290.1122742 18345.3046875
+294.1171875 21609.185546875
+295.1491394 26385.095703125
+302.1331482 16948.384765625
+303.1425781 37843.07421875
+305.1340027 3154461.25
+306.1190186 1194864.125
+307.1216125 197747.375
+311.1338196 31185.140625
+312.1171265 36024.3828125
+314.0234375 16313.5595703125
+321.1540527 333556.90625
+322.1575317 59710.89453125
+323.1444397 1015154.0625
+324.1468201 187711.875
+329.1455688 53335.40625
+331.1504822 18176.59765625
+338.1421509 50578.39453125
+338.1806641 379423.78125
+339.1832275 65590.0078125
+347.1499939 21499.7265625
+349.1615601 20734.20703125
+358.1657715 15856.9931640625
+359.1451111 48546.6171875
+360.1477051 17986.16796875
+366.186615 130319.3046875
+367.1894836 30725.62109375
+368.1534729 15043.8017578125
+369.1381836 26099.7734375
+376.1706238 129929.1953125
+377.157196 93874.109375
+386.1671143 31671.44140625
+394.1811218 708291.25
+394.2405701 22239.984375
+395.1826782 142163.4375
+396.1857605 27414.19921875
+412.188324 37804.76953125
+413.1634216 15558.7275390625
+460.1921387 34688.80078125
+468.2226868 49074.16015625
+469.2179871 19983.615234375
+478.1999817 14401.7744140625
+483.7218628 19598.15234375
+485.2476501 218015.484375
+486.2511902 57570.45703125
+488.1851196 50442.23046875
+492.2290039 177120.828125
+492.7306519 102941.359375
+493.2322083 22000.95703125
+495.224884 66506.3359375
+503.2227783 18212.50390625
+505.2112732 62232.30078125
+506.2069397 49767.96484375
+512.2247314 51420.5859375
+512.7247925 20386.755859375
+513.2318115 17426.21875
+521.2384033 30992.90234375
+523.222229 441515.0625
+524.2243652 123735.4921875
+525.2294922 18905.197265625
+554.2762451 16276.908203125
+558.7435913 20239.701171875
+559.2394409 19881.8515625
+568.2493286 17008.0546875
+571.7473755 55571.15625
+572.274231 307854.25
+572.7459106 27181.66796875
+573.2805176 80967.609375
+574.270813 20367.1875
+576.2608032 43304.15625
+580.2625122 82431.34375
+580.7549438 2149383.25
+581.2562866 1413137.375
+581.3361816 31728.58984375
+581.7573853 529328.4375
+582.2590332 118708.9296875
+589.2648926 36843.48828125
+589.770813 20726.283203125
+598.2709961 43695.82421875
+598.7733154 18740.720703125
+599.2750854 35543.9375
+599.777771 80545.5859375
+606.2572021 39729.390625
+624.2667847 34121.91796875
+625.2697144 19085.822265625
+673.3239136 375045.71875
+674.3259888 142857.8125
+675.336853 23814.28125
+802.3619995 96536.78125
+803.3685913 41040.29296875
+873.4000854 102860.1875
+874.3986206 53479.25
+1001.462769 33655.12109375
+1122.665161 18062.083984375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.477.477.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=477"
+RTINSECONDS=51.95206834
+PEPMASS=598.27001953125
+CHARGE=2+
+57.67883301 14848.755859375
+58.13407898 21479.47265625
+58.13723755 15794.4970703125
+64.52632904 68600.1640625
+64.53051758 47476.88671875
+64.58193207 61016.8046875
+64.58618164 35343.85546875
+64.63819885 26547.23046875
+64.64138794 22421.54296875
+67.16996765 17178.7578125
+72.02448273 21955.439453125
+73.6102066 16289.0546875
+74.81217957 16206.9482421875
+78.83717346 15144.4189453125
+82.05431366 17323.16796875
+97.80379486 18889.375
+102.0736389 14333.8134765625
+117.8896332 14103.65625
+149.5708923 62452.2109375
+160.2174988 18126.30078125
+167.0918884 27956.88671875
+169.0603638 30046.080078125
+175.1178741 307744.78125
+177.0759888 56438.3125
+178.0602264 347526.0625
+178.34021 89286.140625
+179.0653229 27549.1875
+182.0908356 23945.40234375
+183.0759277 18327.306640625
+186.0863342 99751.9921875
+194.1019135 35611.453125
+195.0864716 4362133.5
+196.0893555 449298.65625
+197.0921021 35591.09375
+200.1020966 34291.7421875
+201.0861053 23853.41796875
+206.0912018 159173.875
+213.0850677 17078.029296875
+218.1029968 43479.6640625
+240.0963898 27233.58984375
+246.0970459 637061.9375
+247.0996857 69383.859375
+257.1227417 124823.703125
+260.1121826 129924.96875
+262.1242065 17111.638671875
+270.0968933 135777.4375
+271.1010742 21198.166015625
+278.1202393 25393.150390625
+283.1437073 52652.15625
+287.1236267 179884.125
+288.1074829 1646778.875
+289.1104126 242848.15625
+290.1128845 24802.2421875
+294.119873 20948.716796875
+295.1470642 25745.888671875
+303.1443481 24807.046875
+305.1340332 3324416.5
+306.0591431 22527.736328125
+306.1193542 1186664.875
+307.1210632 184052.515625
+308.1239929 29763.150390625
+311.1360474 54718.828125
+312.114624 32233.43359375
+321.1542969 375193.53125
+322.1571655 69106.3203125
+323.1445923 1177123.0
+323.1887817 33176.65625
+323.2091064 23682.103515625
+324.1472778 169670.625
+325.1524658 28682.53515625
+329.143158 53786.96875
+338.1427002 48585.3203125
+338.1806946 447075.96875
+338.6464233 21182.646484375
+339.1834717 97982.8046875
+347.1453247 19287.271484375
+349.1596069 27434.6328125
+359.1462402 50531.10546875
+366.1860657 131834.171875
+367.1878357 33676.62109375
+369.1396484 28166.36328125
+376.1708069 138958.203125
+377.157196 68559.546875
+386.1681824 34226.08984375
+389.1575317 24234.56640625
+394.1810608 761419.375
+395.1825867 147301.125
+396.1846008 26145.80078125
+412.1882324 44170.55859375
+420.6821289 21660.662109375
+461.1893921 20352.49609375
+468.2214966 46732.921875
+483.7224121 23195.3828125
+485.2473755 237953.234375
+486.2504883 74619.6953125
+488.1872864 46579.9765625
+492.229126 200000.9375
+492.7303467 110053.7265625
+493.2351685 29679.62890625
+495.2278137 53684.59765625
+505.2112122 70531.6875
+506.2019653 29454.80078125
+512.2279053 52705.984375
+512.7271729 42741.36328125
+521.2307129 33443.9765625
+523.2223511 462942.46875
+524.2244263 146068.515625
+525.2304077 21012.80078125
+531.1602783 17513.291015625
+555.2556763 31217.181640625
+567.2613525 20153.537109375
+571.7490234 115186.53125
+572.2744141 343914.6875
+572.7562866 30137.185546875
+573.2808838 119116.4453125
+575.2652588 21052.310546875
+576.2636108 41409.49609375
+576.7617798 31378.21484375
+580.2611694 90833.5234375
+580.755249 2723574.75
+581.2566528 1930809.625
+581.6496582 22478.9765625
+581.7582397 761520.75
+582.2593994 127048.9375
+589.265564 66773.578125
+589.7668457 81626.125
+598.2723999 50728.109375
+598.7736816 66990.703125
+599.270752 22571.828125
+599.7772217 83769.0
+606.2568359 35592.09375
+624.2683105 77851.1796875
+673.3247681 446205.375
+674.3278809 172557.203125
+675.328125 28596.234375
+802.3647461 98479.875
+803.3629761 38026.07421875
+873.4006348 112209.6875
+874.3978882 42721.4609375
+1058.488403 26615.974609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.478.478.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=478"
+RTINSECONDS=52.05934917
+PEPMASS=598.27001953125
+CHARGE=2+
+50.48743057 15899.43359375
+54.81582642 13254.751953125
+62.11912918 15511.3037109375
+63.66572571 14618.8232421875
+64.52624512 70823.40625
+64.53060913 49254.85546875
+64.58222198 30896.32421875
+64.58617401 34627.90625
+64.63793182 19880.73828125
+65.08103943 13885.98046875
+74.81190491 20982.083984375
+94.79438019 13122.5537109375
+149.5734863 56309.76953125
+167.0924377 35366.2265625
+169.0589447 41275.10546875
+175.1177521 313162.71875
+176.12146 18787.568359375
+177.0760345 48784.078125
+178.059967 348879.09375
+178.3368378 59952.3828125
+178.3558197 24397.9375
+179.0637817 19510.63671875
+182.0911255 17136.564453125
+183.0748291 21100.146484375
+186.0861206 116486.890625
+194.1023407 30997.810546875
+195.0862732 4336185.0
+196.0890961 458054.28125
+197.0919189 30953.869140625
+200.1024475 24649.53515625
+204.39711 16772.640625
+206.0909424 142199.65625
+206.1124115 21964.982421875
+215.0918121 20351.998046875
+218.1023712 61641.93359375
+231.095932 16567.537109375
+243.0859375 19911.251953125
+246.0967255 624294.75
+246.1256866 32429.302734375
+247.0990295 77722.5625
+257.1222229 89113.6484375
+258.12323 29412.5625
+260.1128845 98037.953125
+270.0966492 142668.984375
+278.1482544 36606.79296875
+283.1417236 41284.59375
+287.1233215 137018.109375
+288.1070557 1626487.375
+289.1098022 228405.9375
+290.1129456 28585.1015625
+303.1429749 23520.193359375
+305.133606 3177080.25
+306.1188049 1205598.625
+307.1210327 216348.328125
+308.1223755 22665.9453125
+311.1322327 46127.6640625
+312.1167297 32514.0
+321.1533508 345206.78125
+322.1565247 62888.75390625
+323.0987854 20028.353515625
+323.144104 1179123.125
+324.1459351 177967.53125
+329.1431885 49576.54296875
+338.1421509 46961.4140625
+338.1802063 384712.46875
+338.6443787 33411.6484375
+339.1820679 94322.5703125
+346.1721802 19442.80078125
+347.1482239 36646.16015625
+359.1435852 51708.4921875
+360.1419067 16741.5546875
+366.185791 155877.75
+369.1396484 24800.36328125
+376.1696777 108853.375
+377.1552734 79810.9296875
+394.1803284 742159.875
+394.2402039 27611.37109375
+395.1815796 179920.640625
+396.1869507 27542.12109375
+403.6645203 19050.26953125
+412.1867371 30462.423828125
+420.6822205 26356.220703125
+460.1895142 21198.775390625
+468.2211304 60868.87109375
+483.7161255 22300.6796875
+485.2469788 208194.0625
+486.2485962 54061.17578125
+488.1848755 41874.0625
+492.2288513 157414.140625
+492.7298889 96181.2578125
+493.2302856 29613.103515625
+495.2275696 60646.0703125
+503.7140198 30838.71875
+505.2107239 62616.53125
+506.2011108 55117.10546875
+512.2243652 45033.34765625
+512.7294922 32897.0390625
+521.234375 48836.921875
+523.2208862 449084.1875
+524.2244873 140617.0
+525.2279053 26524.3984375
+530.2502441 21493.544921875
+554.2600098 19090.021484375
+571.75 131983.265625
+572.2741089 312648.90625
+572.7507324 22426.46875
+573.2780151 103158.6640625
+574.2808838 22509.369140625
+576.262085 52927.4296875
+576.7611084 42149.97265625
+580.2626953 97639.09375
+580.7541504 2631875.0
+580.8391113 33854.46484375
+581.2553101 1735087.375
+581.3366699 28336.10546875
+581.7570801 656650.75
+581.8646851 25232.642578125
+582.258606 109583.2265625
+589.2651978 108936.9140625
+589.7653809 43986.3515625
+598.272583 83391.703125
+598.7764282 40114.5390625
+599.2799683 29728.98046875
+599.7753906 75456.78125
+606.2598267 41757.51171875
+624.2662354 66127.3515625
+673.3225098 449647.34375
+674.3258057 168946.8125
+675.3330078 24032.93359375
+693.2978516 21289.001953125
+802.3634644 97141.6640625
+803.3609619 44573.40625
+830.9807739 18006.10546875
+873.4019775 76812.4609375
+874.4031372 48881.8984375
+1001.455078 23942.8359375
+1021.310242 16722.056640625
+1058.461426 22570.912109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.479.479.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=479"
+RTINSECONDS=52.16719488
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13430405 13562.521484375
+58.13706589 14689.95703125
+60.76585007 12014.7724609375
+64.52615356 58480.80078125
+64.53043365 41122.6875
+64.58201599 43132.17578125
+64.58612061 30234.42578125
+64.64133453 13309.22265625
+74.81174469 13628.734375
+74.81608582 21317.478515625
+76.7458725 12882.0107421875
+98.20650482 14482.4833984375
+98.29937744 12347.4150390625
+143.2105255 14566.529296875
+149.563797 34730.1171875
+149.5782623 25553.576171875
+167.0920868 36134.41796875
+169.0597687 18237.591796875
+175.1179657 281862.71875
+176.1213531 14132.41796875
+177.0758057 56194.6328125
+178.0599518 284215.625
+178.0779114 18467.951171875
+178.335144 40209.90234375
+178.3542786 43271.85546875
+179.0634003 23607.84375
+183.0758362 23537.609375
+186.0859833 101906.03125
+190.0598755 16501.458984375
+194.1025085 43178.734375
+195.0864258 3872271.75
+195.1283569 20154.017578125
+196.0893097 410570.4375
+197.0919952 19200.029296875
+200.1014099 35390.03515625
+206.0910339 150839.546875
+212.1130676 15310.2294921875
+218.1023254 47103.61328125
+222.0862122 17041.919921875
+240.0956268 21026.734375
+243.0862885 22388.23828125
+246.072525 11303.4345703125
+246.0970306 662363.125
+247.0993805 70648.9453125
+249.100235 13382.3896484375
+257.122467 99655.0546875
+258.1219788 16658.98828125
+260.1122437 116729.0859375
+270.0968628 120910.3359375
+278.1499023 25734.587890625
+283.1429749 40557.70703125
+287.1234436 158064.921875
+288.1074524 1488475.625
+289.11026 233114.125
+294.1163025 15218.3466796875
+295.1514587 18852.5078125
+297.1602173 13894.5419921875
+303.1436768 27457.32421875
+304.1276245 16671.173828125
+305.1340637 3032580.5
+306.1192017 1135195.0
+307.1221008 168321.765625
+308.1218567 16797.671875
+311.1347656 49185.41015625
+312.1158142 21492.6484375
+321.1542358 306850.5625
+322.1567688 65282.03515625
+323.0986023 22851.82421875
+323.1445923 1034738.3125
+324.1470642 179568.09375
+325.1532593 20425.271484375
+329.1446228 48380.08203125
+338.1420593 51895.53125
+338.1807861 414081.6875
+338.6445618 16400.1640625
+339.1839905 54142.0
+349.1591187 22027.453125
+358.162384 22003.81640625
+359.1440125 59134.1015625
+366.1861267 118056.15625
+369.1386108 23236.62109375
+376.1701355 107606.890625
+377.1551514 73981.2578125
+386.1662292 32299.68359375
+394.1810913 670175.5
+395.1831055 157805.578125
+396.1864929 23643.123046875
+397.6759338 15516.9169921875
+412.1879883 38070.37890625
+428.1989441 18811.201171875
+434.1686707 14465.4482421875
+460.1919861 29440.310546875
+468.2220154 46726.81640625
+469.2281799 13453.265625
+477.2122498 19513.23046875
+478.2042542 18451.720703125
+485.2479248 200866.328125
+486.2507935 60686.87109375
+488.1854553 42195.55078125
+492.2292175 154976.34375
+492.729126 81090.9609375
+493.23172 38385.953125
+495.2283936 37138.60546875
+505.213501 50070.35546875
+506.2012024 43564.2421875
+512.2254028 35398.5
+512.7251587 23782.935546875
+521.234314 46572.69921875
+521.7372437 16004.5244140625
+523.2226562 433209.5
+524.2247314 94301.515625
+525.2235718 18187.515625
+529.743103 17694.6875
+541.2331543 22955.21875
+571.750061 107567.734375
+572.2759399 290194.6875
+573.2824097 93305.9921875
+574.2879639 26174.43359375
+575.27771 20803.95703125
+576.260376 46926.265625
+576.7617188 20236.490234375
+577.2650146 22127.490234375
+577.7601318 16053.017578125
+580.2614746 87979.8515625
+580.7555542 2211048.0
+581.256897 1403259.25
+581.7588501 568559.0
+582.2600098 122995.0234375
+589.2679443 58934.046875
+589.7634277 20193.955078125
+598.2733765 60096.21875
+598.7730713 49015.16015625
+599.2796631 27158.1484375
+599.7762451 68814.3984375
+606.2537842 22552.2890625
+624.2721558 37490.5
+673.3250122 423613.0
+674.3275146 145419.71875
+675.3280029 36499.7578125
+693.2819214 17650.056640625
+711.3023682 18922.884765625
+802.3647461 88047.9375
+803.3729858 39622.15625
+873.4041138 90539.5625
+874.4095459 39328.33203125
+1058.473389 15777.8876953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.480.480.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=480"
+RTINSECONDS=52.27703878
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52626801 74334.75
+64.53046417 48459.8984375
+64.58201599 49520.34765625
+64.58618164 35989.76171875
+64.63815308 21326.7578125
+74.81229401 16898.080078125
+104.3002548 13660.87109375
+149.5712738 58785.27734375
+167.0917206 40928.67578125
+169.0597687 34820.01171875
+175.117691 275525.3125
+175.9654541 17062.220703125
+176.1199036 18301.21484375
+177.0760193 64843.6484375
+178.0597992 352439.75
+178.0769653 13057.046875
+178.334549 40761.890625
+178.3535004 56827.6484375
+179.0639496 20216.1796875
+183.0743256 20745.623046875
+186.0860901 126029.625
+194.1026764 43118.23046875
+195.0862885 4538286.5
+196.0891418 418958.71875
+197.0907288 26830.76171875
+200.1018982 26791.654296875
+206.0909729 164133.71875
+207.0935516 18177.103515625
+215.0915833 17757.78125
+217.1278076 21322.453125
+218.1017609 68510.5625
+221.1035919 18598.87109375
+234.0941162 15933.71875
+240.0961609 25721.703125
+243.0849457 19036.533203125
+246.0967865 668101.875
+247.0990448 87813.03125
+249.094223 23432.822265625
+257.122406 92179.3515625
+260.11203 104251.171875
+270.0966492 130254.1796875
+278.1177979 19570.7578125
+278.149353 33154.21484375
+283.1424866 41228.67578125
+287.1228943 157247.84375
+288.1071472 1575563.125
+289.1102905 231492.34375
+290.1128845 33688.36328125
+294.1170349 28417.9765625
+295.1485901 22794.109375
+303.1425171 30401.966796875
+304.1280823 22145.15234375
+305.133606 3400761.5
+306.118866 1155808.25
+307.1211243 200603.9375
+308.1254883 22482.19140625
+311.1340332 69129.9765625
+312.1169739 25839.0546875
+321.1535645 344500.8125
+322.1564331 66433.375
+323.0986938 22490.158203125
+323.1439209 1165538.75
+323.1886902 35979.5390625
+324.146698 181812.5625
+325.1498108 20188.275390625
+329.142395 48130.7734375
+331.1480103 25417.798828125
+338.1418762 64718.1015625
+338.1802368 400435.53125
+339.1836853 79384.859375
+349.1608887 18186.984375
+358.1637573 22014.2421875
+359.1442261 62889.34375
+366.1851196 149282.984375
+369.1411743 38230.62890625
+376.1693115 140599.59375
+377.1569214 78274.3125
+386.1626892 43074.734375
+394.1802979 742363.8125
+395.1821594 148225.453125
+412.188324 42222.98046875
+460.1885986 22423.787109375
+468.2186279 44611.5078125
+485.24646 216424.03125
+486.249939 57756.80078125
+488.1807556 28702.376953125
+492.2287903 178747.140625
+492.729248 150845.84375
+493.2255859 24702.84375
+495.2250366 64577.21484375
+505.2146301 40431.26171875
+506.2012024 55088.359375
+511.2412109 18436.705078125
+512.2268677 38871.65625
+512.7254639 39132.6328125
+513.2294312 19074.888671875
+521.2391968 37999.6328125
+521.7327271 28677.548828125
+523.2207031 497352.90625
+524.2228394 150979.703125
+525.2293091 38225.5234375
+529.4269409 17384.357421875
+529.7390137 24570.548828125
+555.2541504 25319.01953125
+558.7418823 26123.46875
+559.239563 20762.2109375
+571.7489624 105118.4453125
+572.2741089 394781.1875
+572.7571411 29796.23046875
+573.2784424 120896.078125
+574.272644 21527.115234375
+576.2575684 41889.32421875
+576.7657471 35944.58984375
+580.2594604 87684.2734375
+580.7540283 2668202.75
+581.255249 1822008.75
+581.3361206 27505.61328125
+581.7567139 729162.75
+582.2588501 155458.75
+589.2653198 113780.078125
+589.7644653 68757.8125
+598.2736206 72266.28125
+598.7736816 34196.93359375
+599.2697754 38093.98828125
+599.7763062 48899.39453125
+606.2616577 36442.6875
+624.2662354 51972.19140625
+625.272522 17661.626953125
+656.2996826 22373.927734375
+673.3223877 430585.1875
+674.3253174 165921.328125
+675.3309326 28590.177734375
+802.3623047 100588.2265625
+803.3710938 35741.5625
+873.3968506 95574.0546875
+874.4030151 59400.828125
+1001.452942 31204.974609375
+1002.475769 21371.45703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.481.481.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=481"
+RTINSECONDS=52.38422158
+PEPMASS=598.27001953125
+CHARGE=2+
+57.20579529 11889.2197265625
+63.58459091 11927.5771484375
+63.94410324 12922.4345703125
+64.52625275 59266.16015625
+64.53065491 44868.89453125
+64.5819931 47470.57421875
+64.58622742 34621.0390625
+64.63820648 14364.806640625
+69.24271393 12108.2705078125
+69.9141922 11062.845703125
+71.68748474 14268.0078125
+74.81188202 17974.853515625
+116.8093643 12884.7060546875
+123.4736023 12176.4619140625
+149.5742798 45489.66796875
+166.109024 12318.970703125
+167.091629 49711.55078125
+169.0591278 28176.146484375
+173.0793304 14386.1416015625
+175.1178589 328018.6875
+176.120636 21503.548828125
+177.0758362 70505.578125
+178.0600586 348662.28125
+178.3370056 49268.33984375
+178.3566742 26382.240234375
+179.0632782 27366.830078125
+179.090744 14662.125
+183.0750885 30732.498046875
+186.0861511 119382.15625
+194.1020813 41822.62890625
+195.086441 4126353.25
+196.0892487 412763.21875
+197.0911102 25152.279296875
+200.1020966 29286.642578125
+206.0910797 164991.578125
+207.0918579 19460.08203125
+207.1126862 19475.326171875
+217.1272278 21349.568359375
+218.1021881 50936.98046875
+222.0847931 18666.921875
+233.1283264 22791.06640625
+234.0982513 20978.828125
+239.1127625 16394.052734375
+240.094696 20885.10546875
+243.0866241 15809.4892578125
+246.0969849 638322.125
+246.1210175 13550.58203125
+247.0997467 82907.6484375
+249.0964203 14534.220703125
+257.1228638 111925.0546875
+260.1125793 122875.6640625
+270.0969543 115004.5859375
+276.105835 18814.388671875
+278.1483765 32631.408203125
+283.1430359 35670.70703125
+287.1236877 161288.65625
+288.1075134 1587671.0
+289.1101379 220739.9375
+290.1104431 26746.724609375
+294.1169128 18921.943359375
+295.1514587 23412.462890625
+303.1427612 19957.5
+304.1283569 22354.884765625
+305.1340637 3241245.75
+306.1192627 1162681.0
+307.1222229 167749.390625
+308.1227112 24321.033203125
+311.1347656 43198.72265625
+312.1166687 31197.814453125
+321.1540222 354372.625
+322.1564941 53600.44921875
+323.1445312 1080861.75
+323.1890259 28921.95703125
+324.1468201 170856.546875
+325.1505127 21062.759765625
+329.1439209 30888.736328125
+338.1422119 51464.73046875
+338.1807251 404577.625
+338.6474915 19648.7421875
+339.1832886 75126.4296875
+347.1491394 21708.34375
+349.160675 21954.884765625
+351.1313782 17663.98046875
+359.144104 61192.6484375
+366.1856079 115050.40625
+367.188446 17072.1640625
+369.139679 39503.20703125
+376.1705627 122486.984375
+377.1577148 77764.046875
+386.1639099 25821.291015625
+394.1810303 725164.8125
+394.2404785 27712.521484375
+395.1829834 138526.953125
+396.1861267 18829.673828125
+412.1882935 41631.8984375
+420.6815796 27343.494140625
+460.1888428 21167.42578125
+468.2203674 38091.0546875
+469.2172546 14767.763671875
+477.2141724 19772.388671875
+478.1989746 16604.849609375
+484.212738 18333.177734375
+485.2475586 224475.96875
+486.2502441 77133.0390625
+488.1863708 49659.609375
+492.230011 145573.390625
+492.7309875 115818.796875
+493.2320251 16987.6484375
+495.2323608 28507.53125
+496.22995 16467.833984375
+503.7196655 24614.99609375
+504.2186279 17043.40625
+505.2106018 46086.828125
+506.2033386 58315.640625
+512.225647 29778.841796875
+512.7268677 34434.515625
+520.7400513 15583.98828125
+521.234314 19225.49609375
+521.7283936 27145.583984375
+523.1339111 28117.443359375
+523.2223511 493708.9375
+523.2941284 11662.5791015625
+524.225769 132913.234375
+525.2287598 34036.10546875
+529.7418823 18781.49609375
+555.2532959 20182.63671875
+558.7434082 35097.14453125
+571.7493896 95450.0703125
+572.2755737 326329.78125
+572.7516479 20850.640625
+573.2791748 101582.9765625
+576.2632446 63829.55078125
+576.7626343 28779.33203125
+577.2618408 28206.06640625
+580.2625122 78962.984375
+580.7553711 2363676.0
+581.2565308 1756047.625
+581.7582397 571379.75
+582.2593994 78243.2421875
+583.2681274 19471.0859375
+589.2686768 36034.828125
+589.7695312 19059.8359375
+598.2737427 66122.46875
+598.7750854 31102.0
+599.2758789 47966.234375
+599.7776489 77100.078125
+606.2580566 43127.921875
+607.2570801 24076.162109375
+624.2676392 73010.09375
+625.2716064 24018.435546875
+673.324707 464550.34375
+674.3260498 149914.640625
+675.3294067 36935.828125
+802.364563 94307.828125
+803.3737183 37693.296875
+873.399353 102020.1875
+874.4014893 39177.28125
+1001.463135 27227.14453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.482.482.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=482"
+RTINSECONDS=52.49379032
+PEPMASS=598.27001953125
+CHARGE=2+
+56.20877838 15287.8837890625
+62.73532104 14312.140625
+64.52626801 70339.9921875
+64.5304718 51226.42578125
+64.58202362 45679.76171875
+64.58618927 39105.30078125
+64.63813782 24559.302734375
+64.64159393 19920.625
+75.68888092 13224.9619140625
+149.5667877 53192.0859375
+156.3912506 16507.267578125
+161.4435272 17674.431640625
+167.0922699 24662.77734375
+169.0595245 45495.83984375
+175.1178741 326269.78125
+176.1211395 21340.287109375
+177.0755005 72640.7578125
+178.0599365 383239.3125
+178.3434448 109142.5
+179.0907898 18415.185546875
+182.0907745 21322.244140625
+183.0751495 43927.1953125
+186.0862885 115829.890625
+194.102829 31810.0859375
+195.0864258 4698720.0
+196.0893402 489388.09375
+197.0917206 44642.56640625
+201.0861816 20148.52734375
+206.0913239 140569.9375
+213.0851898 18462.662109375
+218.1025238 60991.05859375
+222.0851898 21500.912109375
+240.0967255 24493.16796875
+243.0864105 31300.220703125
+244.1186371 24875.41796875
+246.0969849 698405.3125
+247.0999298 94345.15625
+249.0973511 27951.900390625
+257.1228333 117547.8671875
+260.1122131 139719.09375
+270.096405 123174.125
+278.118103 20077.5859375
+283.142395 54685.8046875
+287.1235046 153680.109375
+288.1073914 1747381.0
+289.1100769 258858.953125
+290.1152344 22453.5703125
+294.1196899 28554.828125
+295.1496887 22745.970703125
+303.1437683 35961.49609375
+305.1339722 3327082.25
+306.1191406 1266469.5
+307.1216125 188238.421875
+311.1357117 48948.21875
+312.1160583 29316.849609375
+321.1539917 404701.90625
+322.1560364 68165.859375
+323.1445312 1151426.75
+323.2081604 21942.40234375
+324.1470032 180668.59375
+328.1636963 18766.447265625
+329.1427002 42309.078125
+331.1481018 17071.8515625
+338.1425476 47183.64453125
+338.1806641 423659.53125
+338.6445923 39332.0625
+339.1841736 69972.40625
+346.1713562 20922.953125
+347.1480713 42244.5234375
+359.1448975 58737.01171875
+360.1474609 21606.31640625
+366.1865845 156794.0625
+369.1383362 31534.59765625
+376.1700439 143585.9375
+377.1558838 88048.03125
+378.1552734 18588.40234375
+386.1664429 32388.345703125
+394.1809387 832196.125
+395.1825562 142804.90625
+412.1895142 28138.4375
+413.1612549 29682.228515625
+420.6843262 21465.490234375
+468.2218933 39391.6640625
+469.2182312 27182.068359375
+477.2198181 23240.931640625
+485.2477112 204780.609375
+486.2514038 55920.4765625
+488.1903687 60220.89453125
+492.2286072 189931.09375
+492.7313538 83430.7578125
+493.2269287 35409.22265625
+495.2269592 53424.265625
+503.7230225 21607.775390625
+505.2124023 93184.4140625
+506.2072754 52571.60546875
+512.2282715 47476.03125
+512.7332153 25306.3359375
+521.230835 30472.50390625
+523.222168 574070.125
+524.2260132 143401.796875
+525.2288208 32383.337890625
+558.7390137 24647.734375
+567.2484741 21185.4375
+568.2733154 22136.9375
+571.7505493 57844.61328125
+572.2759399 346805.9375
+572.7514038 42587.70703125
+573.279541 117993.75
+574.2799683 24913.22265625
+575.2683105 23171.17578125
+576.2563477 45130.9453125
+576.7670898 32235.82421875
+577.2645874 22803.423828125
+580.2617188 73203.2265625
+580.755127 2686887.5
+581.2562866 1872174.0
+581.7579956 622899.1875
+581.8630371 27069.412109375
+582.2612305 104953.8828125
+589.2666016 159182.96875
+589.7660522 80371.7109375
+598.2713013 66743.1796875
+598.7744141 50147.66015625
+599.7784424 84610.8671875
+606.2560425 26918.751953125
+607.2642212 23717.58984375
+624.2680054 50220.8515625
+673.3242188 495040.375
+674.3259277 152121.9375
+802.3659058 102170.7421875
+803.3674927 35143.12890625
+873.3999023 82684.1328125
+874.3973999 58761.75390625
+888.805603 20163.498046875
+1001.459656 40551.703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.483.483.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=483"
+RTINSECONDS=52.60047867
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52622986 54935.91796875
+64.5306778 44443.0
+64.58203125 38358.484375
+64.58620453 25407.7109375
+64.63805389 23784.583984375
+64.64151001 14702.669921875
+66.70500946 10280.1787109375
+75.26042938 12015.1064453125
+76.28526306 11203.0693359375
+87.58889771 11921.1640625
+93.68055725 10604.4716796875
+149.5764465 29361.416015625
+167.0921478 34002.828125
+169.0593719 34016.59765625
+175.1177368 283340.0
+177.0760956 69725.4921875
+178.0599976 316285.34375
+178.338974 55102.60546875
+178.3576508 24934.154296875
+179.0636597 25933.310546875
+179.0904999 30025.77734375
+183.0757141 21891.591796875
+186.085968 93485.71875
+194.1017456 37266.56640625
+195.0863495 3775783.25
+195.128067 17200.18359375
+196.0893707 367061.09375
+197.0917664 23986.30859375
+200.1021423 28295.015625
+201.0866547 22645.55078125
+206.0910339 171700.28125
+207.0948944 18096.853515625
+215.0914764 15381.1875
+218.102417 60548.02734375
+234.0978699 16860.3203125
+239.1133423 18928.931640625
+240.0964355 28081.65234375
+243.0856171 27240.798828125
+246.0968781 634910.0
+247.1000366 75660.796875
+248.1117554 14788.162109375
+249.0946808 13422.787109375
+252.4389648 14556.7392578125
+257.1224976 87019.109375
+260.1130371 92837.7578125
+261.1184082 12496.6572265625
+270.0963745 111884.953125
+277.1401672 12434.560546875
+278.1183777 13177.2900390625
+278.1491699 29330.791015625
+283.14328 34343.1796875
+287.1234741 167044.625
+288.1072693 1541827.25
+288.2312012 13935.970703125
+289.1098633 228314.78125
+290.1117554 11807.740234375
+295.149231 27058.14453125
+302.1313171 21888.26171875
+303.142334 27199.1953125
+305.1338501 2922785.75
+306.1190491 1079532.5
+306.1970825 15346.505859375
+307.1207886 171691.453125
+308.1228333 21652.275390625
+311.1357117 34587.1328125
+312.1181946 31292.51171875
+320.1317444 13326.306640625
+321.1538086 320708.21875
+322.1564636 68183.7109375
+323.1443176 1041999.6875
+324.146759 175855.171875
+325.1494446 19455.1015625
+329.1455688 36513.88671875
+331.1499329 16070.42578125
+338.1425781 43711.85546875
+338.1802063 376314.6875
+339.183136 71531.3359375
+347.1508789 20882.12890625
+347.6478271 18893.77734375
+349.1621704 14067.5947265625
+351.131958 20921.7578125
+359.1447144 58908.62109375
+366.1861267 117270.71875
+367.1848145 23608.74609375
+369.1406555 25595.181640625
+376.170166 93141.21875
+377.1572266 64841.046875
+386.1630554 33314.37109375
+394.1806641 633625.25
+394.2391968 23706.81640625
+395.1822815 120506.3828125
+412.1921387 19335.591796875
+451.2061462 12693.69921875
+460.1950684 22246.484375
+468.2215881 42800.80859375
+477.217926 18879.40234375
+478.2049866 13657.5087890625
+483.718811 26750.533203125
+485.2467041 188768.46875
+486.2519226 48314.1484375
+488.1853638 53127.13671875
+489.1890869 15474.083984375
+492.2290344 179192.234375
+492.7302551 90904.6484375
+493.2301636 22994.34765625
+495.2271729 44660.62890625
+503.2187805 19469.263671875
+503.7163696 27932.7109375
+504.2137146 18224.580078125
+505.2126465 55528.07421875
+506.2108765 41196.4921875
+508.1240234 13663.654296875
+512.2269287 50892.5
+512.7290039 31216.4765625
+521.2332764 24614.404296875
+521.7358398 18994.5
+523.2218018 383600.15625
+524.223877 110148.171875
+525.2297974 26403.939453125
+537.2342529 15683.6630859375
+555.2457886 13911.40625
+559.2401733 18612.61328125
+571.7490234 92287.3203125
+572.274353 297284.03125
+572.755249 22440.74609375
+573.2789917 99818.25
+576.2614136 36274.69140625
+576.7622681 38756.4375
+580.2610474 74449.8203125
+580.7546997 2143629.5
+581.2561035 1446149.0
+581.3654175 21616.728515625
+581.7575073 536934.3125
+581.8643188 17822.49609375
+582.2584229 133707.8125
+589.2665405 38632.3671875
+589.7714233 21668.076171875
+598.2720947 40610.42578125
+598.7741699 37112.27734375
+599.2767944 50695.671875
+599.7766724 81161.453125
+606.2576294 23295.92578125
+607.2537842 16308.1220703125
+624.2670288 53643.1640625
+673.3234863 372764.21875
+674.3261719 139423.859375
+675.3135376 21392.37109375
+711.2946167 15997.8544921875
+802.3641968 77081.46875
+803.3677979 35981.58203125
+873.3969116 93248.703125
+874.3962402 35422.046875
+1013.365479 13633.2509765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.484.484.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=484"
+RTINSECONDS=52.71148678
+PEPMASS=598.27001953125
+CHARGE=2+
+52.46839142 11413.025390625
+58.13447571 18718.736328125
+64.52638245 71121.015625
+64.53068542 45451.79296875
+64.58207703 48463.65625
+64.58624268 22793.802734375
+64.63825989 21828.14453125
+64.6413269 14972.423828125
+74.63454437 13356.712890625
+76.28152466 16044.4052734375
+82.05467987 17147.68359375
+82.27766418 13384.552734375
+129.3752594 12989.880859375
+149.5713959 57498.4609375
+167.0918427 41649.1796875
+169.0597839 42284.625
+175.101944 24261.087890625
+175.117981 267896.875
+176.1220856 20100.142578125
+177.0764465 47476.109375
+178.0601807 328825.5625
+178.3427277 85922.9453125
+179.0622101 20751.615234375
+179.0922241 19925.951171875
+182.0914307 24290.890625
+183.0747528 18670.71484375
+186.0865784 98983.015625
+187.0911102 14829.923828125
+194.1037598 24003.248046875
+195.0865936 4019965.75
+196.0896301 435467.96875
+197.092865 19542.416015625
+200.1026459 17025.568359375
+201.0859528 24038.244140625
+206.0912933 154776.75
+209.0759735 14058.34375
+215.0907593 19538.95703125
+218.10289 63510.3828125
+240.0950165 21082.697265625
+243.0875092 23398.818359375
+246.097229 580871.75
+246.1257172 26169.140625
+247.0999451 76329.71875
+248.1143951 14086.322265625
+249.0958252 16903.03515625
+257.1227417 78280.8671875
+258.1235962 16594.42578125
+260.1131287 113747.5859375
+262.1255188 20716.880859375
+270.0976868 131911.890625
+271.102356 17396.76953125
+277.1395874 20803.150390625
+278.1491699 25703.16015625
+283.1434326 44593.96484375
+287.1236877 171967.546875
+288.107666 1511173.75
+289.1104126 264356.3125
+290.1125488 22060.671875
+294.117218 25731.3203125
+295.151001 18408.927734375
+303.1449585 32385.3125
+305.1044617 58624.05859375
+305.1342468 3066905.75
+306.1194763 1060386.0
+307.1219482 193023.0625
+311.1351624 50900.56640625
+312.1170349 22768.39453125
+321.15448 302573.5625
+322.1574707 66046.2421875
+323.0987244 19300.01171875
+323.111969 17402.224609375
+323.1447754 1115854.5
+324.1464539 180444.359375
+325.1478271 19860.75390625
+329.1442566 56129.5234375
+338.1419983 55005.60546875
+338.1810303 374888.46875
+338.644928 22266.30859375
+339.1427002 13989.263671875
+339.1850281 59161.72265625
+347.1489258 20888.1328125
+349.1616516 18840.185546875
+359.1451111 70971.2734375
+366.186676 113045.9609375
+367.1881409 36829.28125
+369.1387939 19444.1171875
+376.1705322 118642.0078125
+377.1578979 71230.9765625
+386.1647644 22239.07421875
+389.1593933 14206.7138671875
+394.120636 23802.646484375
+394.1305847 13867.4140625
+394.1814575 697098.0625
+394.2395935 16818.337890625
+395.1834717 144199.0
+412.1867676 36292.8828125
+434.17276 16217.23046875
+460.1902466 27925.625
+468.2224731 47627.90234375
+477.2154236 19521.935546875
+485.2478943 203380.640625
+486.2507935 54980.57421875
+488.1879272 58032.36328125
+489.1840515 16315.978515625
+492.2297974 162934.40625
+492.7311707 101007.15625
+493.2308655 31393.01171875
+495.2288513 63117.19140625
+503.2196045 15445.9306640625
+505.2113342 45376.7578125
+506.2113647 40854.06640625
+506.730072 15537.396484375
+512.225708 51115.671875
+512.7305908 30440.509765625
+521.2329102 34428.1484375
+523.2228394 469904.9375
+524.2253418 124757.4296875
+525.2346802 22693.79296875
+529.7457275 19296.13671875
+530.2459106 24850.62890625
+558.74823 23730.40625
+559.2478027 17847.130859375
+571.7513428 96497.9921875
+572.2753296 351881.03125
+572.7553101 23014.798828125
+573.2803345 102920.578125
+576.2618408 44546.62890625
+576.7623901 30520.052734375
+577.2583618 32708.2265625
+580.2625122 88589.9296875
+580.7557983 2542310.0
+581.256958 1661232.5
+581.3658447 23843.453125
+581.7589111 681878.8125
+582.2599487 106084.9375
+583.2730103 14885.0849609375
+589.2680664 50415.5546875
+589.7651978 20244.306640625
+598.2747192 61213.86328125
+598.7744141 41545.90625
+599.2752686 23447.533203125
+599.7775879 103061.140625
+606.2577515 40108.875
+607.2589722 19870.8359375
+624.2703247 45708.8828125
+673.3247681 385176.5625
+674.3268433 148499.40625
+675.328186 32002.83203125
+693.2787476 17791.447265625
+711.2946167 22179.908203125
+802.3653564 101351.5546875
+803.3662109 44389.9609375
+873.4012451 87700.7265625
+874.4036865 45400.8046875
+1001.465088 19651.28125
+1002.448425 19227.765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.485.485.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=485"
+RTINSECONDS=52.82125458
+PEPMASS=598.27001953125
+CHARGE=2+
+54.9070282 12432.6015625
+64.47171021 12982.466796875
+64.52627563 65974.7421875
+64.53070831 45795.36328125
+64.58201599 46371.83984375
+64.58620453 31417.052734375
+64.63803101 21539.125
+74.81187439 23529.005859375
+76.28102112 12488.57421875
+137.7171631 13430.220703125
+149.5707855 59217.10546875
+167.0917206 38028.10546875
+169.0595856 32496.23828125
+175.1178589 316426.4375
+176.1200256 15981.4814453125
+177.0759583 53512.2578125
+178.059967 327857.03125
+178.3320465 32371.107421875
+178.3511505 71143.8828125
+179.0641327 20447.138671875
+179.0926819 15998.484375
+182.0918732 19889.220703125
+183.0745087 23735.140625
+186.0860443 103098.4921875
+194.1017761 38153.4609375
+195.08638 4184904.5
+196.0892639 395139.75
+197.0916138 40942.3515625
+199.8914948 16808.466796875
+206.0909576 145715.734375
+212.1139984 18138.060546875
+218.102066 64370.5546875
+222.0879974 17432.490234375
+239.1116333 19926.904296875
+240.0970154 26752.546875
+244.1182404 22134.78125
+246.0968933 620934.5625
+246.1256714 24194.251953125
+247.1000671 65227.1015625
+249.0963593 23208.89453125
+257.1228943 110451.140625
+260.1122131 98112.796875
+261.1158752 22506.515625
+270.0973206 119456.9921875
+271.1015015 22960.96484375
+278.1194763 23790.728515625
+283.1445312 41205.62109375
+287.1234741 147382.390625
+288.1073608 1565946.5
+289.1102905 219650.03125
+290.1148682 25700.791015625
+295.1488037 18943.11328125
+303.1426392 33494.72265625
+303.8578796 18795.921875
+305.1338501 3085572.0
+306.1191101 1106523.75
+307.1216431 184008.109375
+308.1220398 19146.173828125
+311.1346741 53893.859375
+312.1161499 26529.9296875
+321.1538086 351452.4375
+322.1565552 61409.95703125
+323.1444397 1125686.0
+324.146637 186658.890625
+329.1438904 45381.5
+338.1426697 45956.2890625
+338.180603 388014.34375
+339.183075 65058.07421875
+347.4122925 15536.23046875
+349.1585999 27905.216796875
+359.14328 54073.0546875
+366.1855164 104477.6171875
+367.1906128 21981.0390625
+369.1370239 39173.390625
+376.1702271 122139.6875
+377.1588135 75317.0859375
+378.1551514 21556.98828125
+394.1807556 709053.3125
+395.1827393 149255.203125
+396.1896057 20128.50390625
+398.1723328 19433.01171875
+412.1881714 40560.3203125
+450.2104797 18172.400390625
+468.2217102 47347.625
+477.2207031 20807.76171875
+478.2010803 26398.765625
+483.7172852 21765.677734375
+485.2472534 184006.96875
+486.2482605 44492.3828125
+488.1877747 54166.53515625
+492.229248 136777.921875
+492.7288208 72658.40625
+493.2318726 27618.748046875
+495.2275391 60153.1015625
+505.210907 56860.84765625
+506.201355 34086.8125
+512.2238159 40177.9609375
+512.7346802 19747.15625
+520.7358398 24903.9609375
+521.2321167 45758.7890625
+521.7312622 26818.796875
+522.4431152 17330.1953125
+523.2223511 437129.875
+524.2242432 121328.7265625
+525.2269287 30346.482421875
+529.74646 20089.408203125
+558.242981 22505.412109375
+559.7520142 18906.9296875
+567.2537842 22089.326171875
+571.7488403 101003.359375
+572.2741089 310251.75
+572.7541504 25503.8671875
+573.2785645 96217.5703125
+574.2769775 24295.146484375
+576.2583008 37121.54296875
+576.7589722 44296.359375
+577.2618408 25938.091796875
+580.2628174 89221.6015625
+580.7550049 2470363.75
+581.2561035 1739390.25
+581.3659668 29184.095703125
+581.7573853 638001.3125
+581.8655396 25379.728515625
+582.2585449 117739.1015625
+589.2672119 85796.90625
+589.7711182 46370.66015625
+598.272644 55421.06640625
+598.7719116 33627.5390625
+599.7761841 48691.59765625
+606.2617798 21772.740234375
+607.2479248 16965.396484375
+624.2684937 58710.82421875
+655.3095093 24971.02734375
+673.3236084 449796.21875
+674.3267212 145598.6875
+675.3359985 23775.96875
+693.2885132 26061.44140625
+711.3014526 17033.927734375
+772.6935425 16004.474609375
+802.3632202 104207.640625
+803.3601074 42354.390625
+873.3996582 107396.6640625
+874.4017334 53546.23046875
+1001.458313 16336.4462890625
+1058.484619 18124.18359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.486.486.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=486"
+RTINSECONDS=52.92994939
+PEPMASS=598.27001953125
+CHARGE=2+
+56.37345505 12203.24609375
+64.5262146 53582.37109375
+64.53045654 37496.84765625
+64.58197021 38388.35546875
+64.58615875 30072.10546875
+64.63817596 17894.90625
+64.6414032 20094.3046875
+82.05426025 18849.00390625
+104.9598999 13606.26953125
+109.2548981 14788.6962890625
+109.8263931 12503.150390625
+149.5679932 56803.30078125
+152.0323486 15949.95703125
+167.0916138 26255.3203125
+169.0595856 40207.375
+175.1176605 276445.0625
+176.1214294 21468.203125
+177.0759125 61413.65625
+178.0598907 305590.625
+178.3410492 86429.125
+179.0636902 37014.98828125
+179.0913239 17060.697265625
+183.0756226 20058.916015625
+186.0861206 97722.046875
+194.1019592 37442.28125
+195.0863342 3975628.5
+195.1033173 68680.703125
+195.1280365 20720.138671875
+196.0891418 407202.53125
+197.0912018 46604.3046875
+200.1030731 15339.2529296875
+201.0857391 21430.142578125
+206.0910797 145905.734375
+212.1138763 13753.8388671875
+218.101532 48744.28515625
+222.0872955 18531.283203125
+234.0975037 19618.8984375
+239.1130524 15485.95703125
+240.0958557 17707.71875
+243.0860901 22054.0
+246.096817 628751.9375
+246.1218719 15983.3994140625
+247.1000214 74724.65625
+249.0960846 19349.470703125
+257.1222839 82567.9140625
+260.1127014 107366.4453125
+261.1174011 24286.63671875
+270.0963135 139693.96875
+271.1015015 24856.119140625
+277.1394043 13214.4951171875
+278.1509399 15497.73828125
+283.1428528 41521.43359375
+287.1234741 134864.8125
+288.1072388 1512599.25
+289.1100464 221396.921875
+290.1110229 20120.615234375
+295.1473389 25579.6015625
+303.1439819 26001.361328125
+305.1337585 2977622.5
+306.1190491 1112296.5
+307.1209106 201642.875
+308.1226501 20770.283203125
+311.1354675 56592.2578125
+312.1172791 37917.64453125
+321.1538391 301579.46875
+322.1559448 66477.7265625
+323.0987854 19066.703125
+323.144165 1152004.875
+324.1468811 197449.0
+328.1606445 14513.16015625
+329.143158 54605.85546875
+338.1427612 41658.2578125
+338.1803589 394283.15625
+339.1825562 93335.7578125
+341.1488647 20092.787109375
+346.1678162 20433.9765625
+347.1500244 31669.51171875
+349.1594849 20708.609375
+359.1444702 40025.26171875
+366.1866455 130640.1484375
+369.1400146 27502.96484375
+376.1697388 131985.375
+377.1571655 62037.6953125
+378.1593018 14564.185546875
+386.1639099 24479.470703125
+394.1807861 679247.3125
+395.1827698 149197.578125
+396.1864319 22197.205078125
+398.1719666 16051.2080078125
+412.1861267 26609.0625
+464.1770325 18099.9921875
+468.2211304 43408.07421875
+477.2182007 16160.48046875
+483.7224426 28268.03125
+485.2466736 201448.328125
+486.2506104 59165.37109375
+488.1854858 50394.27734375
+492.229126 144505.34375
+492.7308655 65786.046875
+493.231781 31666.265625
+495.227478 52425.40234375
+503.7185669 19171.634765625
+505.2120361 39662.515625
+506.2017517 57751.3125
+506.7295532 14360.52734375
+507.2089844 20317.669921875
+512.2304077 29846.7109375
+512.7322998 23369.501953125
+521.2359619 40278.5546875
+521.732605 16493.828125
+523.2214355 430477.125
+524.223999 110953.25
+525.2296753 34539.08203125
+541.2366943 16019.541015625
+555.2591553 18396.859375
+558.2467651 19895.55078125
+571.7519531 74431.7421875
+572.2753296 306758.71875
+572.7485962 22799.140625
+573.2779541 90521.46875
+576.2622681 27056.9453125
+576.762207 20432.859375
+580.2600708 112361.890625
+580.7546997 2159840.0
+580.8414307 23636.201171875
+581.2557373 1437243.875
+581.3361206 23306.91796875
+581.3659058 21523.8359375
+581.7575684 584007.5625
+582.258728 127752.3671875
+589.2683716 38153.08984375
+589.7719116 28326.17578125
+598.2728271 44769.4140625
+598.7752686 32324.33984375
+599.2711182 39910.69921875
+599.7759399 86780.2109375
+606.2546387 25754.3671875
+624.2680054 60703.99609375
+625.2688599 18171.380859375
+655.3108521 17423.1796875
+673.3240356 406127.0
+674.3269653 174731.984375
+675.3284912 27080.3984375
+711.295105 19353.044921875
+802.3618164 84726.1640625
+803.364624 36732.94140625
+873.3991699 97210.9453125
+874.4065552 41873.08984375
+1001.447937 28546.208984375
+1058.474121 19957.173828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.487.487.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=487"
+RTINSECONDS=53.03948691
+PEPMASS=598.27001953125
+CHARGE=2+
+52.82592392 15478.814453125
+55.00798416 14044.7119140625
+64.52632904 70999.046875
+64.53070831 53040.53125
+64.58197021 54156.55859375
+64.58618927 40164.34765625
+64.63807678 23624.193359375
+64.64151764 19176.046875
+87.18032837 16602.123046875
+145.181778 17473.7421875
+149.5721283 64556.6171875
+167.0917816 58197.828125
+169.0593109 32950.578125
+175.1178131 299055.6875
+177.0761108 70801.4375
+178.0599823 343441.8125
+178.3352051 48520.828125
+178.3544617 44854.5078125
+180.0753174 16328.9462890625
+182.0912628 19181.576171875
+183.0753937 35703.08203125
+186.0861359 111756.0546875
+194.1025238 36419.98828125
+195.086319 4519669.5
+196.0892334 447526.375
+197.091507 26690.15234375
+199.1180267 20993.9609375
+200.1016998 17075.912109375
+206.0909882 171313.53125
+212.1134491 17997.28515625
+215.0941162 20377.099609375
+218.1025543 63967.50390625
+228.2469177 16522.423828125
+233.1261902 20589.521484375
+234.0965729 21505.537109375
+240.0954132 22747.888671875
+244.1167908 18928.43359375
+246.0967407 604356.5625
+247.0998993 102123.8828125
+257.1227112 109463.421875
+260.1122131 129164.8359375
+270.0964355 132404.21875
+278.1481323 21308.328125
+283.1418457 46058.05859375
+287.12323 126781.1171875
+288.1071167 1603752.25
+289.1098022 240857.578125
+290.1153564 22312.28125
+294.1179504 28975.9921875
+295.1488037 26429.1640625
+303.1421509 24800.439453125
+305.133667 3346694.75
+306.118988 1198932.75
+307.1211548 198237.328125
+308.1226501 22892.677734375
+311.133667 51148.76953125
+312.116272 33768.37109375
+321.1535645 352269.28125
+322.1565857 53858.91015625
+323.1440735 1127712.5
+323.1887512 37015.53125
+324.1466064 182771.578125
+328.1622009 17108.67578125
+329.144104 40215.49609375
+338.1412964 51714.28125
+338.1804199 439404.1875
+339.1835022 86662.2578125
+349.1605835 18572.95703125
+359.1422729 49174.4765625
+366.1852722 119976.3359375
+369.1397095 30714.8671875
+376.1698914 127850.375
+377.1523132 82166.375
+386.1642761 32720.8671875
+394.180542 819892.3125
+394.2406006 33937.94140625
+395.1824036 157622.40625
+396.1841125 21299.849609375
+412.1888428 38061.25
+460.1876221 29845.419921875
+468.2225342 51282.50390625
+477.2171021 24039.267578125
+483.7208862 33455.6328125
+485.246521 247915.046875
+486.2484131 68960.2734375
+488.1850281 46222.203125
+492.228241 161291.96875
+492.730011 92155.109375
+493.226593 31191.1328125
+495.2302856 50052.46484375
+503.7184753 30569.40625
+505.211731 52278.42578125
+506.2070618 48314.35546875
+512.2262573 51467.7421875
+521.2332764 22755.98046875
+521.7362671 21486.125
+523.2214355 498680.84375
+524.2229614 128280.3828125
+525.2276001 26083.158203125
+541.2200928 21710.93359375
+558.7462769 22662.833984375
+567.2572021 25635.591796875
+571.7496948 94084.9140625
+572.2738037 345869.625
+572.7584229 18564.060546875
+573.2792969 123968.4375
+576.2609863 56830.83203125
+576.7603149 49345.0546875
+577.2645874 34594.8046875
+580.2602539 101122.09375
+580.7543335 2607517.0
+581.2555542 1890574.125
+581.3353271 25464.24609375
+581.3699951 31495.009765625
+581.757019 750447.1875
+582.2580566 148401.21875
+589.2662964 92360.8671875
+589.7643433 65182.26171875
+598.2712402 61507.86328125
+598.7767334 29744.6953125
+599.2694092 21273.54296875
+599.7770996 60835.5390625
+606.2578735 35121.48828125
+607.260376 18603.44140625
+624.2688599 59302.140625
+655.3161011 22183.3671875
+673.3225708 459328.0625
+674.3267212 193962.359375
+675.3279419 35539.26953125
+711.2996216 34046.9765625
+802.3625488 108182.984375
+803.364563 27416.158203125
+804.3619995 25454.669921875
+873.395874 85419.484375
+874.3998413 52748.55859375
+1058.473389 22807.373046875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.488.488.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=488"
+RTINSECONDS=53.14636815
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 56556.421875
+64.53058624 40386.7265625
+64.58196259 41514.078125
+64.58616638 31461.0703125
+64.63824463 19033.638671875
+64.64162445 15546.0234375
+82.05389404 14445.2099609375
+149.5610504 20723.287109375
+149.5758209 36303.27734375
+163.9633942 10931.2314453125
+167.0921326 37341.9375
+169.0601349 28450.66796875
+175.1177826 256305.5625
+176.1212769 16385.458984375
+177.0758514 65918.5
+178.0599518 334169.5
+178.0781555 19775.423828125
+178.3318481 24306.28515625
+178.3514404 59396.42578125
+179.0634155 15079.4677734375
+179.0921631 14819.0927734375
+183.0753784 22827.41796875
+185.9886475 12061.2568359375
+186.0861053 100447.3125
+194.1021729 38543.8984375
+194.3108063 12846.99609375
+195.0863647 3792530.75
+195.1031036 60725.7734375
+195.1276398 33396.45703125
+196.0892334 387340.0
+197.0906067 33846.74609375
+200.1006622 28473.8671875
+201.0858765 14460.3759765625
+206.0909729 134468.765625
+207.0935669 22916.28515625
+212.0998993 15650.8994140625
+215.0910645 13530.712890625
+218.1025391 37635.16796875
+221.4201202 12620.091796875
+234.0972595 13916.01171875
+240.0960999 21979.7109375
+246.0969086 662095.0
+246.1205292 10245.7119140625
+247.0990753 71651.4375
+257.122467 95800.8359375
+260.1124573 109529.1171875
+261.1163635 16148.572265625
+270.0968323 144130.109375
+271.1036072 11744.4130859375
+278.1165466 15137.85546875
+278.1484985 16105.6806640625
+279.129303 14013.2275390625
+283.1440735 29522.640625
+287.1236877 156238.6875
+288.1072998 1548558.625
+289.1098633 193387.328125
+290.1127319 22630.89453125
+294.1178589 19081.830078125
+295.1497803 22472.71875
+302.1303101 13333.0576171875
+303.1429138 18596.68359375
+305.1338196 2921244.75
+306.1190491 1016257.625
+306.1971741 15579.66015625
+307.1216431 164756.890625
+311.1341248 40547.3671875
+312.1167297 25955.98046875
+321.153717 313022.15625
+322.1563416 48547.3125
+323.0984497 17663.89453125
+323.1442871 996436.8125
+324.146759 185187.484375
+325.1479797 16783.2109375
+327.7461853 11740.259765625
+329.1417847 41101.89453125
+331.1483765 16368.689453125
+338.1422119 72837.0
+338.1806335 355112.5
+338.6442261 23511.765625
+339.1430664 14184.447265625
+339.1836853 69930.625
+346.1710815 15711.412109375
+347.1485901 21988.4140625
+348.1696777 13250.2919921875
+349.1630554 16009.154296875
+351.1309814 19117.544921875
+358.1616516 17073.173828125
+359.1437988 77208.2265625
+366.1863708 120078.8046875
+367.1850891 22132.43359375
+369.1397095 27394.078125
+376.1703491 104638.9921875
+377.1554565 66710.4453125
+386.1645813 25559.162109375
+394.1806641 646350.9375
+395.1825256 135092.046875
+396.1851501 20391.345703125
+412.1896667 24715.876953125
+413.1730957 12352.62890625
+460.1883545 18019.548828125
+468.2185364 59528.859375
+477.2120361 16249.2021484375
+483.7178345 16334.462890625
+485.2472229 204756.71875
+486.2501526 48714.75390625
+488.1861267 48453.51953125
+492.2290955 162156.1875
+492.7301331 75794.703125
+493.2286072 42682.21875
+495.2283325 50316.92578125
+505.212738 69407.6015625
+506.1999512 54025.2265625
+512.227417 40880.98828125
+512.7250977 32141.8046875
+513.2240601 18784.583984375
+521.2335815 32043.7890625
+521.729126 21757.78515625
+523.2214355 422623.9375
+524.2231445 124574.171875
+525.2300415 25974.8984375
+530.7506104 13276.5224609375
+531.1627808 15266.826171875
+541.2320557 14982.447265625
+554.2587891 16572.0
+558.7428589 27240.0
+571.750061 66069.3671875
+572.2752686 286621.09375
+572.741394 31005.64453125
+573.2786255 91959.453125
+576.2613525 48299.04296875
+576.762085 14705.3720703125
+577.262085 21338.515625
+580.2589722 67286.453125
+580.7545776 2156356.0
+581.2559204 1540880.0
+581.3675537 23099.138671875
+581.7576294 518700.875
+582.2584839 110845.125
+589.2648926 23785.2109375
+589.7641602 19410.392578125
+598.2727661 52377.20703125
+598.772522 21851.419921875
+599.2776489 45497.6015625
+599.7786255 91219.625
+606.2572632 34479.08203125
+607.2536621 16457.06640625
+624.2674561 48917.22265625
+625.270752 16740.056640625
+655.3186646 14636.3955078125
+673.3242188 373455.28125
+674.3266602 145695.375
+675.3288574 25684.400390625
+693.2833862 13006.32421875
+711.3001709 16957.060546875
+802.3635864 74947.1875
+803.3653564 32399.232421875
+873.3970947 70789.0
+874.4049072 38625.015625
+1001.46405 26653.796875
+1002.446167 16250.8251953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.489.489.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=489"
+RTINSECONDS=53.25779245
+PEPMASS=598.27001953125
+CHARGE=2+
+53.49702835 14338.6376953125
+64.52632141 69003.96875
+64.53050232 49184.4375
+64.58197021 53153.984375
+64.58609772 34049.64453125
+64.63826752 22449.96875
+82.05426788 24441.578125
+149.5684052 75261.734375
+167.0919952 41550.953125
+169.0598145 32940.91796875
+175.1177673 283534.53125
+176.121109 18748.861328125
+177.0760193 66959.984375
+178.0599518 311433.0
+178.3399048 85434.5859375
+179.0913696 28029.1171875
+183.0753937 23355.173828125
+186.0861664 103500.609375
+194.1032104 39281.14453125
+195.0863953 4547390.0
+195.1281738 25099.05859375
+196.0892334 434850.03125
+197.0923462 25073.064453125
+200.1025085 26432.7421875
+200.6041107 19593.357421875
+201.0865784 27211.642578125
+206.0909882 148129.34375
+209.0791016 17179.5859375
+209.10112 21706.75
+215.0918884 28855.130859375
+218.1023865 45565.01953125
+237.1086426 18158.54296875
+239.1128082 18311.865234375
+240.0960236 31789.263671875
+244.1174927 28264.119140625
+246.0969086 597436.4375
+247.0995789 84826.0859375
+249.0950165 25172.015625
+257.1227112 100115.8984375
+260.1126099 103540.4140625
+260.1387939 18758.673828125
+261.1190186 18764.60546875
+270.0978394 120812.46875
+287.1234131 136888.21875
+288.1073303 1553610.625
+289.1102905 238477.671875
+290.1103821 29359.724609375
+302.1318359 27033.923828125
+303.1430664 30530.912109375
+305.1338501 3322069.25
+306.1190796 1175709.375
+307.1212769 198460.734375
+308.1247253 22556.337890625
+311.1338196 50799.94140625
+312.1156921 24818.92578125
+318.1430664 20781.517578125
+321.1538391 365486.3125
+322.1581726 46061.19140625
+323.098999 23607.845703125
+323.1443176 1184797.875
+323.3009033 17892.16796875
+324.1463928 185880.921875
+325.1545105 20989.65625
+329.1436462 38518.7890625
+331.1515198 22730.81640625
+338.143158 43771.46484375
+338.1803284 422779.28125
+338.6439819 35265.703125
+339.1832886 93112.1015625
+347.1477356 19221.921875
+349.1574402 33807.796875
+359.1450195 49569.5390625
+366.1859741 128765.453125
+369.1398926 21292.77734375
+376.1704712 122981.515625
+377.1560059 87354.640625
+378.1575928 21178.8828125
+386.1652222 32776.03125
+394.1806946 748649.8125
+394.2398987 29452.61328125
+395.1827087 158252.546875
+396.1856689 22620.791015625
+397.6668091 18306.0390625
+412.1864929 38158.82421875
+420.6805725 25322.71484375
+468.2222595 54254.3046875
+485.2471008 179063.515625
+486.2490845 70895.7421875
+488.1878052 45264.859375
+492.2293701 168821.515625
+492.7301025 83069.75
+493.2383118 33707.16015625
+495.2271423 44697.265625
+505.212738 56326.046875
+506.2074585 49226.38671875
+512.225647 58677.34375
+512.7241211 25730.70703125
+521.2351685 19800.529296875
+523.2216797 447806.40625
+524.2243042 114924.0703125
+525.2295532 24162.41796875
+571.7498779 66148.9375
+572.2741699 332056.96875
+573.2794189 111902.8671875
+574.2797852 34031.01171875
+576.2600098 55130.90234375
+577.2663574 33999.6171875
+580.2615356 91554.6796875
+580.7547607 2743668.25
+581.2559204 1756977.5
+581.3656006 26635.87890625
+581.7580566 675069.0
+582.2592163 172577.296875
+589.2658691 144638.09375
+589.7659302 113786.109375
+598.2783813 56844.1484375
+598.7711182 43395.7109375
+599.7775879 68420.7578125
+606.2548828 45831.85546875
+624.2670288 59844.3515625
+673.3238525 505336.75
+674.3265381 176026.328125
+675.3305664 33911.3046875
+802.364563 104109.3125
+803.3665161 67731.8515625
+873.4000854 111546.4296875
+874.4040527 46308.0625
+1001.456787 35370.6171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.490.490.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=490"
+RTINSECONDS=53.36427104
+PEPMASS=598.27001953125
+CHARGE=2+
+55.69076157 12482.80078125
+58.13404846 16914.123046875
+58.13712692 13650.2607421875
+63.58497238 13378.38671875
+64.52623749 54883.609375
+64.53047943 39146.7421875
+64.58203125 42143.47265625
+64.58615875 28910.748046875
+64.64137268 14458.0078125
+74.81201172 14169.005859375
+82.05434418 12156.3408203125
+98.21172333 15865.3984375
+110.07267 14209.2490234375
+111.1888275 11680.9677734375
+113.0476227 15498.451171875
+149.5760651 33267.60546875
+167.0918884 45808.26171875
+169.0598145 24361.830078125
+175.117981 277254.75
+175.1315002 8321.2080078125
+176.1215973 12855.5732421875
+177.0758514 79113.0625
+178.0601349 333375.25
+178.3348694 38589.859375
+178.3541412 42028.78515625
+179.063736 34085.93359375
+179.0921936 27575.96875
+183.0747375 23303.177734375
+186.0861359 102458.6484375
+190.1076965 16305.5888671875
+194.1027222 42189.0625
+195.0865173 4030549.75
+196.0893402 406570.8125
+197.0922699 21846.576171875
+200.1015625 34284.375
+201.0869141 20976.7734375
+206.0912018 150171.703125
+209.0791016 12775.78125
+209.0997009 14999.26953125
+212.1140442 26083.546875
+213.0848541 13842.2705078125
+215.0897522 16616.4609375
+218.1023865 47158.390625
+222.0850525 22282.359375
+234.0973969 16983.763671875
+240.0954285 29472.6640625
+243.0856171 24477.703125
+244.116684 15677.3046875
+246.0745392 8867.5390625
+246.0971222 645260.0625
+247.0998383 63190.68359375
+249.0973358 14906.443359375
+257.1230164 92405.703125
+258.1238098 17595.58203125
+260.1123657 126841.515625
+270.0971985 101523.4453125
+278.1181946 18536.5234375
+278.149353 26468.306640625
+283.1422424 35977.05078125
+287.1236572 154509.328125
+288.1076355 1566229.875
+289.1106567 214569.546875
+290.1134644 14542.9228515625
+294.1184082 19397.2265625
+295.1507874 27612.65625
+303.1404419 25619.9609375
+305.1342468 3004854.5
+306.1195374 1060453.5
+307.1217346 185589.734375
+311.1335754 39833.6328125
+312.117218 36537.86328125
+321.1545105 320292.0625
+322.1578064 61894.79296875
+323.0986328 16195.40234375
+323.1447449 1077091.375
+324.1464233 192468.390625
+325.1513062 19083.384765625
+328.1644592 18133.677734375
+329.1445923 40711.015625
+331.1473389 14575.234375
+338.1426697 42587.77734375
+338.1809692 390165.90625
+338.6465454 30752.9296875
+339.1829224 65728.8671875
+347.147644 21541.984375
+351.131073 16254.0400390625
+359.1438599 69129.4765625
+366.1867676 131407.171875
+367.1898193 18803.177734375
+369.1357117 22353.55078125
+376.1708069 121901.140625
+377.1555176 77387.390625
+386.1650391 29366.123046875
+394.1812439 680189.6875
+395.183197 140537.296875
+396.1859131 25096.6796875
+412.1878357 26229.396484375
+421.1820679 20936.33203125
+460.1920776 18521.279296875
+468.2218933 51266.2734375
+477.2154541 19632.44140625
+478.1989136 22833.48828125
+484.2226257 22756.591796875
+485.2478638 190765.171875
+486.2507935 60130.98046875
+488.1871948 55419.08203125
+492.2302246 165601.53125
+492.7305298 103306.7109375
+493.2297974 36008.55859375
+495.2292786 52663.5859375
+501.2320862 19244.2265625
+503.7226257 30777.13671875
+505.2113647 47726.30859375
+506.2051697 46681.6953125
+512.2252808 30097.060546875
+512.7290039 38735.45703125
+521.2349854 30317.7734375
+521.7373047 18067.05859375
+523.2227783 446352.5625
+524.2267456 114292.828125
+525.2230225 20972.58984375
+555.2503052 16377.3076171875
+559.2536621 20789.802734375
+567.2541504 23898.53125
+571.7492676 77634.4140625
+572.2753906 276281.0
+572.7526245 20268.97265625
+573.2798462 109614.828125
+574.2839355 18489.640625
+576.2641602 29816.041015625
+576.7678833 50838.515625
+577.2686157 31116.30078125
+577.7702637 17533.29296875
+580.2651978 76552.34375
+580.7562256 2227985.75
+581.2572632 1593402.5
+581.7590332 587888.25
+582.2598267 87043.0078125
+589.2652588 41437.94140625
+589.7695312 20917.408203125
+598.2723389 50204.8203125
+598.7767334 29426.12109375
+599.2747192 27087.09765625
+599.7778931 81067.0234375
+606.2606201 35098.62890625
+607.2591553 16949.775390625
+624.2679443 58347.48046875
+625.2750244 23569.896484375
+655.3191528 18973.8125
+673.3256226 451320.875
+673.4514771 27590.23046875
+674.3283081 135270.671875
+675.3282471 18123.501953125
+711.3023682 16420.6796875
+802.3672485 78808.7421875
+803.3725586 33201.05859375
+804.3735352 15286.3994140625
+873.4003296 90018.0234375
+874.4066162 37162.6796875
+875.4226074 17999.50390625
+1001.442261 27971.55859375
+1058.473755 15214.6826171875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.491.491.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=491"
+RTINSECONDS=53.47420587
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52615356 54120.46484375
+64.53044128 40022.953125
+64.58195496 32241.716796875
+64.58612823 27607.6171875
+64.63830566 14384.3564453125
+64.64129639 12181.404296875
+70.08381653 10815.9208984375
+71.45085907 10732.431640625
+73.42194366 12256.5947265625
+75.23756409 12253.197265625
+82.05426025 14398.75390625
+149.5687103 50847.56640625
+149.5813599 14016.1337890625
+167.0919037 43689.3828125
+169.0595703 38346.5
+175.1177826 255144.65625
+176.1203766 20983.126953125
+177.0760345 68435.140625
+177.934021 13592.857421875
+178.0599976 334138.78125
+178.078186 18409.736328125
+178.3500671 69554.0234375
+179.0632019 30083.78125
+179.0918121 22366.939453125
+182.0909729 14785.1220703125
+183.0754089 30286.388671875
+186.0861359 106838.734375
+190.1073151 15902.20703125
+194.1043243 24959.01171875
+195.0863953 3889168.75
+195.1282501 31129.55078125
+196.0892334 407718.25
+197.0918579 22148.267578125
+200.1026306 24059.498046875
+201.0865173 14338.697265625
+206.0911407 134425.0
+207.0923767 13387.2021484375
+212.1126404 15704.3583984375
+213.0851593 18411.53125
+215.09375 13622.4267578125
+217.1285858 12976.2197265625
+218.1022491 62777.98828125
+222.0860443 14639.7744140625
+234.0964966 15138.744140625
+240.0955658 24623.24609375
+246.0969849 642936.3125
+247.0997467 61251.52734375
+249.0962524 24943.994140625
+257.1224976 93174.6640625
+258.1235962 18438.6328125
+260.1126099 108627.1640625
+261.1183777 22850.1640625
+270.0968933 145264.34375
+278.1176453 12759.8984375
+278.1493835 18320.263671875
+283.1435242 45578.5625
+287.1234131 143058.671875
+288.1074829 1555405.0
+289.1102295 221826.328125
+290.112854 19719.33203125
+294.1155701 17728.455078125
+295.1477661 23574.4375
+303.1447754 24906.41015625
+305.1340942 2948195.25
+306.1192627 1056648.625
+307.1218262 168723.59375
+311.1348267 59695.9921875
+312.1161499 26414.826171875
+321.1542358 319115.84375
+322.1571045 64119.9140625
+323.1445923 1036849.5
+324.1460571 164111.578125
+325.1514587 13944.7900390625
+328.1633606 18978.654296875
+329.1435547 52620.5703125
+331.1479797 21986.017578125
+338.142395 44878.515625
+338.1808472 322641.90625
+338.6443176 17835.15234375
+339.1828918 60304.61328125
+341.1432495 17529.08984375
+347.1495056 29544.416015625
+347.6520691 16198.896484375
+349.1589355 16423.05078125
+351.1295471 17730.880859375
+359.14505 65683.7890625
+360.1508789 14987.2265625
+366.1871338 110674.9375
+367.1898193 29177.77734375
+368.149231 13462.501953125
+369.1377258 23369.638671875
+376.1705627 127010.171875
+377.1566772 88870.40625
+378.1528625 14909.7998046875
+386.1651001 31470.69140625
+394.1811829 702774.625
+395.1827087 122069.578125
+396.1863098 19230.337890625
+412.1887207 21320.42578125
+421.1791382 20782.845703125
+468.2235413 33419.44921875
+477.2176819 18500.0703125
+485.2474365 215203.0625
+486.2487183 50332.609375
+487.2054749 14093.890625
+488.1864014 49144.19921875
+492.2295532 147420.328125
+492.7316284 104952.2109375
+493.230957 22349.587890625
+495.2258911 54513.20703125
+503.2260437 17985.357421875
+503.7224426 19280.5546875
+505.2125549 50433.640625
+506.2052002 39645.16796875
+512.2286987 42690.94921875
+521.2318115 27632.646484375
+523.2224731 399680.9375
+524.2258911 116807.75
+525.2333984 23993.8515625
+554.2670898 14941.306640625
+555.2633667 16389.080078125
+567.2611694 16708.96484375
+571.7507935 88453.6796875
+572.2759399 326308.625
+572.7506104 32576.30078125
+573.2808838 99567.546875
+576.2637939 45959.9140625
+576.7651367 18889.69921875
+577.7680054 19882.990234375
+580.2636108 67281.640625
+580.7559814 2128421.5
+581.2570801 1433753.875
+581.7584229 538344.6875
+582.2593384 78351.3203125
+589.2660522 33054.53125
+598.2735596 45444.15234375
+598.7763672 47025.77734375
+599.7805786 80327.859375
+606.2614136 26975.1484375
+624.2676392 46798.93359375
+625.2692261 15645.6494140625
+655.3076172 18803.810546875
+656.3098755 20319.791015625
+673.3252563 429791.59375
+674.3278809 157872.390625
+675.3326416 21923.697265625
+711.3035889 21340.083984375
+802.3640747 91546.046875
+803.3702393 35172.3359375
+873.4019165 98402.953125
+874.4082031 45575.70703125
+1001.469604 18893.232421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.492.492.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=492"
+RTINSECONDS=53.58504602
+PEPMASS=598.27001953125
+CHARGE=2+
+52.53250504 14570.01171875
+58.13422394 19598.3046875
+58.1373024 18083.412109375
+60.93951035 14237.375
+64.52636719 72909.3828125
+64.53070831 49847.41796875
+64.58207703 52896.3671875
+64.58623505 36209.2890625
+64.63831329 19781.853515625
+69.65129089 14983.4296875
+78.16470337 16322.82421875
+79.52426147 19133.31640625
+106.0660095 13735.8701171875
+112.2744522 16654.279296875
+113.1283188 14584.689453125
+149.5738068 52254.80078125
+167.0918732 34033.5078125
+169.0606842 43257.45703125
+175.1179199 312758.71875
+177.0760803 81159.234375
+178.0601501 297988.71875
+178.3488464 96805.109375
+179.0628815 30111.40234375
+179.0922241 33015.6171875
+183.0756073 24181.404296875
+186.0862122 101441.4140625
+194.1032257 27260.53125
+195.0865173 4496513.5
+196.0892944 449693.65625
+197.0903168 20594.8515625
+200.1020966 19528.626953125
+206.0911865 164249.59375
+207.0944672 17716.748046875
+209.1017456 17665.63671875
+215.090744 19769.146484375
+218.1024017 46752.58984375
+222.0861969 24811.04296875
+243.0856018 26613.466796875
+246.0970001 613102.3125
+247.099823 67120.0078125
+257.1230774 93089.5546875
+260.1123047 125746.421875
+270.0974426 115858.5859375
+271.0996094 28396.484375
+278.1494751 22973.763671875
+283.1433716 39396.08984375
+287.1236267 163029.09375
+288.1075134 1655107.375
+289.1103821 257898.625
+290.1136169 29913.69921875
+295.1490173 31527.26171875
+302.1327515 18928.955078125
+303.1436462 25773.09375
+305.1341553 3276893.25
+306.1192322 1170994.875
+307.1216736 215026.84375
+308.1222534 33078.3359375
+311.1341248 51832.59765625
+312.1186829 22522.2265625
+320.9703369 18285.548828125
+321.1541443 348099.1875
+322.1569214 61942.81640625
+323.1446533 1169649.625
+324.1469421 196981.453125
+329.144165 51122.34765625
+331.1532898 23138.669921875
+338.1421814 51937.05859375
+338.1808167 428572.78125
+339.1838379 76771.25
+349.159729 25824.810546875
+354.2391052 20052.166015625
+358.1654053 20539.521484375
+359.1455078 47128.21484375
+366.1862793 153374.140625
+367.1891479 24673.998046875
+376.1703491 112559.09375
+377.1555176 79432.453125
+378.1583862 17968.986328125
+386.1646729 25623.099609375
+394.1812134 735984.5
+395.1833191 152421.9375
+412.1881409 47232.11328125
+421.1836548 24019.361328125
+460.1888123 27487.556640625
+468.223877 48270.1875
+469.2282715 22666.326171875
+478.2013245 21203.244140625
+479.2119751 18876.98046875
+485.2472839 214038.28125
+486.2484131 60618.00390625
+488.1853943 49526.1328125
+492.230072 150020.140625
+492.7307739 107527.6015625
+495.2257996 63322.83984375
+497.2313538 24550.4453125
+505.2129517 71631.7421875
+506.20755 54753.171875
+512.2268677 48564.37109375
+512.7255249 43525.90234375
+520.742981 22362.72265625
+521.2362671 44953.953125
+521.7307739 21355.140625
+523.2219849 475031.1875
+524.223938 117478.6171875
+525.2306519 19032.884765625
+541.2190552 18809.7421875
+558.7510986 30883.677734375
+571.7490234 96796.4609375
+572.274353 346382.96875
+572.7495728 32654.189453125
+573.2789917 86238.5078125
+576.262085 59445.15625
+576.7679443 21723.138671875
+577.2666016 30350.015625
+577.763916 20865.369140625
+580.2619629 81409.25
+580.7554321 2742917.25
+581.2567139 1855613.375
+581.3687134 26232.3046875
+581.7585449 763079.125
+581.8640137 21713.01953125
+582.2597046 145274.28125
+589.267334 117804.5703125
+589.7667236 61379.96875
+598.2749634 67670.78125
+598.7732544 46649.3515625
+599.2734375 21653.8046875
+599.7782593 67644.3984375
+606.2592773 40560.3046875
+607.2614136 29671.33203125
+624.270813 47289.83203125
+656.3082886 18086.04296875
+673.1971436 30049.49609375
+673.3248291 481951.75
+674.3269043 164780.75
+675.3286133 39655.49609375
+693.2941895 20481.33984375
+711.2999268 18668.162109375
+802.3651733 119948.3984375
+803.366394 60334.12109375
+873.4039917 109953.1484375
+874.4075928 58197.484375
+1001.446472 25918.419921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.493.493.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=493"
+RTINSECONDS=53.69200512
+PEPMASS=598.27001953125
+CHARGE=2+
+55.44823837 13358.3203125
+60.15465927 14316.4267578125
+63.58836746 14272.4990234375
+64.52617645 62334.109375
+64.53045654 43235.0234375
+64.58194733 43276.23046875
+64.58616638 30050.755859375
+64.63813019 16014.560546875
+64.64156342 22724.646484375
+73.91503906 14686.9560546875
+76.01501465 13991.236328125
+89.96157837 14584.9267578125
+149.5697479 55350.00390625
+167.0918884 53523.7109375
+169.0597229 34725.359375
+171.8054047 15349.6630859375
+175.1176605 304790.0
+176.1194458 21043.423828125
+177.0761566 79773.921875
+178.0599365 337829.34375
+178.337204 56337.0390625
+178.356308 28743.0625
+179.0633545 28084.904296875
+179.0916443 21262.75
+183.075119 32361.2265625
+186.0859985 94016.8125
+190.1069031 15231.0576171875
+194.1028595 35212.01171875
+195.0862579 4297836.5
+195.127655 38978.8828125
+196.0890656 429177.28125
+197.0915985 19348.634765625
+200.1021423 29887.06640625
+201.0852661 24079.470703125
+203.355957 15087.3857421875
+206.0909576 160780.375
+207.0936127 16428.947265625
+209.0762482 19280.64453125
+218.1021271 57616.2109375
+234.0968323 27392.56640625
+240.095871 23668.0703125
+243.0847168 23162.298828125
+246.0968018 693196.375
+247.0997009 76110.890625
+249.0969391 22870.166015625
+257.1225891 94219.6640625
+260.1124573 91005.71875
+270.0968628 149486.59375
+277.1392517 22858.970703125
+278.1486206 32771.93359375
+283.1419373 36814.1640625
+287.1236267 167070.34375
+288.1071777 1591375.5
+289.1097717 242070.734375
+303.1425476 38403.26953125
+305.1336365 3148550.75
+305.2157898 18917.86328125
+306.1187744 1118198.375
+307.1209106 206259.328125
+308.1235657 20046.013671875
+311.1341553 56291.19921875
+312.1177979 37160.58203125
+321.153595 295046.6875
+322.1562195 68464.0859375
+323.144104 1152547.875
+324.1456604 169287.078125
+325.1524963 21353.380859375
+329.1445007 43671.34375
+333.2354126 17062.564453125
+338.1416016 53457.375
+338.1803589 401883.40625
+339.1836548 48598.546875
+347.1482544 26757.24609375
+349.1591187 22759.55078125
+351.1314087 21216.216796875
+359.1435852 43287.2578125
+366.1856995 141349.421875
+367.186676 19409.21875
+369.1401367 30562.70703125
+376.1695557 118280.9375
+377.1557312 88540.4375
+378.1582336 21615.23046875
+386.1650391 40597.55078125
+394.180603 755155.9375
+394.240448 26611.15625
+395.1832886 144236.046875
+412.1879272 42875.3515625
+421.1825256 21298.095703125
+434.1692505 19413.568359375
+460.1921997 33389.265625
+461.3208618 17217.908203125
+464.1782227 18446.517578125
+468.2187195 37927.7109375
+469.2147827 20322.8359375
+477.2163086 21359.685546875
+483.7151794 28889.546875
+485.2473145 195573.703125
+486.2514954 70746.9609375
+487.2033997 17132.02734375
+488.1889038 37087.6015625
+492.2286987 145240.109375
+492.7280884 82066.0703125
+493.227356 26447.6640625
+495.2242737 55433.83984375
+496.2258911 19647.234375
+503.2190552 16775.517578125
+505.2090149 44415.88671875
+506.2069092 49226.140625
+512.2269897 42518.0234375
+521.2325439 44230.59375
+521.7362671 20839.708984375
+523.2211914 450848.46875
+524.2238159 134965.65625
+525.2275391 20982.798828125
+529.7401123 20404.1484375
+554.2653198 22440.423828125
+558.7365723 18104.603515625
+567.258667 20523.314453125
+571.7510376 91906.9296875
+572.274353 346674.0
+573.2800903 103726.3984375
+574.2803955 21627.28515625
+576.2584229 48782.89453125
+576.7645264 34741.83203125
+580.2606812 83307.8671875
+580.7543945 2514641.5
+581.2556152 1696864.75
+581.335144 30464.60546875
+581.7573242 688444.375
+581.8639526 22168.056640625
+582.2587891 119042.125
+589.2671509 75552.0703125
+589.7663574 53028.421875
+598.2728271 67761.0859375
+598.7749634 34232.640625
+599.7773438 72107.0078125
+606.2563477 43892.88671875
+624.2676392 49213.6328125
+655.3173218 21657.48828125
+673.3225708 416742.59375
+674.326416 160318.953125
+711.2987061 19751.904296875
+802.3674927 75150.8984375
+803.3659058 60704.05078125
+873.4006348 92934.515625
+874.4078369 41043.7109375
+1001.446899 32947.9375
+1058.473999 28368.568359375
+1197.182129 18326.029296875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.494.494.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=494"
+RTINSECONDS=53.80080157
+PEPMASS=598.27001953125
+CHARGE=2+
+58.02629852 12226.9208984375
+64.52613068 48573.859375
+64.53039551 45294.40625
+64.58192444 36981.28515625
+64.58612823 27046.669921875
+64.64128113 13539.3759765625
+66.7375412 12312.4130859375
+75.1908493 10915.11328125
+77.02933502 12996.3427734375
+78.88696289 13296.7314453125
+82.05436707 17893.365234375
+99.25325775 11391.26953125
+120.5098495 12985.01171875
+149.5698395 44309.1171875
+154.3779297 12963.234375
+167.0920563 36172.109375
+168.3243561 12738.7626953125
+169.0606537 29189.158203125
+175.1176453 272259.90625
+177.0756531 71877.7265625
+178.0598297 334417.0
+178.0778961 18766.763671875
+178.3355408 46673.23828125
+178.3545074 32784.27734375
+179.0640259 14798.53125
+179.0916748 15213.7373046875
+182.0906372 21668.943359375
+183.0751343 22752.427734375
+186.0860443 96696.2265625
+194.1024475 38025.015625
+195.0862732 3822312.75
+195.1278992 27817.99609375
+196.0890808 375860.1875
+196.1852722 12178.1044921875
+197.0912781 26304.099609375
+200.1018677 22238.21875
+201.0856323 20411.982421875
+205.0596771 13861.0107421875
+206.0910339 127648.8125
+207.094696 12331.517578125
+218.1022186 50802.42578125
+235.1285095 13123.1240234375
+240.0943146 25951.8203125
+243.0866089 15942.1298828125
+244.1174927 19472.669921875
+246.0968018 574741.9375
+246.1256714 24828.94140625
+247.0988922 68966.265625
+257.1223755 98607.0234375
+258.1236267 14997.544921875
+259.6534119 13491.650390625
+260.1124878 93551.53125
+261.1185913 14295.41796875
+267.1086121 18860.5078125
+270.0966797 139762.546875
+271.0997314 19609.544921875
+278.1488037 29136.228515625
+283.1433105 39834.546875
+287.12323 123120.5859375
+288.1070251 1452629.625
+289.1097412 212556.921875
+294.1167908 14849.0556640625
+295.1509399 23959.98828125
+303.1453857 19903.345703125
+304.1264648 12761.7041015625
+305.1335754 2925916.5
+306.1187134 999700.6875
+307.1210632 190685.6875
+311.1347656 47573.41796875
+312.1147461 24367.125
+320.1727295 16969.8515625
+321.1535645 302973.75
+322.155426 43050.62109375
+323.1440125 947324.375
+324.1465759 164163.75
+325.1492615 23497.41015625
+329.1447449 39171.2890625
+331.1496277 14373.1083984375
+338.1428528 32475.080078125
+338.1802063 402966.78125
+339.1825562 65817.8203125
+341.1444397 18380.52734375
+347.1494141 22430.705078125
+349.1566467 14795.5908203125
+351.1292419 27769.091796875
+359.1433411 57283.2578125
+366.1852722 125983.078125
+367.1920166 26879.80078125
+369.1392517 13879.5654296875
+376.1696167 100591.15625
+377.1558838 74184.84375
+378.1560669 18577.46875
+386.160675 20553.8671875
+394.1802368 616326.8125
+395.1828003 146892.453125
+396.1836548 16562.97265625
+412.1832581 24408.97265625
+460.1917114 27453.419921875
+468.2191772 49149.21875
+478.2007751 22707.611328125
+483.225647 21253.6171875
+485.24646 201713.921875
+486.2487183 52486.41796875
+488.1869202 43334.70703125
+492.2281494 152921.6875
+492.7283325 84704.6796875
+493.2294312 18364.921875
+495.2248535 49165.703125
+503.7078247 19339.62890625
+505.210022 48871.5625
+506.2093506 45119.21875
+512.2243652 32767.87109375
+512.7296753 17298.751953125
+521.2383423 35541.38671875
+521.7341309 31897.498046875
+523.2210083 402200.25
+524.2232056 85197.53125
+525.2229004 29449.9375
+558.744873 23481.4921875
+571.7495117 91641.84375
+572.2727051 268884.125
+573.2786865 91873.453125
+576.2605591 50182.3125
+576.7648926 24285.60546875
+577.2705078 21074.458984375
+580.2614746 55152.90234375
+580.7538452 2107704.5
+581.255127 1334581.875
+581.3389893 21098.509765625
+581.7567749 487752.59375
+581.8322144 9717.470703125
+582.257019 86225.5
+589.2666626 46218.73828125
+589.7642822 22055.720703125
+598.2748413 43077.734375
+598.7771606 27194.8984375
+599.2762451 45579.86328125
+599.7766113 62556.9375
+606.257019 25752.048828125
+607.2392578 17543.345703125
+624.2689819 66934.421875
+655.3125 16514.1328125
+673.3226318 399108.21875
+674.3258667 132147.34375
+675.3198242 18817.013671875
+711.2937012 22299.78515625
+802.3630371 85666.84375
+803.3687134 40854.58203125
+873.3970947 93990.96875
+874.4013062 40127.69921875
+1001.45697 22450.1953125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.495.495.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=495"
+RTINSECONDS=53.91131014
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13427734 20900.328125
+60.15054321 15955.2451171875
+64.52636719 51688.5546875
+64.53066254 48000.15234375
+64.58205414 38716.48828125
+64.58609009 32849.44921875
+68.59767914 14515.9013671875
+72.76941681 15366.958984375
+110.0439758 14462.8564453125
+113.9888535 16671.080078125
+149.565567 46196.921875
+149.5779724 23190.654296875
+167.0917206 35931.5625
+169.0592651 41351.16796875
+175.1179199 351776.46875
+176.1214752 31834.873046875
+177.075943 66120.0859375
+178.0600281 348399.15625
+178.3463135 102328.0
+179.0625458 27584.01953125
+179.0908051 18962.732421875
+182.0894775 21040.802734375
+183.0749817 23944.2890625
+186.0861053 104969.203125
+188.1424408 15275.6513671875
+189.3296204 13909.4111328125
+194.1026764 42561.07421875
+195.0863953 4320744.0
+195.1283112 22895.25
+196.0892334 428590.25
+197.0903931 24020.65625
+200.10112 33260.63671875
+201.0865784 15520.31640625
+206.0912323 174547.671875
+209.0790863 17175.568359375
+209.1016541 16809.603515625
+218.1029968 53547.26953125
+222.0844574 21664.9765625
+232.1174927 16975.111328125
+239.1136627 14609.634765625
+240.0955505 33874.69140625
+243.0860901 20220.830078125
+244.1168213 24192.021484375
+246.0969696 566229.6875
+247.098999 72532.6953125
+249.0969086 17838.048828125
+257.1225281 110666.109375
+260.1125793 126393.875
+267.1121521 19582.341796875
+270.097168 128845.1171875
+278.1484985 30522.47265625
+283.1433411 56618.484375
+284.2101746 15867.9755859375
+287.1231995 136497.8125
+288.1073914 1546293.375
+289.1101685 248313.8125
+290.1105957 21863.64453125
+294.119873 17200.80859375
+295.1505737 26056.92578125
+303.1414185 26716.15234375
+304.1292114 17114.068359375
+305.1339417 3237986.5
+306.1191406 1175851.75
+307.1211243 182141.921875
+308.1226807 24191.220703125
+311.1339722 49078.76953125
+312.117157 22994.09765625
+321.1541443 320825.3125
+322.1573792 55528.0546875
+323.1443787 1167849.875
+323.1886597 37354.29296875
+324.1460876 172513.25
+325.1525574 24338.677734375
+325.2198486 17484.521484375
+329.1439819 44944.4296875
+331.1453247 20164.072265625
+338.1408997 58789.859375
+338.1805725 413210.78125
+339.1834412 52235.703125
+359.1436157 49334.265625
+366.1856384 121577.234375
+369.13797 20485.833984375
+376.1708374 138386.03125
+377.1569519 92994.7421875
+378.1635132 19619.564453125
+386.1640015 32408.318359375
+394.1808777 748387.5
+394.2403259 25287.869140625
+395.1826172 135270.78125
+396.1853638 27208.060546875
+412.1833496 32520.53515625
+450.2171021 21004.6328125
+468.2219543 48066.328125
+477.2182922 22154.40234375
+478.2048645 26071.25
+483.719574 25811.484375
+485.247345 198394.25
+486.2502441 57150.63671875
+488.1854553 57423.30078125
+492.2294006 146262.171875
+492.7313232 85932.359375
+493.2272949 28219.171875
+495.2247314 53305.15234375
+503.7180176 32158.162109375
+505.2150574 53939.15234375
+506.2047119 55026.390625
+512.230896 26146.587890625
+521.2380371 28326.822265625
+521.7383423 21482.0859375
+523.222229 429294.6875
+524.223877 126432.609375
+525.227356 23464.990234375
+529.7438965 17681.75390625
+571.7504272 93436.453125
+572.2750854 303131.125
+572.7473145 29167.681640625
+573.2821655 78909.6171875
+574.2808228 25332.041015625
+576.2630615 47378.3125
+576.7627563 43212.25
+577.2580566 28254.556640625
+580.2624512 69730.171875
+580.755249 2224797.25
+581.2562866 1622895.0
+581.7581177 576601.6875
+581.8641968 20970.96484375
+582.2595215 128646.1875
+589.2659912 108375.3046875
+589.7666016 53555.453125
+598.2736206 48325.61328125
+598.7798462 26443.958984375
+599.2737427 23382.8984375
+599.7778931 62601.8046875
+606.2544556 38125.84375
+607.243103 20421.306640625
+624.2684326 30082.76953125
+625.2728271 21226.46484375
+664.5761719 17573.158203125
+673.324707 391953.71875
+674.3265991 153449.59375
+675.3200684 19975.55078125
+711.3066406 29961.533203125
+723.1883545 19005.427734375
+802.3632202 100512.8984375
+803.3685913 50929.7890625
+873.3981934 100103.9296875
+874.4049683 55954.515625
+875.4078979 16995.30078125
+1001.463745 27580.41015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.496.496.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=496"
+RTINSECONDS=54.01876859
+PEPMASS=598.27001953125
+CHARGE=2+
+59.55309296 15565.1201171875
+63.19363403 13958.9814453125
+63.58825302 13315.2763671875
+64.52622223 69904.765625
+64.53066254 46469.125
+64.58201599 45816.28125
+64.58613586 29172.7109375
+64.63831329 17088.763671875
+64.64138794 13585.7744140625
+71.57623291 12688.31640625
+149.5711365 52573.84765625
+167.091156 36978.87109375
+169.0597839 33927.70703125
+175.1004028 15864.6181640625
+175.1178741 278951.875
+176.1210327 13044.474609375
+177.0761261 58153.7578125
+178.0600586 328441.90625
+178.0779419 17830.255859375
+178.3340607 25640.169921875
+178.3530731 50747.15234375
+179.063797 21273.673828125
+179.0921478 20518.265625
+183.0750275 20651.87890625
+186.0861664 102519.6015625
+189.5738831 13096.451171875
+194.1026917 42129.90625
+195.0864258 4005538.75
+195.1276245 21707.216796875
+196.089325 383147.0625
+197.0917816 16351.4912109375
+200.1018677 23862.80078125
+206.0911407 139971.421875
+207.0931702 18252.919921875
+218.1016235 59849.35546875
+232.1134949 15199.4921875
+233.5826721 13344.71484375
+240.0953674 21693.78125
+243.0867615 34287.75390625
+246.0969391 603231.9375
+246.1255951 30479.302734375
+247.1003113 66360.9765625
+257.122406 96947.484375
+258.1246948 18366.462890625
+260.1125793 107540.484375
+268.7050476 12879.9462890625
+270.0971069 97650.1640625
+271.1017761 19555.541015625
+278.1174927 17479.611328125
+278.1486206 16444.546875
+283.1431274 39943.05859375
+287.1235657 153361.421875
+288.1073608 1525703.625
+289.1098938 252981.453125
+290.1113586 20059.5234375
+295.1490784 23557.947265625
+302.1332397 14272.119140625
+303.1419067 27652.197265625
+304.1272583 27156.875
+305.1339111 3073291.75
+306.1188965 1113941.375
+307.1215515 184326.90625
+308.122406 22309.283203125
+310.368988 12958.943359375
+311.1347046 44059.09765625
+312.1160889 34150.77734375
+313.1261597 14840.7060546875
+321.1536865 322656.34375
+322.1570435 70726.8984375
+323.0982666 18152.45703125
+323.1443787 1101712.0
+324.1460876 158534.8125
+325.1513367 15336.734375
+329.144043 33567.8125
+331.1450195 17339.46484375
+338.142334 54390.7734375
+338.180603 376661.15625
+339.1416626 14426.4130859375
+339.1835327 63459.79296875
+347.1465149 19231.96484375
+351.1325684 20306.892578125
+359.1444397 61372.82421875
+366.186676 117724.34375
+367.1877441 18896.708984375
+369.1372375 30822.380859375
+376.1700134 127147.375
+377.1569214 75375.078125
+386.1639709 30858.1953125
+394.1809082 668097.75
+395.1828918 144352.0625
+397.679718 19241.556640625
+412.1829529 31287.70703125
+468.2215576 55477.4296875
+477.2212219 18121.36328125
+478.2043152 18705.21875
+485.2467957 194519.640625
+486.2507324 58633.04296875
+488.18573 45901.640625
+492.2277222 158919.4375
+492.730072 101188.7890625
+493.2363892 28929.55859375
+495.2288513 50907.19140625
+496.2291565 14877.005859375
+503.2186584 26803.3984375
+505.212677 47881.3671875
+506.2063293 45274.5234375
+512.223938 47760.5390625
+512.7276611 26643.5546875
+513.2260742 17968.2578125
+521.2286987 22581.46484375
+521.7337036 29572.53515625
+523.2219849 425411.625
+524.2244873 118248.6953125
+525.2275391 20753.734375
+529.7475586 31058.14453125
+555.2467041 21524.375
+567.2537842 22693.486328125
+571.7487183 76694.8359375
+572.274292 309953.5
+573.2803955 86044.90625
+576.2596436 31295.21875
+576.7619019 42143.98046875
+577.2637329 21533.177734375
+580.2659302 86987.21875
+580.7547607 2291188.0
+581.2559814 1613207.5
+581.7574463 604353.875
+582.2583618 136478.953125
+589.2644043 34515.97265625
+589.7641602 38865.1171875
+598.2751465 50063.6015625
+598.7749634 40354.65234375
+599.2764282 17578.5234375
+599.7768555 122105.5078125
+606.2573853 33724.34375
+624.2681274 67853.59375
+625.2741699 22373.80078125
+656.3048096 16275.3486328125
+673.3234863 410573.0625
+674.3270874 161019.984375
+675.331665 25212.220703125
+693.2855225 16419.34765625
+711.2973022 17950.244140625
+802.3633423 87999.0625
+803.3618164 30786.08203125
+804.3640137 18681.642578125
+873.3994141 94965.6484375
+874.40448 43425.4765625
+1001.456848 19844.8984375
+1058.48877 17522.646484375
+1059.481201 15829.755859375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.497.497.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=497"
+RTINSECONDS=54.12861968
+PEPMASS=598.27001953125
+CHARGE=2+
+62.73446274 11718.3857421875
+63.58492661 13228.9130859375
+64.52622986 65788.359375
+64.5306778 42854.3515625
+64.58193207 41536.328125
+64.58614349 25751.1640625
+64.63826752 22093.3203125
+74.81209564 14968.2666015625
+82.05408478 19875.865234375
+115.6199265 14826.9560546875
+149.5653229 41178.25
+149.5776825 25038.15625
+167.091507 46679.625
+169.0597076 34128.046875
+175.1178436 284291.125
+176.1207123 15348.28515625
+177.0757446 66734.3203125
+178.0599365 323030.46875
+178.0779877 26984.3203125
+178.3369751 58540.8203125
+178.3559113 23316.57421875
+179.0640411 31464.55078125
+179.0919647 21140.927734375
+183.0749512 33408.21875
+186.0860138 104837.375
+194.1025848 26473.3671875
+195.0863342 3874953.5
+195.1280975 28139.59765625
+196.0890656 430821.25
+197.0913696 17284.228515625
+200.1012268 25618.158203125
+206.0910645 149458.953125
+207.0943298 13240.7802734375
+215.0917358 21074.623046875
+218.1014099 47897.57421875
+222.0840149 18928.619140625
+240.0960388 20789.6015625
+243.0865326 21520.0859375
+244.5674133 14807.1142578125
+246.0968781 584316.5
+247.0990753 65242.20703125
+249.0994873 14615.3154296875
+257.1228027 104438.4765625
+258.1244507 15676.7255859375
+260.11203 112296.9609375
+261.1184387 22532.501953125
+267.1072693 15153.83203125
+270.0966187 128577.9765625
+278.1479492 38052.3046875
+283.1421509 55815.40625
+287.1230774 166672.25
+288.1072388 1530691.5
+289.11026 243897.171875
+294.1128235 21131.548828125
+295.1505127 25811.18359375
+303.1442871 23774.197265625
+305.1337891 2967363.25
+306.118866 1070652.0
+307.1216125 174419.5625
+308.1247559 30656.3515625
+311.1334229 35377.546875
+312.1164856 39544.59765625
+321.1538391 343237.53125
+322.1560364 54184.05078125
+323.0988159 22888.779296875
+323.1441956 1086022.5
+323.1888733 27640.888671875
+324.1467285 163337.0625
+325.1480408 19777.279296875
+329.1438293 48997.4375
+331.1490784 14929.3310546875
+338.1424866 48690.9375
+338.180481 356946.96875
+338.6436462 21020.87109375
+339.1828003 68008.984375
+346.171936 20897.0546875
+347.1504822 35597.91015625
+351.1302795 16041.978515625
+359.1435242 59798.30859375
+366.1859131 134285.953125
+367.1885376 22108.623046875
+369.1398621 26427.1484375
+376.1696472 105588.84375
+377.1551514 77734.6328125
+378.1555786 16018.5751953125
+383.6770325 14639.103515625
+386.164032 34681.40234375
+394.1805725 715095.8125
+395.1824036 129284.71875
+396.1813354 19557.681640625
+412.1902466 35487.921875
+420.6823425 18230.642578125
+460.1875 15343.23046875
+468.2213745 41519.15625
+478.2060242 19555.29296875
+483.7232971 15826.6015625
+485.2471313 205622.703125
+486.2485046 58563.53515625
+488.1842041 56076.890625
+492.2293701 153212.28125
+492.7309875 70328.3203125
+493.2277222 37096.51171875
+495.2255859 66912.328125
+496.2235718 17525.796875
+503.7221985 21428.34765625
+505.2116394 62043.4609375
+506.2059326 45556.8359375
+511.2288208 15242.763671875
+512.2280884 33776.859375
+512.7261353 26398.826171875
+514.6347656 16029.294921875
+521.2356567 33327.76953125
+521.7381592 15525.451171875
+523.2213745 467754.125
+524.2232666 126412.8203125
+525.230957 28748.568359375
+555.2512207 20078.48828125
+558.7443237 30752.908203125
+559.7427979 20213.001953125
+571.7495117 124181.671875
+572.2737427 308562.03125
+572.7518921 24600.19140625
+573.2792969 94724.5859375
+576.2592163 37315.46875
+576.763916 30128.64453125
+577.7623291 21705.619140625
+580.2630615 78758.375
+580.7545166 2433737.0
+581.2558594 1605325.375
+581.3691406 19805.8828125
+581.7576294 642897.75
+582.2581177 129193.328125
+589.2630615 67895.7421875
+589.7664795 49864.43359375
+598.2733765 39182.4296875
+598.7711182 26547.03125
+599.2792358 27335.283203125
+599.7764893 81572.6953125
+606.2578125 27291.869140625
+607.2503662 20855.36328125
+624.2659302 55566.00390625
+625.2734375 37790.4453125
+655.3046875 20464.337890625
+673.3237305 410649.28125
+674.3253784 162851.859375
+675.324707 23672.283203125
+693.2919312 26301.37890625
+711.3146973 15950.396484375
+712.2976074 15138.4873046875
+802.3621826 104963.421875
+803.3617554 37414.94921875
+873.4014282 96452.546875
+874.4020996 44760.3359375
+1001.459351 21374.28515625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.498.498.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=498"
+RTINSECONDS=54.23827551
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13412094 24258.314453125
+58.80362701 13496.859375
+64.52620697 68284.203125
+64.5304718 42825.80859375
+64.58197021 45447.58984375
+64.58612823 34381.5625
+64.63806152 18998.052734375
+145.4012756 15392.94921875
+149.5643463 28652.939453125
+167.0919495 30613.15625
+169.0596619 36068.70703125
+174.2467651 14285.8251953125
+175.0844421 14426.7451171875
+175.1020508 26505.484375
+175.1178894 319042.375
+177.0755005 54753.8828125
+178.0600128 337613.0
+178.3370056 56611.1171875
+178.3566437 30650.119140625
+179.0638733 23535.37109375
+179.091095 30678.83984375
+181.7685089 12532.6865234375
+182.0914001 26104.267578125
+183.0759125 21230.240234375
+186.0859833 117224.453125
+187.9980011 15131.921875
+194.1028442 32000.251953125
+195.08638 4415790.0
+195.1282959 23247.955078125
+196.0891876 442036.78125
+197.0897217 39115.93359375
+200.1017761 34869.8828125
+204.2485809 14363.7138671875
+206.0909729 174497.171875
+218.1021423 65982.34375
+231.0988159 16907.59765625
+240.098999 23676.166015625
+246.074295 16061.380859375
+246.0969391 656092.0625
+246.1256409 32040.720703125
+247.1002197 80984.2734375
+249.0952454 19024.984375
+257.1228027 113628.1015625
+260.1123352 120333.03125
+270.0965881 136913.3125
+271.1004028 25952.296875
+278.1494446 19465.541015625
+283.144104 39424.9453125
+287.1236572 127522.6484375
+288.1072998 1613311.75
+289.11026 223810.703125
+290.1140442 25506.51171875
+295.1478577 32613.615234375
+303.1433411 19260.966796875
+305.1339111 3222091.75
+306.1191406 1118582.5
+307.1214905 199021.09375
+311.1349792 39844.75
+312.1170959 32437.46875
+321.153717 352276.625
+322.1563721 68408.8671875
+323.1444397 1157437.75
+324.1467285 212790.703125
+328.1567383 23084.716796875
+329.1435852 46092.16015625
+338.1428833 47412.48828125
+338.1806335 453600.78125
+339.1822205 65600.15625
+349.1627502 21298.677734375
+351.1304626 21433.052734375
+358.1657715 19365.935546875
+359.1442261 72987.6796875
+366.1859436 129777.28125
+367.1875305 25892.44140625
+369.1384277 25032.888671875
+376.1708069 113206.140625
+377.1577454 76696.828125
+386.1636963 31077.0703125
+389.1550293 18705.716796875
+394.1807556 735146.5625
+395.182251 153617.703125
+412.1875916 37528.734375
+420.6815491 20242.48046875
+460.1914673 18559.087890625
+468.2228394 60719.21875
+477.2197571 22456.3671875
+478.2026062 35705.41796875
+483.7142029 27490.91015625
+485.247406 217832.6875
+486.2506714 80623.2734375
+488.1865845 51099.0078125
+492.2292786 181826.453125
+492.7294312 95322.1484375
+493.2330322 35843.61328125
+495.2257385 43663.23046875
+505.2105408 62325.37109375
+506.2051086 36223.66015625
+509.6334229 17492.8671875
+512.2266846 41030.25390625
+513.229248 17607.294921875
+521.2335205 44612.91015625
+523.2219849 488368.625
+524.2249756 148861.71875
+525.2282104 37872.796875
+530.2375488 20422.298828125
+558.7404175 25545.890625
+559.7541504 17161.228515625
+571.7514648 90453.703125
+572.2738647 325935.0625
+572.7512207 30118.421875
+573.2798462 89083.765625
+576.2634277 56791.23828125
+576.7653198 31554.5
+577.2627563 25416.234375
+580.2614746 78828.7734375
+580.7549438 2532738.75
+581.2561646 1688808.625
+581.3669434 20607.125
+581.7574463 627571.875
+581.862915 18595.626953125
+582.2588501 112014.421875
+589.269043 89130.5625
+589.7666626 54336.96484375
+598.2765503 36690.43359375
+598.7733765 26502.74609375
+599.2729492 39898.0078125
+599.7780762 92403.9375
+606.2545776 38255.734375
+607.2696533 19639.42578125
+624.2686768 47591.70703125
+625.2698364 19630.810546875
+656.3084717 17883.279296875
+673.1970825 25089.48046875
+673.3240967 420859.625
+674.3266602 168660.921875
+675.3280029 37890.78515625
+693.28479 28407.572265625
+802.3632202 90155.4609375
+803.3703003 51377.02734375
+873.3981934 116516.96875
+874.4023438 44824.94140625
+1001.456665 34117.703125
+1002.462158 22891.28125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.499.499.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=499"
+RTINSECONDS=54.34626039
+PEPMASS=598.27001953125
+CHARGE=2+
+54.6268425 11996.484375
+58.13716125 13580.44140625
+60.73097229 14727.70703125
+64.52626038 58032.7734375
+64.53050232 37395.01953125
+64.58208466 38002.90234375
+64.58624268 26636.53515625
+76.28075409 14361.107421875
+82.05399323 17948.810546875
+88.88967133 14649.8740234375
+109.0058212 13423.9501953125
+115.8150406 14313.3984375
+149.5735931 46901.0078125
+167.0920258 44166.9609375
+169.0600586 38814.83984375
+175.1178741 312183.875
+176.1209106 19977.625
+177.075943 62431.8671875
+178.0601196 337465.625
+178.339386 73022.3203125
+179.0639038 34793.6640625
+179.0917511 24680.89453125
+182.0917053 20226.001953125
+183.0752869 30235.95703125
+186.0860901 103138.2734375
+190.0288086 16428.763671875
+190.061615 15259.01953125
+194.1028137 31460.083984375
+195.0864105 4114310.0
+195.1283264 24323.611328125
+196.089325 428820.625
+197.091568 33471.875
+199.1188812 19236.5703125
+200.1021423 31652.333984375
+201.0843964 15538.421875
+206.0910187 162009.890625
+209.1016083 16130.15625
+215.091217 21637.220703125
+217.1277008 14170.8740234375
+218.1027374 35997.76171875
+222.0854797 18011.91796875
+234.0970764 15070.2685546875
+239.113205 14964.42578125
+239.2906647 13847.1435546875
+240.0959167 36174.84375
+241.545578 12646.2958984375
+241.5823212 13733.5322265625
+243.0859222 36186.3515625
+244.1184998 17974.357421875
+246.0968781 667167.8125
+246.1255341 33438.4609375
+247.0998993 64789.296875
+249.0970612 18238.546875
+254.7050323 18801.740234375
+257.1222229 107010.8515625
+260.1122131 107404.046875
+270.097229 124265.6796875
+278.1485596 28275.326171875
+283.142334 52551.38671875
+287.1230774 146741.109375
+288.1073303 1611860.125
+289.1104126 224436.25
+290.1124268 14893.9833984375
+295.1485291 23412.142578125
+303.1436157 41527.92578125
+304.1289062 18182.9375
+305.1338806 3155435.25
+306.1189575 1166494.5
+307.1214294 182566.21875
+308.120697 25201.796875
+311.133667 53628.12109375
+312.1144409 30441.25
+321.1538391 334774.15625
+322.1565552 63468.2578125
+323.1442871 1082535.5
+324.1463318 212857.90625
+325.1533813 16781.078125
+329.14328 59074.15234375
+330.1480103 15291.9619140625
+331.1490784 24958.68359375
+338.1418152 66357.453125
+338.1804504 426857.15625
+339.1828918 60634.38671875
+341.1436768 20743.75
+347.1494141 20445.587890625
+349.1609497 16846.24609375
+351.1309204 14974.4072265625
+359.1437378 70619.1328125
+366.1860962 140607.140625
+367.1855164 31779.470703125
+369.1368103 26879.314453125
+376.170105 114815.375
+377.1552734 71286.6953125
+378.1525269 18415.908203125
+386.1633911 39396.3046875
+394.1807556 747424.8125
+394.2396545 21769.2265625
+395.1820984 151100.15625
+396.1887817 17382.5078125
+412.1870117 44561.12890625
+413.1651917 17191.193359375
+419.1953735 18671.220703125
+468.2210083 64607.90625
+469.2254639 18754.548828125
+477.2228394 22617.029296875
+483.7209473 32063.310546875
+485.2466431 227260.375
+486.2488708 57412.24609375
+488.1864929 50571.33203125
+489.1875305 17050.94921875
+492.2293091 167615.953125
+492.7303467 78635.453125
+493.2268066 21513.134765625
+495.2278137 68132.8984375
+503.2165222 21744.744140625
+503.7174683 34073.10546875
+505.2116394 45522.88671875
+506.2084961 54539.58203125
+512.2253418 42348.16796875
+513.2290039 19770.96875
+521.2299805 25293.666015625
+523.2218628 461309.03125
+524.2247314 138419.0
+525.229126 25331.9765625
+555.2489624 19369.154296875
+558.7438965 21345.7890625
+559.2420654 22673.1875
+571.7479858 48949.4453125
+572.2744751 321198.03125
+572.7511597 25233.70703125
+573.2796631 85376.203125
+574.2797241 20747.443359375
+576.2625122 26325.337890625
+576.7651978 23038.4765625
+577.2623291 23487.0625
+577.7605591 23811.267578125
+580.262146 75730.2734375
+580.7546387 2248651.0
+581.2558594 1495376.0
+581.7575684 542721.8125
+581.8647461 28497.068359375
+582.2582397 134227.84375
+589.2661743 65784.65625
+598.2711792 49087.125
+598.7797241 38831.62109375
+599.276001 32176.166015625
+599.7766724 67964.765625
+606.2566528 31856.021484375
+607.2559814 20550.611328125
+624.2702637 45379.265625
+655.2998047 16461.880859375
+673.3231201 409678.96875
+674.3267212 136546.09375
+675.3267822 39609.66015625
+802.3607788 76762.875
+803.364563 32876.18359375
+873.3990479 100203.15625
+874.4019775 48026.15625
+875.3931885 22009.482421875
+1001.444031 25692.91796875
+1002.451294 20189.3203125
+1058.473755 21721.064453125
+1160.953491 15465.4033203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.500.500.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=500"
+RTINSECONDS=54.45526464
+PEPMASS=598.27001953125
+CHARGE=2+
+58.37942886 13970.2021484375
+58.96632004 12978.7529296875
+64.52633667 61218.18359375
+64.5307312 43977.72265625
+64.58227539 36498.4609375
+64.58628082 28244.85546875
+64.63815308 22098.552734375
+64.64144897 13146.146484375
+68.52684021 14670.03125
+74.81201172 15198.3505859375
+104.7865067 12383.8828125
+149.5632324 32182.625
+149.57724 21491.9765625
+167.0916138 41307.7109375
+169.0600586 23508.81640625
+175.1178589 288776.78125
+177.0760956 70100.484375
+178.0601196 319064.0
+178.3474579 89461.125
+179.0632935 28086.912109375
+180.0618286 13961.732421875
+182.0920715 18468.50390625
+183.0763397 28952.34765625
+186.0859222 111813.0234375
+194.1042023 17909.115234375
+194.3102875 16910.9296875
+195.0863647 4270587.0
+196.0892639 431581.375
+197.0912323 30824.125
+200.1022797 23016.849609375
+206.0910034 159340.5
+207.0935822 21701.828125
+212.1098938 19710.357421875
+218.1015167 42300.62109375
+234.0976562 25548.458984375
+240.0942841 24030.119140625
+243.0869141 25468.45703125
+244.1195679 15937.7705078125
+246.0968933 623030.625
+247.0998535 95528.234375
+249.0959473 16724.8046875
+257.1227722 98813.7421875
+258.124176 26134.65625
+260.112915 115730.328125
+270.0967102 127698.3359375
+277.1366272 17697.69921875
+278.1496582 28659.7578125
+283.1423645 45433.515625
+287.123291 141204.59375
+288.1072388 1643847.75
+289.1099854 262046.890625
+290.1125183 22818.52734375
+294.1168823 23577.451171875
+295.1492004 33575.15234375
+303.1444397 20922.30078125
+304.1266479 20869.728515625
+305.1337585 3119094.25
+306.118988 1157925.5
+307.1212463 193609.5
+308.1197815 16094.0556640625
+311.1347046 54432.74609375
+312.1184082 48021.03515625
+321.1535339 366335.71875
+322.1566467 62529.71875
+323.1442261 1086939.75
+324.1464539 196968.671875
+325.1500854 15323.916015625
+329.1413879 46117.6796875
+336.1550293 18568.82421875
+338.1424255 45458.26953125
+338.1803589 411576.375
+338.6454163 21757.171875
+339.1839294 57733.59375
+347.1489258 30021.486328125
+349.1600342 15757.4287109375
+351.1273804 24872.330078125
+359.1454773 54872.8828125
+366.1850281 132952.328125
+367.187439 22204.625
+369.1418152 36288.81640625
+376.1695251 109237.078125
+377.1550598 73055.140625
+378.1585083 14962.1884765625
+386.1645203 21005.896484375
+394.1806335 738876.625
+394.2402039 29978.4140625
+395.1821899 161185.46875
+412.1843567 28557.330078125
+420.6819763 17907.28515625
+432.5239868 14758.529296875
+460.1884766 22019.0703125
+468.2224731 54819.92578125
+485.2474365 216697.390625
+486.2492676 70146.3359375
+488.1871338 55326.015625
+492.229248 182927.484375
+492.7308044 81176.015625
+493.2304993 52611.91015625
+495.2272034 65150.23046875
+503.7127686 29151.759765625
+504.2169189 19922.501953125
+505.2120056 56533.4140625
+506.2021179 45648.26171875
+512.2255249 48696.28515625
+512.7277222 35475.11328125
+520.739624 23091.341796875
+521.2353516 34686.51953125
+521.7313843 25432.697265625
+523.2215576 495183.9375
+524.2235107 138543.171875
+558.7460938 17266.4609375
+567.7576294 16192.080078125
+571.7495117 95797.4765625
+572.2749023 327858.0
+572.7454834 20071.783203125
+573.2781372 97673.4609375
+576.2636719 31708.185546875
+576.762146 31343.248046875
+577.2601318 27658.421875
+580.2627563 81081.2734375
+580.7544556 2425191.75
+581.2556763 1520662.625
+581.756958 575708.3125
+582.2585449 121867.4921875
+589.2680664 84566.421875
+589.7683105 34954.61328125
+598.2711182 38128.53125
+598.7712402 34984.80078125
+599.274353 28524.80859375
+599.7769165 83794.609375
+606.2588501 48819.421875
+607.2589722 22132.359375
+624.2670288 63325.26171875
+656.3024902 22565.10546875
+673.3232422 402405.875
+674.3253174 150797.53125
+675.3215942 21216.33203125
+802.3649902 101145.4296875
+803.3718872 35485.7265625
+873.3987427 87340.171875
+874.3969727 40574.58984375
+1058.4646 26282.83984375
+1059.484497 21167.865234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.501.501.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=501"
+RTINSECONDS=54.5637325
+PEPMASS=598.27001953125
+CHARGE=2+
+53.60941315 10739.7783203125
+58.13435364 15394.44921875
+58.13716125 12151.5126953125
+64.52626801 56662.90234375
+64.5306778 39491.859375
+64.58196259 35324.52734375
+64.5860672 24058.822265625
+64.63809967 12987.20703125
+149.5646362 20589.392578125
+167.091568 44825.36328125
+169.0595551 36570.40625
+175.1180267 282973.09375
+176.1218567 21253.66796875
+177.0762634 58278.10546875
+178.0601349 314555.0625
+178.0783997 17620.826171875
+178.347229 69626.203125
+179.0630188 25187.62890625
+179.0919037 21800.572265625
+182.0907898 16479.625
+183.0748444 20112.255859375
+186.0863495 95085.6640625
+194.1016541 37075.2734375
+195.0865326 3669500.5
+195.1282654 20429.01953125
+196.0893402 355730.25
+197.0905609 36661.48046875
+200.1019745 23441.77734375
+201.0868835 13867.7216796875
+205.0594635 12527.990234375
+206.0914001 156539.8125
+218.1028748 46046.28515625
+222.0877228 18821.619140625
+233.1243744 14143.232421875
+234.0983276 14992.826171875
+239.1141357 11312.208984375
+240.0964508 23337.662109375
+243.0858917 24661.154296875
+246.0971985 570612.3125
+247.0999908 74550.2890625
+249.0943298 19418.962890625
+257.1229858 91276.21875
+258.1259155 27479.171875
+260.1128235 112805.984375
+261.1199951 12159.8837890625
+267.1104126 14058.3955078125
+270.0973816 122329.828125
+271.1024475 14763.8154296875
+276.134491 16260.7177734375
+278.1494751 26669.2890625
+283.1430054 44349.7265625
+287.1235352 144181.53125
+288.1076355 1543621.0
+289.11026 204888.1875
+290.113739 23964.791015625
+294.1172485 15726.134765625
+295.1502686 26024.28515625
+302.1307373 12184.27734375
+303.1429443 15827.189453125
+305.1341858 2967049.5
+305.2153625 17153.42578125
+306.1194763 1067905.0
+307.1217651 190607.046875
+308.120697 21516.93359375
+311.1353149 50978.14453125
+312.1185608 43525.796875
+321.0008545 12027.421875
+321.1542358 325261.96875
+322.1562195 50057.96875
+323.0983582 25189.294921875
+323.1446838 1049816.0
+324.1468201 157698.984375
+325.1530151 24419.521484375
+329.1446228 32123.412109375
+331.1499939 21230.86328125
+338.1417542 53661.109375
+338.1807861 367208.4375
+338.6457214 17832.81640625
+339.1427917 18897.59375
+339.1832581 57187.8125
+339.2226257 13274.353515625
+341.1485901 14750.8427734375
+347.1484985 25784.501953125
+349.1589661 24054.01171875
+351.1286621 18089.423828125
+358.1645813 12589.1494140625
+359.1442566 67671.890625
+366.1866455 101010.3359375
+367.1921997 13400.392578125
+369.1387329 32694.537109375
+376.1701965 112221.8515625
+377.1560364 93084.4140625
+378.1555176 14513.2958984375
+386.1652832 47166.91796875
+389.1672974 12344.4267578125
+394.1812744 657097.25
+394.2406311 22172.224609375
+395.1831665 126177.9375
+396.185791 15485.3759765625
+412.1879272 19469.5390625
+420.6834106 14752.27734375
+429.2027283 12758.626953125
+434.1750793 13483.9814453125
+451.2008362 14229.1005859375
+460.194397 17778.6875
+468.2217712 52538.46875
+477.210022 18020.908203125
+483.721283 22063.396484375
+484.2167664 13127.171875
+485.2477417 221955.90625
+486.2510071 51437.23828125
+488.1868286 55565.453125
+492.2297363 162325.640625
+492.7312317 78605.546875
+493.2298889 32346.548828125
+495.2275391 51075.91015625
+496.2344666 17582.51953125
+503.7198486 16345.029296875
+504.2177429 15865.36328125
+505.2110901 49996.890625
+506.208374 50964.8203125
+512.2249146 37431.5703125
+512.7246704 18516.03125
+513.2350464 21091.4609375
+521.2364502 44447.78515625
+521.7351074 27837.8828125
+523.2225952 451401.96875
+523.3096313 25296.046875
+524.2246094 123658.1015625
+525.2348633 39588.19921875
+531.9799194 12554.70703125
+554.2717285 19773.08203125
+558.7434692 23621.470703125
+559.2498169 17950.412109375
+571.7529907 79391.5703125
+572.2756958 276004.78125
+572.7542725 26152.05078125
+573.2818604 90457.015625
+574.2835083 26900.318359375
+576.2597046 34571.140625
+576.7635498 25095.896484375
+580.2654419 64438.2578125
+580.7556152 2029577.0
+581.2568359 1313431.75
+581.7584839 451641.28125
+582.2579956 76472.96875
+589.267395 36598.56640625
+598.2735596 37156.25
+598.774353 24977.892578125
+599.2748413 49837.19140625
+599.7775269 82877.890625
+606.2574463 34897.73046875
+624.2688599 38842.44140625
+655.3221436 17280.873046875
+656.3079834 17699.732421875
+673.1958008 21761.966796875
+673.3245239 354574.71875
+674.328186 130224.3984375
+675.3342285 28064.0234375
+693.2869263 15015.470703125
+802.3640137 68737.046875
+803.3659058 35826.08984375
+873.4030762 73516.359375
+874.4041138 20837.3203125
+1001.454773 24842.875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.502.502.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=502"
+RTINSECONDS=54.67637395
+PEPMASS=598.27001953125
+CHARGE=2+
+53.96684647 18089.154296875
+59.23295212 15112.0869140625
+64.52617645 74896.421875
+64.53061676 53171.61328125
+64.58201599 46454.21484375
+64.58613586 35195.40625
+64.63817596 16888.2890625
+110.1706772 16604.052734375
+121.7871246 15797.9150390625
+125.7522812 16245.970703125
+149.5684509 62643.1640625
+167.0913849 36972.578125
+169.0597839 33479.6015625
+172.4725189 16750.3828125
+175.1177368 303889.5
+177.0759125 52959.015625
+178.0599213 331575.5
+178.3376007 81357.1875
+178.356781 38790.7734375
+179.0636444 20819.677734375
+179.0908356 16552.98828125
+183.0752869 29783.37109375
+186.0859528 122548.484375
+194.1031036 31510.7578125
+195.0863037 4439991.0
+196.0890808 445012.125
+197.091095 31115.03515625
+200.1018219 20715.892578125
+206.0911102 139360.21875
+218.102356 53801.40234375
+222.0849762 17707.458984375
+240.0956421 23392.47265625
+243.0872345 16629.39453125
+246.0745087 11042.412109375
+246.0969391 679503.8125
+247.0989227 71794.1640625
+253.1027527 21887.62109375
+257.1227722 96855.421875
+260.1123962 110279.09375
+270.0969543 128791.8359375
+276.1070251 20590.501953125
+283.1425476 51820.796875
+287.1232605 180597.453125
+288.1072693 1561629.875
+289.1100159 224249.890625
+290.1138916 20199.7265625
+294.1165161 24151.87109375
+295.1495361 26638.400390625
+303.1436768 30167.470703125
+305.1337585 3321566.0
+306.1188354 1243386.125
+307.1213684 195662.96875
+308.1243896 25679.583984375
+311.1338806 56096.0234375
+312.1165771 35713.171875
+318.1434937 19195.296875
+321.1535645 355153.5
+322.1561279 66180.0
+323.1441956 1124412.25
+324.1463013 181960.765625
+325.1525574 28496.7421875
+329.1439819 46286.94140625
+338.1420898 50882.234375
+338.1803284 414303.15625
+338.6471252 37921.171875
+339.1825256 85620.4453125
+347.151001 24950.828125
+358.1665039 20363.494140625
+359.1456909 64165.35546875
+359.7470398 18727.24609375
+366.1853943 115110.3515625
+367.1867065 20289.40234375
+369.1347961 34498.3359375
+369.4786682 19210.244140625
+376.1700745 147199.21875
+377.1557007 105694.5
+386.16922 18384.201171875
+394.1805115 790085.8125
+394.2407227 32955.25390625
+395.182312 147982.1875
+396.1867065 26815.68359375
+412.1862183 37043.046875
+421.1833496 18856.669921875
+468.2209778 64316.36328125
+475.2175598 17755.568359375
+483.7154236 19440.32421875
+485.2470398 204270.109375
+486.2499084 65419.07421875
+488.1858215 67279.4453125
+492.2284546 175024.765625
+492.732605 74041.40625
+493.2284241 35162.19921875
+495.2262878 63128.56640625
+505.2078247 50059.73046875
+506.2046509 69685.3828125
+512.2235107 64915.08984375
+512.7276611 44835.31640625
+521.2340698 43468.71875
+521.7260742 22060.751953125
+523.222229 508605.21875
+524.2237549 134067.890625
+525.2234497 26173.541015625
+558.7429199 35913.8671875
+571.7477417 102900.359375
+572.2746582 350327.0
+572.7502441 57466.03125
+573.2776489 113476.2578125
+574.2792358 30549.48046875
+576.2618408 38290.1484375
+576.7647095 42378.05859375
+580.2628784 119688.1015625
+580.7546387 2675476.0
+581.2558594 1893092.75
+581.3656006 25099.0390625
+581.7573242 752088.9375
+582.2588501 155105.765625
+589.2671509 176484.546875
+589.7644653 89154.7421875
+590.256897 27059.4609375
+598.2728882 68139.6171875
+598.7799683 35532.42578125
+599.7772217 74886.171875
+606.2574463 46856.0234375
+624.2696533 66743.4375
+655.3115845 28746.892578125
+673.3234253 417637.125
+674.326416 182820.890625
+675.3245239 38950.16015625
+693.2895508 40933.5859375
+802.3635864 84713.34375
+803.3669434 39490.73046875
+873.3970947 106395.9765625
+874.4051514 54986.32421875
+1001.457947 30955.703125
+1058.473877 31479.85546875
+1059.469238 21506.91015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.503.503.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=503"
+RTINSECONDS=54.78292448
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13711929 10296.7880859375
+64.52622223 47420.0703125
+64.53063202 40117.1640625
+64.58200073 30168.416015625
+64.58616638 22599.876953125
+64.6381073 14939.1787109375
+64.64147186 13257.474609375
+72.12551117 10834.75
+74.81173706 13177.8369140625
+74.81623077 12836.15625
+76.28123474 12117.4287109375
+76.28529358 10783.7734375
+149.5627899 19502.869140625
+149.5765839 22651.212890625
+153.3868256 10034.4404296875
+167.0917358 33407.92578125
+169.0592957 30869.4453125
+175.1177826 270544.0
+176.1212463 12025.95703125
+177.0757446 58901.0703125
+178.0598907 289976.125
+178.0781555 11564.75390625
+178.3506927 47440.10546875
+179.062851 18410.4140625
+179.0910645 24044.345703125
+182.0922394 13482.19921875
+183.0755768 13611.826171875
+186.0859222 98758.3515625
+190.0600891 14923.0478515625
+194.1030121 30071.703125
+195.0863495 3407037.75
+195.1279755 26616.765625
+196.0890808 353745.46875
+197.0910492 30280.955078125
+200.1004028 26245.125
+206.0909119 148063.546875
+207.0938568 12612.5947265625
+212.1128693 17611.603515625
+213.088089 9599.5029296875
+215.0906982 13682.9345703125
+218.102417 50498.5
+221.1010284 9899.92578125
+233.1262817 11566.4736328125
+234.0966492 27310.001953125
+240.0949707 25193.947265625
+242.1005554 15439.8095703125
+243.0870972 22018.005859375
+246.0968781 570497.625
+247.0995941 79629.734375
+248.1161804 10589.888671875
+249.0965881 20983.46484375
+257.1227722 110305.046875
+258.1234131 13534.2939453125
+260.1122742 108583.359375
+270.0968018 115094.234375
+277.1388245 11501.068359375
+278.1469421 28887.603515625
+283.1430054 39431.10546875
+287.123291 142368.515625
+288.1072693 1442666.875
+289.1098022 201669.203125
+290.1141968 13528.3828125
+294.1213684 11546.865234375
+295.1478577 19459.1328125
+302.1280518 13614.576171875
+303.1444397 26436.626953125
+304.1290283 17811.46875
+305.1338196 2691627.25
+306.1190186 926513.6875
+307.1214294 162727.859375
+308.122467 16929.412109375
+311.135376 47393.72265625
+312.1169739 32948.9296875
+320.1300049 12343.701171875
+320.1697693 12192.5380859375
+321.1540222 294362.71875
+322.1568604 48897.1328125
+323.0985718 17561.787109375
+323.1443176 971965.375
+324.146637 151103.234375
+325.1474609 14412.134765625
+329.143219 41220.125
+331.1497498 13474.189453125
+338.1418762 62018.984375
+338.1805725 322723.9375
+338.6460266 19460.64453125
+339.1405945 13286.2685546875
+339.1828308 59714.06640625
+346.1702881 13677.2177734375
+347.1500244 13202.9892578125
+349.1616516 10653.181640625
+358.1614075 11944.45703125
+359.1446838 71636.078125
+366.185791 105231.765625
+367.1905518 22053.94140625
+369.1371765 23627.80859375
+376.1697083 85912.5625
+377.1580505 53433.8359375
+386.1654663 31812.841796875
+394.1807556 548874.5625
+394.2399597 17770.390625
+395.1829834 108911.0625
+396.1811218 12336.9306640625
+412.185791 25595.96484375
+420.68573 12073.251953125
+460.1858826 12834.8251953125
+468.2218628 38007.85546875
+478.2094421 14941.9013671875
+483.7196655 12142.845703125
+485.2471008 172889.96875
+486.2497253 44210.80078125
+488.1845093 45527.1953125
+489.1954651 12268.759765625
+492.229126 152101.53125
+492.7301025 80754.2578125
+493.2322693 36913.45703125
+495.2262878 47878.66796875
+496.230957 13986.9150390625
+504.2167358 11776.5341796875
+505.2115479 42592.4765625
+506.2055359 30531.2109375
+512.2269897 29401.611328125
+512.7289429 27791.22265625
+513.2203369 14554.6181640625
+520.7380371 15609.98046875
+521.2288208 14245.81640625
+521.7325439 15644.01953125
+523.2219849 355970.46875
+524.2249756 99367.1484375
+525.2297974 25890.74609375
+541.2341309 12432.853515625
+554.270752 16705.703125
+571.7488403 77984.328125
+572.2736206 251439.203125
+572.7493286 22831.248046875
+573.2784424 99295.15625
+574.2809448 20428.875
+576.2606201 43870.98046875
+576.7666626 20110.94921875
+580.262207 72175.6015625
+580.7548218 1859378.125
+581.2559204 1186817.0
+581.368103 15016.4912109375
+581.6499634 13115.4091796875
+581.7572632 449796.0
+582.2592163 111395.1953125
+598.2693481 21806.880859375
+598.7756958 29885.17578125
+599.2766724 45023.453125
+599.7762451 85621.0
+606.2600708 16888.908203125
+624.269043 45284.5703125
+655.3079834 17031.970703125
+673.3239746 328232.78125
+674.3274536 125583.3828125
+675.3289795 22934.3046875
+711.2969971 12639.4404296875
+794.1345215 10784.9365234375
+802.3657837 61129.4296875
+803.3615723 31730.0078125
+840.3408203 12569.83984375
+873.3988037 67576.765625
+874.4083252 24163.66015625
+875.4144897 11304.2568359375
+1001.45459 17667.947265625
+1057.220215 10719.3837890625
+1058.465454 12493.2177734375
+1120.479736 10597.14453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.504.504.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=504"
+RTINSECONDS=54.89759642
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52620697 63716.2890625
+64.53048706 48349.69140625
+64.58209229 44873.9921875
+64.58618927 30977.404296875
+64.6381073 17268.099609375
+64.64144135 22532.09375
+74.81156921 15788.265625
+80.08791351 14523.869140625
+100.7192078 13926.2099609375
+108.5402374 13969.01171875
+149.5671082 49988.3671875
+167.0911255 40122.94140625
+169.0594635 33134.1484375
+175.1177216 305765.59375
+176.1216583 27447.994140625
+177.0755768 62168.453125
+178.0598602 263060.46875
+178.3329468 35571.23046875
+178.3518219 75576.203125
+179.0635376 20281.466796875
+179.0927124 20816.095703125
+181.353241 14780.77734375
+182.0920868 26851.1484375
+186.0858765 107393.875
+194.1025696 39679.2734375
+195.0862732 4303605.5
+195.1281128 23577.162109375
+196.0890503 432449.34375
+197.0906372 26630.048828125
+200.1023407 30411.5546875
+206.0908661 149058.4375
+212.1018524 19052.84765625
+215.0911865 22705.66796875
+218.1017914 57401.70703125
+234.0978241 17748.287109375
+239.1110077 22018.0
+240.0947571 35701.63671875
+244.1158752 17400.666015625
+246.0967712 672725.625
+247.0988312 63419.16796875
+257.1225891 105364.640625
+260.1120911 97985.734375
+267.1092224 17834.248046875
+270.0965881 126861.78125
+276.1350708 20354.791015625
+278.1211243 20019.724609375
+283.1436768 47733.0703125
+287.1230774 167006.28125
+288.1070862 1570825.125
+289.1098633 206364.359375
+290.1131592 19660.98828125
+294.1163025 27558.1953125
+295.1473694 25246.943359375
+303.1422424 34704.1328125
+305.1335754 3192767.5
+305.2158203 21652.234375
+306.1188354 1136758.5
+307.1207581 185705.890625
+311.1342163 55071.6640625
+312.1164246 34622.13671875
+321.153656 344097.5625
+322.1564331 65025.04296875
+323.0991516 17707.935546875
+323.1439514 1171589.125
+323.1885986 32231.89453125
+324.1459045 187605.71875
+328.1600037 18121.033203125
+329.1449585 52147.59375
+338.1419678 58672.55078125
+338.1800842 454948.21875
+339.1827393 70011.2421875
+349.1619568 25886.232421875
+359.1434326 57250.30859375
+366.1858826 112039.859375
+367.1871338 19189.841796875
+376.1707153 122215.9609375
+377.1551819 74259.4140625
+394.1803589 768326.875
+394.2388306 20617.048828125
+395.182373 152420.78125
+396.1845703 18585.27734375
+412.1876221 26931.765625
+420.6838684 16040.1083984375
+421.1819458 22534.8984375
+468.2189026 45549.0546875
+478.2038269 18620.57421875
+485.24646 241817.515625
+486.2479858 50882.1484375
+488.1852722 55627.45703125
+492.2285156 154432.3125
+492.7311096 100906.6015625
+493.2311096 26504.859375
+495.2246094 50276.05859375
+496.2321777 25087.533203125
+503.7068787 24181.751953125
+505.2102356 67833.125
+506.20047 54157.015625
+506.7276306 21379.328125
+521.2306519 27820.34375
+521.7307739 22343.06640625
+523.2209473 521513.5
+524.2237549 139108.875
+525.2243042 22290.619140625
+529.7459106 21474.16796875
+571.7484741 84252.1171875
+572.2740479 325666.09375
+573.2768555 75781.328125
+576.2619629 34514.109375
+577.2626953 37711.7421875
+580.2603149 84179.046875
+580.7539673 2468189.25
+581.2554321 1618612.875
+581.3354492 21182.771484375
+581.7565918 641313.5625
+582.2592773 114272.984375
+589.2669067 122420.484375
+589.7645264 41366.8125
+590.2717285 21051.796875
+598.2719727 42732.9140625
+598.7785034 34474.98828125
+599.7761841 58707.9765625
+606.2588501 26331.310546875
+624.2678833 51523.6875
+673.3221436 399977.75
+674.3240356 127748.703125
+675.3254395 44286.9921875
+711.3016357 23185.10546875
+802.3632812 106972.9453125
+803.3658447 66013.140625
+873.397583 117874.609375
+874.4008179 46448.21875
+1003.465149 19681.705078125
+1058.482422 22011.51953125
+1257.266724 18156.98828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.505.505.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=505"
+RTINSECONDS=55.00479456
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52625275 63268.69140625
+64.5306778 48338.39453125
+64.58201599 49945.67578125
+64.58623505 33394.578125
+64.63794708 16483.1484375
+94.46611786 12948.392578125
+96.88200378 14485.630859375
+98.75193787 13786.06640625
+149.5617065 17821.48828125
+149.574173 54297.83984375
+167.0917053 52151.98046875
+169.0599365 34412.38671875
+175.1179352 311837.625
+176.1212616 15252.8076171875
+177.0756989 59321.5
+178.0600433 351691.6875
+178.3398895 87330.0546875
+179.063736 33954.9375
+179.0920258 22891.4765625
+182.0882721 17982.98828125
+183.0759125 19913.103515625
+186.0863037 104479.15625
+194.1022644 47587.140625
+195.0864105 4295675.0
+195.1284485 22851.158203125
+196.0891266 434516.34375
+197.0916901 28537.51171875
+200.1024017 28651.779296875
+201.0855255 22907.423828125
+206.0910492 158406.40625
+213.0861511 22155.36328125
+218.1022491 57847.9296875
+234.0972137 15470.115234375
+238.9873657 15528.2666015625
+240.0941467 24622.640625
+243.0865936 35262.01171875
+244.1164398 15856.3564453125
+246.0969086 646413.125
+247.1000977 69802.4375
+250.3460846 14541.8720703125
+257.1228027 103923.9296875
+260.1123962 101600.8046875
+270.0968933 107739.6875
+278.1463928 23254.849609375
+283.1437073 63982.2109375
+287.1231079 155809.3125
+288.1073608 1575567.875
+289.1101685 247785.53125
+295.1503296 34050.77734375
+303.144043 40336.24609375
+305.1338806 3239396.5
+306.1191406 1149834.625
+307.1213989 188730.46875
+308.120636 16434.552734375
+311.1345215 43692.35546875
+312.1159668 37524.89453125
+321.1539001 343266.75
+322.1559143 29635.658203125
+323.1442871 1137244.0
+324.1459351 179619.78125
+325.1503296 22883.03125
+329.1419067 52244.80859375
+338.1416931 58301.15234375
+338.180542 436725.75
+338.6447754 27124.3125
+339.1835327 83022.625
+340.1859741 18197.89453125
+347.1497498 28433.572265625
+349.1614685 31045.318359375
+352.1213074 14610.583984375
+359.1447144 48453.2578125
+366.1850281 102374.234375
+367.1879883 28894.787109375
+369.1395569 20258.009765625
+376.1706848 127847.671875
+377.1565247 67141.0078125
+378.1643982 16863.09765625
+386.1620483 31897.85546875
+394.1807861 749584.0625
+394.2408752 26364.005859375
+395.1829529 158786.640625
+412.1859436 29201.435546875
+460.1921692 23847.30078125
+464.1719971 21074.75
+468.2196045 52091.94140625
+477.21875 19840.98046875
+478.2011414 16363.2392578125
+483.228363 18538.693359375
+483.7217407 23491.275390625
+485.2469177 208910.375
+486.2489014 65183.18359375
+488.1852112 57341.58984375
+489.1878967 22293.869140625
+492.2289734 218852.4375
+492.7304382 99181.171875
+493.2307434 44466.14453125
+495.2279053 64865.01953125
+501.2301331 19146.19921875
+505.210907 73517.8671875
+506.20224 57993.4296875
+506.7323914 21570.55859375
+512.2227783 34324.48828125
+512.7289429 25333.716796875
+521.2335205 27846.853515625
+523.2214355 469379.3125
+524.2244873 154043.71875
+525.2315674 40059.7109375
+555.2550659 30157.49609375
+558.7467651 49621.67578125
+571.7496338 82483.6015625
+572.2747192 333327.0625
+572.744751 23242.400390625
+573.2787476 113494.71875
+576.2639771 17862.01953125
+576.7639771 56633.03125
+577.2612915 26811.775390625
+580.2630615 100458.3515625
+580.7547607 2600662.0
+581.2560425 1783785.25
+581.3361816 32039.15625
+581.7577515 644936.8125
+582.2588501 132132.09375
+589.2662354 66442.515625
+589.7681274 48642.8359375
+598.2714233 43818.05859375
+598.7747192 48160.796875
+599.27771 22914.708984375
+599.77771 68843.2265625
+606.2597046 38107.203125
+624.2660522 68021.71875
+625.2642822 21303.765625
+655.3169556 17699.970703125
+673.322998 443177.25
+674.3270264 163309.375
+693.2908325 26380.041015625
+711.2925415 19569.787109375
+802.3631592 86618.6953125
+803.3674316 35285.37890625
+873.4015503 93498.0234375
+874.4015503 43490.953125
+1001.454407 29156.173828125
+1058.480591 23602.720703125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.506.506.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=506"
+RTINSECONDS=55.11288838
+PEPMASS=598.27001953125
+CHARGE=2+
+63.4546814 14270.3505859375
+64.5262146 65921.8359375
+64.5304718 38001.5546875
+64.58211517 46620.66015625
+64.58616638 31115.794921875
+64.63831329 25502.91015625
+64.64157867 16044.3916015625
+93.86142731 16791.58203125
+104.8040771 16085.9638671875
+149.5732574 54657.20703125
+167.0918274 42105.26171875
+168.0944366 15788.1123046875
+169.0608215 19450.048828125
+175.1178284 269666.09375
+176.1202698 16610.01171875
+177.0760956 91841.5625
+178.0600891 324064.59375
+178.3386383 71251.171875
+179.0637817 24931.02734375
+179.0913086 19655.529296875
+182.0912781 15318.78515625
+183.0756683 30887.458984375
+186.0861206 104691.78125
+194.1028137 41995.2734375
+195.0864105 4223360.0
+196.0892944 434273.75
+197.0920563 40511.1484375
+200.102356 28276.7421875
+206.0912628 164796.171875
+217.1282043 16777.33984375
+218.1023712 48951.5390625
+233.1266785 18565.56640625
+234.0971222 22624.55859375
+239.1101837 16179.5234375
+240.0959167 28742.9140625
+243.0841675 16813.365234375
+246.0969849 622807.875
+247.1002808 82278.9921875
+257.1226807 121221.421875
+260.1122437 106742.328125
+261.1199951 19537.609375
+270.0969849 135472.9375
+277.1384277 15951.5029296875
+278.1170044 15211.2421875
+278.1495056 22983.482421875
+283.1421814 43242.31640625
+287.1235657 152162.703125
+288.1074219 1596656.75
+289.1101379 264830.96875
+290.1112366 20568.82421875
+294.115448 16108.7412109375
+303.1433411 37474.1953125
+304.1262817 20611.42578125
+305.1339417 3320980.25
+306.1192322 1117414.0
+307.1210022 216258.9375
+311.1346436 46688.078125
+312.1175842 40427.1875
+321.1537476 331256.125
+322.1569519 52670.51953125
+323.0992126 19435.779296875
+323.1444397 1068045.0
+324.146759 209348.296875
+325.1488037 25003.28125
+329.1447449 46385.0546875
+338.1423645 41313.71484375
+338.180542 393567.0625
+339.1827393 83321.125
+347.1488342 35105.67578125
+351.131073 18028.3671875
+358.166687 20126.857421875
+359.1432495 65843.2890625
+366.1864929 135660.5
+367.1911011 21911.208984375
+369.137207 23039.5546875
+376.1711426 126975.9765625
+377.1567078 87179.6484375
+386.1646118 30817.189453125
+394.1809082 757495.625
+394.2400513 27886.923828125
+395.1823425 209545.6875
+407.4390564 16628.509765625
+412.1891174 28733.662109375
+420.6775208 19711.703125
+434.1701355 16164.49609375
+460.1977539 17680.31640625
+468.2218323 61328.16796875
+469.2198792 21777.392578125
+477.2151489 35315.25390625
+478.2070923 19126.501953125
+485.2479248 233058.21875
+486.2513428 59201.5
+488.1904907 47944.07421875
+489.19104 21628.9921875
+492.2294617 186024.9375
+492.7301025 127969.828125
+493.2322693 33653.24609375
+495.2269592 75633.9140625
+505.2127075 65519.53515625
+506.2076111 58783.2109375
+512.2252808 49551.8203125
+512.7247314 47589.26171875
+513.2301636 25577.73828125
+521.2333374 47639.25390625
+523.2221069 466904.8125
+524.2245483 159613.515625
+525.2263794 21454.21484375
+529.746521 22587.650390625
+558.7388306 22151.51953125
+567.260498 21836.6875
+568.2563477 21650.71875
+571.7512817 77904.7578125
+572.2744751 336460.34375
+573.2787476 113605.4140625
+576.2581787 42693.36328125
+576.7651367 41231.96875
+580.2637329 68821.8203125
+580.7548828 2466246.75
+581.2562256 1743666.5
+581.3685913 27658.44921875
+581.6500854 21727.88671875
+581.7576294 685807.6875
+581.8637695 23761.83984375
+582.2589722 155733.109375
+589.2654419 96801.6484375
+589.7654419 63407.671875
+598.2719116 63928.53515625
+598.7752075 40332.0859375
+599.7746582 58374.51171875
+606.2546997 47590.51171875
+607.2496948 20498.6640625
+624.2687988 61331.9921875
+673.3243408 430554.9375
+674.3259888 172119.875
+675.3275146 45509.91796875
+693.2868042 33591.16015625
+802.3633423 98184.3515625
+803.3703613 45009.4375
+873.4015503 97549.8984375
+874.3963623 64424.96875
+1001.453247 19686.24609375
+1002.465515 17749.970703125
+1058.486938 21261.556640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.507.507.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=507"
+RTINSECONDS=55.22088781
+PEPMASS=598.27001953125
+CHARGE=2+
+57.20930099 11758.462890625
+58.13437271 14276.8583984375
+64.52632141 46158.171875
+64.53045654 31863.033203125
+64.58197021 32697.46875
+64.58613586 27764.12890625
+64.63812256 11705.0537109375
+69.80140686 11195.39453125
+73.68403625 10840.234375
+82.05437469 16722.10546875
+87.13729858 10956.3935546875
+91.05727386 11997.91015625
+149.5705566 53972.0625
+165.3560333 11109.587890625
+167.0919189 34805.578125
+169.0602112 20107.20703125
+175.1177673 284390.59375
+176.1223297 20703.708984375
+177.0761261 68140.5703125
+178.0599213 303943.1875
+178.3524475 51095.7578125
+179.0636444 24642.3671875
+183.0755463 35953.46484375
+186.0861206 99323.0859375
+191.2993164 14675.7216796875
+194.1025696 39645.5
+195.0863495 3982629.75
+195.1280975 18025.62890625
+196.0892792 415408.34375
+197.0908356 27187.080078125
+199.1170654 12377.8671875
+200.1010437 28608.76171875
+201.0859222 19090.451171875
+206.0910645 164546.109375
+212.1144257 22628.880859375
+218.102005 59352.64453125
+234.0960236 15227.806640625
+239.1132812 16157.640625
+240.0958557 17297.044921875
+243.0865631 21976.990234375
+246.0968628 590747.25
+246.1255798 25670.205078125
+247.0987091 57333.65625
+249.099472 13214.43359375
+257.1223755 87263.84375
+260.1125793 88487.9609375
+262.1222534 12175.6708984375
+270.0969238 112598.09375
+271.102356 12663.3193359375
+275.4230652 10950.474609375
+278.1488037 25554.6875
+283.1429749 42848.82421875
+287.1231689 138925.328125
+288.1072388 1591713.5
+289.11026 226614.203125
+290.1115417 18845.369140625
+294.1169128 19177.482421875
+295.150116 30514.474609375
+303.1436157 14771.20703125
+305.1337585 2886630.5
+306.118866 1068265.25
+307.1208191 170079.96875
+308.1211548 18639.134765625
+311.1348572 43085.6015625
+312.115509 26359.58984375
+318.1439819 17091.826171875
+321.1536865 312462.59375
+322.1566467 60845.34765625
+323.144165 1005485.75
+324.1468201 144289.34375
+325.1517029 19564.798828125
+328.1604919 16156.4794921875
+329.1430969 48855.91796875
+331.1470337 13677.896484375
+338.1423035 39815.625
+338.1803284 340684.625
+338.6450195 20434.673828125
+339.1829529 67259.1328125
+346.1741028 14587.40234375
+347.1468506 13968.416015625
+348.1710815 16103.4921875
+351.1298218 20458.150390625
+359.144104 67256.859375
+366.1856384 111557.1640625
+369.1386414 25770.234375
+376.1700439 95995.4921875
+377.1566772 78358.4765625
+386.1660156 15718.431640625
+394.180542 644305.0
+394.2405701 19756.322265625
+395.1820679 140291.90625
+396.1896973 18904.193359375
+412.1851196 21514.384765625
+463.1976318 19364.40625
+468.2191772 48593.5234375
+478.2015991 15227.130859375
+485.2470398 200432.265625
+486.2512207 60827.2265625
+488.1837158 48434.890625
+489.197937 16440.05859375
+492.2286072 135221.578125
+492.7290344 73361.546875
+493.2305298 27003.939453125
+495.2295227 28809.6015625
+496.2277832 21720.23828125
+503.2206421 14222.72265625
+503.7166443 15161.611328125
+505.2100525 40617.89453125
+506.2011414 48060.71484375
+512.2263794 33705.7265625
+512.7300415 23326.271484375
+521.2340088 20839.658203125
+521.7279053 20176.677734375
+523.2214966 397169.8125
+524.2235107 120960.1484375
+525.2276611 28967.228515625
+529.7474365 21553.560546875
+530.2408447 13765.7529296875
+558.7414551 19638.177734375
+567.2584229 26900.298828125
+567.7536621 18846.375
+571.7484741 82196.0078125
+572.2745972 265534.28125
+572.7515869 24246.13671875
+573.2778931 68722.2578125
+576.2608643 36806.59375
+576.7581787 28744.234375
+577.2616577 26622.703125
+580.2634277 48397.5546875
+580.7541504 1823340.0
+580.8388062 21902.771484375
+581.2553711 1364489.875
+581.3391113 18925.18359375
+581.3677368 27065.70703125
+581.756958 504487.03125
+582.2592773 101344.078125
+589.2661133 26601.546875
+589.7650146 26789.640625
+598.2700806 53441.6484375
+598.7755737 23630.572265625
+599.2744141 39914.4296875
+599.7759399 82658.8984375
+606.2560425 21189.314453125
+624.2652588 46099.17578125
+625.2753296 21776.046875
+673.322876 375806.28125
+674.3261719 148719.671875
+675.331665 17186.744140625
+693.2826538 22433.267578125
+802.362793 85053.03125
+803.368042 37292.6328125
+873.3978882 83259.4140625
+874.3999634 41771.4921875
+1001.443115 26037.40234375
+1058.487671 21895.232421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.508.508.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=508"
+RTINSECONDS=55.33173501
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52627563 56519.97265625
+64.53047943 45194.125
+64.5819931 43840.90625
+64.58612823 30836.291015625
+64.63793182 25513.861328125
+64.64147186 19323.015625
+68.9024353 12756.4345703125
+74.81198883 15266.634765625
+80.89409637 13568.3798828125
+82.05452728 17469.927734375
+85.77840424 15175.76953125
+92.26641846 15752.896484375
+119.7654114 13932.6005859375
+149.5726776 61489.78515625
+167.0921021 44734.87890625
+169.0598297 35370.84765625
+175.1178894 309304.96875
+176.1201935 18899.447265625
+177.0761261 63209.30859375
+178.0599976 333025.1875
+178.0780792 20544.818359375
+178.3390503 72724.9375
+178.3575439 31103.98828125
+179.0643463 29450.57421875
+179.0904846 16414.20703125
+183.075592 31258.546875
+186.0861816 104640.9609375
+194.1027222 57404.2265625
+195.0864563 4317951.5
+196.0892487 422650.9375
+197.0907288 30567.708984375
+200.1015167 30994.6484375
+201.0859222 16136.513671875
+206.091095 162503.828125
+213.0840454 24277.888671875
+215.0919189 20851.76171875
+217.3995056 17451.900390625
+218.1031952 68599.203125
+234.0985413 24136.26953125
+235.1354828 13323.400390625
+236.133194 14127.5908203125
+240.0952454 25099.66796875
+244.1173096 19625.130859375
+246.0970306 616846.5625
+246.1255951 33693.4375
+247.0996399 81416.65625
+257.1224976 81804.1328125
+260.1124573 109581.765625
+261.117981 17495.736328125
+264.0653687 15366.150390625
+270.0968323 117327.9765625
+278.1485596 37209.6484375
+283.1429443 34676.46484375
+287.1235657 139293.640625
+288.1074524 1589616.125
+289.11026 262144.09375
+290.1123657 19762.478515625
+295.1491699 20440.974609375
+303.1428223 31307.6171875
+305.1340027 3153891.25
+305.2163391 19643.16015625
+306.1192322 1143465.125
+307.1212158 204127.5625
+308.1233826 27458.794921875
+311.1343994 40402.75
+312.1190796 37066.21875
+321.1541138 323588.59375
+322.1575012 59413.4296875
+323.1445923 1110522.875
+324.1463013 199455.015625
+329.1436462 45896.80078125
+338.1438904 35323.3125
+338.180603 410880.9375
+338.6429749 19368.923828125
+339.183136 66554.8203125
+349.15979 20746.537109375
+351.1299744 18752.828125
+359.1450195 72586.671875
+366.1861572 137351.140625
+369.1396179 29829.630859375
+376.1700745 138838.84375
+377.1572876 68865.7421875
+386.1639709 33014.11328125
+394.1810303 758291.75
+394.2397461 28235.912109375
+395.1826477 148102.515625
+412.1874084 26086.091796875
+420.684967 19303.361328125
+428.2028503 19737.6328125
+460.1910706 17977.955078125
+468.2218628 69796.7578125
+483.7183838 20508.45703125
+484.2141113 19570.861328125
+485.2474365 236562.9375
+486.2520142 58670.0859375
+488.1870117 61042.9765625
+492.2298279 145905.09375
+492.7305603 97962.1171875
+493.2365112 34120.15234375
+495.2264404 56143.0703125
+503.7210083 29669.279296875
+505.2119751 65916.3515625
+506.2078247 33462.375
+507.1982117 18007.640625
+512.2272339 39151.5859375
+512.7280273 29232.638671875
+521.2336426 39670.58203125
+521.7334595 21960.298828125
+523.2220459 529977.375
+524.2250977 146886.703125
+525.2349243 28246.95703125
+558.7451782 17681.06640625
+567.7539673 20266.0703125
+571.7507324 104651.1171875
+572.2744141 313906.84375
+572.7485352 20086.10546875
+573.2790527 94826.40625
+576.2628174 39318.6171875
+576.7625732 40250.06640625
+577.2669067 20323.974609375
+580.2612915 74085.03125
+580.755249 2395975.75
+581.2564697 1671945.5
+581.7581787 581808.375
+582.2597046 78182.46875
+589.2670898 79279.21875
+589.7650146 33698.46875
+598.2740479 81127.6953125
+598.7805786 26049.294921875
+599.2826538 23001.703125
+599.7778931 97248.5078125
+606.2583618 37172.7734375
+624.2684937 61118.6328125
+673.3245239 393817.75
+674.3273926 164805.0625
+675.3295288 27196.212890625
+711.3076172 24267.626953125
+802.3662109 84647.828125
+803.3650513 51992.0234375
+873.4006348 91072.7734375
+874.404541 49179.64453125
+1001.471741 21996.88671875
+1059.490845 20155.25
+1150.386353 21423.609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.509.509.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=509"
+RTINSECONDS=55.44017534
+PEPMASS=598.27001953125
+CHARGE=2+
+56.68248749 13498.4697265625
+58.13423157 11473.3330078125
+60.61710739 11088.107421875
+64.52612305 54215.8671875
+64.5305481 42765.86328125
+64.58197021 36599.46484375
+64.58616638 28661.3125
+64.63813019 13542.1279296875
+143.5994263 12919.953125
+149.5731812 43680.31640625
+167.0917969 40757.8515625
+169.0595093 43871.74609375
+175.1178131 274335.34375
+175.1332855 7424.8676757813
+176.1204987 12507.650390625
+177.0755768 51752.73828125
+178.0599976 313592.1875
+178.3461151 86087.8984375
+179.0628052 23193.11328125
+179.0916595 22452.869140625
+183.0744629 24407.509765625
+184.0531921 14013.7177734375
+186.085968 85202.3515625
+194.1020203 51052.1484375
+195.0863647 3766347.75
+196.0893097 368550.5
+197.0917664 24160.90234375
+199.116684 20882.083984375
+200.1009827 30145.66796875
+201.0848694 18998.1171875
+206.0910492 121682.5078125
+209.1009064 22128.3984375
+218.1022034 58730.62109375
+222.0851593 15444.65625
+239.1135254 20262.5234375
+240.0957947 19152.685546875
+242.2347717 12615.20703125
+246.0969086 615932.0625
+247.0995483 84250.578125
+257.1225586 83511.7734375
+260.1125793 94491.8125
+268.1755066 11667.5693359375
+270.0968933 112645.1640625
+278.1182861 13946.1572265625
+278.1492004 18653.3515625
+283.1437988 41224.63671875
+287.1235657 146408.40625
+288.1073914 1474682.125
+289.1099854 227626.84375
+290.1119995 20064.38671875
+294.1169128 15507.859375
+295.1482849 17622.125
+303.1419373 36562.19921875
+304.124115 15186.2919921875
+305.1339111 2968586.75
+306.1190796 1062498.0
+307.1218262 174280.859375
+311.1349182 51851.07421875
+312.1149292 30099.283203125
+318.1434326 14252.7080078125
+321.153717 305191.3125
+322.1567383 58044.9296875
+323.1443176 959852.9375
+324.1463928 175194.578125
+325.1536255 23537.31640625
+329.1438904 48554.50390625
+338.1425781 39103.421875
+338.1804504 331981.3125
+338.6456299 19223.23828125
+339.1828308 79184.5
+349.1593323 25467.505859375
+351.1286011 17164.81640625
+359.1445007 64911.99609375
+366.1859741 112951.078125
+367.1897583 16973.23828125
+369.1342773 30988.962890625
+376.1706238 112689.703125
+377.1551514 79827.40625
+386.1656799 18035.880859375
+394.1809387 647053.5
+394.240387 23668.640625
+395.1833496 135739.65625
+396.1736145 14011.15625
+412.1860046 36941.8203125
+413.1647949 13929.8857421875
+420.6844177 30648.48828125
+443.1841125 12864.9326171875
+460.1893616 16611.060546875
+468.2226562 35196.78125
+469.2253418 14326.1943359375
+477.2166138 16742.7265625
+483.714325 21311.15234375
+485.247345 202389.0
+486.2504883 47274.84375
+488.1827393 37715.625
+492.2286377 135172.375
+492.730011 97292.2109375
+493.231781 18991.142578125
+495.225769 51354.63671875
+496.2333069 16097.4990234375
+503.7191772 19340.1640625
+505.2116394 38076.85546875
+506.1985779 30416.146484375
+512.2255249 32999.6015625
+512.730896 25593.400390625
+521.2325439 20711.943359375
+523.22229 420389.75
+524.2247925 120559.4296875
+525.2269287 21354.91015625
+559.7507324 17119.896484375
+561.2473145 15578.548828125
+571.7509766 100383.671875
+572.2748413 320378.09375
+573.2800293 95716.4140625
+576.2598877 45127.93359375
+576.7584229 29619.1640625
+580.2611084 82739.359375
+580.7549438 2153859.75
+581.2562866 1440600.875
+581.7583008 534343.5625
+582.2571411 78751.015625
+589.2634888 40230.58984375
+589.7689819 22515.310546875
+598.2736816 52442.23828125
+598.7717285 44275.3515625
+599.2763672 25231.873046875
+599.7772217 94687.2890625
+606.2595215 29832.0
+607.2644653 15964.3916015625
+624.2677002 51133.96875
+673.3244019 406617.90625
+674.3270874 180879.484375
+675.3336182 30674.666015625
+802.362854 89118.1015625
+803.3674316 30064.93359375
+804.3673096 16718.66015625
+873.3970337 65580.7421875
+874.4072876 42685.9296875
+984.4373779 16488.388671875
+1001.453796 19480.234375
+1058.46936 18014.578125
+1273.070557 15378.0419921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.510.510.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=510"
+RTINSECONDS=55.55057501
+PEPMASS=598.27001953125
+CHARGE=2+
+55.1210556 14520.4228515625
+58.13426971 24802.845703125
+58.13709641 16489.92578125
+64.52636719 64602.40625
+64.53047943 44974.69921875
+64.58200836 43639.65625
+64.58616638 29917.255859375
+64.64144897 15555.083984375
+68.19489288 16251.8349609375
+82.05432129 18323.654296875
+149.5727234 55927.59765625
+167.0924377 36409.08203125
+169.0592651 31466.4140625
+175.1177063 342430.0625
+177.075943 60300.90234375
+178.0598297 326367.0
+178.3322449 29113.109375
+178.3509674 79602.6640625
+179.0642242 23102.458984375
+179.0922546 26500.435546875
+183.0746307 42273.33984375
+186.0861359 124318.1640625
+194.103241 32274.998046875
+195.0862732 4475363.0
+195.1281128 21498.140625
+196.0891113 446383.8125
+197.0923157 21356.630859375
+200.0997009 21710.55859375
+201.085144 31902.900390625
+206.0910797 132406.984375
+218.1026001 62554.8984375
+222.0851288 18482.880859375
+234.0964813 21782.322265625
+240.0962677 20901.705078125
+246.0967102 617326.3125
+247.0991211 89910.2421875
+257.1223755 93223.8125
+260.1119995 101439.7265625
+270.0960388 96446.5390625
+278.1488647 43302.4609375
+283.1425781 41113.18359375
+287.1231079 164679.0625
+288.1071167 1568134.75
+289.1101379 259524.515625
+290.115509 23604.552734375
+295.150238 17477.552734375
+303.1431885 24597.623046875
+304.1273804 16977.427734375
+305.1335449 3251805.75
+306.0591736 20520.421875
+306.1188354 1191723.125
+307.1210327 218115.578125
+308.1227417 24834.6015625
+311.1341858 60275.73828125
+312.114502 24743.787109375
+321.1534119 363348.21875
+322.1562805 54263.62890625
+323.144043 1140691.5
+324.1463928 182362.671875
+325.150116 27010.76953125
+329.1427002 61384.94140625
+338.1420593 57532.05859375
+338.1802063 377492.15625
+339.1821899 72931.7734375
+351.1311951 23681.68359375
+358.1651917 21503.125
+359.1435242 57838.95703125
+366.1859131 104053.265625
+369.1377563 32570.927734375
+376.1695862 127652.6015625
+377.1564941 77007.5
+378.1508179 17093.775390625
+386.163147 37284.234375
+394.1801758 773656.0
+394.2412415 29813.669921875
+395.1819458 140545.671875
+396.1828308 14977.36328125
+412.1894531 35036.390625
+420.6816406 37865.81640625
+460.1937561 23976.994140625
+468.2209167 69481.578125
+477.2137146 19255.345703125
+483.71875 38861.26953125
+484.2182922 22929.7421875
+485.2463379 232009.25
+486.2488708 73208.5703125
+488.1863403 49321.25390625
+492.2283936 172309.109375
+492.7286072 116709.0078125
+493.2322693 31388.416015625
+495.2256165 41102.22265625
+503.712616 23399.359375
+505.2102966 59851.3203125
+506.1999207 49414.16796875
+512.2264404 48714.375
+512.7218628 23641.146484375
+520.7377319 20599.373046875
+521.2333984 27428.771484375
+521.7371216 20258.384765625
+523.2208252 475441.375
+524.2235107 155230.75
+525.2318726 31339.08984375
+529.7473145 27494.658203125
+541.2249756 20352.830078125
+554.2684937 18787.162109375
+555.256958 19863.31640625
+558.7431641 26245.767578125
+571.7516479 53545.68359375
+572.274231 350547.09375
+573.2790527 126799.34375
+576.2611084 45386.484375
+576.7632446 22860.26171875
+577.2600708 29659.361328125
+580.2624512 87642.3515625
+580.7537231 2561067.0
+580.8391113 34377.52734375
+581.2550049 1592355.625
+581.3363037 18528.982421875
+581.7562256 604891.25
+582.2579346 118895.5078125
+583.2581177 19887.232421875
+589.2647705 108991.515625
+589.7688599 44184.97265625
+598.2749023 33603.03125
+598.7758179 33959.4609375
+599.7768555 64797.125
+606.2584839 49017.69921875
+607.2526245 20207.962890625
+624.2661743 53573.46484375
+673.3226318 451356.125
+674.3258057 126192.7890625
+711.2989502 17268.5078125
+802.3598633 94206.7734375
+803.3662109 40488.6875
+873.3956909 100627.015625
+874.4058838 49001.62890625
+1001.444092 27682.52734375
+1058.48645 25396.6640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.511.511.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=511"
+RTINSECONDS=55.65850827
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52629089 69859.3828125
+64.53050995 45236.3203125
+64.5820694 44068.0546875
+64.58623505 29494.466796875
+64.63814545 19136.17578125
+71.59675598 14313.5947265625
+74.99454498 14646.9541015625
+117.2685165 14463.37109375
+149.566452 51130.3203125
+167.0919037 33677.96875
+169.0596466 48599.46875
+175.1178436 284874.5625
+176.1208344 30606.58203125
+177.0758057 74225.703125
+178.0601196 364110.96875
+178.0774231 18848.052734375
+178.3362427 66706.5703125
+178.3556213 33039.0859375
+179.0631714 26774.3671875
+186.0859985 111625.1484375
+194.1023254 36953.6796875
+195.0864716 4511116.0
+196.0891724 424114.40625
+197.0925751 23460.85546875
+200.1019287 26902.54296875
+206.091095 146458.03125
+215.0929108 21089.443359375
+217.1295471 23894.26171875
+218.1025085 47346.12109375
+233.5833893 16171.607421875
+234.0969849 20017.71875
+240.0970612 34231.8046875
+243.085556 23669.7890625
+246.0970001 647795.1875
+247.1002045 72466.2578125
+257.1223145 111816.8203125
+260.1128235 113397.625
+262.1267395 17688.052734375
+270.0969543 125023.6953125
+278.1188354 25335.94921875
+278.1499329 28101.1328125
+283.1436768 40387.02734375
+287.1233521 164805.703125
+288.1075439 1594506.5
+289.1103516 254270.8125
+294.1167603 20259.513671875
+303.1433716 32540.619140625
+304.12677 17752.583984375
+305.1340637 3209133.0
+306.1190796 1202898.375
+307.1213684 193090.703125
+311.1348572 55007.734375
+312.1198425 45590.69140625
+321.1540527 350302.90625
+322.1551819 53530.30859375
+323.0989075 16356.0029296875
+323.1445007 1175332.0
+324.1468201 198447.921875
+329.1417236 44887.97265625
+338.1428223 40256.5
+338.1806335 417208.53125
+339.1832886 74270.96875
+349.156189 18015.654296875
+351.1322327 24071.908203125
+358.1672668 27753.712890625
+359.1444397 69887.8359375
+366.1862183 120834.859375
+367.1867676 29269.736328125
+369.1431885 33478.97265625
+376.1702271 119434.921875
+377.1557922 95954.0546875
+378.1598816 19792.095703125
+386.1642761 26125.650390625
+394.1809387 785713.375
+395.1826782 150336.609375
+396.1856079 25385.849609375
+399.8827209 18067.55859375
+412.1887817 37294.2109375
+413.1663818 25952.779296875
+420.6850586 26058.0859375
+468.2229919 44298.72265625
+477.2127991 21860.294921875
+483.7154236 23460.51171875
+485.247345 241476.609375
+486.2521057 52303.8828125
+488.1857605 71294.65625
+489.1942749 21482.669921875
+492.2294006 155131.703125
+492.731781 96986.34375
+493.2316284 46606.140625
+495.2279358 68230.296875
+505.2120056 60110.2890625
+506.2084961 56175.796875
+512.2267456 45932.71875
+512.734436 23191.9609375
+520.741333 22562.95703125
+521.2313843 44776.68359375
+523.2224731 447350.21875
+524.2246094 133012.59375
+525.2296143 28734.763671875
+558.7460327 24272.873046875
+571.7529297 71966.09375
+572.2754517 283367.125
+573.2799683 90691.2265625
+574.2892456 21413.841796875
+576.2599487 53927.5859375
+576.7614746 30832.564453125
+577.7702026 23225.646484375
+578.2714844 18394.705078125
+580.2612305 83643.390625
+580.755188 2342535.75
+581.2567139 1561230.25
+581.6484985 23625.310546875
+581.7581177 636599.125
+581.8635254 20571.681640625
+582.2583618 117464.8671875
+589.2659302 100898.5234375
+589.7666016 58822.44140625
+598.272522 56635.98828125
+598.7709351 38318.08984375
+599.77771 49374.6640625
+606.2553101 40302.87890625
+624.2716675 39969.1796875
+655.307251 23608.294921875
+673.3237305 399093.0
+674.3278809 140405.03125
+675.3314209 21776.830078125
+711.2960205 21152.154296875
+784.3560791 17412.578125
+802.3684082 82657.0390625
+803.3707886 42964.38671875
+836.0852661 17328.681640625
+873.4005127 121120.0
+874.4109497 50638.42578125
+936.0651855 19275.494140625
+1001.453918 22972.947265625
+1058.48645 20936.21875
+1059.476318 22777.283203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.512.512.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=512"
+RTINSECONDS=55.76567165
+PEPMASS=598.27001953125
+CHARGE=2+
+55.35525894 9640.59765625
+58.13431168 10636.4150390625
+58.13716507 10981.8701171875
+64.52623749 51347.20703125
+64.53044891 35896.9375
+64.58198547 34327.53125
+64.58615112 22890.853515625
+75.43968964 10786.048828125
+82.05418396 13425.900390625
+92.63046265 10074.3017578125
+94.01258087 9795.7421875
+117.1596756 11384.4599609375
+149.5733185 42624.87890625
+167.092041 38896.234375
+169.0598145 26635.39453125
+175.1179199 273719.1875
+176.1214905 31673.892578125
+177.0760345 84402.84375
+178.0602112 324680.0625
+178.3374329 48696.1015625
+178.3561554 27435.775390625
+179.0635529 15466.3310546875
+179.0919952 27257.744140625
+182.0917816 18920.453125
+183.0754395 16880.341796875
+186.0863342 97244.828125
+194.10289 38204.4921875
+195.0865326 3645235.25
+196.089447 367621.09375
+197.0924683 26386.3203125
+200.1021729 18977.751953125
+201.0847473 16524.853515625
+206.0911407 145308.59375
+207.0942078 16509.70703125
+209.0752716 16468.458984375
+212.1123047 15254.4697265625
+213.0844269 13788.4912109375
+218.1027985 64300.62890625
+222.0859222 12071.302734375
+233.1273499 13802.2109375
+234.09758 17392.623046875
+235.1060486 13513.5556640625
+240.0975494 29410.69140625
+243.0862122 26397.572265625
+244.1194153 16788.400390625
+246.097168 639514.125
+247.0995483 65723.34375
+248.1111908 16224.3984375
+249.0962219 15476.697265625
+257.1229248 101328.6484375
+258.124939 16376.3681640625
+260.1126709 106893.1796875
+261.1159973 23278.6953125
+270.097168 130172.875
+271.1030273 15511.212890625
+276.1351624 17495.087890625
+278.1482849 25061.140625
+283.1431274 46824.71875
+287.1237488 155027.703125
+288.107605 1446899.0
+289.1105042 217615.703125
+290.1123047 19054.27734375
+295.1493225 22556.41015625
+303.1411133 23379.873046875
+305.1342163 2932914.5
+306.1195679 1056081.0
+307.12146 193304.453125
+308.1225281 14467.513671875
+311.1362305 38386.26171875
+312.1166077 29615.27734375
+318.1461182 15616.7490234375
+321.1540833 291294.6875
+321.1960144 21634.2890625
+322.1567078 56771.56640625
+323.0982666 21681.421875
+323.1446533 973478.75
+324.1472168 159351.8125
+325.1520996 14114.4521484375
+328.1596375 19308.80078125
+329.1440125 46197.453125
+338.1420898 50820.0703125
+338.1808472 328267.9375
+338.6443176 22372.67578125
+339.1834717 77698.484375
+347.1502686 15391.3935546875
+349.1604614 24695.4609375
+351.1310425 18043.525390625
+359.1445312 61214.04296875
+366.1870422 114911.2890625
+367.191864 15745.1787109375
+369.1394348 27239.38671875
+376.1705017 117458.1484375
+377.1573486 70553.0625
+378.1589661 17573.34765625
+386.1650696 33383.07421875
+394.181366 640555.0
+394.2412415 23694.9375
+395.1832275 124697.5625
+396.1855774 16211.216796875
+412.1878357 23533.048828125
+421.1839294 13240.1455078125
+423.163147 12233.9970703125
+452.171936 13306.90625
+460.1858521 17769.61328125
+468.221283 41990.4921875
+478.201355 15696.62109375
+483.2226562 12803.25
+485.2478943 201708.21875
+486.25 59743.78515625
+488.1864929 45551.26171875
+492.2296753 169536.78125
+492.7315369 88535.6171875
+495.2290039 39704.265625
+503.223053 26805.06640625
+503.7166748 23916.87109375
+505.2125549 40449.70703125
+506.2045288 48481.8046875
+512.2271118 38754.24609375
+512.7268677 26437.5703125
+521.2362671 21696.458984375
+523.2227173 365865.34375
+524.2249756 93181.265625
+525.229187 19574.9140625
+558.7366333 18333.51953125
+559.2435303 12652.130859375
+568.2546387 15415.4072265625
+571.7508545 84248.8828125
+572.2745361 240366.796875
+572.7532349 18320.388671875
+573.2808838 71403.0390625
+575.2651978 15473.6064453125
+576.2593994 31609.03125
+576.762207 19947.62890625
+580.2655029 54636.37890625
+580.7557373 1864957.75
+581.257019 1198731.25
+581.758728 409968.90625
+582.2599487 65297.86328125
+589.2663574 28596.76953125
+598.2756348 41293.6796875
+598.774292 21285.921875
+599.2751465 40593.84765625
+599.7771606 77090.7578125
+606.2553711 22211.6015625
+624.2705688 48440.60546875
+625.2756958 20855.73828125
+655.3219604 18438.859375
+673.3256836 345244.28125
+674.3270264 128328.9375
+675.3215942 15361.333984375
+693.2877197 18934.046875
+694.2811279 12387.853515625
+711.3014526 15210.9716796875
+802.367981 81783.2421875
+803.37323 29146.357421875
+873.397583 73957.0703125
+874.4056396 32512.861328125
+1058.494263 15443.8203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.513.513.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=513"
+RTINSECONDS=55.87818714
+PEPMASS=598.27001953125
+CHARGE=2+
+63.58475494 17382.30859375
+64.52627563 71434.25
+64.53047943 41584.23046875
+64.58195496 51762.5859375
+64.58618164 42206.125
+74.81200409 18803.49609375
+76.28129578 17827.9296875
+96.94509125 15802.93359375
+111.7370605 16223.6181640625
+149.5750122 37361.0859375
+150.5573578 14063.701171875
+167.0920258 34008.71484375
+169.0598755 45972.45703125
+174.9628448 21750.22265625
+175.1178131 303073.3125
+177.0757294 46951.72265625
+178.0599365 342037.0625
+178.3407593 97618.1640625
+178.395752 16586.787109375
+179.0624237 21737.3828125
+179.0907898 23109.23828125
+186.0862274 119123.65625
+194.10289 43649.61328125
+195.0863647 4475195.0
+196.0891113 409172.90625
+197.0909119 21363.275390625
+200.1014557 36131.01171875
+206.0911102 169745.34375
+218.1020203 63295.7109375
+246.0969849 669940.9375
+246.1207581 13366.5478515625
+247.0997925 69798.265625
+257.1226501 104126.1640625
+260.1127625 108375.03125
+270.0965271 136759.53125
+283.142395 39546.65234375
+287.1234741 158009.21875
+288.1072083 1578567.5
+289.1097717 244904.59375
+290.1112671 29041.552734375
+294.1195984 32637.154296875
+295.148468 19892.826171875
+303.1416321 30524.994140625
+305.1337585 3248580.25
+306.118988 1189568.5
+307.1209412 209686.03125
+308.1199646 21515.390625
+311.1351318 62333.296875
+312.1144104 38074.97265625
+321.1537781 337664.1875
+322.156311 55369.1796875
+323.1442566 1221013.75
+324.1462402 213771.421875
+329.1434631 46046.5546875
+338.1420288 44158.765625
+338.1803284 427606.84375
+338.6455383 57321.6953125
+339.1837769 89881.078125
+347.1499329 36925.78125
+359.1433716 69581.296875
+366.1856079 134097.953125
+367.1850281 25444.13671875
+369.1380615 30627.349609375
+376.170105 127365.0078125
+377.1585693 68663.3984375
+378.1576233 24609.4921875
+386.1645813 29518.2421875
+389.1584167 16137.0068359375
+394.1807861 668232.75
+394.2401123 22230.181640625
+395.1821289 157618.4375
+396.1884766 20995.134765625
+412.1875305 25343.560546875
+420.6829224 32393.376953125
+460.1973877 28779.388671875
+468.2221069 72635.578125
+478.2025146 24100.32421875
+485.2463379 200412.90625
+486.2481384 43936.23828125
+488.1854858 57733.1953125
+492.229126 188046.203125
+492.7306213 86851.2578125
+493.2280884 19364.99609375
+495.2258301 59223.8828125
+505.2106018 73310.75
+506.2064209 58107.67578125
+512.2305298 31011.67578125
+521.2347412 33373.20703125
+521.7327881 25291.345703125
+523.2209473 493531.59375
+524.2244873 143071.53125
+525.2313232 30609.990234375
+558.7443237 20685.65625
+571.7479858 95128.859375
+572.2747803 370257.1875
+573.2758179 87014.78125
+576.2634277 45892.09375
+576.7646484 26990.2734375
+577.2626343 26101.068359375
+580.2625122 103493.671875
+580.7543945 2540112.5
+581.2557373 1706939.5
+581.7574463 645326.25
+582.2585449 128909.4453125
+589.2650757 113508.8515625
+589.7670288 70269.0859375
+598.2730103 45375.85546875
+598.7703857 35828.92578125
+599.2809448 28291.5
+599.7785034 38442.9375
+606.2504272 37125.75390625
+607.2616577 23789.708984375
+624.2645874 79033.515625
+625.2753906 25183.900390625
+673.3224487 448811.59375
+674.3260498 161943.578125
+675.3362427 29383.40625
+711.2866211 21872.857421875
+802.3622437 106766.9921875
+803.3707886 54067.71484375
+804.3665161 20401.732421875
+873.4016113 113665.453125
+874.4056396 60092.0859375
+954.4545288 16849.099609375
+1001.453552 29998.939453125
+1103.556152 18825.271484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.514.514.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=514"
+RTINSECONDS=55.98521064
+PEPMASS=598.27001953125
+CHARGE=2+
+54.09252548 12657.953125
+58.1343956 15123.5634765625
+64.52626801 61425.55859375
+64.53066254 43426.8046875
+64.58200073 45261.3046875
+64.58612823 28211.298828125
+64.63798523 22409.880859375
+147.6342926 13330.345703125
+149.5714874 55991.40234375
+167.091507 38574.0625
+169.0598297 30754.201171875
+175.1178741 310285.1875
+176.1223297 14301.8349609375
+177.0760345 74886.9140625
+178.0599976 293023.375
+178.0762634 26610.3125
+178.3339386 27408.814453125
+178.3530884 55125.19921875
+179.0631256 18769.931640625
+182.0912628 21515.25
+183.0759125 22421.798828125
+186.0864258 111800.359375
+194.1028748 21661.111328125
+195.0864868 4007406.75
+196.0892639 402433.1875
+197.0907288 18030.505859375
+200.1008453 24810.357421875
+201.0864716 22744.44140625
+206.091156 160512.1875
+215.0909576 20788.92578125
+218.1024017 48304.01171875
+222.0856323 17126.689453125
+234.0984497 16603.6953125
+240.0961456 20115.046875
+243.0849457 16553.904296875
+244.1191101 16267.7265625
+246.0970917 662473.9375
+247.0996399 80516.7734375
+249.0978699 16220.7373046875
+257.1229553 104070.3515625
+260.1122742 99601.3671875
+261.1209412 16386.859375
+270.0968018 126395.046875
+278.1161804 17292.05078125
+278.1495972 31830.255859375
+283.1437378 45352.7734375
+287.1235352 132132.8125
+288.1075439 1568588.375
+289.1104126 241470.046875
+290.1155396 23091.283203125
+294.1195374 19229.154296875
+295.1516724 23697.974609375
+303.1428833 32576.875
+304.131012 18334.044921875
+305.1341553 3044099.25
+306.1194153 1121873.75
+307.1213989 178513.875
+308.1242981 32606.76953125
+311.1357422 55705.72265625
+312.1182556 40804.15625
+320.1304932 14204.4892578125
+321.1543274 324381.5
+322.15625 49905.6484375
+323.0995178 18257.03515625
+323.1445618 1092676.25
+324.1468506 182148.4375
+325.1510315 24707.53515625
+329.1438904 39049.91796875
+331.1506042 20332.8828125
+338.1460571 31757.740234375
+338.1807251 394690.28125
+338.6454773 22205.60546875
+339.183136 60794.33203125
+341.1459351 25147.251953125
+347.1504822 21828.06640625
+349.1604004 30439.845703125
+351.1322632 18021.080078125
+354.8755188 15104.84375
+359.1447449 64067.07421875
+366.1867371 109621.3828125
+367.1855469 25023.185546875
+369.1391296 39274.55078125
+376.170929 102487.859375
+377.1580811 74998.484375
+386.1656189 26445.927734375
+394.1208801 13301.73046875
+394.137207 13105.2373046875
+394.1813049 721547.625
+394.2404785 19345.103515625
+395.1832886 167610.46875
+412.1882935 45564.765625
+413.160614 20235.23828125
+420.6835327 14791.1767578125
+421.1816406 16962.419921875
+460.1893616 31932.67578125
+468.2213135 39099.62890625
+483.7174072 20526.337890625
+485.2478638 184164.953125
+486.2512207 69557.4609375
+488.1851807 45651.59765625
+492.2297974 168645.5625
+492.7315674 99605.0390625
+493.2346191 40529.3515625
+495.2276611 65606.0625
+496.2278748 16518.248046875
+505.2119751 60226.53515625
+506.2067261 41686.33203125
+512.2263184 21391.01953125
+521.2382202 33439.55859375
+523.2227783 532276.5625
+524.2247925 126768.46875
+525.2306519 43893.6328125
+529.7392578 19716.1484375
+554.267395 15052.2958984375
+555.2521362 18513.6015625
+558.741333 34958.2734375
+571.7523193 60439.8671875
+572.276123 338388.71875
+572.7519531 17392.451171875
+573.2805786 107130.671875
+574.2770996 32287.7421875
+576.2610474 40952.56640625
+576.7610474 36396.77734375
+577.2666626 26672.279296875
+580.262085 94757.3828125
+580.7556763 2344692.0
+581.2567749 1605567.25
+581.3665161 18143.232421875
+581.6807861 12275.6943359375
+581.7589722 539079.0625
+582.2593384 123349.9140625
+589.2667847 39239.31640625
+589.7669067 43868.25
+598.272644 74344.8671875
+598.7744141 45864.33203125
+599.2764282 38027.4296875
+599.7770386 84340.71875
+606.2573242 33359.30078125
+624.267395 56722.4765625
+625.267334 21983.97265625
+673.3250732 397076.5625
+674.3274536 148663.125
+675.3305054 29804.20703125
+693.2946777 21992.5390625
+802.3632812 114591.9375
+803.3677979 30014.59375
+873.4034424 78303.6171875
+874.4066772 44497.234375
+1058.473389 16347.75390625
+1198.317505 16053.830078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.515.515.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=515"
+RTINSECONDS=56.09459965
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52630615 76580.578125
+64.53063202 49313.578125
+64.5819931 46910.45703125
+64.58617401 27720.40234375
+64.63844299 18057.576171875
+64.64163208 15698.5927734375
+74.81222534 14009.158203125
+82.05389404 16202.951171875
+89.43804169 13820.5986328125
+99.39109802 15237.8857421875
+149.5657196 45925.96484375
+149.5778198 17795.568359375
+167.0913696 49968.44921875
+169.0595551 32853.7421875
+175.101181 9767.6083984375
+175.1179962 319965.125
+176.1217499 20949.146484375
+177.0762329 61142.1484375
+178.0602112 349333.46875
+178.0779266 19925.54296875
+178.3440094 91095.7109375
+179.0640411 30341.033203125
+179.0915833 30659.671875
+183.0743866 16676.55078125
+186.0863342 116530.3125
+187.0905609 15552.783203125
+194.1022797 38848.296875
+195.0865479 4245822.0
+195.1282501 28266.306640625
+196.089447 443851.28125
+197.091568 34290.78515625
+200.1039276 13893.482421875
+201.0857849 21231.49609375
+206.0913086 148339.953125
+209.4458618 13929.3447265625
+212.1125488 21802.130859375
+218.1025543 50594.08984375
+234.0975342 25260.04296875
+235.1040955 14362.240234375
+240.0953064 26527.244140625
+244.115921 15578.310546875
+246.0971375 640196.1875
+247.0996246 84776.9296875
+257.1233521 100028.0390625
+258.1245117 24504.25390625
+260.1131287 106215.078125
+270.0971069 145746.609375
+278.1167908 23221.83203125
+278.1504822 16279.208984375
+279.1289978 17582.994140625
+283.1433716 54450.125
+287.1235962 126913.5546875
+288.107605 1584545.625
+289.1107483 227055.4375
+290.1118164 23747.998046875
+295.1489868 19819.42578125
+303.1442871 30939.51953125
+305.1341858 3179069.0
+306.1193542 1144456.25
+307.121521 196933.46875
+308.1239929 31658.060546875
+311.1345825 37564.890625
+312.117157 33625.171875
+321.1539307 344962.625
+322.1568604 78073.328125
+323.0982971 17731.140625
+323.1446838 1118333.5
+324.1463013 193192.921875
+325.1518555 15173.2880859375
+329.1424866 56730.20703125
+331.1494751 21270.287109375
+338.1416016 66918.875
+338.1810608 370021.28125
+339.1830139 56173.4453125
+349.1600037 24121.798828125
+359.1448364 65964.9921875
+366.1865234 127779.25
+369.1391602 16842.962890625
+376.1703491 137055.34375
+377.1560059 91802.9296875
+386.1644592 23162.025390625
+394.1812744 724758.3125
+395.1822815 157008.96875
+397.677887 23763.318359375
+411.6813354 30810.328125
+412.1885681 28745.087890625
+420.6800537 32202.517578125
+460.1883545 25297.556640625
+468.2220154 54139.28515625
+478.2023315 19669.115234375
+485.2479553 193320.9375
+486.2498169 62458.4375
+488.1860962 72925.28125
+492.229126 167829.328125
+492.7312012 95171.9296875
+493.2312622 37530.22265625
+495.2268066 58267.66015625
+496.2316589 20015.576171875
+503.2231445 23254.90625
+503.7184753 18257.302734375
+505.2118225 56860.1953125
+506.2045288 57000.375
+512.2276001 42705.12890625
+512.7246094 23813.380859375
+520.7411499 22256.169921875
+521.2328491 41555.41015625
+521.7367554 19438.626953125
+523.2229614 414551.25
+524.2243652 130232.640625
+525.2365112 25526.09765625
+529.7398682 17810.30859375
+531.1697388 16633.513671875
+558.7434082 25621.32421875
+567.2538452 18512.595703125
+571.7492065 85409.140625
+572.2748413 348325.75
+572.7532959 20701.484375
+573.2821655 120961.46875
+574.2849731 25981.201171875
+576.2601929 41715.859375
+576.7589111 30134.9609375
+577.2606812 18590.412109375
+580.2623291 87638.765625
+580.7554321 2598613.0
+581.2565308 1671334.75
+581.758667 621155.0
+581.864502 28433.0390625
+582.2599487 142755.234375
+589.2662964 91021.6484375
+589.7674561 34210.77734375
+598.2753296 63460.328125
+598.7698364 35135.5546875
+599.2750854 36276.08203125
+599.7787476 95320.5234375
+606.2558594 39594.8359375
+624.2687988 65184.921875
+655.3181152 21674.82421875
+673.324585 447490.96875
+674.3247681 135931.140625
+675.3299561 32313.14453125
+802.3657227 88831.5859375
+803.3704224 36207.59765625
+873.4019165 92669.4453125
+874.4022827 59645.87890625
+875.4138794 17009.146484375
+1059.48938 17647.5625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.516.516.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=516"
+RTINSECONDS=56.20331643
+PEPMASS=598.27001953125
+CHARGE=2+
+57.86910248 14319.7734375
+64.52614594 51601.72265625
+64.53045654 43548.4609375
+64.58213806 26663.8984375
+64.58607483 32062.830078125
+64.63832092 20290.41796875
+64.641716 23206.904296875
+70.23284149 12686.2783203125
+70.62413025 14619.1845703125
+81.85289764 13764.2236328125
+113.4609756 15895.087890625
+118.6953659 16498.91796875
+149.1959534 14793.5126953125
+149.5736694 48098.55078125
+163.7404938 14716.884765625
+167.0910492 48878.78125
+169.0601349 30212.798828125
+175.1176758 316034.625
+176.1209717 14174.5927734375
+177.0754395 51447.6953125
+178.0438995 22678.439453125
+178.0597992 340983.59375
+178.3527222 62960.7421875
+179.0635529 29663.91015625
+179.0915222 22063.34765625
+183.0752106 15846.1865234375
+186.0860291 99933.421875
+190.0614014 16732.076171875
+194.102478 43843.9296875
+195.0863037 4143210.5
+196.0890808 423164.90625
+197.0913849 29355.15234375
+200.1024628 28751.716796875
+201.0857391 24948.056640625
+206.0909271 146861.53125
+207.0923462 15377.404296875
+212.1135101 25223.708984375
+218.1021423 66964.8828125
+222.0855408 23449.904296875
+224.9362793 19420.953125
+234.0982971 15703.7998046875
+240.0967407 18612.658203125
+243.0864258 24996.853515625
+246.0967865 587307.125
+246.1227264 13594.365234375
+247.0996094 86370.8671875
+257.1226807 110291.7109375
+260.1122437 120381.0
+270.0968933 140053.015625
+271.1019287 23054.416015625
+283.1434326 31513.318359375
+287.1229248 152590.234375
+288.1072083 1576747.125
+289.1102295 221351.6875
+294.6903381 14889.8701171875
+295.1471252 27031.154296875
+303.1431274 21055.107421875
+305.1336975 3009514.5
+306.1188049 1099625.625
+307.1209412 219381.875
+308.1210632 28280.109375
+311.1346436 50612.00390625
+312.1164551 40795.5078125
+321.1535645 341450.375
+322.1566772 77373.6484375
+323.1441345 1145281.0
+323.1892395 32548.890625
+324.1460876 146254.0
+329.1437988 45338.84765625
+331.1481628 19578.91015625
+338.1435852 37197.8984375
+338.1802368 425395.875
+339.1822815 64350.953125
+347.1497803 22761.46484375
+349.1595154 21857.77734375
+351.1303101 21942.94921875
+359.1438904 63177.19921875
+366.1856079 102681.171875
+367.1870422 31543.021484375
+369.1371765 31295.74609375
+376.1700134 130394.328125
+377.1557922 86666.0
+386.1641235 32141.13671875
+394.1803894 722587.3125
+395.1824646 139710.171875
+396.1888123 26266.689453125
+412.1881104 40823.25
+460.1932983 18573.111328125
+468.2217712 33371.70703125
+483.7224121 22988.294921875
+485.2469788 229262.25
+486.2498779 56846.90234375
+488.18396 64198.546875
+492.2289734 127445.59375
+492.7314148 76334.7265625
+493.2323914 42259.44140625
+495.2289734 41419.890625
+496.2286377 21751.34375
+503.2321167 15736.4912109375
+505.2107239 51579.6171875
+506.2033997 60329.13671875
+506.7294312 22291.642578125
+512.2252197 52313.3671875
+512.7316284 36523.7421875
+521.2284546 33682.2109375
+521.734375 19831.029296875
+523.2211914 444530.84375
+524.2241211 110844.53125
+525.2289429 31411.716796875
+571.7481079 96197.484375
+572.2733765 253512.203125
+572.7443848 17754.048828125
+573.2821655 86139.109375
+576.2591553 40725.94140625
+576.7660522 15416.5595703125
+577.2625122 22975.72265625
+580.2603149 80837.1328125
+580.7542114 2205543.0
+581.2556763 1422070.0
+581.7575073 608253.5625
+582.2598267 105482.6953125
+589.2672729 72046.21875
+589.7666016 25296.849609375
+598.2733765 41609.83984375
+598.7730713 48238.73046875
+599.2799072 23404.9140625
+599.7766724 63471.8984375
+606.2560425 42126.4921875
+624.2684326 37359.55859375
+655.3132935 26163.12109375
+673.3232422 439690.53125
+674.3256836 170503.875
+675.3284912 28883.41015625
+693.2883301 22374.720703125
+711.2908325 29237.58203125
+802.3626099 77842.78125
+803.3651733 51338.7890625
+873.4011841 93852.578125
+874.4020386 52349.93359375
+1001.461853 24961.240234375
+1058.47168 20678.689453125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.517.517.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=517"
+RTINSECONDS=56.31185394
+PEPMASS=598.27001953125
+CHARGE=2+
+60.53772354 13829.6669921875
+63.58503723 13477.396484375
+64.52625275 74194.375
+64.53048706 42359.859375
+64.5822525 33624.10546875
+64.58620453 29730.720703125
+64.63825989 18053.666015625
+72.83061218 14059.8779296875
+82.05442047 18570.21875
+118.2258224 13864.27734375
+139.4356842 14862.78515625
+149.5655975 43299.2734375
+167.0914154 39455.23046875
+169.0603943 41242.22265625
+175.1179199 299640.9375
+176.1214294 17770.560546875
+177.0762177 72398.1171875
+178.0601959 324828.34375
+178.0782013 19085.8125
+178.3360901 53248.3671875
+178.3549194 37820.3828125
+179.0635223 20412.697265625
+179.0924225 22598.978515625
+182.0914307 20487.8125
+183.0753479 25634.474609375
+186.0863342 105086.28125
+194.1030121 40161.7734375
+195.0865784 4164600.25
+195.1284332 21477.3671875
+196.0894165 399080.84375
+197.0916901 30644.255859375
+200.1015472 29238.58203125
+201.0858154 30793.05859375
+206.091217 152815.34375
+215.0903625 19989.150390625
+218.102829 66708.84375
+222.0861511 28698.603515625
+239.1129761 20179.22265625
+240.0954437 22681.921875
+243.086853 23025.365234375
+244.1169739 19912.76171875
+246.0971832 627387.0625
+247.0999146 78837.4921875
+257.1231384 127254.6796875
+258.1257324 23936.619140625
+260.1127625 106068.1328125
+270.0975647 113703.984375
+277.142334 14749.0087890625
+278.1182861 20812.2734375
+278.1499634 29475.634765625
+283.1437378 44844.51171875
+287.1240845 163731.40625
+287.5134888 14571.7744140625
+288.0773926 21123.18359375
+288.1076965 1496304.75
+289.1103516 244744.1875
+289.1431885 22398.4609375
+290.1105347 16981.361328125
+294.1199646 22266.521484375
+295.1500549 26478.37109375
+303.1460876 23396.287109375
+304.1292419 20176.806640625
+305.1342773 3122621.0
+306.1196289 1039068.1875
+307.1213989 193616.3125
+308.1221924 21373.15625
+311.1353455 49293.87109375
+312.1203308 25318.681640625
+321.154541 347526.625
+322.1567688 61682.59375
+323.1448059 1044600.3125
+324.1471558 171485.40625
+325.1485291 18910.376953125
+329.1450806 52743.71484375
+338.1418457 51159.59375
+338.1809387 371409.3125
+338.6444092 33546.45703125
+339.1837158 65932.0234375
+347.1513672 29866.669921875
+349.1616211 39999.70703125
+359.1450195 51842.40625
+366.1870728 108651.0625
+367.1878052 17806.939453125
+369.1386719 19362.58203125
+376.170929 121721.8671875
+377.1577454 72411.5234375
+386.164856 37692.86328125
+394.1811829 751662.25
+394.2398682 30760.666015625
+395.1837158 147286.84375
+396.1849976 16574.9140625
+412.1873474 34905.52734375
+413.1662903 17957.08984375
+414.1680298 18286.66015625
+460.1914978 29084.072265625
+468.2207031 32888.76171875
+477.2195435 33095.390625
+478.201416 25476.087890625
+485.2475891 202724.921875
+486.2475586 53680.0703125
+488.186676 40182.34375
+492.2299805 170230.734375
+492.7312622 88677.984375
+493.2318115 22510.8125
+495.2284546 54743.38671875
+505.2138367 66956.4375
+506.2048645 53073.0234375
+512.2279663 33303.66015625
+512.7303467 31277.0234375
+521.2330933 44312.83984375
+521.7316284 21070.90625
+523.2228394 447117.34375
+524.2249756 109415.7734375
+525.2331543 25655.609375
+555.2611084 19203.8125
+558.7437134 29243.166015625
+571.7510986 80633.34375
+572.2755737 320210.8125
+573.2791748 104435.1171875
+574.2727051 22677.720703125
+576.2582397 30911.501953125
+576.767334 25205.173828125
+577.2666626 31038.544921875
+577.7722168 18835.28125
+580.2648315 80725.8671875
+580.7557983 2583569.0
+581.2570801 1640937.25
+581.3674927 21131.669921875
+581.7589722 657433.1875
+582.2589722 116452.9765625
+589.2678833 71325.875
+589.769165 62545.03125
+598.2774048 45497.234375
+598.7747192 36948.36328125
+599.2745972 35467.87890625
+599.7783813 94764.3203125
+606.2609863 33663.6328125
+624.2672119 56045.2578125
+625.2744751 19979.73046875
+673.3249512 404204.09375
+674.3269653 165066.640625
+675.3294678 28863.513671875
+676.2537842 16453.458984375
+693.2849731 18468.173828125
+711.2919312 30237.271484375
+784.345459 17263.998046875
+802.3670044 97258.6171875
+803.3665771 39629.8359375
+873.4014282 102546.140625
+874.4034424 46256.86328125
+875.416687 17936.923828125
+1001.463501 29632.82421875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.518.518.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=518"
+RTINSECONDS=56.42058341
+PEPMASS=598.27001953125
+CHARGE=2+
+58.1344223 17529.91796875
+58.13731003 17298.859375
+64.52626038 60194.24609375
+64.53069305 48147.78125
+64.58204651 41696.7421875
+64.58621216 31687.869140625
+64.63819885 25329.01953125
+64.64154816 18734.876953125
+70.42225647 13491.744140625
+74.81612396 17809.853515625
+74.88660431 12321.1630859375
+103.7444534 13180.86328125
+123.3155441 13467.474609375
+149.5670776 46132.8515625
+167.091568 30958.1875
+169.0595551 21276.87109375
+175.1177521 258931.84375
+176.1204376 24569.5390625
+177.0757751 55638.36328125
+178.059906 305800.8125
+178.3432312 87456.3671875
+179.0632172 39745.17578125
+179.0915985 25999.5859375
+183.074646 30422.15234375
+186.0861206 112576.3046875
+187.6235504 15672.9794921875
+190.0601044 16324.03125
+194.1014709 43309.5390625
+195.086319 4152196.0
+195.1281128 23358.5546875
+196.0891571 401327.5
+197.092041 38559.65234375
+200.1018982 24190.306640625
+201.0858307 15937.36328125
+206.0910034 128409.640625
+209.1008759 16962.7578125
+215.0906525 17991.462890625
+218.1021576 61456.63671875
+227.6401978 13962.7958984375
+230.8375092 13876.62890625
+235.1026001 18809.38671875
+243.0865631 16243.4541015625
+244.1169891 18504.357421875
+246.0968018 654553.1875
+246.1206055 9736.3134765625
+247.0996552 87232.078125
+257.1225586 116566.25
+260.1125183 114562.4921875
+261.1139526 27904.1484375
+270.0967407 127920.21875
+273.8885498 14177.8369140625
+277.137146 16630.98828125
+278.1499329 26024.466796875
+283.1430969 54765.32421875
+287.1231079 139739.203125
+288.1071777 1554582.875
+289.110199 257202.671875
+290.1114502 29786.33984375
+294.1170349 20418.755859375
+295.149292 32865.66796875
+303.1417847 25538.791015625
+305.133667 3057334.5
+305.2154541 21071.228515625
+306.1187134 1141712.125
+307.1210938 209263.671875
+311.1347046 57711.88671875
+312.1161804 22654.720703125
+321.1534729 349406.5625
+322.156189 68630.4609375
+323.144104 1082137.0
+324.1460876 157786.203125
+325.1520386 17550.70703125
+329.144104 61860.4609375
+338.1428223 48160.79296875
+338.1802979 365977.21875
+338.6430664 19497.36328125
+339.182373 60948.015625
+347.149292 22704.5078125
+347.6534424 15965.15625
+349.1604614 24626.41796875
+359.1430664 60084.625
+366.1859436 151576.734375
+367.1895142 24982.701171875
+369.1352539 24282.087890625
+376.1699219 132086.625
+377.1578369 66918.140625
+386.1655273 23478.427734375
+394.1203918 15050.75
+394.1805725 693926.1875
+395.1824951 152610.1875
+412.1885376 24536.904296875
+460.1878967 22375.892578125
+468.2213745 62318.6328125
+474.704834 15412.9345703125
+475.399353 16185.2578125
+478.2075806 21060.81640625
+483.2246399 19841.505859375
+485.2466431 197721.34375
+486.249176 51618.83984375
+488.1862793 49725.671875
+492.2294312 165330.984375
+492.7288208 99356.125
+493.2322083 36729.45703125
+495.2241516 48293.29296875
+505.2110596 56604.65625
+506.2032471 36232.44140625
+512.2262573 32813.265625
+512.725708 21866.978515625
+521.2351074 39761.95703125
+523.2211914 454951.25
+524.2232666 120857.9140625
+525.2283325 26573.75390625
+529.7410889 15731.5791015625
+554.2633667 18128.099609375
+555.2435303 25610.2109375
+558.7511597 21567.44140625
+571.7476807 68853.5390625
+572.2733154 278927.59375
+572.7478027 21919.1484375
+573.2791138 89076.09375
+576.2614746 39547.55859375
+576.7548828 27392.015625
+580.2595825 73832.2421875
+580.7542725 2334996.75
+581.2554932 1633362.75
+581.336853 27509.080078125
+581.7574463 628626.5625
+582.2583618 105011.2890625
+589.2666626 73871.7890625
+589.7700806 39394.1640625
+598.2738037 36201.1484375
+598.7739868 23266.140625
+599.2771606 28364.640625
+599.7797852 42438.8828125
+606.2559814 30749.51171875
+624.2665405 38595.03125
+673.3226318 416256.78125
+674.3265381 185899.71875
+675.3264771 41739.62890625
+693.2832031 27843.064453125
+802.3621826 99896.8671875
+803.367981 51204.859375
+873.3974609 99227.0078125
+874.4050293 41792.71484375
+1001.458069 21931.34375
+1002.477966 20353.09765625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.519.519.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=519"
+RTINSECONDS=56.52962472
+PEPMASS=598.27001953125
+CHARGE=2+
+52.75999069 11645.671875
+63.58463287 14080.83984375
+64.52613831 62880.73046875
+64.53044128 45321.796875
+64.58194733 42708.39453125
+64.58613586 30818.033203125
+64.64170074 19572.90625
+74.81188202 20359.96484375
+85.96678162 14600.84765625
+106.9821548 14353.03515625
+135.1385803 13431.8271484375
+149.5641022 28107.509765625
+149.5763702 29156.654296875
+167.0913391 45384.1640625
+169.0590515 32413.126953125
+175.1176453 280620.21875
+176.1206818 22257.310546875
+177.0759125 69795.2265625
+178.0596771 352060.53125
+178.0776215 12064.7412109375
+178.3442993 92757.296875
+179.0640411 29098.291015625
+179.0901337 13862.3193359375
+182.0914154 20862.603515625
+183.0752411 29152.80078125
+186.0861359 105549.84375
+194.102951 35191.56640625
+194.9908905 11889.2734375
+195.0862427 4117532.75
+195.1277618 31691.71875
+196.0891571 426301.15625
+197.0911407 24549.115234375
+200.1019287 37089.48828125
+201.0860596 15903.2041015625
+206.0908661 152945.359375
+218.1023712 61551.73828125
+232.116684 19379.548828125
+234.098938 19772.82421875
+240.0956573 28763.400390625
+243.0862122 21562.326171875
+246.0967865 621796.8125
+247.0993042 81119.5703125
+257.1222534 105354.1796875
+258.1253967 18141.404296875
+260.1119995 109881.5078125
+261.1188049 24507.271484375
+270.0966797 125241.6484375
+271.1028442 19435.72265625
+283.1428528 48007.609375
+287.1230164 123526.8828125
+288.1071472 1580197.75
+289.1098938 228716.859375
+290.1125488 18488.638671875
+295.1499329 23438.759765625
+303.1413574 35723.00390625
+305.1336365 3034910.25
+306.1189575 1065912.875
+307.1212463 180385.5
+308.1210327 18995.677734375
+311.1342773 44743.66796875
+312.1168518 38912.359375
+318.1419678 19273.078125
+321.1536255 345781.65625
+322.1568298 69415.8828125
+323.0988159 19572.81640625
+323.1441956 1135424.5
+324.1462708 187418.6875
+325.1514282 19862.283203125
+329.144104 58333.7109375
+338.1418457 49775.18359375
+338.1805725 363663.21875
+338.6468811 15723.9580078125
+339.1820374 65914.75
+347.1455383 22088.546875
+349.1582947 23377.30078125
+359.1438599 53658.37109375
+366.1863098 125574.3671875
+369.1387024 41043.59765625
+376.1701355 133023.125
+377.1553955 81661.6640625
+394.1806335 697234.375
+395.1829224 135217.828125
+398.1702271 16643.244140625
+412.1846924 41752.60546875
+413.1633606 17518.328125
+420.6816711 17708.259765625
+468.2217407 49502.4453125
+477.2184448 20518.484375
+485.2467957 213564.109375
+486.2501221 82773.1640625
+488.184906 59648.640625
+492.2281189 154640.796875
+492.7287292 92784.1640625
+493.2308044 43902.21875
+495.2274475 56423.89453125
+496.2296753 15583.1494140625
+503.7190552 24547.4140625
+505.2129822 53943.78515625
+506.2020264 62017.8515625
+512.2275391 40739.765625
+512.7268066 20580.009765625
+521.232666 36717.234375
+523.2214355 452049.71875
+524.223999 117925.5625
+525.2231445 18447.564453125
+558.744751 37119.8671875
+571.7504272 62709.46484375
+572.2747192 330038.78125
+572.7507935 30126.240234375
+573.2792969 123698.6328125
+576.2614136 44469.8125
+576.7624512 42633.59375
+577.2598877 24615.203125
+580.2606812 63013.125
+580.7546387 2439992.0
+581.2557983 1705599.5
+581.7570801 573609.0625
+582.2584839 120385.7109375
+589.2659912 38776.984375
+589.7658081 29053.353515625
+598.2739868 57485.1875
+598.7719116 40806.421875
+599.2717896 24289.396484375
+599.7765503 82503.828125
+606.2576904 40593.3984375
+624.2687988 70689.7265625
+655.3197021 18689.345703125
+673.3233643 467727.65625
+674.3268433 180184.703125
+675.3335571 34787.703125
+693.2949219 24330.16796875
+711.2989502 19893.46875
+802.3624878 96279.296875
+803.3671265 50818.19140625
+873.3974609 104897.4140625
+874.4004517 60825.17578125
+875.4015503 18240.322265625
+1001.452698 27969.361328125
+1058.473145 19927.841796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.520.520.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=520"
+RTINSECONDS=56.63884933
+PEPMASS=598.27001953125
+CHARGE=2+
+51.99824905 13097.7421875
+54.66281891 12231.046875
+58.03765106 12152.5439453125
+64.52633667 55618.89453125
+64.53048706 36637.96875
+64.58200836 45152.37109375
+64.58613586 27901.40625
+64.64152527 16215.087890625
+90.10641479 12865.9228515625
+122.1775284 14015.9501953125
+147.239975 13771.0751953125
+149.5691071 48542.359375
+167.0921173 39978.84765625
+167.767746 14594.681640625
+169.0590057 29915.9921875
+175.1179047 299316.46875
+176.1216278 25441.123046875
+177.0757141 58106.015625
+178.0601654 316576.09375
+178.3365021 56300.20703125
+178.3566284 39069.67578125
+179.0639191 20377.681640625
+179.0919495 28944.412109375
+182.0909882 19231.142578125
+183.0758209 34359.91796875
+186.0859985 94086.9140625
+194.1028442 23243.759765625
+195.0864716 4117491.25
+195.1282654 26822.912109375
+196.0893097 399304.71875
+197.0910339 41020.48828125
+200.1017151 21464.599609375
+201.0844879 18624.140625
+206.091095 145041.84375
+207.0943146 23949.541015625
+209.101532 14436.2412109375
+212.1136475 15080.1533203125
+214.3866577 13996.1044921875
+215.0913696 27667.974609375
+218.1022491 68915.140625
+237.1079865 15608.7373046875
+239.1113586 15714.7255859375
+240.0961761 14606.7412109375
+241.1038513 16139.447265625
+243.087677 23534.791015625
+246.0970612 626706.3125
+247.1000366 82975.8984375
+249.0973816 23149.212890625
+257.1228027 99590.5078125
+260.1129761 95967.3046875
+261.1173706 21623.357421875
+263.9410095 14643.4560546875
+267.324707 14862.025390625
+270.0966492 119805.0078125
+277.138031 22758.966796875
+278.1486816 25319.419921875
+283.1435852 39966.2578125
+287.1235657 159463.859375
+288.0779114 20245.3359375
+288.1074829 1607278.0
+289.1100159 230088.765625
+290.1107178 26246.005859375
+294.1182861 16907.857421875
+295.1496277 21633.0546875
+302.131958 18383.6171875
+303.1424866 29998.1484375
+304.1273193 18299.58984375
+305.1340332 3068845.75
+306.1192017 1155705.375
+307.1219482 174016.046875
+311.1342163 46535.4453125
+312.1163635 27311.248046875
+321.1539001 365493.90625
+322.1560059 59860.42578125
+323.1444702 1128251.125
+324.146698 163932.859375
+328.1633606 17889.49609375
+329.1440125 57432.72265625
+338.1424561 54832.71875
+338.1808167 366097.75
+338.643219 19304.380859375
+339.1834412 67823.984375
+341.144928 25367.515625
+347.1497498 28286.314453125
+349.1577759 34318.578125
+351.132782 20115.97265625
+358.1703491 18338.876953125
+359.1438599 41752.26171875
+366.1860962 124045.7734375
+367.1879272 18049.4609375
+368.1536865 14862.349609375
+369.1398926 21644.591796875
+376.1700745 96219.9609375
+377.1553955 84937.9453125
+394.1809692 690737.9375
+394.2390747 27787.30078125
+395.1821594 138670.65625
+396.1859436 21970.4375
+412.1899109 37603.5
+420.6824646 18781.111328125
+421.1877441 18310.25
+468.2209473 42528.859375
+469.2208557 18735.283203125
+483.7202454 21766.169921875
+485.2472839 207075.421875
+486.2514954 44123.26171875
+488.1868896 39666.00390625
+492.229187 185771.6875
+492.7302856 101241.6953125
+493.2319641 35761.421875
+495.2267761 55197.6328125
+503.217865 23062.107421875
+503.7138062 24456.400390625
+505.2102051 62547.55859375
+506.2022095 56396.27734375
+512.2313843 19351.00390625
+513.2279053 17293.921875
+520.7350464 17504.48046875
+521.2380371 39491.81640625
+523.2224121 444338.375
+524.2244873 110264.78125
+525.2327881 34135.22265625
+529.7541504 18886.77734375
+558.7446289 39003.609375
+571.750061 73247.8671875
+572.2755127 292165.1875
+573.2801514 93596.203125
+574.2772827 27961.642578125
+576.262085 42058.953125
+576.7642212 32704.6015625
+580.2625122 87774.3125
+580.755127 2147192.5
+581.2563477 1506666.75
+581.6505737 16678.63671875
+581.7581787 575655.125
+581.8618774 22518.228515625
+582.2588501 98454.046875
+589.2680054 60845.91796875
+589.7684326 39621.88671875
+598.2718506 41565.93359375
+598.7736206 27553.25
+599.2767944 46211.6640625
+599.7770386 84747.828125
+606.2603149 26737.677734375
+617.8564453 17925.482421875
+624.2692261 58220.19140625
+673.3248901 372995.65625
+674.3268433 152520.0
+675.3282471 31227.46484375
+693.2822266 23507.00390625
+802.366272 96724.1796875
+802.5388794 14756.3779296875
+803.3707275 42421.828125
+873.3996582 65096.95703125
+874.4088745 44818.43359375
+875.4147949 16580.720703125
+1001.461487 37422.0078125
+1058.468506 18039.642578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.521.521.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=521"
+RTINSECONDS=56.7477079
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13418579 14714.0537109375
+63.58488464 20055.3203125
+64.52624512 64616.6328125
+64.5305481 36200.1640625
+64.58197021 40487.8984375
+64.58613586 37491.16015625
+64.63821411 16203.6748046875
+82.05401611 21924.673828125
+149.5646973 45862.51953125
+167.0915985 30910.626953125
+169.0593872 33184.7109375
+175.1179352 294374.5625
+177.0764618 65564.140625
+178.0435181 30188.9296875
+178.0601501 341866.875
+178.3432007 104543.046875
+179.0631256 19802.3046875
+179.0920258 25961.435546875
+186.0861206 130532.3984375
+194.1023407 14907.8837890625
+195.0864868 4434329.5
+195.1402283 19795.271484375
+196.0892487 434657.65625
+197.0904694 44628.1328125
+200.1020355 29852.0546875
+201.086731 16959.357421875
+201.557663 16094.6279296875
+206.091217 181782.234375
+207.0920868 16593.080078125
+218.1026459 58628.26953125
+240.0948486 22520.94140625
+243.0872803 22991.22265625
+246.0743866 11894.6611328125
+246.0970764 629326.3125
+247.0998077 69824.0859375
+257.1230774 120983.9375
+260.1127319 124841.640625
+270.0967407 110229.5625
+278.151123 23830.11328125
+283.1448364 36026.68359375
+287.1235657 159530.515625
+288.1074829 1691767.0
+289.1104736 247386.109375
+294.117157 23174.181640625
+295.1495056 21254.759765625
+303.1438293 24748.9921875
+305.1340637 3255759.75
+306.0585938 22885.55078125
+306.1194153 1143440.625
+307.1208801 209527.046875
+311.1343689 35833.47265625
+312.1172791 32233.6484375
+321.1542664 370227.5
+322.1574402 55574.875
+323.1445923 1218621.5
+324.1468811 178834.109375
+325.1494751 19348.21875
+329.1443481 44930.01171875
+338.1416931 44628.703125
+338.1806641 430176.78125
+339.1834106 71236.8046875
+341.1518555 19205.912109375
+347.1486206 27749.876953125
+359.1443787 51688.515625
+366.1868591 138605.5625
+367.1896667 20690.490234375
+369.1371155 27006.767578125
+376.1702576 117229.046875
+377.155426 91964.03125
+378.1603394 18628.03125
+386.1642456 29757.091796875
+389.1537781 22909.65625
+394.1810913 795637.375
+395.1828613 157028.359375
+412.1897278 47521.67578125
+421.1869202 20828.3828125
+468.2226562 67432.2578125
+478.2053223 21629.900390625
+483.7151489 27894.701171875
+485.2479858 235705.15625
+486.2513428 69217.65625
+488.1874084 43047.0859375
+492.2289734 197305.046875
+492.7301025 83760.3359375
+493.2335205 34022.671875
+495.2261353 70770.3828125
+503.7185974 17398.765625
+505.2121887 53914.05859375
+506.2061157 31042.16796875
+512.2253418 56425.84375
+512.7224731 24307.65625
+520.7386475 23586.171875
+521.2368774 53879.1875
+521.732666 19027.083984375
+523.222168 483749.375
+524.2247925 157061.5
+525.2302856 42051.546875
+529.7429199 19245.240234375
+558.2533569 25714.177734375
+558.7435913 20974.33984375
+559.7511597 25273.8984375
+571.751709 58367.69921875
+572.276062 365850.65625
+573.2803955 104497.359375
+576.2652588 44819.4921875
+576.7601318 35653.12109375
+577.2617188 25672.517578125
+580.2637329 62003.98046875
+580.755249 2472497.75
+581.2564697 1700423.125
+581.3692017 20449.16796875
+581.6801147 12540.5595703125
+581.758606 614763.5
+582.258606 108957.6171875
+589.2669678 86252.8203125
+589.7665405 54852.64453125
+598.2746582 37193.66796875
+598.7755737 29885.037109375
+599.2783203 27186.025390625
+599.7800293 66544.0546875
+606.2581177 37004.4296875
+624.2705078 42587.78125
+655.3100586 32075.712890625
+673.324585 411581.6875
+674.3272705 164729.25
+675.3317871 20829.40234375
+693.2940674 19801.0546875
+802.3620605 94665.4140625
+803.3688354 49891.640625
+873.4013062 116953.734375
+874.4006958 59123.6484375
+875.4102173 25818.275390625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.522.522.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=522"
+RTINSECONDS=56.85501399
+PEPMASS=598.27001953125
+CHARGE=2+
+57.7508049 12489.5263671875
+60.45800018 13888.6884765625
+64.52632141 48948.80078125
+64.53047943 36835.19921875
+64.58227539 32244.818359375
+64.58626556 26052.224609375
+64.63790131 17857.91015625
+77.67425537 12135.115234375
+87.36367035 11872.5595703125
+100.0930252 12134.123046875
+108.3720627 14121.6640625
+110.0723648 16299.20703125
+149.5630035 28278.546875
+149.5765686 28088.52734375
+167.0924072 40964.7734375
+169.0601044 22625.90234375
+175.117981 289838.65625
+176.1217041 20379.8828125
+177.075943 57365.62109375
+178.0601501 364099.96875
+178.0784149 20610.53515625
+178.3428802 82660.71875
+179.0632477 25435.103515625
+179.0916138 13997.0107421875
+183.0755615 28060.146484375
+186.0860596 102265.3515625
+194.1018219 32095.08984375
+195.0865173 3999193.5
+196.0893707 402260.96875
+197.092041 31175.21875
+200.100769 23130.3515625
+206.0911255 160969.203125
+207.0938873 21430.138671875
+213.0858765 15576.625
+218.1026306 37248.5390625
+222.0857697 22695.984375
+222.5016174 13748.8720703125
+240.096344 25701.443359375
+243.085907 22193.408203125
+246.0971222 642176.6875
+247.099823 95021.6640625
+249.0970764 21692.353515625
+257.1224976 85989.6875
+258.124115 15219.7080078125
+260.1126404 113041.25
+261.114563 21208.837890625
+270.0970764 126892.421875
+278.150177 27986.630859375
+283.1434021 50586.15625
+287.1236267 147068.390625
+288.1075745 1570786.125
+289.1103516 249973.609375
+290.1109619 26524.787109375
+295.1506958 20885.138671875
+295.6532898 14403.087890625
+303.1436462 27510.08984375
+304.1279907 19153.845703125
+305.1341553 2992861.25
+306.1190491 1120115.125
+307.121521 184220.46875
+308.1231689 14780.509765625
+311.1347656 62037.06640625
+312.1174011 38496.4296875
+320.1702576 21601.35546875
+321.1542053 309895.3125
+322.1565552 58266.26171875
+323.1446228 1071726.5
+324.1470032 169733.734375
+325.1544189 18650.8203125
+329.1442261 53827.99609375
+338.1415405 54515.4375
+338.1809082 395653.5
+338.6455994 19846.84765625
+339.1827698 69651.875
+341.1471863 17094.5625
+347.1508789 24373.841796875
+349.1614685 29588.994140625
+351.1318665 16241.966796875
+359.1452026 63803.5
+366.1862488 125946.3984375
+367.1912231 16756.896484375
+369.1430054 15271.701171875
+376.1712952 113338.390625
+377.1559448 75212.8046875
+378.1542664 17883.203125
+386.1678772 17946.85546875
+389.1509094 13589.072265625
+394.1811218 648013.5
+394.2402344 15965.099609375
+395.1828003 139888.875
+412.1877136 24615.830078125
+420.6814575 16548.345703125
+460.188324 20265.9140625
+468.222168 39380.72265625
+469.2195129 14884.5693359375
+478.2050781 17259.439453125
+483.7190857 15783.03515625
+484.2097168 14548.1787109375
+485.2475281 185184.734375
+486.2502747 64266.78125
+488.1863098 52132.89453125
+489.190155 20001.8125
+492.2294006 147853.28125
+492.7311096 88446.265625
+493.2283936 26087.548828125
+495.2269897 60342.984375
+503.7159729 26691.1953125
+505.2116089 52767.14453125
+506.1992188 38718.59765625
+512.2280273 50770.6015625
+521.2322388 33439.68359375
+521.7358398 15869.9970703125
+523.133728 27177.6953125
+523.2224731 405375.53125
+524.225769 95989.3359375
+525.2329102 16375.0673828125
+554.2587891 18486.845703125
+555.2610474 17963.02734375
+558.7440186 20204.673828125
+567.2560425 30889.8828125
+571.7479858 60852.515625
+572.2752686 269753.4375
+573.2807617 98747.4765625
+574.272644 20420.724609375
+576.2581787 54754.00390625
+576.7614746 31220.703125
+577.2641602 19921.810546875
+580.2631226 92528.2265625
+580.7554321 2082883.625
+581.2568359 1292311.125
+581.758606 511601.21875
+582.2587891 100877.796875
+589.2723999 41428.9609375
+589.7697144 36576.1953125
+598.2741089 52717.0625
+598.7728882 26553.537109375
+599.2766724 37402.34765625
+599.7774658 47627.16015625
+606.2598267 21754.5390625
+624.2703247 36095.6796875
+655.3114014 16780.787109375
+673.324707 412689.59375
+674.3280029 141702.28125
+675.3287964 27213.900390625
+693.2822266 15785.275390625
+784.3557129 14466.1015625
+790.0942993 14829.876953125
+802.3647461 87775.8828125
+803.3662109 48961.44140625
+873.4021606 85097.8984375
+874.4078979 40997.71875
+1058.489136 20343.89453125
+1059.463257 16549.810546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.523.523.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=523"
+RTINSECONDS=56.96479034
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52631378 61580.00390625
+64.53052521 41136.97265625
+64.58197021 44386.50390625
+64.58621216 33871.40625
+64.63812256 18575.50390625
+64.64139557 14053.8701171875
+74.81216431 14676.658203125
+82.05464935 21141.845703125
+116.6070023 14350.1689453125
+149.5713196 50615.5078125
+167.0916595 34927.65625
+169.0593109 33114.60546875
+172.4536285 14692.4638671875
+175.1180267 276096.25
+176.121582 18435.208984375
+177.075943 79928.1796875
+178.0601654 345342.125
+178.0756836 10926.2783203125
+178.3339844 34516.62109375
+178.3530273 62692.99609375
+179.0635681 33797.546875
+179.0919037 17708.390625
+182.0919189 21209.888671875
+183.07547 29632.830078125
+186.0865173 100357.28125
+194.1035919 31318.12890625
+195.0865784 4331931.0
+196.0893402 422103.21875
+197.0917358 29996.86328125
+200.1020508 22677.6328125
+201.1078949 14184.9501953125
+206.0913849 160664.015625
+207.0935822 20060.560546875
+209.1019745 14822.7578125
+218.1026917 44476.76171875
+220.1555023 15294.263671875
+222.0848541 19767.03125
+234.0952454 16401.62109375
+240.0957947 21466.955078125
+246.0971222 644664.6875
+247.1000061 66706.0625
+257.1228943 110020.2578125
+260.112915 95424.0625
+267.1095276 16354.2294921875
+270.0974426 124013.015625
+271.100647 17779.4921875
+278.1177673 18557.115234375
+278.1498718 33889.4296875
+283.1423645 53353.8515625
+287.1237183 156234.109375
+288.0539246 22967.421875
+288.0772095 22700.705078125
+288.107666 1599839.125
+289.1103821 242361.40625
+290.1131287 25765.12109375
+295.1481018 25261.892578125
+303.1419067 24195.001953125
+305.1044922 60540.58203125
+305.1343079 3109059.0
+306.1194153 1138327.625
+307.1217651 165554.609375
+311.1355896 39716.83984375
+312.1178589 48353.28515625
+321.1543884 319109.375
+322.1557007 53233.40234375
+323.1446838 1109888.125
+323.1885681 35632.80859375
+324.146637 161215.953125
+329.1434021 59060.96875
+338.1427307 43685.49609375
+338.1809998 395825.03125
+338.6456604 23290.142578125
+339.1838379 81758.328125
+347.1494141 22766.12890625
+347.6533813 16598.8984375
+349.1585999 24995.71875
+359.1448364 49086.5859375
+360.1463013 20294.328125
+366.1861572 121821.1640625
+369.1382141 34282.875
+376.170929 130130.6328125
+377.156311 85148.359375
+386.1621704 28263.705078125
+394.1813049 725788.4375
+395.1832275 138553.1875
+412.1897888 37302.7734375
+420.6811523 25194.58203125
+442.184082 20806.41796875
+468.2222595 28183.33984375
+483.7218628 31867.859375
+485.2479858 222510.53125
+486.2512512 72059.4296875
+488.1866455 50419.26953125
+492.2294617 172368.921875
+492.7329407 87918.0546875
+493.230835 29519.4921875
+495.2287598 41676.421875
+505.2113037 53150.4921875
+506.204071 58987.921875
+512.223877 33177.44921875
+521.2318115 19295.544921875
+523.2227173 417682.46875
+524.2251587 117661.328125
+555.2558594 30604.93359375
+559.2478027 27059.21875
+571.7496338 59217.69921875
+572.2756958 323687.96875
+573.277771 85719.078125
+576.2606201 45097.70703125
+576.7635498 34582.6953125
+580.2624512 89012.59375
+580.7557983 2353911.75
+581.2568359 1549523.0
+581.7583618 565148.6875
+582.2593994 86341.5
+589.2683716 71274.5625
+598.2756958 63692.7109375
+598.7808228 48888.890625
+599.2785645 24226.287109375
+599.7789917 56275.78515625
+606.2581177 37623.3125
+624.2698364 47906.73828125
+655.315979 23399.0
+673.3250122 417758.6875
+674.3285522 155511.03125
+675.3253174 33865.66796875
+711.3043213 22159.630859375
+802.3670654 96512.0859375
+803.3696289 41591.015625
+873.4022217 88982.6328125
+874.4020996 44367.64453125
+1001.467041 20891.60546875
+1002.454529 22143.236328125
+1058.473755 19845.7265625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.524.524.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=524"
+RTINSECONDS=57.07296733
+PEPMASS=598.27001953125
+CHARGE=2+
+51.08208847 12608.3583984375
+64.52623749 64572.109375
+64.5307312 45231.1875
+64.58196259 41303.984375
+64.58616638 28519.373046875
+82.05439758 14629.66015625
+90.72640991 14319.6494140625
+95.59095001 13063.6484375
+96.27032471 14476.9501953125
+127.0700455 12087.92578125
+149.5741882 51991.38671875
+167.091217 42510.109375
+169.0601807 39948.40234375
+175.1178894 306839.84375
+176.121109 41105.171875
+177.0759125 53335.23046875
+178.059967 317834.3125
+178.078064 15908.4306640625
+178.348877 77980.015625
+179.063324 24432.162109375
+179.0912933 32326.87890625
+182.0917816 17595.501953125
+183.0758667 33333.49609375
+186.0864716 113210.1484375
+186.8978424 13621.8427734375
+190.1069489 14873.88671875
+194.103653 28139.966796875
+195.0864105 4162493.5
+195.1283875 20943.265625
+196.0893402 434547.09375
+197.090744 25998.576171875
+198.5045013 13280.1416015625
+200.1017151 22558.9609375
+201.0866394 24135.3203125
+206.0911255 178287.921875
+207.0947723 25048.552734375
+212.1021423 15132.84765625
+215.0895844 16708.048828125
+218.1023407 63413.43359375
+240.0975037 23650.60546875
+243.0854492 22878.53125
+246.0969238 602033.4375
+246.1255951 32351.552734375
+247.0992737 68779.8046875
+257.1225586 99674.6484375
+260.1122742 112038.5703125
+262.9590759 13115.912109375
+270.0970154 139003.875
+276.1060791 16552.708984375
+278.1186523 20677.427734375
+278.1503601 20179.177734375
+283.1428528 49802.015625
+287.1231995 147752.859375
+288.1072998 1536213.25
+289.1104431 228919.046875
+290.1135254 31961.55859375
+294.1176758 22184.630859375
+295.1483765 32456.111328125
+303.1441345 26560.939453125
+305.1338501 3109688.75
+306.1188965 1142498.125
+307.1211548 186060.421875
+311.1362305 48001.88671875
+312.1140747 33817.87109375
+320.1338196 22250.46875
+321.153717 345280.28125
+322.1557007 68539.1328125
+323.1443481 1122824.375
+324.1470642 180355.890625
+325.149231 14702.072265625
+329.1432495 60550.7265625
+331.1504517 20967.525390625
+338.1418762 58099.57421875
+338.1805115 403192.8125
+338.6445007 22347.759765625
+339.1828308 77478.5234375
+347.145813 15912.9560546875
+349.15802 21172.234375
+359.1452026 63400.65234375
+366.185791 145355.34375
+367.1887512 21143.240234375
+369.1386414 25389.169921875
+376.1696777 125988.7265625
+377.156311 87476.65625
+386.1641541 25059.546875
+394.1807556 679155.4375
+394.2402039 21360.306640625
+395.1819458 161079.578125
+396.1824951 14393.8505859375
+412.1870728 37993.70703125
+429.584259 18055.96484375
+450.2110596 19467.67578125
+468.2203674 50332.28515625
+478.2064514 21676.568359375
+485.2468872 192639.59375
+486.2543945 36211.359375
+488.1859436 48151.41015625
+492.2292175 140325.71875
+492.7289429 110642.734375
+493.2321167 16348.7705078125
+495.2248535 54511.11328125
+496.2267456 19996.111328125
+503.2190552 15010.34375
+505.2105103 51065.15625
+506.2012329 45133.9375
+507.2072144 21591.82421875
+512.2267456 25793.79296875
+512.7267456 33384.01171875
+523.2214355 433802.34375
+524.223877 104252.890625
+525.2249146 18823.01953125
+554.2667847 23362.630859375
+571.748291 58914.3203125
+572.2750854 302306.375
+572.7553711 31826.271484375
+573.2781982 78168.234375
+574.2775879 22835.1640625
+576.2633667 36498.44921875
+576.7628174 17355.384765625
+580.262207 87618.59375
+580.7546387 2262710.75
+581.2557983 1389979.125
+581.7576904 553337.5625
+582.2573853 113198.46875
+589.2710571 26923.658203125
+589.7668457 19183.400390625
+598.2706909 44344.78515625
+598.7702637 30626.85546875
+599.7780762 64974.99609375
+606.2543945 19422.498046875
+607.2556763 17999.82421875
+624.2682495 49787.27734375
+655.317627 23627.533203125
+673.3242188 405275.09375
+674.3269043 166536.125
+675.3318481 36025.9375
+802.3652344 93497.0703125
+803.3661499 39187.2890625
+873.3980103 91892.1015625
+874.4003296 41971.03125
+1001.449768 22404.693359375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.525.525.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=525"
+RTINSECONDS=57.18223325
+PEPMASS=598.27001953125
+CHARGE=2+
+61.32084656 13702.796875
+63.64171219 11678.2080078125
+64.52622223 55803.65234375
+64.53042603 43340.08984375
+64.58207703 37739.7109375
+64.58614349 32894.71875
+64.63321686 14359.5146484375
+64.63790131 19136.048828125
+64.6413269 14022.1728515625
+74.81214905 15742.6943359375
+82.37446594 14239.6552734375
+149.5657043 45315.05859375
+155.039093 14123.119140625
+167.0918732 52739.68359375
+169.0592041 33378.7734375
+175.1020508 23376.93359375
+175.1177063 298145.9375
+176.121521 28243.060546875
+177.0758514 57896.81640625
+178.0598297 355612.875
+178.0779877 25749.982421875
+178.3398895 76739.453125
+179.0642242 24956.921875
+179.09198 25291.5625
+183.0753632 33669.734375
+186.0860901 124318.8671875
+194.1025696 36822.1171875
+195.0862885 4234795.5
+195.1279144 20692.654296875
+196.0890045 427003.75
+197.0913849 27974.0234375
+200.1017151 43505.18359375
+206.0909882 158982.703125
+207.093811 22616.5234375
+212.114975 17352.87890625
+218.1020355 57440.26171875
+221.1016541 14944.537109375
+222.0862274 28605.9765625
+223.0909576 15953.541015625
+234.0965424 23151.025390625
+240.0945129 26414.560546875
+243.0865173 32770.15234375
+246.0967255 715480.625
+247.0998535 88519.65625
+257.1224976 120961.96875
+258.127594 19136.328125
+260.1125488 126424.9296875
+270.0964661 139197.453125
+271.1011047 19816.541015625
+283.1426392 40176.8203125
+287.123291 161404.296875
+288.1070862 1624702.75
+289.1098938 249848.09375
+289.1457825 10944.5263671875
+290.1131592 21723.248046875
+294.1179199 25368.236328125
+295.1499939 17736.43359375
+303.1439514 26742.921875
+304.1283875 23572.900390625
+305.1335449 3170742.75
+306.1188354 1155767.25
+307.1219177 191670.859375
+311.1340027 51904.984375
+312.1154175 40573.78515625
+321.1534729 313582.90625
+322.1547241 63350.3515625
+323.1440125 1113924.875
+324.145752 168976.96875
+325.1537781 20936.634765625
+329.1437073 60077.83203125
+338.1428833 37297.6328125
+338.1800232 433861.09375
+338.6444702 28982.986328125
+339.1821899 73307.0234375
+347.1504517 20030.353515625
+349.1583252 21457.7265625
+358.1642151 15347.48046875
+359.1443176 43789.05078125
+366.1856079 124892.34375
+367.1904297 37579.6171875
+369.1387024 29840.998046875
+376.1699219 116685.34375
+377.1568909 80087.1484375
+386.163208 32312.42578125
+394.1802979 741063.25
+395.1815186 132185.0
+396.180603 20876.22265625
+412.1856689 19647.431640625
+420.6834412 17680.541015625
+421.1885376 16384.869140625
+460.1949768 19615.23828125
+468.2197266 55751.63671875
+469.2153015 20994.169921875
+485.2468567 191772.03125
+486.2505188 62761.69921875
+488.1876831 49732.125
+492.2292175 149802.609375
+492.7301941 89121.7421875
+493.2338257 29241.666015625
+495.2279663 65488.8203125
+505.2121277 45611.65625
+506.2041016 53734.74609375
+512.2295532 26045.767578125
+512.7242432 32772.21484375
+521.232666 22919.20703125
+521.7353516 15248.46875
+523.2210693 415936.75
+524.2233276 129650.5859375
+525.2296143 27011.765625
+529.7405396 21372.474609375
+555.2488403 18309.78515625
+567.2590332 19288.33984375
+571.7485962 69889.3359375
+572.2744141 277177.0
+572.7523804 18968.98046875
+573.2786255 78175.1328125
+576.2609863 50634.8203125
+576.7642212 41291.25390625
+580.2612915 80981.2109375
+580.7540283 2234804.5
+580.8414917 33253.24609375
+581.2553711 1404413.75
+581.3355103 20462.9375
+581.7564087 527810.5625
+582.2584839 95719.90625
+589.2644653 38979.5625
+589.7678223 32547.021484375
+598.2733154 41998.77734375
+598.770813 21103.8046875
+599.277832 36148.81640625
+599.7768555 54943.7109375
+606.2579346 23349.58203125
+607.253479 21117.958984375
+624.269104 59467.05078125
+673.3222656 409715.5625
+674.3260498 151963.0625
+675.3265381 33009.1796875
+693.2888184 21823.52734375
+802.3630981 100322.5234375
+803.3624878 52358.875
+873.3955688 87224.953125
+874.4060669 38761.53125
+1001.454651 24937.451171875
+1075.42334 20816.416015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.526.526.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=526"
+RTINSECONDS=57.29117256
+PEPMASS=598.27001953125
+CHARGE=2+
+54.74909973 13897.60546875
+58.1345253 17695.275390625
+63.58461761 14295.142578125
+64.52622986 65770.0859375
+64.5304718 44427.5859375
+64.58198547 48101.6875
+64.58615875 30120.68359375
+64.63829041 20406.44140625
+64.64138031 18356.255859375
+74.81170654 22665.46484375
+74.8159256 14883.646484375
+82.05417633 16485.04296875
+135.6248016 14369.181640625
+140.1987 12783.6982421875
+149.5674133 52770.58203125
+167.0921173 33548.54296875
+169.0595856 31973.818359375
+175.1180115 311168.4375
+176.1207581 17140.33984375
+177.0762329 52732.47265625
+178.0601654 319712.0625
+178.3354645 53849.375
+178.3548431 39903.609375
+179.0637054 36629.83203125
+179.0921631 23330.66015625
+183.0745392 34851.0625
+185.7300568 12947.7861328125
+186.0862579 107044.0625
+194.1022491 43866.5078125
+195.0865173 4250794.0
+195.1283112 21293.01171875
+196.0895386 448546.25
+197.0916901 24423.2890625
+200.1019745 26567.923828125
+206.0913239 147066.53125
+209.1010895 16691.6953125
+218.1023407 43940.17578125
+240.0964966 24256.734375
+246.0730438 10338.837890625
+246.0971222 637181.1875
+247.0995331 75342.328125
+249.094986 15826.6796875
+257.1230774 92180.1015625
+258.125 16984.8125
+260.1127014 119074.8671875
+270.0976562 120604.2421875
+271.0984192 15743.5888671875
+277.1382751 30508.169921875
+278.1495972 22095.794921875
+283.1441956 50741.01171875
+284.1210327 17454.52734375
+287.1240234 149389.015625
+288.0777588 22843.265625
+288.107666 1617742.625
+289.1106873 220839.15625
+290.1133118 36309.00390625
+295.1497803 34118.33984375
+302.1314697 14509.697265625
+303.1426392 23998.505859375
+304.1270142 15836.837890625
+305.1342773 3145309.75
+306.1194153 1144924.125
+307.1219482 176543.046875
+308.123291 19346.8671875
+311.1360168 48569.1015625
+312.113678 18974.2421875
+320.1354065 16919.650390625
+321.1544189 319660.28125
+322.1568604 62220.9609375
+323.0979919 20652.90625
+323.1447144 1068723.75
+324.1471252 186701.671875
+325.1505432 28538.791015625
+329.1421204 39809.82421875
+338.1414795 63412.1015625
+338.1810608 346968.34375
+339.1840515 61588.953125
+347.1485901 22770.087890625
+359.1442566 54201.13671875
+366.1859436 101454.46875
+367.1859741 16900.400390625
+369.1385498 31535.98828125
+376.1705933 111580.734375
+377.1574707 86828.421875
+386.164978 21656.888671875
+389.2680054 16556.642578125
+394.181366 693269.4375
+394.2404785 22345.3515625
+395.1834412 142983.765625
+397.685791 16589.474609375
+401.9587708 14362.3984375
+412.1864929 39357.0078125
+460.1931458 17830.5859375
+468.2216187 40154.23046875
+469.2216187 19298.68359375
+477.2163086 16064.2783203125
+483.7183228 22147.208984375
+485.2474976 241900.6875
+486.2496033 52620.28125
+488.1863708 48702.6171875
+492.2294617 183599.125
+492.7315674 107184.8984375
+493.2324524 29157.46484375
+495.2261047 55819.96484375
+496.230957 25098.93359375
+505.2115784 61725.44921875
+506.2051392 48706.53515625
+512.2261963 40286.234375
+512.727356 26637.806640625
+513.2357178 21295.7265625
+521.2360229 32491.03125
+521.7315674 21941.876953125
+523.2230835 487133.875
+524.2258911 121785.5234375
+525.2272339 25137.357421875
+567.258606 20135.294921875
+571.7514038 70095.46875
+572.2750244 328076.8125
+573.2805786 110981.9765625
+574.2722778 19344.7109375
+576.2609863 43627.61328125
+576.7625732 36952.10546875
+577.2653198 20335.33984375
+580.2645874 81844.6640625
+580.7563477 2520061.75
+581.2571411 1688837.5
+581.6741943 12794.482421875
+581.7592163 725346.5
+582.2606812 138303.328125
+589.2692261 66483.1171875
+589.7667847 47751.140625
+598.2741699 53262.38671875
+598.7724609 33125.47265625
+599.2748413 33382.18359375
+599.777771 75086.4140625
+606.2584839 37553.25390625
+624.2699585 73171.953125
+629.3074341 21746.40625
+673.196106 31114.10546875
+673.3259277 496960.0
+674.326416 147027.078125
+675.3283691 30232.56640625
+693.2962036 25284.880859375
+711.3024902 20870.72265625
+802.3669434 109710.71875
+803.3707275 25390.32421875
+873.40271 101222.46875
+874.4041748 37333.0625
+875.414917 19983.255859375
+982.0081177 16993.33203125
+1001.465515 26639.935546875
+1002.464661 23448.302734375
+1058.46936 24428.546875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.527.527.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=527"
+RTINSECONDS=57.40011197
+PEPMASS=598.27001953125
+CHARGE=2+
+61.7712059 12097.2890625
+63.58504105 13342.3173828125
+64.52640533 61621.1328125
+64.5307312 40167.5703125
+64.58200073 51010.73046875
+64.58623505 31306.11328125
+64.63803101 19486.365234375
+64.6413269 12857.896484375
+74.76306152 11809.0888671875
+74.81182098 15038.2490234375
+81.83318329 10605.0341796875
+82.05407715 15256.076171875
+84.07014465 12050.65234375
+110.0737686 11173.5244140625
+117.4629593 12641.8876953125
+120.8087997 10531.5869140625
+135.6491699 12765.10546875
+146.1191559 12701.64453125
+149.5640411 35294.2578125
+149.5783234 21923.36328125
+151.0272064 12669.767578125
+165.4938354 12781.5458984375
+167.0920868 25117.705078125
+169.0590668 15405.2626953125
+175.1182709 278486.59375
+176.1214447 20917.4609375
+177.0760498 52206.79296875
+178.0603027 313490.96875
+178.3482208 77194.640625
+179.06427 13335.970703125
+179.0918121 25769.783203125
+182.0917816 19664.029296875
+183.0749207 27686.39453125
+186.0865021 101287.21875
+194.1031647 35905.53125
+195.0650177 25112.67578125
+195.0866699 3872744.0
+195.1282196 17687.94140625
+196.0894775 392042.65625
+196.1681976 13098.4912109375
+197.0913544 18996.21875
+200.1018219 29065.841796875
+206.0914612 171834.40625
+207.095108 20003.890625
+209.1026611 14029.7001953125
+212.1129303 15232.7958984375
+215.0923309 11387.2314453125
+218.1027985 51667.3125
+221.102005 20120.1015625
+233.1264343 14390.0625
+234.0982666 14853.1494140625
+240.093811 25575.142578125
+243.0844116 27126.3671875
+244.1156006 14407.462890625
+246.0973816 631659.0
+247.1001587 80916.9765625
+257.1229248 78099.8359375
+260.1129456 106415.4140625
+261.1187439 15561.1728515625
+270.0977478 116149.609375
+276.1365051 13484.0078125
+278.1176758 14267.8173828125
+278.1504211 31879.197265625
+283.1447449 59252.12109375
+287.1239014 146780.46875
+288.0775146 22380.44921875
+288.1078491 1598964.25
+289.1106262 251414.890625
+290.1141052 29940.771484375
+294.1169128 14569.904296875
+295.1514587 28677.58203125
+302.5145569 16071.8017578125
+303.1452332 28679.580078125
+305.1039734 51810.4453125
+305.134491 3059216.0
+306.1196289 1091712.25
+307.1217346 215477.875
+308.121521 17182.9609375
+311.1354675 51487.01953125
+312.1179504 49535.33984375
+318.1443176 15610.625
+320.1696777 15032.2822265625
+321.1544189 298798.8125
+322.1573792 61026.91015625
+323.1449585 1077861.875
+324.1468811 164327.6875
+325.1500854 15367.5
+329.1433105 45574.8828125
+338.1414185 44077.0703125
+338.1812744 388808.875
+339.1830139 77793.7890625
+347.1491699 21226.51171875
+349.1637268 23639.4609375
+358.1671448 17961.91015625
+359.1448059 60591.93359375
+366.1870728 130493.4609375
+369.1400146 33518.36328125
+376.1707458 109204.9609375
+377.1573486 89366.1484375
+386.1652222 32694.0078125
+394.1814575 644516.25
+394.2402649 22448.84375
+395.1834106 142347.40625
+396.1834717 23040.111328125
+412.1872253 27860.974609375
+413.165863 14088.689453125
+420.6816711 24014.521484375
+428.2056274 15052.5634765625
+460.1931458 20370.466796875
+468.2229919 44288.16015625
+469.2261353 13722.060546875
+478.2065735 19776.904296875
+483.7206726 24326.197265625
+485.2487183 208714.4375
+486.2519226 50456.4140625
+488.1864319 51323.73828125
+492.2306213 181039.8125
+492.7322998 94704.5078125
+495.2289124 69113.3984375
+503.7210083 34049.77734375
+505.2127686 46385.0625
+506.2041931 53207.0234375
+512.2277832 57814.4296875
+512.7286377 31260.732421875
+521.2317505 17914.9453125
+523.2232056 480412.03125
+524.2250366 122262.953125
+525.2324829 21701.3046875
+555.2629395 18869.720703125
+558.7399902 20768.484375
+571.7520752 70014.890625
+572.276001 323931.65625
+572.7513428 35340.375
+573.2806396 99272.40625
+574.2798462 19679.482421875
+576.2630005 40774.734375
+576.7642822 28983.171875
+577.2658081 23085.109375
+577.7658691 20706.212890625
+580.2649536 79505.609375
+580.7565918 2234833.5
+581.2575684 1604237.5
+581.6789551 12922.3935546875
+581.7592163 572767.4375
+582.2590332 113395.8515625
+589.2706299 29301.712890625
+589.769165 26529.400390625
+598.2773438 41800.72265625
+598.7786865 24524.140625
+599.2794189 41351.83203125
+599.7782593 90751.5703125
+606.2609253 33373.0078125
+607.2593994 14842.46875
+624.2677002 39777.1328125
+625.2787476 16797.9453125
+656.3074951 19108.6171875
+673.2000732 21011.646484375
+673.3257446 357714.3125
+673.4431763 9696.19921875
+674.3301392 166256.21875
+675.3321533 26739.03515625
+693.2953491 23122.23046875
+711.2980347 21229.1796875
+802.3673706 88361.75
+803.3673096 41317.8671875
+873.4005127 92222.1015625
+874.4058838 42219.83984375
+1001.456787 18653.66796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.528.528.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=528"
+RTINSECONDS=57.51089218
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13431549 17615.966796875
+64.52624512 81808.3046875
+64.53061676 62216.46875
+64.58196259 46205.26171875
+64.58618927 33005.78515625
+64.63817596 20280.7421875
+64.64134979 16379.7841796875
+74.8116684 15452.46875
+82.05397034 15601.0478515625
+86.73513794 14291.9677734375
+145.183548 16841.328125
+149.5670624 50921.22265625
+167.0916595 48894.94140625
+169.0591583 29784.2578125
+175.1178741 288544.375
+176.1212769 19217.16015625
+177.0761871 62124.18359375
+178.0599365 318751.34375
+178.0761108 30098.06640625
+178.3503113 87402.4140625
+179.0632172 27581.478515625
+179.0905151 20690.30078125
+182.0924683 20753.083984375
+183.0755463 29927.62890625
+186.0860901 113460.3046875
+187.5642395 14845.6611328125
+190.061142 25021.017578125
+194.1021881 33838.2265625
+195.0864258 4416593.5
+196.0891418 396810.5625
+197.0940247 20793.2890625
+200.1021576 31072.96484375
+201.085434 23210.71875
+206.0909729 197041.21875
+207.091507 22628.15625
+209.1022186 17572.14453125
+218.1034241 60005.09765625
+233.128006 18836.197265625
+234.0964966 17350.23828125
+240.0964508 19461.162109375
+243.0858459 23031.244140625
+244.1171265 17777.384765625
+246.0970154 650772.3125
+247.1001892 91489.6953125
+257.1226807 106763.65625
+258.1260986 19550.69140625
+260.112793 138203.640625
+270.0974121 130243.7421875
+271.1009521 21121.533203125
+274.8495178 16969.1875
+278.1502991 24157.318359375
+283.1414795 42255.22265625
+287.123291 184054.78125
+288.1074524 1677970.375
+289.110321 246044.953125
+290.1130676 17459.62109375
+294.118103 25396.033203125
+305.1340027 3333568.0
+305.2162781 23046.763671875
+306.1192017 1146410.875
+307.121521 187601.0
+308.1208496 26933.173828125
+311.1350403 42158.0859375
+312.1162109 41257.1640625
+321.1540222 344629.78125
+322.1566467 36320.0
+323.1444092 1148760.5
+324.146637 212845.703125
+329.1437988 51895.15625
+338.142395 44233.97265625
+338.1806641 426290.84375
+338.2255554 31429.373046875
+338.6450806 24065.63671875
+339.1834412 79944.9453125
+346.1676636 21439.810546875
+347.1473083 22313.6875
+349.1611023 19692.431640625
+359.144165 52014.6796875
+366.1860962 143132.40625
+367.1860352 22915.58984375
+369.1403809 22322.78515625
+376.1704407 131712.234375
+377.1582642 75024.171875
+378.1559448 20928.470703125
+386.1651001 29272.794921875
+394.1808472 738633.0625
+394.2391052 25961.859375
+395.1818848 155322.53125
+412.1891174 28513.89453125
+414.1617737 19257.435546875
+420.6795654 23572.81640625
+468.2211304 54219.6953125
+478.1982117 27988.68359375
+485.2475891 222751.1875
+486.2532349 47698.125
+488.179657 34975.37109375
+492.2284851 174132.265625
+492.7303772 108482.859375
+493.2337341 20637.662109375
+495.2284851 58863.859375
+503.7164307 38426.484375
+505.2114258 59958.109375
+506.2034302 62364.23828125
+512.2266235 31293.533203125
+512.7277222 38827.5
+521.2336426 36611.90625
+521.7333374 24339.796875
+523.2224731 449866.25
+524.2236328 151783.40625
+525.2329712 34083.8984375
+530.2458496 20648.169921875
+555.2578125 24338.28515625
+558.2481079 22060.810546875
+558.7442627 25940.876953125
+571.7507324 83117.5546875
+572.2747192 369036.65625
+572.7454224 25420.14453125
+573.2807007 118182.65625
+574.2737427 36089.5078125
+576.2608032 68649.46875
+576.7592773 51332.05078125
+577.265625 29077.49609375
+580.2640381 75484.8125
+580.755127 2781539.5
+581.2563477 1782223.375
+581.7576904 716024.5
+582.2589722 169636.453125
+589.2694702 118641.078125
+589.7663574 65007.68359375
+598.272583 60105.4453125
+598.7757568 29797.76171875
+599.2702026 35103.87109375
+599.7781982 87500.1640625
+606.262146 25713.615234375
+607.2575073 21280.27734375
+624.2699585 60143.7265625
+625.2737427 28955.833984375
+673.3248901 465323.96875
+674.3295288 179468.234375
+675.326416 32006.376953125
+693.2913208 24630.986328125
+802.3654175 125503.84375
+803.3672485 46676.37890625
+858.3536987 20783.29296875
+873.4020996 127672.3359375
+874.4001465 57733.25390625
+875.4006958 25137.3515625
+1001.450684 30963.439453125
+1058.468994 38839.23828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.529.529.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=529"
+RTINSECONDS=57.61804622
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436508 20400.75390625
+58.8244133 14639.1357421875
+64.52624512 66354.515625
+64.53049469 40457.671875
+64.58200073 44018.51953125
+64.58609009 37406.91796875
+64.63816071 16080.8291015625
+72.91651154 15396.9111328125
+74.81649017 17467.017578125
+80.15795898 13586.9208984375
+82.05435181 16805.626953125
+93.13609314 14444.869140625
+95.17391205 14246.720703125
+117.3719635 13672.4990234375
+149.5651093 37853.01953125
+149.5776367 29229.525390625
+167.0920258 39392.81640625
+169.0602722 26540.3359375
+175.1178284 312584.8125
+176.1212769 16357.8095703125
+177.0758514 66106.7734375
+178.0600281 339751.6875
+178.3352203 49035.71484375
+178.3543549 48024.5390625
+179.0636749 18642.076171875
+179.0915527 28137.873046875
+182.6417999 13678.361328125
+186.0862732 98544.078125
+190.0597839 24942.611328125
+194.1023102 37022.25
+195.0864105 4256171.5
+196.0893707 435385.125
+197.0920258 32202.306640625
+200.1011047 27875.52734375
+201.0857544 19562.46484375
+206.091156 147416.15625
+207.0939331 26079.953125
+213.0861359 15408.11328125
+218.1022644 52592.68359375
+234.0984344 22926.650390625
+240.0954285 23150.68359375
+240.2453461 14169.2314453125
+243.087204 20533.5859375
+246.0970306 625667.125
+247.0990143 70369.6953125
+257.1224976 106838.140625
+258.1252747 17061.927734375
+260.1121826 118065.0859375
+261.1182251 19211.5078125
+267.1152039 16035.4912109375
+270.0968323 140954.796875
+278.1190186 17736.9140625
+283.144928 41999.75
+287.1234131 131253.921875
+288.1072998 1579837.625
+289.1102295 226506.46875
+290.1109009 15609.9638671875
+294.1160278 19559.595703125
+302.1313782 15444.2197265625
+303.1435242 28216.705078125
+305.1339417 3247969.5
+305.2154846 22872.65625
+306.1190186 1100110.25
+307.1214905 198801.34375
+311.1341248 43268.87109375
+312.1181335 18408.171875
+321.1540222 322163.4375
+322.1568909 55036.3671875
+323.0986633 21593.072265625
+323.1444702 1180139.125
+324.146759 218811.5
+329.1444092 41581.40625
+338.142334 61916.44921875
+338.180481 354125.875
+338.6417847 23017.42578125
+339.1817932 65208.7109375
+347.149353 18333.1171875
+349.157074 19758.1484375
+359.1441345 61437.41015625
+366.1861572 152604.296875
+368.1527405 20692.3125
+369.1354675 25336.361328125
+376.1705627 117643.7890625
+377.1567688 80792.9375
+386.1643982 30291.619140625
+394.1809692 723948.75
+395.1831055 125981.8125
+396.1872559 19195.890625
+412.1862183 30539.5234375
+420.6827698 24278.171875
+421.1850891 16933.24609375
+445.7276306 16744.94140625
+450.2085266 16133.9970703125
+468.2206421 43734.52734375
+485.2468262 206345.203125
+486.2498779 54460.125
+488.1864319 54219.828125
+492.229187 166050.90625
+492.7306519 60237.9765625
+493.231842 35763.32421875
+495.2276611 65611.1640625
+503.2241211 23863.13671875
+505.211792 45974.921875
+506.2105103 43073.4296875
+512.2263184 50643.1640625
+512.730957 34942.14453125
+521.2313232 44619.17578125
+521.7382812 24000.30078125
+523.2219849 456046.4375
+524.2240601 122349.9921875
+525.2260132 32303.9375
+530.2437744 18154.158203125
+558.7406616 27622.841796875
+571.7491455 99003.96875
+572.2745361 318127.0
+572.7483521 26328.318359375
+573.28125 102711.5859375
+574.2800293 22611.34375
+576.2601929 50635.36328125
+576.7628174 41664.33203125
+577.2579346 22662.001953125
+580.2619019 85308.8125
+580.7550659 2287250.25
+581.2561646 1549114.0
+581.7581787 553784.3125
+582.2590942 100683.5625
+583.2631836 20994.15234375
+589.2657471 59876.734375
+589.7669067 55668.29296875
+598.2722168 54887.76171875
+598.7733765 22276.64453125
+599.2715454 27391.607421875
+599.7766724 79191.53125
+606.2506714 26493.59375
+624.2694702 57120.83984375
+655.3207397 20471.048828125
+673.3243408 462367.0625
+674.3267212 168701.4375
+675.3261719 31467.896484375
+711.2974854 24896.96875
+802.3673706 99441.0859375
+803.3693237 47016.89453125
+873.4001465 111037.140625
+874.4038696 45083.07421875
+1001.458435 26688.681640625
+1058.451294 23717.267578125
+1155.527344 19899.244140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.530.530.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=530"
+RTINSECONDS=57.7260201
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52635956 60531.1640625
+64.53072357 45288.55078125
+64.58193207 36871.58203125
+64.58615875 35667.5859375
+64.64159393 14131.3408203125
+76.28147125 15339.5927734375
+79.55132294 12818.9697265625
+92.54625702 16756.6015625
+110.5135117 15346.7470703125
+145.1945496 13037.0732421875
+149.5676117 54393.76171875
+150.4716339 14314.771484375
+167.0919495 26653.16015625
+169.0595398 33356.09765625
+175.1002197 14284.6865234375
+175.1179504 315776.46875
+176.1208344 22460.021484375
+177.0762787 63858.5859375
+178.0464325 10676.400390625
+178.0601654 324161.28125
+178.3364868 62623.54296875
+178.3555298 26103.84765625
+179.0639801 26877.46875
+182.0923004 16285.4384765625
+183.0737305 25159.9375
+186.0861206 107220.0703125
+194.1026459 27487.564453125
+195.0865021 4225819.5
+196.0894928 428220.84375
+197.0924225 29007.517578125
+200.101593 29193.861328125
+205.0586243 14891.771484375
+206.0912628 150353.015625
+207.0939789 15387.7470703125
+218.1024628 40325.11328125
+234.0973969 26032.486328125
+234.4664459 14311.2216796875
+240.0951538 24569.2734375
+243.0869141 20303.82421875
+246.0714417 9810.65625
+246.0971222 637838.4375
+247.0997772 79695.203125
+257.1226807 107359.34375
+258.1235657 20976.689453125
+260.112915 106118.6953125
+261.1178284 16526.40625
+270.0967712 136067.78125
+271.1010437 17079.328125
+280.4620361 13894.5478515625
+283.1435852 45162.9921875
+287.1233826 173446.828125
+288.1075439 1591196.25
+289.1101074 233151.015625
+290.1141052 23785.599609375
+295.1497192 27243.71875
+303.1425781 29458.796875
+304.1268005 23014.787109375
+305.1341248 3117542.5
+306.1195679 1069649.375
+307.1213379 195508.609375
+308.1233215 21212.509765625
+311.1349182 50952.171875
+312.1173706 38874.78515625
+321.1542053 328385.78125
+322.157959 57275.8125
+323.0983887 24578.587890625
+323.1445312 1168493.25
+324.1467285 198779.28125
+327.1365967 18865.1796875
+329.1417847 28991.310546875
+338.14328 45643.8828125
+338.1807556 399379.46875
+339.1832581 66417.453125
+347.145752 28497.490234375
+349.1599121 20379.0
+351.1347656 19244.0703125
+359.1452942 78263.5234375
+366.1854553 113046.6171875
+367.1807861 20539.056640625
+369.1405334 32303.33203125
+376.1702576 105978.9921875
+377.1568604 64450.33984375
+389.1547241 18074.87109375
+394.1811523 695376.0
+394.2402039 28318.4921875
+395.1829224 157012.796875
+397.6817322 17949.41796875
+412.1897888 41762.4921875
+420.6807556 20924.001953125
+421.1870728 16836.783203125
+460.1899719 20496.884765625
+468.2212524 49099.1796875
+478.2038574 19895.55078125
+483.7170105 20830.84765625
+485.2480164 208814.09375
+486.2467651 58033.37890625
+488.1858215 49331.96484375
+492.2302246 136131.75
+492.729248 60064.61328125
+493.2285156 19274.052734375
+495.2256165 73576.7578125
+496.2310181 24361.8828125
+503.7199402 19879.3046875
+505.2097778 47549.03515625
+506.2070007 45078.765625
+512.2279053 27766.146484375
+512.7255859 28473.63671875
+520.739502 16297.4150390625
+521.230957 40203.09375
+523.2224121 419162.125
+524.2260742 136678.890625
+525.2294922 24349.005859375
+555.2546387 25797.12890625
+558.7468872 33185.49609375
+571.7493896 67446.09375
+572.2761841 256327.125
+572.7556152 33647.04296875
+573.2801514 78440.0390625
+576.2595215 49856.84375
+576.7659912 40074.3984375
+577.2651978 28894.046875
+580.2608032 57940.7734375
+580.7556152 2312706.5
+581.2566528 1441059.125
+581.758667 545378.375
+582.2596436 107419.09375
+589.2657471 69435.125
+589.7704468 49567.6953125
+598.2737427 58956.79296875
+598.7759399 38201.375
+599.2733154 27891.486328125
+599.77948 70553.0625
+606.2573853 27093.951171875
+624.2697144 40204.29296875
+625.2684326 19644.81640625
+673.3255005 401710.65625
+674.3262329 179850.59375
+675.328186 37076.5234375
+693.2860718 21624.224609375
+711.3007812 17880.34375
+802.3656006 84623.7734375
+803.3666992 37474.5234375
+873.399292 103047.0625
+874.40448 57443.609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.531.531.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=531"
+RTINSECONDS=57.8346557
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52632141 59571.234375
+64.53050232 37699.96484375
+64.58203888 49790.31640625
+64.58618927 31975.80078125
+64.63812256 20447.673828125
+64.64177704 17876.734375
+77.88651276 12484.4609375
+149.5651245 31580.966796875
+149.5776215 26300.873046875
+167.0915527 41623.40234375
+169.0602417 28072.12109375
+175.1180878 276501.59375
+176.1206665 22732.314453125
+177.0763397 49941.40625
+178.0601501 325801.71875
+178.3388824 68925.4921875
+179.0640564 37931.98828125
+179.0905304 15616.8125
+182.0910339 18763.275390625
+183.0762939 20776.712890625
+186.0861511 111231.4296875
+194.1025543 42301.7890625
+195.0865479 4167230.5
+196.0894928 433890.25
+200.1021423 23026.40625
+201.0861511 25506.283203125
+206.0911865 149747.421875
+212.1135101 24195.580078125
+218.1027222 65971.9921875
+221.1034698 17076.03515625
+222.0855713 27091.18359375
+239.1128693 16506.47265625
+240.0954742 33212.25
+243.0855713 26744.99609375
+246.0971375 663035.625
+247.0998688 65520.21484375
+248.1087036 15209.400390625
+249.0972443 23463.580078125
+257.1226807 89773.703125
+260.1130066 100955.703125
+261.1174011 21928.119140625
+270.0969849 140918.953125
+271.0990906 15116.0390625
+278.1495056 22159.2734375
+283.1437378 43401.0234375
+287.1238403 154843.25
+288.1075745 1616249.75
+289.1105042 247818.703125
+290.1131897 23145.6484375
+295.149353 27174.02734375
+303.1444092 34371.99609375
+305.1341858 3233678.0
+306.1193237 1157272.875
+307.121521 211857.765625
+311.1340942 67515.875
+312.1168823 30812.3515625
+321.1543884 340735.65625
+322.1557312 72850.046875
+323.0995178 15790.5009765625
+323.1446838 1142012.625
+324.1468201 175199.390625
+325.1551819 17127.578125
+329.1448364 47275.5625
+338.1416626 69836.3125
+338.1809998 365631.875
+339.1828308 78485.609375
+347.1516418 31861.892578125
+349.1585083 26952.2890625
+358.1655884 19655.203125
+359.144928 58739.62890625
+360.1473694 22367.896484375
+366.1861572 120577.6484375
+367.1903076 21983.494140625
+368.1548767 14543.6630859375
+369.1389771 37152.51953125
+376.1708679 135363.703125
+377.157196 97376.8671875
+386.1656189 24019.51171875
+394.1811829 747378.4375
+394.2402039 26868.298828125
+395.1826782 137820.59375
+412.1879578 37070.0234375
+420.6821594 20751.205078125
+421.1872864 15895.44921875
+460.1898804 33992.20703125
+468.2185059 46523.046875
+477.2155151 14815.4013671875
+484.2152405 17456.6171875
+485.2475891 185608.40625
+486.2504578 55259.1953125
+488.1864624 50003.77734375
+489.190979 20009.548828125
+492.2297668 169326.625
+492.7304077 105660.65625
+493.2314758 28973.44921875
+495.2286987 56565.1171875
+503.7133179 22344.9609375
+505.211853 40916.94140625
+506.2067566 52026.58203125
+512.2261963 43835.203125
+512.7296753 22345.21875
+521.2318726 25808.755859375
+523.1342163 26391.751953125
+523.2227173 417946.59375
+524.2255859 141322.078125
+525.223999 19533.767578125
+529.7460327 20496.79296875
+552.255127 15086.412109375
+554.2565918 23450.82421875
+568.2576904 20780.3203125
+571.75 95615.8359375
+572.2739868 285820.46875
+572.7498169 19156.3125
+573.2782593 105490.2109375
+574.2818604 23984.427734375
+576.2631226 44488.3125
+576.7686157 30882.41015625
+580.2634277 93726.078125
+580.7555542 2434927.0
+581.2567749 1593371.25
+581.7583008 576760.8125
+581.8618164 16575.029296875
+582.2588501 92393.7734375
+589.2672729 63283.66796875
+589.7697144 39149.36328125
+598.2740479 59343.9765625
+598.7759399 37976.46484375
+599.2791138 38027.484375
+599.7771606 121526.0390625
+606.2580566 37553.83203125
+624.267395 62837.625
+673.3249512 436469.6875
+674.3276367 175932.84375
+675.3272705 45037.87890625
+711.3009033 18947.05078125
+802.364502 90307.578125
+803.3689575 48490.9140625
+873.4043579 117005.9765625
+874.4069214 37155.7421875
+1001.451599 23380.68359375
+1002.460754 16575.05859375
+1058.505005 17847.244140625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.532.532.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=532"
+RTINSECONDS=57.94371422
+PEPMASS=598.27001953125
+CHARGE=2+
+64.52630615 72661.921875
+64.53071594 53151.24609375
+64.58201599 42541.76171875
+64.58616638 32420.333984375
+64.63819122 22008.9453125
+64.64150238 14954.42578125
+71.38635254 14674.25390625
+82.05451202 19605.84375
+110.0732346 15832.7568359375
+149.5701599 59319.79296875
+167.0921936 41853.76171875
+169.0593567 38745.484375
+175.1178589 284790.15625
+176.1203918 18824.30859375
+177.0762482 64335.25
+178.0600739 345104.71875
+178.3408966 82698.03125
+179.0632172 31719.306640625
+182.0919952 20650.4140625
+183.07547 34882.46875
+186.0858917 90492.59375
+194.1022491 37908.41015625
+195.0864563 4180475.5
+196.0893097 430620.84375
+197.0916595 30628.29296875
+200.1007233 26319.955078125
+206.0911865 168339.875
+207.0944214 18995.265625
+218.1025848 38242.8046875
+222.0862732 24525.455078125
+234.0968323 14801.455078125
+239.1134491 20669.896484375
+240.0983429 16423.12109375
+243.0863342 27830.52734375
+244.1192474 19672.92578125
+246.0970001 673020.25
+247.1000214 68490.2734375
+257.1222839 97701.484375
+260.1124573 115695.296875
+261.1179504 19863.087890625
+270.0967407 130792.640625
+278.1196899 22265.9375
+283.1438599 50122.6484375
+287.12323 166545.046875
+288.1073608 1600029.5
+289.1096802 240425.1875
+290.1117249 20727.65234375
+293.9958801 14438.1513671875
+295.1507874 20138.88671875
+303.1433716 16317.2998046875
+304.127594 30546.435546875
+305.1339111 3212012.25
+306.1190186 1086013.75
+307.1210632 170580.296875
+308.120575 16815.474609375
+311.1352539 48308.78515625
+312.1176147 47019.21875
+320.1319885 16320.4794921875
+321.1540222 304432.53125
+322.1568909 62847.4921875
+323.0990601 22797.0234375
+323.1444397 1111724.875
+323.1891785 31346.94921875
+323.2078247 21237.0546875
+324.1467896 212303.4375
+325.1489868 31949.62890625
+329.1429138 39918.0390625
+338.1416626 57258.81640625
+338.1807556 379758.65625
+338.6430054 21876.10546875
+339.1825256 91706.765625
+349.1630249 15502.24609375
+351.1316223 17117.853515625
+358.1649475 22214.0234375
+359.1433105 65405.80078125
+366.1864929 132104.125
+369.1382141 25436.125
+376.1706543 128574.5
+377.1582947 67354.03125
+386.1655273 27790.14453125
+394.1806641 725054.25
+394.2400208 23899.6171875
+395.1822205 150544.4375
+412.1872864 40449.2890625
+413.1645508 16925.99609375
+421.1855164 16739.56640625
+450.2104187 15354.236328125
+460.1930847 19015.673828125
+468.2217712 57787.93359375
+477.2142029 18457.892578125
+483.2322083 18273.490234375
+485.2475586 189003.25
+486.2496643 54545.4375
+488.1864014 45070.02734375
+492.2287292 162964.359375
+492.7304993 87808.140625
+493.2330322 31514.669921875
+495.2261963 38731.5703125
+505.2113953 47383.609375
+506.2101135 27676.572265625
+512.2247925 30669.755859375
+512.7280884 43701.51953125
+520.7459717 21417.580078125
+521.2327271 32076.43359375
+521.7359619 23919.837890625
+523.2221069 470043.15625
+524.223877 119574.9375
+525.2342529 19828.25
+554.2641602 15997.38671875
+567.2602539 22749.673828125
+571.7488403 98776.8125
+572.2746582 308047.5625
+572.7498169 25303.326171875
+573.2808228 90391.953125
+574.2713013 23826.685546875
+576.2612915 63096.9140625
+576.7601318 29919.65625
+577.2582397 26078.61328125
+580.2626953 78482.7265625
+580.7545166 2553895.0
+580.8392334 36254.2890625
+581.2559204 1592926.5
+581.7576904 601582.0625
+582.2580566 112109.4765625
+589.2647705 71623.25
+589.7595825 28893.806640625
+598.2745361 55590.27734375
+598.7745972 58867.16015625
+599.7750854 71004.7109375
+606.2581177 43279.171875
+624.2679443 60153.17578125
+625.2689819 18532.400390625
+655.3178101 23299.32421875
+656.300293 20643.662109375
+673.3231812 450682.59375
+674.3258057 174652.5
+675.3410034 29517.453125
+693.2906494 22640.55078125
+802.3625488 82863.4140625
+803.3644409 35953.74609375
+873.4001465 119224.0078125
+874.401001 54345.921875
+903.3453369 17693.0078125
+1001.45105 28224.7109375
+1058.483032 26182.66796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.533.533.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=533"
+RTINSECONDS=58.05220048
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13408661 20770.36328125
+60.67570496 14390.8583984375
+64.52625275 63109.0859375
+64.53047943 42135.54296875
+64.58194733 50631.375
+64.58617401 31688.8046875
+64.63815308 19068.39453125
+64.64151764 14244.21484375
+74.81208038 13425.1044921875
+75.24478149 11925.4951171875
+76.77767181 11863.03515625
+78.24849701 12196.9609375
+82.05430603 15498.5556640625
+86.26122284 11607.99609375
+136.0782776 14577.359375
+149.5671539 48799.9609375
+167.0919952 34943.62109375
+169.0597992 38281.26953125
+175.1177826 298767.71875
+176.121048 18920.029296875
+177.0756531 74109.734375
+178.059906 346252.53125
+178.0783081 19650.880859375
+178.3489227 74099.359375
+179.0639343 30136.56640625
+179.0911255 23460.572265625
+179.2698364 14828.7216796875
+182.0908661 14343.2041015625
+183.0747681 30425.1171875
+186.0859222 108738.140625
+190.1072845 14062.08203125
+194.1021881 41063.55859375
+195.0862885 3980539.5
+196.0890961 420379.375
+197.0920868 34323.328125
+200.100647 37945.3125
+201.0869141 15905.724609375
+206.0910797 143788.46875
+213.0845947 23274.224609375
+217.1291809 14674.2939453125
+218.1019135 52061.83203125
+222.0855865 13743.611328125
+234.0976868 16236.6650390625
+240.0950928 37312.34765625
+243.0860138 24543.619140625
+246.0967407 622510.375
+247.1001129 83044.8359375
+248.1047211 19015.61328125
+249.094574 15417.8359375
+257.1225891 87967.765625
+260.1121521 106890.890625
+270.0966797 105260.5
+271.0988464 16598.78125
+278.1174011 14331.390625
+278.1497192 16353.9560546875
+283.1428528 40858.61328125
+287.1229858 142633.78125
+288.1070862 1570585.75
+289.1100464 233003.71875
+290.1118164 22624.27734375
+295.1481934 22459.1875
+303.1423035 20421.251953125
+304.1256714 20756.75390625
+305.133606 3050549.75
+306.1187134 1121570.625
+307.1213989 187206.296875
+308.1225891 22788.41796875
+311.1349792 31784.44140625
+312.1175232 44148.5703125
+321.153595 332522.90625
+322.1575012 58560.0546875
+323.1440735 1098560.875
+324.1464539 174835.15625
+325.1498108 23758.09375
+329.1436768 46093.34765625
+338.1423035 55363.8125
+338.1803589 382160.625
+338.6481323 19084.6875
+339.182373 54008.44140625
+341.1439209 17365.638671875
+347.1484985 17473.041015625
+349.1593933 22762.654296875
+351.1266479 17076.625
+359.1443176 56820.4921875
+366.1854858 125299.8359375
+369.138855 34343.43359375
+376.1700745 113221.9453125
+377.1554871 71282.4921875
+386.1644287 27227.51953125
+394.1803589 668377.375
+395.1825867 147551.265625
+396.1852417 18137.763671875
+412.1855469 46914.01953125
+420.6802368 31354.041015625
+421.1863098 18751.51953125
+460.187439 18959.802734375
+463.1976929 13808.6923828125
+468.2211304 39329.25390625
+485.2469177 195293.015625
+486.247345 46704.484375
+488.1842651 33523.84765625
+492.228241 167364.5625
+492.7293091 105910.9375
+495.2276001 51324.63671875
+496.2314758 19956.99609375
+505.2113953 63728.62890625
+506.2061157 51774.65625
+512.2250366 46669.86328125
+512.7261353 32798.203125
+520.7381592 13654.9521484375
+521.2315674 32147.697265625
+523.2212524 457694.9375
+524.2236328 124821.671875
+525.2287598 25347.7421875
+554.2677002 20669.919921875
+558.741272 22279.064453125
+559.2451172 21639.423828125
+571.7492676 88017.140625
+572.2740479 328132.4375
+572.7480469 18922.1015625
+573.2800293 97339.140625
+574.2789917 16084.1455078125
+576.2593384 31497.41015625
+576.7636108 27594.123046875
+577.2589111 36413.06640625
+580.2587891 81443.7421875
+580.7540894 2431753.75
+581.255249 1657901.625
+581.3388062 24771.158203125
+581.3671265 29513.294921875
+581.756897 582710.3125
+581.8640137 27047.462890625
+582.2584229 128177.4140625
+589.2664185 25847.796875
+589.7640991 22245.60546875
+598.270752 56214.23828125
+598.7734375 40833.91796875
+599.2727661 46878.68359375
+599.7750244 71031.7734375
+606.2576904 24563.8359375
+607.2491455 20424.013671875
+624.2652588 53394.890625
+625.2675781 30772.076171875
+655.3122559 21842.048828125
+673.3226318 414416.21875
+674.3243408 164828.625
+675.3215332 36955.296875
+693.2960205 25434.328125
+802.3605957 108374.5546875
+803.3661499 43639.20703125
+873.3980713 91939.875
+874.3934937 33182.53125
+1001.446472 21652.69140625
+1002.466492 16180.2548828125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.534.534.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=534"
+RTINSECONDS=58.16219584
+PEPMASS=598.27001953125
+CHARGE=2+
+50.97085571 13246.19140625
+57.07875824 13721.025390625
+58.13434982 15743.3720703125
+58.13733673 14656.0263671875
+64.52626801 60855.46484375
+64.5304718 46039.3671875
+64.58200836 43015.68359375
+64.58612823 30234.38671875
+64.63798523 21598.201171875
+64.6415329 16656.76171875
+70.34230042 14776.71875
+73.77722931 14030.9267578125
+77.49610901 15118.55078125
+102.8359909 13332.103515625
+149.5626831 26485.37890625
+149.5767059 29882.98828125
+161.7278748 14754.1220703125
+167.0924835 37052.11328125
+169.0600128 38830.01953125
+175.1177216 288363.5625
+177.0757294 59769.796875
+178.0437622 27852.392578125
+178.059845 381841.46875
+178.0780182 20689.017578125
+178.3491211 87130.4453125
+179.06427 15948.2431640625
+183.0755157 31275.53125
+186.0860901 105141.515625
+190.0599365 17128.3671875
+194.1026459 29362.0703125
+195.0862579 4327007.5
+196.0890045 426174.5625
+197.0919342 26412.908203125
+200.1023102 25116.962890625
+206.0908203 159654.75
+206.899353 15764.6943359375
+210.6970825 16773.857421875
+218.102417 49795.50390625
+222.0845032 18261.43359375
+232.6969452 14939.6591796875
+240.0946808 36151.09765625
+244.1177368 18479.9765625
+246.096756 667523.0625
+247.0997009 74256.9140625
+249.0976105 17516.19140625
+257.1222839 109644.1015625
+260.1124573 128423.25
+267.1098328 18015.966796875
+270.0970459 137910.21875
+271.1018677 24252.650390625
+278.149353 20891.33203125
+283.1419067 54413.0625
+287.1232605 150355.65625
+288.1071472 1614358.0
+289.1098633 273391.6875
+295.1490173 34691.5234375
+302.131958 16739.103515625
+303.1420898 33690.6953125
+304.1264648 20502.125
+305.133606 3209694.25
+306.1187439 1211903.375
+307.1210632 196131.59375
+311.1343689 59907.23828125
+312.1177063 41903.0703125
+321.1535034 319603.90625
+322.1561279 59785.0625
+323.0982361 22603.896484375
+323.1440125 1180878.25
+324.145752 174993.28125
+325.1448059 18275.994140625
+329.1439819 50980.12890625
+338.1423645 57041.89453125
+338.1801758 405822.5625
+338.6424561 22414.208984375
+339.1837463 71938.640625
+347.1483154 29074.88671875
+349.1598816 18386.4296875
+351.1300049 25583.994140625
+358.1647034 17868.876953125
+359.1441956 52024.75
+360.1448669 24777.498046875
+363.1265259 16203.7763671875
+366.1860352 116843.7109375
+367.18396 19001.384765625
+369.1389465 24641.654296875
+376.1694336 146049.6875
+377.1567078 95362.21875
+378.1618347 21411.833984375
+386.164978 30551.26171875
+394.1803589 767355.75
+394.2390137 25378.5703125
+395.1824646 142546.109375
+412.1885681 41193.27734375
+460.1907043 32994.77734375
+463.1929321 18543.41015625
+468.2205505 51590.9453125
+477.2184753 16461.9140625
+483.7141724 34952.12109375
+485.2466125 201211.640625
+486.250824 60351.625
+488.1853333 38479.59375
+492.2293091 146634.4375
+492.7290955 99439.5625
+493.2289734 21233.576171875
+495.2263794 61926.9609375
+497.2282104 16280.39453125
+503.7148132 18931.646484375
+505.2099915 50520.98828125
+506.2081909 48824.125
+506.7250671 17606.275390625
+512.2268677 43915.76953125
+512.7313843 28163.787109375
+521.2327271 29434.064453125
+521.7305298 24510.833984375
+523.2211304 477361.625
+524.2230835 122510.71875
+529.7449341 19969.123046875
+555.2606812 26995.66015625
+558.7433472 36411.16796875
+568.244812 22978.76171875
+571.7493286 85682.328125
+572.2729492 319410.09375
+572.75354 26852.044921875
+573.277832 114842.953125
+576.2650146 42910.40234375
+576.7572021 25983.904296875
+580.2620239 93228.1171875
+580.7543335 2385717.5
+581.2556763 1606779.625
+581.756958 612828.9375
+582.2598267 145478.71875
+589.2661743 91642.5703125
+589.7659912 69000.8203125
+598.2706909 45527.90234375
+598.7750854 26377.802734375
+599.2722168 25896.15234375
+599.776001 84037.0234375
+606.2579956 49015.6953125
+624.2680054 40727.76171875
+625.2653809 20311.978515625
+655.3125 25164.505859375
+673.322937 455985.71875
+674.3269043 157029.5
+675.3278809 35674.33203125
+711.2982788 21162.341796875
+802.3640137 109554.65625
+803.366394 45771.34375
+873.3974609 98773.625
+874.4054565 75091.734375
+983.4578247 22765.32421875
+1001.451111 32017.013671875
+1059.475098 16367.3662109375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.535.535.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=535"
+RTINSECONDS=58.27016274
+PEPMASS=598.27001953125
+CHARGE=2+
+51.77649307 13920.4013671875
+64.52632904 70710.8671875
+64.53049469 44770.01171875
+64.58201599 52133.8828125
+64.58621979 34035.13671875
+64.63799286 26848.21484375
+64.6414032 17561.98046875
+74.8114624 17735.943359375
+89.4407196 14180.4658203125
+94.45048523 13464.6240234375
+101.7404175 16148.2333984375
+110.0741577 15482.1044921875
+112.2419586 14052.8203125
+149.5713654 65602.15625
+153.4517822 15207.9453125
+167.092392 34884.88671875
+169.0597534 17411.19921875
+175.1178284 323801.03125
+176.1208038 23432.064453125
+177.0760651 79109.890625
+178.0600586 382234.4375
+178.0780487 19867.248046875
+178.3466187 101635.1484375
+179.0641479 18076.5078125
+182.0913544 39875.91796875
+183.0749512 27893.404296875
+186.0862427 110131.1640625
+194.1022186 37228.33984375
+195.086441 4400516.0
+196.0892487 437928.21875
+197.091629 36141.69921875
+200.100235 20473.08984375
+201.0861816 29791.775390625
+202.17453 14775.119140625
+206.0911102 141701.5
+215.0923157 25535.95703125
+216.0955048 14143.828125
+218.102005 58410.27734375
+233.127533 24960.560546875
+234.0964966 19663.95703125
+240.0973969 25409.564453125
+243.0853577 19752.443359375
+243.1270752 19694.654296875
+244.116333 18283.974609375
+246.0745239 15082.8564453125
+246.0970612 628040.1875
+247.1006775 68646.359375
+257.1229553 110111.109375
+258.1249084 19404.0
+260.1123962 127287.96875
+270.0969543 122996.2109375
+278.1181335 20452.759765625
+278.1489258 30909.52734375
+283.1442261 34841.0859375
+287.1233826 178225.078125
+288.1074524 1625761.625
+289.1105347 252072.921875
+290.1095886 36846.7109375
+295.1488953 20495.93359375
+303.1419067 26884.521484375
+305.1340332 3374509.25
+306.1193848 1199588.25
+307.1214905 188516.46875
+308.1221619 17648.63671875
+311.1346436 51542.1328125
+312.1146545 33404.03515625
+321.1541138 350119.875
+322.1574707 57011.7578125
+323.0979004 22146.37109375
+323.1445312 1201301.625
+324.1471252 195354.46875
+325.1511536 19340.447265625
+329.1425781 55291.2734375
+338.1420288 40850.56640625
+338.1807861 424462.46875
+338.6443787 33174.77734375
+339.1429138 16383.7783203125
+339.184082 77893.6171875
+347.1481323 22330.64453125
+349.1603699 30179.494140625
+351.1307983 26091.787109375
+358.1644287 16181.5576171875
+359.1429749 51793.6015625
+366.186615 128806.0546875
+367.187561 19828.5546875
+369.137207 25012.205078125
+376.170166 130567.2109375
+377.1567078 69875.6015625
+378.1576843 17887.0625
+386.1651001 31783.509765625
+394.1810608 789850.4375
+394.2402039 24311.8671875
+395.183075 157085.203125
+412.1860046 33020.25
+420.6865845 24635.576171875
+468.2212524 59280.71484375
+483.7212219 31748.587890625
+484.2221069 23554.21484375
+485.2469177 212981.390625
+486.2500916 85078.78125
+488.1906738 58579.9375
+492.2301636 206970.65625
+492.7284546 82284.8828125
+493.2290344 36500.05078125
+495.227356 58185.65625
+503.2250366 23440.583984375
+503.7156677 25501.982421875
+505.2123413 54538.30859375
+506.2056274 63669.390625
+507.2098999 20718.177734375
+512.2278442 53664.265625
+512.7263184 26707.900390625
+521.2362671 31925.35546875
+521.7402954 21448.236328125
+523.2221069 492958.03125
+524.2241211 154237.578125
+525.2280884 31942.171875
+555.2562256 20713.07421875
+559.2421265 18154.8984375
+571.7507324 93016.5390625
+572.2752075 345792.1875
+572.7537231 20782.171875
+573.2808838 87794.375
+574.2796021 26492.17578125
+576.2579956 33764.3359375
+576.758728 29256.982421875
+577.2625732 33531.46875
+577.7578125 24560.572265625
+580.2618408 68296.8984375
+580.7554932 2369454.25
+581.2565308 1687615.75
+581.3664551 25294.31640625
+581.6782227 14205.962890625
+581.758606 687837.25
+582.2592773 147400.859375
+589.267334 98651.921875
+589.7698364 40277.94921875
+590.255127 18810.470703125
+598.274353 49748.34765625
+599.2730103 27292.529296875
+599.7772217 58361.16015625
+606.2572021 36424.89453125
+624.2685547 64317.1015625
+625.2714233 19418.13671875
+673.3248901 378687.46875
+674.3259888 156415.765625
+675.3264771 32212.193359375
+693.288269 24201.91015625
+802.3635864 85511.140625
+803.3633423 39399.703125
+873.4036865 87174.7421875
+874.4048462 54845.2890625
+1001.454956 39184.69921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.536.536.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=536"
+RTINSECONDS=58.37770734
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13436508 16054.3671875
+64.52620697 46390.44140625
+64.5306778 40490.22265625
+64.58200836 33931.1953125
+64.58612061 28003.720703125
+74.40083313 11081.138671875
+74.81168365 10962.8623046875
+82.05455017 11815.4072265625
+94.63820648 11624.6455078125
+110.6274109 10225.509765625
+112.4292221 12685.3994140625
+149.5694275 49092.7890625
+167.0916595 39588.0
+169.0593414 32526.513671875
+175.1178894 265028.125
+175.5848846 11810.2041015625
+176.119873 19864.19921875
+177.0760193 57055.11328125
+178.0601196 325605.125
+178.0778961 17983.7421875
+178.3396301 62758.47265625
+178.3592682 20813.755859375
+179.0636139 23896.380859375
+179.0913696 23738.501953125
+183.0757141 17532.6953125
+186.0860901 95486.125
+186.1044617 19955.041015625
+187.0887909 14501.05078125
+194.1026917 36388.75390625
+195.0864868 3754123.0
+196.089325 376160.6875
+197.0921631 30282.251953125
+200.1021271 24453.58203125
+201.0858765 16350.0078125
+206.091095 142746.140625
+207.0933228 16208.095703125
+209.078125 12548.3134765625
+209.1025085 11807.4169921875
+218.102478 53524.81640625
+234.0980377 12597.802734375
+239.1127472 14525.994140625
+240.0942078 17345.9375
+243.0847321 19148.12109375
+244.1168518 31176.859375
+246.0971069 610027.8125
+247.0998383 75997.4375
+249.0969849 12544.3544921875
+254.1517029 11379.60546875
+257.1228638 100294.515625
+258.1253662 13344.3662109375
+260.1126709 95509.140625
+261.1184998 16511.77734375
+262.1288757 13686.60546875
+270.0972595 125910.359375
+277.1393433 19338.66015625
+278.1179199 12314.42578125
+278.1489868 19279.033203125
+283.1437073 44557.35546875
+287.1234131 159398.921875
+288.0778198 21036.15234375
+288.107605 1529172.875
+289.1104736 205048.671875
+294.116272 19267.703125
+295.1506653 25310.251953125
+303.1446533 29975.447265625
+304.1286011 16715.28125
+305.1044006 58249.54296875
+305.1341553 3001705.25
+306.1192627 1083875.625
+307.12146 182969.359375
+308.1232605 20809.568359375
+311.1351013 39925.64453125
+312.1178589 28987.216796875
+320.1312256 12125.904296875
+321.1541748 343968.3125
+322.1567993 68540.46875
+323.0976562 19991.8125
+323.1446838 1044105.875
+324.146759 132190.875
+325.1495056 25447.048828125
+328.1605225 13129.181640625
+329.1437988 51144.23046875
+331.151947 20517.16796875
+338.1427917 43072.6328125
+338.1807556 347723.40625
+338.6459351 23389.3984375
+339.1418762 14117.685546875
+339.1838379 62785.83984375
+347.1483459 15000.1064453125
+349.1602478 19434.064453125
+351.1317749 13781.1513671875
+359.1452637 57422.86328125
+360.1459351 12699.4091796875
+366.1861877 124322.0
+367.1890564 31838.015625
+368.1560974 22903.8515625
+369.1385803 19507.552734375
+376.1706543 127240.1640625
+377.1568604 74701.515625
+386.1639709 26783.708984375
+389.1605835 19845.701171875
+394.1812744 663406.9375
+394.2404175 20070.296875
+395.1831055 123888.265625
+412.187439 31232.646484375
+413.1668396 13414.7568359375
+421.1818237 22719.76171875
+460.1917725 17670.126953125
+468.2226257 42400.8671875
+469.222229 20831.96875
+478.2046204 13931.2939453125
+483.2215576 16497.26953125
+484.222229 17399.82421875
+485.24823 188658.875
+486.2501831 57983.84375
+488.1863403 62448.3984375
+492.2307434 116760.328125
+492.7297058 79379.4375
+493.2327271 33502.17578125
+495.2266541 55913.359375
+503.712738 19224.21875
+505.2119446 52036.57421875
+506.2065735 53411.34375
+512.2266235 34929.15625
+512.7267456 26294.267578125
+521.2341309 24394.0078125
+523.1345215 23893.77734375
+523.2228394 367238.28125
+524.2244873 122903.203125
+525.2384033 19360.30078125
+555.2561646 20086.41015625
+558.7480469 23375.634765625
+571.7518311 62361.55078125
+572.2752686 279614.90625
+572.7531738 15032.583984375
+573.2807007 70374.984375
+574.2830811 18214.724609375
+576.2625122 41107.62890625
+576.7610474 27608.8984375
+580.2647095 65632.7109375
+580.7557373 1920837.875
+581.2568359 1244380.125
+581.3703003 15781.8056640625
+581.7584229 451832.4375
+582.2600708 102906.515625
+589.2683716 25850.806640625
+598.2732544 30269.533203125
+598.7758789 17885.486328125
+599.2800903 57746.10546875
+599.7785645 102496.28125
+606.2593994 25064.78515625
+624.2684937 47336.5625
+655.3118896 16482.064453125
+673.3247681 341701.625
+674.3276978 141726.734375
+675.3300171 19858.982421875
+693.2918091 20865.853515625
+712.2932129 14821.6552734375
+802.3648682 71112.2265625
+803.3643799 27513.7890625
+873.4006958 79881.984375
+874.4019165 34205.015625
+1001.464661 19722.044921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.537.537.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=537"
+RTINSECONDS=58.48974279
+PEPMASS=598.27001953125
+CHARGE=2+
+51.05472183 15755.400390625
+64.52619934 70683.28125
+64.53048706 46783.09765625
+64.58198547 55607.19921875
+64.5861969 34048.85546875
+64.63793945 33477.44921875
+133.6268311 15219.330078125
+149.5758362 40279.42578125
+167.09198 40786.6484375
+169.059494 30597.248046875
+175.1177368 280116.40625
+176.1214447 18063.900390625
+177.0758209 64738.25390625
+178.0598907 343580.5
+178.3423309 103450.078125
+179.0636749 26614.017578125
+179.0922699 27642.115234375
+183.0751801 26886.361328125
+186.0859833 138956.0625
+194.1023254 49329.87109375
+195.0862885 4303382.5
+196.089035 402397.53125
+197.0914307 38144.4375
+200.1020813 28456.783203125
+201.0851593 17895.130859375
+206.0910492 166899.828125
+207.0911713 16454.0078125
+209.1574554 15629.7158203125
+215.0927277 20050.25390625
+218.1019897 44828.58203125
+234.0985107 18880.7421875
+240.0948486 19340.533203125
+243.085495 18318.564453125
+246.0968323 645559.5
+247.0998993 78470.53125
+249.0946045 19893.0078125
+257.122345 105656.1328125
+258.1234131 27523.56640625
+260.1126709 131594.015625
+270.0970764 134944.234375
+276.1324158 19487.3515625
+277.1402588 24802.564453125
+283.1430054 37095.95703125
+287.1234436 140668.140625
+288.1071472 1572423.0
+289.1100159 245097.109375
+290.1131287 17047.26171875
+295.1485596 18310.7421875
+302.1335449 22679.48828125
+303.1436462 23548.6171875
+305.1336365 3197195.25
+306.1187439 1117594.0
+307.1209717 208519.8125
+311.1349182 46248.45703125
+312.1187439 36810.265625
+321.153656 340936.65625
+322.156311 53849.23828125
+323.144165 1188742.25
+324.1460571 164510.96875
+325.1488647 21760.28515625
+329.1453552 37639.01953125
+338.1428833 34112.71484375
+338.1802063 402070.34375
+339.1816406 78952.890625
+341.1436768 18394.435546875
+349.1578979 20860.31640625
+359.1453247 63402.22265625
+366.1862183 153511.203125
+367.1915894 19185.7265625
+369.1390076 35998.109375
+376.169342 134412.109375
+377.1549377 88112.0
+386.1644897 40670.3046875
+394.1805725 793189.3125
+394.2398071 33011.15234375
+395.1829529 139167.453125
+412.1881714 36098.3984375
+413.1629333 26664.193359375
+432.8375549 17766.904296875
+468.2204895 68691.375
+469.2127686 19861.896484375
+477.2171936 19164.478515625
+483.7211609 32021.1640625
+485.2463989 224051.125
+486.2493286 68016.0546875
+488.1792603 35049.734375
+492.2287903 157215.890625
+492.7301331 99830.234375
+493.2320251 41261.5078125
+495.2268372 57679.9140625
+496.2267761 24301.767578125
+505.2125549 53067.0859375
+506.2061768 44560.75
+512.225647 64851.65625
+512.7229004 29029.85546875
+521.2337036 25748.96484375
+523.2213745 492636.625
+524.2241821 129006.7890625
+525.2321777 34003.33984375
+529.7426758 19121.875
+571.7490234 58225.328125
+572.2749634 316342.15625
+573.2820435 79103.0078125
+576.2589722 38105.52734375
+576.7669067 37517.46875
+580.2611694 100117.0546875
+580.7543945 2465757.0
+581.2554932 1684116.375
+581.7570801 655544.375
+582.2594604 148014.765625
+589.262146 49748.6171875
+589.7658691 56836.37890625
+598.2713013 61928.17578125
+598.7724609 37721.60546875
+599.2729492 28720.654296875
+599.7748413 84828.4375
+606.2545166 27597.021484375
+624.2706909 53460.6328125
+655.3188477 19462.791015625
+673.3234863 448620.78125
+674.3259888 157699.15625
+675.3169556 31089.03515625
+802.3636475 141752.765625
+803.3616943 59966.56640625
+814.6107178 20048.84375
+873.3988037 112796.15625
+874.4021606 46609.98046875
+1001.444275 21676.166015625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.538.538.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=538"
+RTINSECONDS=58.59719549
+PEPMASS=598.27001953125
+CHARGE=2+
+51.33823013 12258.681640625
+58.13411331 17894.181640625
+64.52616882 62783.05859375
+64.53059387 51485.19140625
+64.58193207 47209.9140625
+64.58618927 32893.515625
+64.63791656 24562.306640625
+64.64130402 19603.23828125
+65.03640747 12892.37109375
+66.98810577 14066.7412109375
+73.0928421 12126.4716796875
+74.5515976 11299.5810546875
+74.81183624 16770.072265625
+76.28125763 14754.0048828125
+80.37445831 14199.251953125
+83.41307831 11301.681640625
+149.568924 52609.5078125
+167.0919952 33910.8359375
+169.0596466 32941.015625
+175.1177063 274379.4375
+177.075882 60188.5
+178.0598145 356440.65625
+178.0778351 19794.658203125
+178.3387909 63872.13671875
+178.3573303 27227.0078125
+179.0623016 40436.76171875
+179.0915527 23139.111328125
+182.0919495 13480.728515625
+183.0755768 27477.986328125
+186.0859985 108573.7734375
+194.1022797 40740.68359375
+195.086319 4136804.5
+195.1278381 31002.69140625
+196.0891571 417239.75
+197.0917664 26987.59375
+200.1015167 31482.36328125
+201.0870361 19883.751953125
+206.0912018 151162.453125
+207.0932465 19111.875
+218.1024323 39142.51171875
+234.094986 13343.15625
+240.0950012 25870.224609375
+243.0857086 17689.85546875
+244.1172943 30940.064453125
+246.0968628 678342.4375
+246.1212769 11601.169921875
+247.0999146 72248.6875
+257.1228333 82082.1953125
+260.1125183 117721.8203125
+261.1161194 23307.865234375
+270.0967712 126805.1015625
+271.1021729 14329.2431640625
+276.1353455 23978.3515625
+278.1484375 23069.142578125
+283.1424255 54917.859375
+287.1230164 133466.46875
+288.1072998 1564625.5
+289.1099854 228563.4375
+295.1488342 30464.876953125
+303.1421509 29908.166015625
+305.1338501 3086840.25
+306.1190491 1075588.625
+307.1213379 179811.515625
+308.1237793 25413.439453125
+311.1351624 51945.734375
+312.1141357 32525.431640625
+321.1540833 346676.84375
+322.1568604 43940.33203125
+323.1443176 1135350.0
+324.1470642 206234.875
+325.1424255 13881.01953125
+329.1442261 54622.93359375
+338.1414795 55014.84765625
+338.1806946 381554.78125
+338.646698 14725.943359375
+339.1828613 69200.4375
+341.1461182 20584.40625
+347.149231 34889.09375
+349.158905 17129.978515625
+351.1329651 19977.15234375
+358.1633606 25531.86328125
+359.1465149 50917.55078125
+366.1869812 107885.015625
+367.1878662 24784.0703125
+369.1403198 31325.79296875
+376.1698914 114160.578125
+377.1567078 64132.26171875
+386.1665649 25133.060546875
+394.1807861 673662.0
+394.2402649 18890.9140625
+395.1824646 135858.359375
+412.1893311 47494.1484375
+434.1705933 16535.435546875
+460.196991 19542.388671875
+461.1914673 17557.90625
+468.2198792 59382.4453125
+483.7210999 19810.494140625
+485.2473145 197756.765625
+486.2504578 51416.546875
+488.1877136 55440.203125
+489.1930542 18216.861328125
+492.2290344 168505.34375
+492.7304993 70798.609375
+495.2260437 58716.2890625
+496.2317505 16704.1484375
+503.2203064 19776.603515625
+503.7163391 23804.79296875
+505.2126465 54371.453125
+506.2054749 42145.9296875
+507.2073364 21593.46875
+512.2250366 45822.08203125
+512.7242432 23736.55859375
+521.2356567 43109.26953125
+521.7363281 23800.720703125
+523.2221069 440383.21875
+524.2233887 121987.1796875
+525.2346191 25159.1640625
+529.7400513 31125.494140625
+541.2389526 26927.435546875
+558.7407837 18402.73046875
+559.7442627 20519.494140625
+567.2549438 26164.41015625
+567.7615356 18616.57421875
+571.7496948 89516.9765625
+572.2753906 336608.0625
+573.279541 99462.6640625
+574.2773438 19037.28515625
+576.2632446 28125.97265625
+577.2629395 19351.51171875
+580.2624512 89926.34375
+580.7550659 2374088.5
+581.2562866 1695289.75
+581.3666992 25077.55078125
+581.7581177 655241.125
+581.8637085 20021.9765625
+582.2584229 144779.5625
+589.2657471 37887.98828125
+589.7662354 31192.564453125
+598.2744141 51247.1640625
+598.7780151 25532.220703125
+599.2774658 36501.16796875
+599.7785034 84406.4609375
+606.2594604 56308.71875
+607.2692871 21855.4921875
+624.270874 60226.36328125
+625.2750854 23204.09375
+673.3242188 441201.46875
+674.328064 164341.34375
+675.3311768 28178.712890625
+711.3001709 19740.51171875
+734.4865112 16519.845703125
+778.7277222 14133.166015625
+784.3582764 14903.6572265625
+802.3658447 85479.484375
+803.3676758 32774.6875
+858.3743286 15248.494140625
+873.3983154 93155.640625
+874.4067383 44729.875
+1001.451172 16388.990234375
+1002.450806 20979.21484375
+1058.479736 15307.5908203125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.539.539.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=539"
+RTINSECONDS=58.70687326
+PEPMASS=598.27001953125
+CHARGE=2+
+51.0237999 15381.47265625
+64.52622986 61805.015625
+64.53050232 40908.42578125
+64.58223724 33787.86328125
+64.58615875 34821.828125
+64.63831329 20826.25390625
+64.6415863 18234.759765625
+76.2811203 16808.298828125
+82.05381775 17030.251953125
+96.68719482 18155.5
+149.5741119 42825.19921875
+167.0920868 34212.37890625
+169.0605011 35506.5703125
+175.1177521 295029.375
+176.1198425 28536.732421875
+177.0759888 63517.71875
+178.0599365 330438.34375
+178.3517303 67474.796875
+179.0635223 33115.28125
+179.0915375 18697.419921875
+183.0761566 30068.8671875
+186.0859833 110979.015625
+194.1027222 47315.66015625
+195.0863495 4243958.5
+195.1280823 21633.513671875
+196.0890656 415811.15625
+197.0914307 30204.439453125
+200.1007843 28117.03125
+201.0855713 18713.923828125
+206.0912323 151024.015625
+212.1115112 15879.7041015625
+218.102417 51266.88671875
+243.0865479 25829.25
+246.0969238 628877.375
+247.0993805 67186.8828125
+249.0958405 17102.494140625
+257.122406 115314.1953125
+260.1122742 110450.2734375
+270.0967407 148074.390625
+271.0999146 19419.99609375
+278.1162109 17492.0
+278.1489563 32915.8671875
+283.1430359 34490.37109375
+287.1235352 161974.359375
+288.1072998 1603297.25
+289.1100769 238382.734375
+290.1115417 26903.248046875
+295.1515198 17072.310546875
+303.1427307 44442.63671875
+305.1338196 3279421.0
+306.1190491 1138553.875
+307.1210327 182668.890625
+308.1235962 23331.2421875
+311.1345215 52464.9765625
+312.1180725 38226.3203125
+321.1539917 354156.375
+322.1559753 59783.58984375
+323.1442261 1109707.875
+324.146698 194023.1875
+329.1448364 45996.09375
+331.1501465 21932.779296875
+338.1427002 43099.296875
+338.1802673 445364.4375
+338.6454773 22749.865234375
+339.1828003 64403.51171875
+346.1674194 19224.40234375
+347.651886 16619.46875
+349.1633911 20775.015625
+359.1431885 53463.2421875
+366.1864624 168358.9375
+369.1382751 29316.6015625
+376.1700745 135141.40625
+377.157074 82034.5546875
+386.1638184 35365.0078125
+394.180603 760711.3125
+394.2403259 20652.771484375
+395.1830139 176246.203125
+412.1878052 31981.091796875
+468.2200012 52941.23046875
+469.227356 16567.34765625
+477.2165527 27225.40234375
+484.217804 15235.888671875
+485.246521 230602.171875
+486.250061 66438.0078125
+488.1837158 43919.51953125
+492.2291565 134537.609375
+492.7306213 79490.7890625
+493.2278442 29101.13671875
+495.2268677 55787.328125
+496.2334595 19357.068359375
+503.7203674 29260.716796875
+505.2093811 59525.43359375
+506.2043457 43532.41796875
+507.2002258 32215.556640625
+512.2263794 31737.763671875
+512.7263794 40194.46875
+520.7451172 20373.205078125
+521.2354736 28316.525390625
+521.7383423 21967.228515625
+522.4858398 18429.17578125
+523.2215576 468823.375
+524.2236938 124420.7265625
+525.2283936 28049.115234375
+529.7382202 19160.328125
+555.2603149 21287.6796875
+567.755188 19143.49609375
+571.74823 72868.1015625
+572.2745361 314853.90625
+573.2805786 99190.7109375
+576.2601318 54624.7265625
+576.7626953 29289.40625
+577.262207 27811.33984375
+580.2628784 98299.3359375
+580.7546997 2392848.5
+581.2559814 1538602.375
+581.3665771 22885.142578125
+581.7576294 621940.9375
+582.2584839 125775.640625
+589.2647095 91667.0234375
+589.7652588 48607.640625
+598.2716675 42329.57421875
+598.7774658 40810.609375
+599.7769775 42868.390625
+606.2593994 24131.908203125
+624.2646484 56452.97265625
+656.3034058 22186.3125
+673.3233643 416713.15625
+674.3260498 155810.078125
+675.3295288 29099.1171875
+711.2970581 18868.4453125
+802.3633423 94059.4921875
+803.3685913 35921.91015625
+804.3651123 17660.0859375
+873.3984375 112284.3046875
+874.4033813 55481.28125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.540.540.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=540"
+RTINSECONDS=58.81486368
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13424301 12614.666015625
+58.13725281 15688.1220703125
+63.58873749 13860.1142578125
+64.52623749 49697.41796875
+64.53067017 41924.23046875
+64.58193207 34320.64453125
+64.58615112 28275.0859375
+64.63816071 12036.0703125
+74.81208038 17406.1171875
+77.91212463 12623.705078125
+82.05368805 15858.7060546875
+120.9212112 11080.4072265625
+138.2282867 14872.3984375
+149.5652924 35533.8671875
+149.5776978 23253.91015625
+167.0914307 29959.1328125
+169.0597992 22211.15234375
+175.1175537 267325.1875
+176.1212158 17041.939453125
+177.0759125 52549.66015625
+178.059845 284691.75
+178.3377991 58339.84375
+178.3568726 26044.666015625
+179.063385 22926.10546875
+179.0917206 20830.380859375
+183.075531 25811.15234375
+186.0860901 107424.4765625
+194.1025085 43321.8203125
+195.0862274 3814696.75
+195.1032867 65824.0625
+195.1277618 19351.53125
+196.0890808 412813.71875
+197.0917969 33763.53515625
+200.1022644 23358.90625
+201.0847321 17481.328125
+205.0597839 12940.5341796875
+206.0909424 154179.40625
+212.1137695 13887.0107421875
+218.1022339 73090.0625
+234.0979462 11734.1689453125
+240.0976868 16874.734375
+243.0853424 23009.111328125
+246.0967407 634302.0
+247.098938 82397.0390625
+249.0971985 18349.720703125
+257.122406 105933.8515625
+258.1240234 13111.865234375
+260.0837708 17976.404296875
+260.1120911 119269.796875
+261.115448 13910.9560546875
+270.096283 129576.828125
+271.1018066 16898.896484375
+278.1483154 30084.3515625
+279.1303406 14082.6904296875
+283.1134033 13807.6171875
+283.1434937 60523.1953125
+287.1233826 155892.109375
+288.1070862 1475844.75
+289.1099548 219230.171875
+290.1122131 22015.650390625
+294.1207275 14792.205078125
+295.1483154 24892.177734375
+296.3409729 12106.978515625
+303.1430054 37195.76171875
+304.1314087 12827.3359375
+305.1335144 3049163.75
+306.1185608 1060020.75
+307.1210938 171226.0625
+308.1252747 24977.298828125
+311.134552 55282.44140625
+312.1183472 41223.53515625
+321.1534424 300720.0
+322.1560974 53611.671875
+323.0983276 14015.2587890625
+323.144043 1043930.875
+324.1463623 176219.40625
+325.1507568 17988.072265625
+329.1432495 47741.03515625
+338.1421509 46120.9453125
+338.1801758 368406.84375
+338.6422424 25191.376953125
+339.1828003 62310.16015625
+347.1479187 26328.5
+358.1653442 16376.34375
+359.1448364 75198.2421875
+360.1452637 14562.2060546875
+366.1853027 123682.65625
+369.1384583 36292.61328125
+376.1701355 102120.0703125
+377.1577759 70114.4296875
+378.1536865 15837.9931640625
+394.1206055 22133.5078125
+394.1803589 729867.875
+394.2401428 26761.7265625
+395.1817017 141379.6875
+412.1880188 20351.75
+413.1596069 16804.5234375
+420.6859436 17671.513671875
+428.1964417 13987.0390625
+434.1653137 16219.4697265625
+460.1878967 14663.48828125
+468.2222595 58190.68359375
+477.2182312 16076.5244140625
+478.2106018 17016.099609375
+483.7183533 16618.01171875
+485.2464294 183997.5
+486.2502136 65240.28125
+487.1963196 13970.5517578125
+488.1833191 46652.1875
+492.2288208 148339.609375
+492.7295227 85373.546875
+493.2346191 28907.103515625
+495.2271729 48018.82421875
+496.2214661 15175.7412109375
+503.7183533 16355.3828125
+504.2134705 18432.392578125
+505.2113342 61336.00390625
+506.1988831 40706.08984375
+512.2251587 26581.318359375
+512.729126 25539.642578125
+521.2352295 24691.205078125
+523.2210083 397109.0
+524.2241211 113012.265625
+525.2251587 24479.21875
+529.7406616 16446.76953125
+555.2573853 17752.04296875
+558.7441406 22752.666015625
+567.2567749 18783.1015625
+571.7497559 65050.05859375
+572.2730103 253473.4375
+573.2796021 88633.625
+576.2615967 52588.4609375
+576.7601318 28307.802734375
+577.260498 16818.05078125
+580.2596436 61263.56640625
+580.7540894 2031386.875
+580.8400879 25014.822265625
+581.2553711 1299511.75
+581.336792 19703.693359375
+581.3659058 19214.935546875
+581.7568359 475244.625
+582.2567749 101099.5703125
+589.2664185 40002.90234375
+598.2714233 41840.53125
+598.7733154 25854.5234375
+599.2728882 28037.69140625
+599.7771606 48637.43359375
+606.2562256 28014.046875
+607.2613525 21452.232421875
+624.2641602 52348.0
+667.2919312 14423.1953125
+673.3228149 359937.59375
+674.3250122 131781.265625
+675.3272095 21676.166015625
+693.2871094 18418.107421875
+802.3641968 78390.015625
+803.3654785 34307.5234375
+873.3963013 91243.34375
+874.399231 51170.125
+891.7887573 13621.9228515625
+1001.452271 25289.140625
+1002.460876 15737.3955078125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.541.541.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=541"
+RTINSECONDS=58.92561928
+PEPMASS=598.27001953125
+CHARGE=2+
+54.79710007 13705.1494140625
+58.13415527 17303.41015625
+64.52630615 64700.64453125
+64.53051758 41390.94140625
+64.58221436 31560.740234375
+64.58611298 38200.97265625
+64.63812256 21494.05078125
+64.65353394 16284.6435546875
+74.8117218 18561.04296875
+81.37197876 14979.59375
+83.38601685 14907.01171875
+97.78136444 15208.349609375
+104.5288239 15111.765625
+125.7966537 17983.39453125
+149.57547 28078.974609375
+167.0919342 29321.009765625
+169.0596161 22937.841796875
+171.6829529 14540.501953125
+175.1178894 266547.5
+177.0757141 95154.40625
+178.0420227 20164.98828125
+178.0599976 312513.0
+178.334671 46084.640625
+178.353714 58038.62109375
+179.062149 20601.978515625
+179.0918427 22103.732421875
+183.0760651 25785.26171875
+186.0860596 91870.7421875
+190.0582733 16339.93359375
+194.1027985 34451.1171875
+195.0864258 4417799.5
+196.0892487 415144.78125
+200.1024017 20272.111328125
+206.0911255 139825.5
+207.0938873 18864.09765625
+213.0865326 17163.29296875
+218.1016998 44165.40234375
+239.1119995 24061.05078125
+246.0969849 622170.1875
+247.0993958 58503.890625
+249.0964355 18454.3359375
+257.1224976 90906.5625
+260.1127319 127818.2109375
+261.1159668 19921.5625
+270.0970154 114278.9140625
+283.1423035 44586.55078125
+287.1236572 162403.0
+288.1074524 1661102.625
+289.1101379 259775.671875
+290.1132812 31326.74609375
+303.1455078 36299.4375
+305.1339722 3240035.0
+306.1191406 1136791.25
+307.1213074 211505.484375
+308.1200256 23608.83203125
+311.1347046 51194.46875
+312.1174622 37904.05859375
+321.1540833 344187.1875
+322.1560974 54312.45703125
+323.1445007 1229086.75
+323.1886292 38402.61328125
+323.2094421 23234.05859375
+324.1466064 196357.1875
+325.150238 29579.24609375
+329.1436157 57963.125
+338.1417236 63490.203125
+338.1806641 423452.9375
+338.6423035 26708.76171875
+339.1836853 62706.87109375
+347.1504517 32030.8515625
+359.1436462 76512.28125
+366.1861877 131752.0
+367.1896667 23622.681640625
+369.139801 30153.787109375
+376.1700439 114793.4765625
+377.1562805 103566.3046875
+385.1595764 17965.373046875
+386.1651306 34707.77734375
+394.1809387 742505.375
+394.2405701 31042.21875
+395.1835022 151733.484375
+412.1882629 30298.83203125
+420.6815186 19840.896484375
+452.1924744 16543.05859375
+460.1955566 19760.482421875
+468.2218628 50296.30859375
+485.2474976 178335.03125
+486.25 74221.4453125
+488.1849976 42189.18359375
+489.1844788 20489.443359375
+492.2287292 168809.328125
+492.730896 84599.625
+495.2289124 54217.67578125
+503.710968 19054.1796875
+505.2099915 54486.98828125
+506.1976013 48845.8359375
+512.2276611 32947.7265625
+512.723877 36585.32421875
+521.2414551 21229.1171875
+523.222168 454566.0625
+524.2243652 130316.296875
+525.2288818 23140.857421875
+555.2589722 17361.12109375
+558.744873 17692.2578125
+567.2659912 29642.1015625
+571.7474365 88873.1171875
+572.2752686 312050.40625
+572.7619629 24011.041015625
+573.279541 82949.046875
+576.2626343 27903.87109375
+576.7623291 27055.185546875
+580.2640381 109780.8671875
+580.755188 2416886.25
+581.2563477 1721573.75
+581.3665161 25750.99609375
+581.7576904 576332.625
+581.862915 21606.291015625
+582.2584229 155117.34375
+589.2672729 124943.015625
+589.7681274 75402.859375
+590.2696533 22441.38671875
+598.2706909 50648.37890625
+598.7821655 30219.021484375
+599.777832 79356.5546875
+606.2592163 47881.4140625
+624.2669067 50698.71875
+673.3243408 501254.0
+674.326416 177771.4375
+675.3283691 27283.470703125
+711.2926025 21684.740234375
+753.4888306 16917.296875
+756.6450195 17954.28515625
+802.3621216 99317.2421875
+803.3626709 27353.783203125
+873.3997192 110892.78125
+874.4064941 53789.71484375
+1001.456177 35116.125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.542.542.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=542"
+RTINSECONDS=59.03278888
+PEPMASS=598.27001953125
+CHARGE=2+
+57.56737137 14731.6787109375
+58.13425827 14550.9658203125
+58.13725281 16962.80859375
+64.52631378 61509.35546875
+64.53050232 40069.40234375
+64.5820694 40115.96484375
+64.58613586 31488.734375
+64.63813782 19227.12109375
+74.81210327 16132.8349609375
+74.81591797 15486.1240234375
+80.76873779 14240.3212890625
+82.05410767 16982.26953125
+92.75305176 13660.9365234375
+104.3186569 13536.2861328125
+111.1589432 13191.4697265625
+149.5672607 45117.6796875
+167.0919647 34383.14453125
+169.0597839 42293.59765625
+175.1179962 283417.90625
+177.0758209 60300.5078125
+178.0600891 317908.21875
+178.0778809 17885.12109375
+178.3465881 90199.8125
+179.0916443 28213.02734375
+182.0914459 17799.78515625
+183.0749664 24322.232421875
+186.0864563 108534.3515625
+190.0604706 14788.7724609375
+194.1031189 36646.7265625
+195.0865021 4033807.0
+196.0892639 394827.625
+197.0907135 16707.63671875
+200.1008148 26750.025390625
+201.0850677 21090.60546875
+206.0913086 153295.40625
+207.0935822 28307.603515625
+212.1072388 13653.5595703125
+215.0897217 21330.1171875
+217.1281891 14513.18359375
+218.1027374 56715.98046875
+222.0868683 20381.787109375
+234.0965729 15790.470703125
+239.1159363 15688.9501953125
+240.0973511 38272.38671875
+243.0863647 19281.400390625
+246.0970764 633663.75
+247.0997772 67041.96875
+257.1227722 116966.3671875
+258.125 28289.271484375
+260.1125793 116113.8984375
+270.0972595 105884.6953125
+271.1030579 13930.6923828125
+278.1495667 25658.12890625
+283.1425171 37045.0625
+284.1209717 18444.478515625
+287.1236267 148866.109375
+288.1075439 1600544.0
+289.110199 266201.0
+290.1116333 25002.177734375
+294.1217346 16737.224609375
+295.1503296 33605.4296875
+303.1432495 24708.740234375
+305.1341248 3129128.5
+306.1191711 1106791.5
+307.1217041 178991.265625
+308.1228638 29351.7734375
+311.1348877 49137.56640625
+312.1154175 29408.677734375
+321.1541138 361742.625
+322.1581726 46668.58984375
+323.1445923 1130237.5
+324.1468506 180769.359375
+325.150116 21461.28515625
+329.1442871 33251.60546875
+338.1420288 58093.1328125
+338.1809387 375512.875
+338.6442261 30902.37890625
+339.1829529 61886.2421875
+347.150116 18384.84375
+359.1430054 55805.35546875
+360.1511841 14608.6025390625
+366.1868896 125438.109375
+367.1902161 25286.755859375
+369.1391907 32922.7578125
+376.1707153 121046.109375
+377.1565857 87922.8828125
+378.1610718 23633.755859375
+386.1662903 34055.41796875
+394.119873 18916.443359375
+394.1368408 12675.8779296875
+394.1812134 706523.9375
+395.1836243 142161.109375
+399.3578186 13420.150390625
+412.1870422 24622.884765625
+420.6854553 22399.19140625
+434.1720276 20413.548828125
+468.2209167 45765.40234375
+469.2192078 17221.419921875
+477.2158813 15249.4033203125
+478.2055969 20664.880859375
+485.247406 217983.71875
+486.2521973 68842.828125
+488.1831055 36858.2890625
+492.2294312 169678.484375
+492.7301025 84823.3359375
+493.229187 25954.015625
+495.2252197 48822.2109375
+505.2116089 52997.5
+506.2061462 46176.7578125
+512.2297974 54948.28515625
+512.7278442 23308.88671875
+521.2302246 39453.6640625
+523.2226562 481252.59375
+524.225769 108318.6796875
+525.2258301 30598.244140625
+555.2509766 15529.296875
+558.7498169 22690.4765625
+559.2469482 20361.3671875
+559.7510376 17557.55078125
+567.2613525 23707.35546875
+571.2506104 20791.091796875
+571.749939 97574.9921875
+572.2758179 346249.0625
+572.753479 35207.17578125
+573.2804565 109935.2578125
+576.2634888 49572.35546875
+576.7650757 23389.236328125
+577.2612915 18927.162109375
+577.7608643 31750.009765625
+580.2619019 106659.6015625
+580.7554932 2380425.0
+581.2567749 1624775.25
+581.3677979 24211.078125
+581.7583008 605202.9375
+582.2592163 125611.65625
+589.2672119 67715.1484375
+589.7651367 29784.916015625
+598.2731934 64184.74609375
+598.7730713 41372.109375
+599.2728882 30256.046875
+599.777771 77309.8203125
+606.2603149 40307.3203125
+624.2685547 61858.87890625
+655.3156738 24226.298828125
+656.3034668 19558.703125
+673.3247681 385301.3125
+674.3267212 162556.765625
+675.3276367 31849.796875
+693.2877808 24561.34375
+802.3691406 88081.6640625
+803.3650513 36991.32421875
+873.4017944 98924.96875
+874.4046631 51316.07421875
+1001.46106 20198.79296875
+1084.381958 15856.8544921875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.543.543.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=543"
+RTINSECONDS=59.14205256
+PEPMASS=598.27001953125
+CHARGE=2+
+51.33774948 11500.6796875
+57.22160721 11872.3642578125
+58.13415527 13295.021484375
+64.52620697 53112.12109375
+64.53048706 39987.2109375
+64.58197021 42536.9453125
+64.58618927 28686.7734375
+64.63796997 26084.984375
+64.64123535 19183.75390625
+71.51040649 12401.9072265625
+117.0462952 13366.2841796875
+149.5628204 27811.025390625
+149.5766602 34192.65625
+167.0917816 32375.890625
+169.0597382 33354.44140625
+175.1176605 279747.5625
+177.0754089 56911.2890625
+178.059906 305124.375
+178.3499298 78422.0
+179.0634155 22856.97265625
+183.075531 30692.076171875
+186.0860748 109455.4453125
+194.1030426 28427.357421875
+195.0862885 4217324.5
+195.1277924 35585.90234375
+196.0889893 422749.09375
+197.0910187 35494.59375
+200.10112 23197.265625
+201.0856171 20200.919921875
+206.0908813 173664.140625
+207.0932312 20842.8125
+212.1141968 22424.60546875
+218.1017303 41099.375
+234.0985718 15603.1591796875
+240.0956726 27413.400390625
+243.0889435 16624.177734375
+244.1150818 22904.90625
+246.0968323 660144.875
+246.1256409 30112.046875
+247.0992889 80092.765625
+257.1226807 104149.6484375
+260.1126099 103810.6875
+270.0964661 128044.2109375
+278.1509399 16211.3447265625
+283.1428528 41049.09765625
+287.12323 157611.46875
+288.1072083 1589066.0
+289.1100769 239588.8125
+290.1175842 14310.013671875
+294.1195679 18853.22265625
+295.1494446 17928.314453125
+300.364502 14177.7705078125
+303.1442261 19973.888671875
+305.1336975 3235610.0
+306.1187439 1148620.625
+307.1210327 162342.71875
+308.1228027 18143.6875
+311.1346436 61313.0
+312.1168213 26516.19921875
+321.153656 331057.8125
+322.156189 69927.84375
+323.144104 1154942.25
+323.1890259 31802.646484375
+324.1463318 191906.40625
+325.1489563 19379.548828125
+329.1433411 46606.79296875
+331.1486206 19485.1953125
+338.1423645 44012.6953125
+338.1802673 405362.84375
+338.6420288 24604.66796875
+339.1829224 54013.54296875
+346.1690369 18638.193359375
+347.6515198 17202.02734375
+349.1602478 28599.75
+359.14505 58216.0078125
+366.1860962 97765.671875
+367.1854858 24109.583984375
+369.1380615 36052.21875
+376.1698303 120662.21875
+377.1548767 78437.2734375
+386.1657104 37678.28515625
+394.1806641 731679.5
+395.182373 156694.9375
+412.1885986 29274.744140625
+413.1638489 24389.376953125
+421.1822205 21245.267578125
+460.1920471 22651.25
+464.1741028 20016.037109375
+468.219696 54676.89453125
+478.2039185 17913.78125
+483.7235413 17649.3046875
+485.2467957 202236.890625
+486.2510681 68975.6015625
+488.1837769 56207.6484375
+492.228363 171544.734375
+492.7304077 85941.609375
+493.231781 27276.794921875
+495.2275391 54969.09765625
+496.2337341 18992.40234375
+503.7172241 21848.71875
+505.2111206 50260.18359375
+506.20755 46647.77734375
+512.2267456 28745.357421875
+512.7307739 24393.146484375
+521.230957 19494.490234375
+521.7401733 24267.6015625
+523.2214966 449098.40625
+524.2247314 123758.2890625
+529.7467041 20316.048828125
+530.7497559 15539.57421875
+555.2600098 18130.990234375
+558.7484131 32634.869140625
+559.2434692 16019.173828125
+559.7455444 17792.884765625
+571.21698 16471.677734375
+571.7498169 97108.8203125
+572.2748413 357608.0
+572.7484741 19798.65625
+573.279541 94826.0859375
+576.2571411 32472.865234375
+576.7615967 40983.33984375
+577.2619019 23114.798828125
+580.2613525 78333.859375
+580.7545776 2092441.5
+581.2558594 1406840.625
+581.7575073 587940.6875
+582.2567749 101134.2265625
+589.2647095 63832.0703125
+589.7666016 20728.453125
+598.2720947 61083.54296875
+598.777771 24308.146484375
+599.2767944 21163.81640625
+599.7753296 58206.9453125
+606.2587891 30542.73828125
+624.2676392 57406.21484375
+625.2672119 30518.37109375
+673.322937 391614.625
+674.3272705 144171.703125
+675.326416 44633.61328125
+711.2894897 24755.65234375
+802.362793 92417.6015625
+803.366272 36269.0
+873.3994141 96529.46875
+874.4042358 44724.58203125
+1001.458801 31559.41015625
+1140.63855 22389.734375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.544.544.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=544"
+RTINSECONDS=59.25102243
+PEPMASS=598.27001953125
+CHARGE=2+
+50.18022537 13214.6943359375
+51.01129532 15830.7744140625
+58.13437271 25806.486328125
+58.13741302 14145.140625
+60.49712372 12618.6865234375
+64.52620697 65561.2421875
+64.53062439 50430.18359375
+64.58198547 42610.734375
+64.58615112 28837.470703125
+64.63805389 21227.51171875
+64.64149475 17772.107421875
+87.82881165 15190.1162109375
+99.71566772 14941.4423828125
+149.5648193 33399.3671875
+150.6014709 14536.2294921875
+167.0917511 53108.86328125
+169.0596008 27997.513671875
+175.1178131 267738.65625
+176.1199493 21957.623046875
+177.0760345 48572.36328125
+178.0601044 347771.71875
+178.3479004 87098.3515625
+179.0627441 34171.17578125
+179.0916748 26815.2421875
+182.090271 16583.517578125
+183.0752716 20402.375
+186.0863495 139073.640625
+194.1022797 48801.77734375
+195.086441 4182864.5
+196.0892487 409241.125
+197.091156 26414.478515625
+200.1022644 38194.0078125
+201.0856934 16527.064453125
+206.0910797 176361.359375
+212.1056824 19529.82421875
+213.0849609 17378.109375
+215.0920868 27151.802734375
+218.1027985 55230.81640625
+219.1055603 14001.9873046875
+221.1020813 19261.77734375
+229.6028748 14792.3837890625
+232.1186371 16464.0078125
+234.0979462 17542.6015625
+240.0940094 27187.91796875
+244.1168518 16361.896484375
+246.0969543 639459.125
+247.1000519 64985.7109375
+257.1227112 101572.3984375
+258.1228027 17540.703125
+260.1123962 135756.0625
+261.1167297 23614.82421875
+270.0965271 124894.3125
+278.1178589 17175.654296875
+278.1498108 25998.04296875
+283.1421204 37738.62890625
+287.1236267 170352.203125
+288.1074524 1628512.875
+289.1103516 242078.859375
+290.1117249 20879.685546875
+295.1485901 23227.857421875
+303.1435852 37409.70703125
+304.1306763 15568.4677734375
+305.1340942 3115869.25
+306.1192017 1133749.75
+307.1214294 180242.875
+308.1213379 15084.7421875
+311.1342468 53310.5
+312.1175842 39298.6328125
+321.1541748 323796.96875
+322.1551514 49189.515625
+323.1445007 1102318.375
+324.146698 193825.5
+329.1446228 48350.27734375
+338.1425171 50138.75
+338.180603 393035.46875
+338.6468506 20473.912109375
+339.1825256 82727.2734375
+347.1491394 26496.865234375
+349.1600342 22239.990234375
+351.1309814 20083.275390625
+359.144104 65288.578125
+366.1860352 111922.984375
+367.188385 20043.41015625
+369.1384583 27742.00390625
+376.1708679 109710.2890625
+377.1571045 75379.875
+386.1642761 24144.81640625
+394.1809692 762755.25
+394.2398071 29098.181640625
+395.1838989 153528.203125
+396.182251 24138.529296875
+412.1876831 31050.79296875
+460.1914978 29101.03515625
+468.2216492 62423.75
+469.2208557 18064.798828125
+485.2477417 211531.515625
+486.2484741 55523.97265625
+488.1845398 55797.46484375
+492.2294006 125655.2109375
+492.7294312 86492.5234375
+493.2310486 28269.966796875
+495.228302 54071.1484375
+503.7203369 23206.130859375
+505.2112427 76502.578125
+506.2027588 48056.30078125
+512.2214355 24069.4921875
+512.7263794 20808.556640625
+521.2305298 25323.26171875
+521.7353516 29072.55859375
+523.2224731 540481.875
+524.2249146 143021.3125
+525.2325439 34105.140625
+529.7459106 21995.7734375
+559.2481689 25200.283203125
+571.7514038 108619.71875
+572.2756348 356752.8125
+572.7491455 26713.482421875
+573.2799683 96181.0078125
+574.2814941 22017.12109375
+576.256958 28736.265625
+576.7603149 32872.71875
+577.2647705 28055.236328125
+580.2601929 86187.765625
+580.7553711 2408498.0
+581.2567749 1758478.75
+581.7584229 683781.125
+582.2592773 135323.546875
+589.2670898 79001.484375
+589.7619019 23791.162109375
+598.2739258 76018.140625
+598.7713623 25836.041015625
+599.2799072 32606.38671875
+599.7766113 75183.9140625
+606.2556763 32001.669921875
+624.2680054 46699.61328125
+625.274292 36368.23046875
+655.3154297 20840.064453125
+673.3250122 389726.875
+674.3279419 165171.265625
+675.3283691 22553.3046875
+711.2977295 25182.48046875
+802.3629761 89365.71875
+803.3710327 39254.79296875
+873.3984375 94709.578125
+874.4054565 40300.2265625
+1001.446411 28652.3828125
+1058.487427 20468.365234375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.545.545.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=545"
+RTINSECONDS=59.3598604
+PEPMASS=598.27001953125
+CHARGE=2+
+53.5305748 16511.982421875
+64.52620697 65617.0859375
+64.53064728 51896.53515625
+64.58193207 47505.15625
+64.58613586 37432.22265625
+64.63816833 24330.02734375
+64.6415329 13812.919921875
+65.53308105 13100.2646484375
+75.40621185 12775.1513671875
+82.05404663 14431.240234375
+114.7620926 13421.1142578125
+149.5735321 47229.34375
+167.0916901 35089.8046875
+169.0598755 27645.666015625
+175.1178741 297540.90625
+177.0760193 79621.7421875
+178.0600586 349555.03125
+178.0778503 16799.31640625
+178.3398743 71726.6640625
+179.0634918 32117.404296875
+183.0752258 40482.6796875
+186.0861359 92957.3671875
+190.0610504 14680.9150390625
+194.1018372 47859.98046875
+195.086441 4105012.75
+195.1282959 28766.8515625
+196.0893555 422861.125
+197.0927734 18556.9140625
+200.1021729 30222.84765625
+201.0859222 13602.9228515625
+206.091156 156531.421875
+218.1027832 59722.8359375
+234.0964813 20988.037109375
+240.0962219 22453.37109375
+246.0969543 623200.9375
+247.0997925 67819.515625
+249.0973969 38288.3359375
+257.1226196 91486.1328125
+260.1128235 117169.15625
+270.0970459 131800.265625
+271.1017456 17437.478515625
+278.1490173 26789.994140625
+283.1425476 51280.578125
+287.123291 148815.328125
+288.0778809 21392.82421875
+288.1075134 1620768.75
+289.1103821 241052.21875
+290.1112366 22797.279296875
+294.1169739 25770.08984375
+295.1523132 18768.390625
+303.1422729 35971.765625
+305.1340637 3093963.25
+306.1194458 1104882.375
+307.1217651 166642.59375
+311.1343079 50397.0703125
+312.117157 27147.97265625
+321.1543579 341492.5
+322.1583862 68769.34375
+323.1444397 1076873.625
+324.1471863 178446.453125
+325.151886 21458.419921875
+329.1441345 51947.640625
+331.1516113 20771.974609375
+336.1552734 17447.458984375
+338.1425781 40773.5546875
+338.1806946 390379.65625
+338.645813 21593.109375
+339.1846924 80382.3671875
+346.1686707 17293.208984375
+347.1462708 32441.232421875
+351.1278992 22233.345703125
+359.1446838 58286.54296875
+366.1864014 130541.0703125
+369.1391602 32489.162109375
+376.1708374 115210.171875
+377.1584473 75509.6953125
+386.1632996 28944.103515625
+394.1198425 20909.220703125
+394.1811523 728571.5625
+395.1833191 160731.734375
+403.1612549 15496.1279296875
+411.1612244 14154.2392578125
+412.1897888 36617.62890625
+420.6856995 18740.203125
+464.1732178 16352.0859375
+468.2204285 59559.47265625
+469.2187805 38734.55078125
+475.2198486 13884.439453125
+477.2172852 24455.51953125
+483.7221069 19614.9609375
+485.2474976 192105.6875
+486.2493591 68655.3359375
+488.1888428 50554.6015625
+492.2299194 161631.40625
+492.7306519 103296.734375
+493.232666 38501.53125
+495.2270203 58489.7265625
+503.7195129 19885.595703125
+505.2120056 39684.0625
+506.2064819 48271.11328125
+512.2249756 33176.1484375
+512.730896 32205.17578125
+513.2296143 19356.666015625
+521.2336426 43792.6953125
+521.7334595 24984.916015625
+523.222229 474127.71875
+524.2255249 139729.8125
+525.2272339 22952.267578125
+554.2658081 17813.091796875
+555.2560425 21132.615234375
+558.7477417 24371.541015625
+571.2305908 16255.03515625
+571.7495728 94718.40625
+572.2750854 322591.71875
+573.2801514 103850.8828125
+574.2772217 26739.322265625
+576.262085 47360.1953125
+576.7659302 35696.1328125
+577.269165 17901.16796875
+577.7675781 22573.390625
+580.263916 76966.2734375
+580.7553101 2522106.5
+581.2566528 1536130.25
+581.3659668 19156.908203125
+581.7583008 581400.0625
+581.8636475 23713.87109375
+582.2595215 126241.4375
+589.2670288 67278.8046875
+589.7668457 33510.39453125
+598.2723389 40343.44140625
+598.7749634 20872.78515625
+599.2769165 18275.861328125
+599.7774658 105899.140625
+606.2589722 21079.15625
+607.256897 22431.9921875
+624.2680664 57642.37890625
+673.324585 418708.625
+674.326416 150761.390625
+675.3294678 28217.4453125
+711.2988281 22690.931640625
+802.3660278 93838.7734375
+803.3676758 45796.40234375
+858.3647461 19989.96875
+873.4004517 101470.6640625
+874.4011841 46995.32421875
+1001.467773 20982.642578125
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.546.546.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=546"
+RTINSECONDS=59.46915699
+PEPMASS=598.27001953125
+CHARGE=2+
+50.22873688 14324.38671875
+53.62174606 15430.748046875
+58.1341095 16337.091796875
+64.52619171 59798.4375
+64.53045654 49302.921875
+64.58193207 47348.2265625
+64.58612061 39054.1796875
+64.64157867 17959.39453125
+74.0553894 14352.5849609375
+76.28092957 16749.748046875
+82.05407715 24515.990234375
+102.7656631 13698.1025390625
+118.2623596 15307.064453125
+121.4572525 13105.6025390625
+149.565918 51497.0546875
+149.5782318 17097.8984375
+167.0916595 36085.94140625
+169.059967 30918.62890625
+175.1176147 291442.75
+176.1213531 18002.2109375
+177.0757904 60670.89453125
+178.0437317 22997.6796875
+178.0598602 305267.3125
+178.3401642 85185.5078125
+179.0630341 32769.3046875
+179.0911865 16289.3115234375
+183.0767975 17605.5390625
+186.0857086 121497.390625
+194.1020508 49841.4765625
+195.0862427 4466047.0
+196.0891266 474791.59375
+197.0922546 36978.06640625
+200.0998383 17283.234375
+206.0910492 136055.828125
+207.0930328 23038.37109375
+215.0899506 25637.654296875
+218.1016235 51177.3671875
+233.1271515 21545.33984375
+240.0970612 31204.884765625
+243.0860291 26969.3828125
+246.0968018 635776.4375
+247.0997467 69376.1328125
+257.1228333 98164.5234375
+260.1117554 89957.109375
+261.1167297 18883.328125
+270.0968628 151630.46875
+276.2477722 17327.4609375
+283.1424561 48582.5234375
+287.1231689 153964.78125
+288.1071472 1560215.25
+289.1099548 224000.75
+290.1109619 24813.103515625
+294.1163025 22632.96875
+295.1485291 33021.453125
+303.142395 34769.32421875
+304.1259155 15381.7373046875
+305.1336365 3222515.75
+306.1187744 1197445.625
+307.1210327 202083.390625
+308.1237793 37246.86328125
+311.134552 58035.5625
+312.1163635 39872.0390625
+321.1537781 342307.53125
+322.1562805 73164.3359375
+323.1440125 1116928.375
+324.1465149 200897.71875
+328.15802 28745.974609375
+329.1431274 45566.85546875
+338.1422729 42767.73828125
+338.1801453 405723.53125
+339.1828003 70799.2890625
+346.1724243 22266.732421875
+347.1461487 40500.51171875
+358.1640015 19774.369140625
+359.1448669 61900.25390625
+366.1856079 146002.40625
+367.1883545 32610.65625
+369.1351929 33399.0546875
+376.1700134 111840.703125
+377.155304 69862.65625
+386.1640625 29639.837890625
+386.5153503 16674.17578125
+389.155426 17528.072265625
+394.1804199 778273.25
+394.2397766 35286.43359375
+395.1815796 169279.78125
+396.1844788 23448.462890625
+400.9493103 15257.8662109375
+412.1890259 23928.4453125
+420.684967 20522.91796875
+460.1890564 20332.330078125
+468.2221985 43727.8203125
+474.7127075 20863.21875
+477.218811 22025.88671875
+478.2110901 24289.2890625
+485.246521 216274.71875
+486.2495117 56737.58984375
+488.1864319 45689.9140625
+492.2289429 206354.96875
+492.7302551 96450.1953125
+493.2321472 31293.8828125
+495.2260742 60644.34375
+503.7126465 26413.873046875
+505.2107544 87097.828125
+506.2027283 39515.34765625
+507.204834 23179.951171875
+512.2235107 36691.3515625
+512.7266235 20657.01171875
+521.2318115 27684.607421875
+521.7354736 17665.92578125
+523.1339722 30932.26953125
+523.2213135 498806.5
+524.2232666 134332.984375
+559.2436523 17932.291015625
+567.2572021 25661.20703125
+571.7478638 130684.8359375
+572.2741089 351749.59375
+572.7462769 21944.578125
+573.2786255 106865.890625
+576.2589111 45812.49609375
+576.7608643 44134.67578125
+580.2598267 69754.5
+580.7542114 2556974.25
+581.2555542 1873448.75
+581.7573242 670411.375
+582.258667 122477.1171875
+589.2654419 80420.3359375
+589.762207 59816.359375
+598.2758179 59622.6875
+598.7728882 40753.87109375
+599.2783203 36600.33203125
+599.7767334 62485.25390625
+606.2559204 38719.4140625
+624.2683716 61404.703125
+655.3135376 26826.927734375
+673.3222046 399017.375
+674.3257446 175746.546875
+675.3291016 22632.47265625
+802.362854 95768.390625
+803.3613281 27659.408203125
+873.3972778 103068.8671875
+874.4014282 33912.23046875
+875.3973999 22474.330078125
+1001.458984 30001.6171875
+1002.458679 19986.349609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.547.547.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=547"
+RTINSECONDS=59.57688807
+PEPMASS=598.27001953125
+CHARGE=2+
+52.64627075 9723.478515625
+58.13457108 12849.244140625
+64.52631378 55276.06640625
+64.53064728 35175.87109375
+64.58206177 38939.93359375
+64.58622742 27056.5390625
+64.63819122 19866.052734375
+64.64141083 13927.4306640625
+67.04806519 10434.2353515625
+68.46487427 11103.1142578125
+69.77050781 11825.3154296875
+76.28111267 10817.416015625
+82.05403137 13258.9892578125
+86.41077423 11620.0341796875
+95.24961853 10538.068359375
+103.73526 10820.7890625
+149.5708008 41592.61328125
+167.0914612 41934.37109375
+169.0604553 28528.896484375
+175.1179352 282498.59375
+176.1195984 15723.4423828125
+177.0762177 64807.97265625
+178.0601044 312818.4375
+178.0956573 12240.220703125
+178.3444061 81180.1171875
+179.0634003 27738.681640625
+179.0907593 13111.1982421875
+182.0917969 12771.8720703125
+183.0754395 25529.83203125
+186.0862122 100952.3671875
+194.1029053 29500.298828125
+195.0864868 3770620.0
+195.1280212 26608.576171875
+196.0893555 373797.53125
+197.0914307 20421.42578125
+200.1013031 37400.79296875
+206.091217 160702.28125
+209.1014252 15028.2802734375
+213.084549 15298.4921875
+214.4143372 12687.0615234375
+215.0904694 15044.341796875
+218.1028595 33141.375
+222.0854797 14942.4150390625
+240.0974884 17262.38671875
+243.086319 14445.828125
+246.0970612 606313.375
+247.1000061 76893.1640625
+248.1109467 13506.89453125
+249.0969696 15625.537109375
+257.1230469 92367.421875
+260.1130371 110978.5859375
+261.1187744 15892.0126953125
+270.09729 116866.921875
+271.1016541 14122.2490234375
+276.10495 18940.541015625
+277.1387634 15666.5166015625
+278.1496582 26020.462890625
+283.1433105 40790.60546875
+287.1235962 150412.296875
+288.1075134 1569462.75
+289.110199 224444.90625
+290.1131897 18637.345703125
+295.1485291 34058.47265625
+302.132843 21727.58984375
+303.1449585 25041.984375
+304.1291504 17630.4609375
+305.1340637 2911819.75
+305.2156982 16530.271484375
+306.1192017 1025887.375
+307.121582 164701.4375
+309.1297913 13856.92578125
+311.1347351 43423.3046875
+312.1188049 38049.0859375
+321.1542664 310258.75
+322.1572571 52550.7890625
+323.0991211 13896.71875
+323.1445007 1013410.25
+323.1888733 26973.931640625
+324.1468811 152764.375
+325.1513977 22605.439453125
+328.1628113 18468.302734375
+329.1439819 51435.57421875
+331.1503906 17248.80859375
+338.1430359 39699.00390625
+338.1806946 368860.15625
+339.1828918 60828.609375
+346.170166 15179.416015625
+347.1480103 27868.556640625
+349.1600037 16046.3291015625
+351.1300964 16078.8662109375
+358.1699524 12597.5849609375
+359.1445618 62454.4453125
+366.1860046 126347.1640625
+367.1881104 22559.90234375
+369.1401978 19067.048828125
+376.1705933 109312.7890625
+377.1585388 87485.6171875
+386.1641235 37525.62109375
+389.1552124 15388.61328125
+394.1809692 675391.5625
+394.2401123 22826.529296875
+395.1826782 124904.8515625
+412.1885071 25017.037109375
+418.8123169 13642.6181640625
+420.6835938 16099.2431640625
+428.1983032 17781.77734375
+434.1697693 22607.3359375
+460.1894836 21822.568359375
+468.2221985 41586.7109375
+477.2176514 20520.099609375
+484.2204285 17178.20703125
+485.247406 201612.609375
+486.2506714 52113.01953125
+488.186615 49674.75390625
+489.1886902 15662.328125
+492.2295837 155786.921875
+492.7295227 82069.484375
+493.226593 25760.05078125
+495.2294006 42995.23828125
+503.717041 23184.74609375
+505.2119751 53605.16796875
+506.2033691 51378.9375
+512.2270508 25409.990234375
+512.7282104 40573.1328125
+521.2323608 40840.14453125
+523.2224121 411629.125
+524.2246094 94839.8828125
+525.229187 24480.40625
+555.24823 18822.15234375
+558.7426758 26334.75
+571.7495728 71203.3203125
+572.2752686 298025.5
+572.7532349 22909.5234375
+573.281189 100771.359375
+576.2630615 53562.7578125
+576.7615967 22295.826171875
+577.2644043 19675.1328125
+580.2618408 53358.3046875
+580.7550659 2041583.625
+581.2563477 1424185.0
+581.3652344 25017.052734375
+581.7582397 555632.4375
+582.2590942 106771.0625
+589.2675171 24360.353515625
+598.2738037 43702.71484375
+598.7758789 33517.9140625
+599.2774658 43160.28515625
+599.7774658 80608.4765625
+606.256897 32414.8203125
+624.2698975 51747.1875
+625.2739258 16536.5234375
+655.3134155 21989.025390625
+673.3243408 343393.75
+674.3269653 144260.5625
+675.326355 36721.62109375
+693.288147 23140.619140625
+694.2959595 14773.3701171875
+711.3030396 16546.8046875
+712.2997437 15151.6123046875
+802.3658447 82189.3125
+803.364502 26227.517578125
+873.3986206 81741.2109375
+874.4098511 36469.97265625
+1001.461304 20815.1640625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.548.548.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=548"
+RTINSECONDS=59.68858874
+PEPMASS=598.27001953125
+CHARGE=2+
+53.79679489 17049.04296875
+58.13424683 26760.39453125
+58.25331497 17474.92578125
+64.52631378 78375.0234375
+64.53074646 52566.26953125
+64.58209991 58467.7109375
+64.58621216 32804.1875
+64.63844299 18357.513671875
+64.64147186 15275.7109375
+72.72676086 16021.685546875
+149.5664062 34945.953125
+167.0923004 31592.583984375
+169.059906 35535.953125
+175.1179199 296411.0
+177.0761566 62782.9765625
+178.0599976 351944.0625
+178.3477783 110857.4453125
+179.0635986 35971.61328125
+179.0921021 22581.833984375
+183.0746613 24758.984375
+186.0861664 97197.6484375
+194.1024323 34884.1328125
+195.0865021 4472961.0
+195.1281586 23243.763671875
+196.089386 450310.03125
+196.1106567 26900.712890625
+197.0917358 31302.95703125
+200.103363 18488.8203125
+206.0910797 154533.953125
+218.1022034 49437.88671875
+222.08461 21346.916015625
+246.0970764 684837.75
+247.0994873 97140.6640625
+257.1226501 106153.2578125
+260.1129761 128757.3828125
+261.1186829 20420.60546875
+262.121582 18235.0390625
+270.0968323 131069.5859375
+283.1413879 33633.140625
+287.1233826 159739.03125
+288.1074829 1631598.125
+289.1104126 259810.828125
+294.1185913 25453.388671875
+303.1436462 38390.390625
+305.1340942 3338551.75
+306.1192322 1195861.0
+307.1211243 204926.828125
+311.1349182 65740.9296875
+312.1158447 36578.00390625
+321.1542358 373217.65625
+322.1559448 53278.57421875
+323.1445923 1155919.375
+323.1888733 37925.72265625
+324.1467896 196977.109375
+325.1523438 24734.513671875
+329.1440735 46844.7890625
+338.1428528 53619.56640625
+338.180603 438279.6875
+339.1831055 91829.4765625
+346.1721802 20881.580078125
+347.1505737 24779.912109375
+349.1600037 30760.91015625
+359.144989 78663.96875
+360.145752 21908.591796875
+366.186676 134776.328125
+367.1876831 25203.888671875
+369.1384583 31511.59375
+376.1703186 121857.046875
+377.1542969 88659.484375
+394.1809082 769964.5
+395.183075 160487.90625
+396.1827698 21582.677734375
+412.1891479 47256.78515625
+413.1637573 21216.49609375
+452.1763306 21695.046875
+460.1883545 22016.36328125
+468.2203064 47803.046875
+477.2184143 27598.248046875
+478.2061462 21030.46484375
+483.7192688 33302.6484375
+485.2472229 223144.390625
+486.2512207 68977.65625
+488.1875 68780.9921875
+492.2294006 195577.5625
+492.7310791 97633.7109375
+493.2304688 42784.64453125
+495.2263794 64913.95703125
+505.2139282 52521.84765625
+506.2018127 61769.71875
+506.7245483 22454.666015625
+512.2244873 59251.57421875
+512.7244873 35267.9140625
+521.2350464 40622.03125
+521.7290649 37045.80078125
+523.222168 537084.0
+524.2247314 126232.109375
+525.2281494 34081.46875
+571.750061 101008.9921875
+572.2749634 370924.53125
+572.7496338 32852.81640625
+573.2791748 106121.015625
+574.2793579 32626.787109375
+576.2622681 54450.01171875
+576.7628174 46698.09765625
+577.2636719 26034.83203125
+577.7593384 24369.314453125
+580.2617188 104931.4453125
+580.755188 2878953.75
+581.2565308 2041040.75
+581.3670044 28025.83984375
+581.758606 736192.9375
+582.2591553 144625.046875
+589.2665405 126719.5859375
+589.7683716 99068.6171875
+598.2739258 68642.671875
+598.7739258 40789.89453125
+599.7785034 49956.0
+606.2542725 38929.41796875
+624.267395 71436.109375
+625.2694702 23750.060546875
+673.3244019 456000.96875
+674.3276367 198983.625
+675.3312988 48980.265625
+741.875061 18317.39453125
+802.366272 122695.5078125
+803.3700562 53992.2890625
+873.4019775 129698.3515625
+874.4053955 64623.05078125
+1058.457886 22545.9609375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.549.549.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=549"
+RTINSECONDS=59.79574032
+PEPMASS=598.27001953125
+CHARGE=2+
+57.05458832 12399.4150390625
+64.5263443 50164.21484375
+64.5304718 36574.1484375
+64.58202362 39514.5625
+64.58625793 32762.423828125
+64.63831329 17908.908203125
+64.64167786 18961.357421875
+69.14548492 12589.1552734375
+80.76337433 13556.9365234375
+82.05406189 17541.5390625
+90.64957428 11488.771484375
+100.8166275 12898.6591796875
+104.4703979 13497.0703125
+110.7150726 12711.7841796875
+113.7771378 15817.9931640625
+133.7377167 12330.3212890625
+138.3929443 11377.3564453125
+145.7026978 14243.701171875
+149.426239 12643.0888671875
+149.5681 45510.04296875
+167.0917816 35104.0546875
+169.0602875 26968.419921875
+175.1178589 284393.90625
+176.1205902 23315.25
+177.0759735 69650.2578125
+178.0601044 332255.28125
+178.0776825 11519.275390625
+178.3415985 69353.421875
+179.0632782 22405.791015625
+179.0919647 28910.7890625
+183.075531 26431.474609375
+186.0862122 111638.8671875
+190.1092377 13120.083984375
+194.1029205 34271.28125
+195.0864716 4011045.25
+196.0892944 415564.28125
+197.0905304 24771.734375
+200.102066 15780.501953125
+201.0869904 19062.22265625
+202.0601044 12736.77734375
+206.0911713 138511.09375
+218.1023865 58543.8046875
+232.7303009 12643.908203125
+234.0987396 21275.853515625
+240.0954285 30186.0546875
+243.0865936 17745.642578125
+244.1175232 18858.35546875
+246.0971527 616209.3125
+247.1000671 72008.3515625
+248.1106415 18509.27734375
+257.1230164 102770.21875
+258.1253052 19110.806640625
+260.1124878 126587.328125
+261.1158752 19468.03515625
+270.0971069 134029.28125
+276.1332703 16735.625
+278.1496582 30610.203125
+283.1435547 61943.20703125
+287.1236572 144975.546875
+288.1075439 1581686.75
+289.1100159 251078.75
+290.1130066 24032.71875
+294.116272 15673.9296875
+295.1488647 24918.90234375
+303.1427917 37810.73046875
+305.1340637 3063716.0
+306.1192932 1083785.125
+307.121521 183329.71875
+308.1243591 27494.603515625
+311.1354065 38311.78125
+312.1167297 36440.21875
+318.1417847 18068.572265625
+321.1541748 291925.84375
+322.1570129 47091.60546875
+323.1444702 1093623.5
+324.1469727 166550.28125
+328.1618652 14889.705078125
+329.1442261 59597.22265625
+337.1621704 15017.7705078125
+337.4866943 14207.9765625
+338.1419067 55555.6796875
+338.1808167 390324.0
+339.1409607 20547.6875
+339.1833801 75704.9921875
+340.1860962 14419.5283203125
+347.1491699 26849.958984375
+349.1623535 23407.099609375
+359.1447144 68309.6484375
+360.1452637 15765.3955078125
+366.1858826 109837.09375
+367.188446 28574.771484375
+369.1394958 25599.658203125
+376.1712341 110872.828125
+377.1573792 69171.453125
+378.1574097 18921.794921875
+386.1635437 26357.74609375
+394.1361694 14555.048828125
+394.1810608 714399.8125
+395.1827698 116744.0625
+396.1873169 18335.4296875
+412.1940918 25392.3046875
+413.1662903 17920.681640625
+420.6812744 25874.234375
+452.1846924 15639.1982421875
+460.1910706 15061.8720703125
+468.2211609 60079.58203125
+469.2138367 22395.61328125
+474.7094727 21949.568359375
+485.2476807 219702.46875
+486.2514343 65066.27734375
+488.1892395 36895.14453125
+489.1923523 16600.75
+492.2293701 154441.140625
+492.7303467 96602.375
+493.2302856 23767.068359375
+495.2275085 52547.09765625
+503.7173157 28042.76171875
+504.2182007 15040.0634765625
+505.2110596 47794.5234375
+506.2041931 44702.0078125
+507.1929016 16575.822265625
+512.2260742 32507.52734375
+512.7233276 24486.330078125
+520.7362671 16075.87890625
+521.2320557 36499.203125
+523.2225342 416737.71875
+524.2254639 110498.9921875
+558.7450562 25792.068359375
+567.2556763 18313.423828125
+567.7615967 16119.734375
+571.7505493 60307.10546875
+572.2753296 245295.328125
+572.7490845 28097.423828125
+573.2818604 95182.53125
+576.2613525 55170.34375
+576.7653198 32925.21875
+577.260376 20662.0859375
+580.2625732 69226.71875
+580.755188 2137375.25
+581.2564697 1367251.0
+581.7578125 516141.46875
+582.256958 80218.8125
+589.2645874 43309.1484375
+589.7640381 17837.48046875
+598.2715454 56750.671875
+598.7745361 23749.884765625
+599.2744751 29983.5859375
+599.7766113 73883.0546875
+606.2565308 30366.44921875
+607.2568359 15516.09765625
+624.2647095 41581.38671875
+625.2751465 25030.892578125
+673.324646 407393.71875
+674.3265381 167786.1875
+675.3336792 30380.123046875
+693.2848511 22314.740234375
+711.2966919 25189.1171875
+723.8410645 14516.6533203125
+802.3638916 84152.875
+803.3627319 32957.65625
+873.4008789 119929.265625
+874.4069214 42900.76171875
+1001.449646 18311.97265625
+1049.708252 18105.0390625
+1058.47937 18439.7734375
+1214.471558 15318.65625
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.550.550.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=550"
+RTINSECONDS=59.90566213
+PEPMASS=598.27001953125
+CHARGE=2+
+63.71593857 11465.58203125
+64.52631378 55423.12890625
+64.53053284 37079.57421875
+64.58207703 41213.84375
+64.58628082 30442.060546875
+64.63813782 18741.900390625
+66.86934662 13228.654296875
+82.054039 18708.669921875
+92.0071106 12915.0361328125
+149.5765076 34644.0625
+155.0808716 16699.751953125
+160.5927887 13124.30859375
+167.0914764 30685.28515625
+169.0592651 20575.59375
+175.1178894 310519.09375
+176.120285 14639.568359375
+177.0761261 75183.34375
+178.0601807 346760.65625
+178.3518982 64570.51953125
+179.0626678 25705.3984375
+179.0918121 24562.53515625
+183.0752258 28106.208984375
+186.0861206 107466.0859375
+190.0591125 13770.78515625
+194.1022797 34763.875
+195.0449524 24426.384765625
+195.0865479 4167476.25
+196.0892487 407495.3125
+197.0906067 16950.947265625
+200.1013641 27028.689453125
+201.0857391 24971.755859375
+206.091217 176315.421875
+207.092453 25610.982421875
+207.1131897 18394.466796875
+212.113327 28069.73828125
+218.1029663 61176.58203125
+222.083725 16132.4677734375
+232.1167755 18590.376953125
+240.0947876 24947.16796875
+243.0852966 26617.779296875
+246.0970612 670616.1875
+247.1000061 72716.6171875
+249.0969543 15948.3671875
+257.1228943 105869.4453125
+260.112854 141114.046875
+267.1082153 17662.23046875
+270.0969849 143079.21875
+283.1436462 41023.28125
+287.1235962 161889.078125
+288.107605 1616710.5
+289.1107178 221218.796875
+290.1138 17791.287109375
+295.150116 30604.63671875
+303.1430054 31397.673828125
+304.1274109 22579.67578125
+305.1044617 56216.16796875
+305.1342163 3078413.25
+306.1193542 1131093.125
+307.1217346 168623.953125
+308.1227112 21274.654296875
+309.1276245 13656.2890625
+311.1356812 38311.61328125
+312.1165771 31723.86328125
+318.1433105 16207.384765625
+320.1322021 15290.75390625
+321.1543884 303020.96875
+322.1576538 62989.078125
+323.1446228 1114355.5
+324.1473389 184065.6875
+325.1524963 24031.775390625
+329.1434021 33018.859375
+330.1544495 15113.287109375
+338.1422119 49303.5234375
+338.1808167 413916.09375
+339.1823425 76989.3671875
+344.2900085 15909.8095703125
+346.1716003 15397.46484375
+347.1498718 35400.9765625
+351.1347961 20725.525390625
+358.1660156 19936.927734375
+359.1453552 54103.50390625
+366.1867981 144626.3125
+367.1885376 23185.37890625
+369.1374207 36867.171875
+376.1705627 127824.359375
+377.157074 82753.7265625
+386.1638794 38133.2109375
+394.1811829 698660.25
+394.2394409 23120.017578125
+395.1824341 150791.796875
+396.1875 22121.234375
+412.1895447 36625.41015625
+420.6806335 26147.52734375
+460.191925 24147.82421875
+468.2229309 64649.265625
+469.2261658 18152.232421875
+478.2097778 20142.201171875
+483.2298279 23989.771484375
+485.2481079 249260.015625
+486.251709 64044.609375
+488.1862793 52799.52734375
+492.2296448 178537.296875
+492.7307434 72787.109375
+493.2354431 18236.45703125
+495.2276611 47771.5546875
+496.2296143 15830.1640625
+503.2229614 21921.7578125
+505.2108765 54488.65234375
+506.2067566 65766.09375
+507.2029114 18593.16015625
+512.225647 47997.58203125
+512.7269897 26599.6484375
+521.2357788 34630.328125
+521.7362061 23316.2890625
+523.2226562 433341.90625
+524.2255249 136120.453125
+525.2293091 18249.296875
+529.7490845 25822.990234375
+555.2503662 14744.47265625
+571.7504272 68812.4375
+572.2747803 296333.15625
+573.2811279 90080.578125
+576.2614746 20622.47265625
+576.7588501 28534.658203125
+580.2625732 99423.203125
+580.7554932 2031208.375
+581.2567749 1476455.125
+581.758667 593921.25
+582.2593994 108062.6328125
+589.2661133 44295.13671875
+589.7641602 35126.08203125
+598.2741089 68893.5703125
+598.7773438 21530.349609375
+599.2771606 39611.26953125
+599.7787476 61107.6953125
+606.2572021 30051.216796875
+624.2684937 44733.8828125
+673.3249512 360740.84375
+674.3270264 137119.5
+675.3280029 21883.611328125
+711.2990112 16762.599609375
+802.3664551 108522.359375
+803.3716431 32810.3828125
+873.402771 111957.359375
+874.4064331 40006.25390625
+1001.452698 25415.869140625
+1058.480225 22931.587890625
+1237.591309 15496.0341796875
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.551.551.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=551"
+RTINSECONDS=60.01477638
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13420486 13008.8583984375
+62.83913422 13669.291015625
+63.02080536 13840.2763671875
+64.52620697 65765.1328125
+64.53042603 42852.8671875
+64.58197784 43030.96875
+64.58604431 34330.6640625
+64.63824463 17693.748046875
+82.0537262 17999.857421875
+86.17173767 13382.5947265625
+103.2403946 13028.65234375
+131.7658386 17111.435546875
+133.236908 18029.064453125
+149.5695343 58826.71875
+167.091568 34232.69140625
+169.0600586 27840.62890625
+175.1178131 302000.34375
+176.1213989 17410.447265625
+177.0762177 61243.33984375
+178.059967 352388.0
+178.076767 12785.337890625
+178.3447723 99913.046875
+179.0636444 32564.8828125
+179.0918274 27585.46484375
+182.0914612 18205.7265625
+183.0758057 19732.29296875
+186.0858765 108888.1796875
+194.1026764 47780.5
+195.08638 4273420.0
+195.1282806 24292.892578125
+196.0891113 417688.90625
+197.0907898 26416.9765625
+200.102005 20484.015625
+205.7449493 14414.6337890625
+206.0912018 162258.25
+218.1025543 50446.796875
+234.0971832 14874.1416015625
+240.0959167 31736.916015625
+243.0866852 17576.232421875
+244.1178284 21857.857421875
+246.0740814 12148.1884765625
+246.0969696 636506.875
+246.1257172 31984.68359375
+247.100296 83458.9375
+249.0971527 24556.83203125
+257.122467 107247.2265625
+260.1127014 113126.9375
+267.1101379 17753.6875
+270.0964661 124232.953125
+276.1334534 20681.703125
+278.1188965 24668.009765625
+278.1505432 20271.337890625
+283.143158 47408.59375
+287.1230774 142319.4375
+288.1073608 1659876.375
+289.11026 247828.890625
+294.1197815 28876.599609375
+295.1510315 36169.8046875
+303.1420288 27494.00390625
+304.1290283 17003.3828125
+305.1339111 3281254.5
+305.2152405 21493.96875
+306.0593567 19855.4140625
+306.1192017 1175624.125
+307.1210632 209807.390625
+308.1228027 33815.21875
+311.1378784 41622.2578125
+312.1167908 46615.55078125
+321.1539612 349507.15625
+322.1564331 67674.8203125
+323.098053 20573.7265625
+323.1443176 1193667.125
+324.1462402 168452.375
+325.1479492 19115.396484375
+329.1451416 45955.3984375
+331.147583 17014.0703125
+338.1421204 39729.87890625
+338.1805115 404656.25
+338.6471863 15302.41015625
+339.1417542 18462.6796875
+339.1830444 72605.6953125
+351.130249 19662.546875
+358.1674805 17126.484375
+359.1437988 57830.5625
+366.1856689 139554.609375
+369.1374207 31466.7265625
+376.1701965 123482.6953125
+377.1575317 75472.3828125
+386.1628723 18717.224609375
+394.1807861 727580.6875
+395.1824341 141776.140625
+397.6838989 17568.568359375
+412.1864624 40753.23828125
+420.6827393 23611.328125
+460.1911316 26983.138671875
+468.2203369 42781.68359375
+477.2199402 23259.59375
+483.71521 24457.44921875
+485.2471924 192015.0625
+486.249176 64045.58984375
+488.1853333 39340.25390625
+492.2289429 171137.90625
+492.7320251 101142.1171875
+493.2324829 28946.43359375
+495.2263794 68971.8515625
+496.2306824 17596.2890625
+503.2224731 18314.427734375
+505.2109985 56199.47265625
+506.2012024 54203.41796875
+512.2282715 49484.25390625
+512.7197876 20658.83984375
+521.2351074 38276.96875
+523.2220459 479883.78125
+524.2243652 144282.203125
+525.2330933 25286.5859375
+559.2419434 17895.90625
+571.7484131 99055.7734375
+572.2746582 312267.84375
+573.2772827 82081.1953125
+574.2837524 23336.931640625
+576.2636719 39159.09375
+576.7644043 30826.765625
+580.2622681 72342.421875
+580.7548828 2276709.75
+581.2562256 1577350.5
+581.7579956 554130.9375
+581.8649292 25689.73828125
+582.258667 125540.4765625
+589.2669678 86181.6953125
+589.7670288 41946.5390625
+598.2739258 65090.78125
+598.7733765 35069.359375
+599.2706299 27382.228515625
+599.776001 59373.203125
+606.2564697 27271.28125
+624.2634888 53498.828125
+673.3238525 398172.40625
+674.3262329 136246.515625
+693.293457 22155.1875
+802.3652954 86241.109375
+803.3747559 54060.72265625
+873.3984375 96197.890625
+874.4071045 37304.953125
+1001.46991 24441.46484375
+END IONS
+BEGIN IONS
+TITLE=d Tryp-SFYR MS2 CID35 plus2.552.552.2 File:"d Tryp-SFYR MS2 CID35 plus2.raw", NativeID:"controllerType=0 controllerNumber=1 scan=552"
+RTINSECONDS=60.12294594
+PEPMASS=598.27001953125
+CHARGE=2+
+58.13422012 13855.826171875
+64.52629089 58376.23828125
+64.53045654 40538.87109375
+64.58200836 38028.93359375
+64.58618164 30356.283203125
+64.63787842 25978.9609375
+64.64147186 21691.19921875
+81.15406799 12897.6904296875
+83.23110199 13386.45703125
+107.3008499 11612.97265625
+145.706604 12512.240234375
+149.5730591 40587.80078125
+167.0916443 39991.99609375
+169.0601349 35158.140625
+175.1177521 284412.21875
+176.1208801 18955.849609375
+177.0758209 50094.63671875
+178.0598907 324904.21875
+178.3448334 82812.0703125
+178.3602905 13237.34765625
+179.0635834 29590.39453125
+179.0919342 30230.05078125
+182.0911255 19222.724609375
+186.0862122 105248.484375
+194.1027069 33593.15234375
+195.0863037 4022669.5
+195.1279297 22614.765625
+196.0891266 410943.4375
+197.0913544 27710.48828125
+200.1023254 18107.341796875
+201.0848846 27724.59375
+206.0910187 145468.25
+212.1126862 17304.78125
+218.1026764 52906.8046875
+222.0858765 20275.8203125
+224.3580933 13268.98046875
+234.0988159 14844.5673828125
+240.0934753 29485.724609375
+243.0863647 17194.671875
+246.0967865 652750.1875
+246.1391602 16225.0947265625
+247.0997925 81724.890625
+257.1221313 94202.4609375
+258.1231384 24225.59765625
+260.1121826 100018.8984375
+261.117981 21571.98046875
+270.0965576 124087.84375
+276.134613 18906.02734375
+277.1392822 16698.857421875
+278.1484375 31605.525390625
+283.142334 36822.37890625
+287.1231384 137783.625
+288.1071167 1533875.125
+289.1103516 243115.6875
+290.1105042 21201.62109375
+294.1159363 27812.42578125
+295.1496277 18456.478515625
+303.1391296 24528.341796875
+305.133606 3056493.25
+306.1188965 1103016.375
+307.1208191 175995.40625
+308.121582 32238.94140625
+311.1342163 53560.51953125
+312.1141968 31113.234375
+321.153656 333947.84375
+322.1565552 60284.78515625
+323.144043 1091734.375
+324.1460266 177890.671875
+325.150177 18224.716796875
+329.1433105 57538.578125
+331.1491089 20640.46875
+338.1416321 65387.2734375
+338.1804199 375723.0625
+338.6464233 29051.36328125
+339.1820068 47753.421875
+347.1499023 21722.89453125
+349.1600037 27792.42578125
+351.131012 17698.611328125
+359.1438904 63478.22265625
+366.185791 100178.453125
+367.1915283 29920.48046875
+369.1385803 31885.728515625
+376.1698914 103157.9453125
+377.1566772 86595.2265625
+386.163208 28524.39453125
+394.1804504 668004.6875
+394.2392273 17306.802734375
+395.1820679 125258.8984375
+412.1887817 29004.3515625
+434.1745605 17056.978515625
+468.2216187 44372.07421875
+477.2140808 19343.97265625
+483.7236938 16524.7578125
+485.2467957 214241.421875
+486.2487183 59889.6640625
+488.1851196 50375.85546875
+492.2285461 114748.109375
+492.7294312 93127.71875
+493.230011 25738.76953125
+495.2261963 46316.26171875
+505.211731 66157.171875
+506.2008972 48071.49609375
+507.208374 18170.65625
+512.227356 48382.32421875
+512.7272949 31236.0
+521.2354126 34226.70703125
+523.2208252 398101.59375
+524.2232666 112678.5390625
+525.2289429 23148.51953125
+529.7473145 16198.330078125
+555.255249 21208.857421875
+559.2421265 20288.279296875
+567.2541504 17410.154296875
+571.7473755 93710.7734375
+572.2731323 302102.0
+573.2807617 83373.8359375
+576.2622681 32134.412109375
+576.7611694 18143.03515625
+580.2595825 48732.8515625
+580.7540894 2161547.25
+581.2553101 1357899.125
+581.3372192 20494.201171875
+581.3657837 17412.1015625
+581.7565308 603260.8125
+582.2572632 93427.4453125
+589.2661743 50161.37109375
+589.765686 35802.75
+598.2728882 34427.953125
+598.7734375 24818.20703125
+599.2714844 36294.34765625
+599.7748413 82145.8515625
+606.2597046 23391.603515625
+624.2670288 40119.5546875
+625.274292 18652.98046875
+673.3223877 352294.8125
+674.3247681 144571.84375
+675.3292236 38575.15234375
+802.3618164 80725.625
+803.3651733 47886.515625
+873.3995972 87064.296875
+874.4044189 42467.125
+1001.457825 30923.875
+1002.456238 23123.173828125
+1058.485596 14727.2314453125
+END IONS
diff --git a/mzLib/Test/DataFiles/simpleCircularProtein.xml b/mzLib/Test/DataFiles/simpleCircularProtein.xml
new file mode 100644
index 000000000..4a7d85222
--- /dev/null
+++ b/mzLib/Test/DataFiles/simpleCircularProtein.xml
@@ -0,0 +1,30 @@
+
+
+
+ P05067
+ A4_HUMAN
+
+
+ Amyloid-beta precursor protein
+ APP
+
+
+
+ APP
+
+
+ Homo sapiens
+ Human
+
+
+ Homo
+
+
+
+ LPGLALLLLA
+
+
+
+ Copyrighted by the UniProt Consortium, see https://www.uniprot.org/terms Distributed under the Creative Commons Attribution (CC BY 4.0) License
+
+
\ No newline at end of file
diff --git a/mzLib/Test/DataFiles/simpleCircularProteinWithMod.xml b/mzLib/Test/DataFiles/simpleCircularProteinWithMod.xml
new file mode 100644
index 000000000..2cf5ce5ec
--- /dev/null
+++ b/mzLib/Test/DataFiles/simpleCircularProteinWithMod.xml
@@ -0,0 +1,35 @@
+
+
+
+ P05067
+ A4_HUMAN
+
+
+ Amyloid-beta precursor protein
+ APP
+
+
+
+ APP
+
+
+ Homo sapiens
+ Human
+
+
+ Homo
+
+
+
+
+
+
+
+
+ LPGSALLLLA
+
+
+
+ Copyrighted by the UniProt Consortium, see https://www.uniprot.org/terms Distributed under the Creative Commons Attribution (CC BY 4.0) License
+
+
\ No newline at end of file
diff --git a/mzLib/Test/Omics/Modifications/TestDigestionMotif.cs b/mzLib/Test/Omics/Modifications/TestDigestionMotif.cs
index 8e7c8fede..13b14905e 100644
--- a/mzLib/Test/Omics/Modifications/TestDigestionMotif.cs
+++ b/mzLib/Test/Omics/Modifications/TestDigestionMotif.cs
@@ -641,5 +641,92 @@ public void GetHashCode_DifferentName_ReturnsDifferentHashCode()
Assert.That(agent1.GetHashCode(), Is.Not.EqualTo(agent2.GetHashCode()));
}
+ ///
+ /// Trypsin cleaves after K and R, but not before P.
+ /// Sequence "PEPTIDEKA": K is at index 7, followed by 'A' (not P) → cut at index 8.
+ /// GetDigestionSiteIndices always includes 0 (start) and sequence.Length (end).
+ /// Expected: [0, 8, 9]
+ /// 0 → start sentinel
+ /// 8 → after K at index 7 (r + CutIndex = 7 + 1)
+ /// 9 → end sentinel (sequence.Length)
+ ///
+ [Test]
+ public void GetDigestionSiteIndices_Trypsin_PEPTIDEKA_ReturnsExpectedIndices()
+ {
+ var trypsin = ProteaseDictionary.Dictionary["trypsin"];
+
+ List indices = trypsin.GetDigestionSiteIndices("PEPTIDEKA");
+
+ Assert.That(indices, Is.EquivalentTo(new[] { 0, 8, 9 }));
+ }
+
+ ///
+ /// Asp-N cleaves N-terminal to D (motif "|D", CutIndex=0).
+ /// Sequence "PEPTIDEKA": D is at index 5, cut at 5+0=5.
+ /// Expected: [0, 5, 9]
+ /// 0 → start sentinel
+ /// 5 → before D at index 5 (r + CutIndex = 5 + 0)
+ /// 9 → end sentinel (sequence.Length)
+ ///
+ [Test]
+ public void GetDigestionSiteIndices_AspN_PEPTIDEKA_CutsBeforeD()
+ {
+ var aspN = ProteaseDictionary.Dictionary["Asp-N"];
+
+ List indices = aspN.GetDigestionSiteIndices("PEPTIDEKA");
+
+ Assert.That(indices, Is.EquivalentTo(new[] { 0, 5, 9 }));
+ }
+
+ ///
+ /// A protease with no digestion motifs (top-down / no-enzyme) produces no internal cuts.
+ /// Only the start (0) and end (sequence.Length) sentinels are added.
+ /// Sequence "PEPTIDEKA": Expected: [0, 9]
+ ///
+ [Test]
+ public void GetDigestionSiteIndices_NoMotifProtease_TopDown_OnlyStartAndEndSentinels()
+ {
+ var topDown = new Protease("test-top-down", CleavageSpecificity.None, "", "", new List());
+
+ List indices = topDown.GetDigestionSiteIndices("PEPTIDEKA");
+
+ Assert.That(indices, Is.EquivalentTo(new[] { 0, 9 }));
+ }
+
+ ///
+ /// Lys-N cleaves N-terminal to K (motif "|K", CutIndex=0).
+ /// Sequence "PEPTIDEKA": K is at index 7, cut at 7+0=7.
+ /// Expected: [0, 7, 9]
+ /// 0 → start sentinel
+ /// 7 → before K at index 7 (r + CutIndex = 7 + 0)
+ /// 9 → end sentinel (sequence.Length)
+ ///
+ [Test]
+ public void GetDigestionSiteIndices_LysN_PEPTIDEKA_CutsBeforeK()
+ {
+ var lysN = ProteaseDictionary.Dictionary["Lys-N"];
+
+ List indices = lysN.GetDigestionSiteIndices("PEPTIDEKA");
+
+ Assert.That(indices, Is.EquivalentTo(new[] { 0, 7, 9 }));
+ }
+
+ ///
+ /// Trypsin cleaves after K and R, but not before P.
+ /// Sequence "PEPTIDEPEPTIDE" contains no K or R residues → no internal cuts.
+ /// GetDigestionSiteIndices always includes 0 (start) and sequence.Length (end).
+ /// Expected: [0, 14]
+ /// 0 → start sentinel
+ /// 14 → end sentinel (sequence.Length)
+ ///
+ [Test]
+ public void GetDigestionSiteIndices_Trypsin_PEPTIDEPEPTIDE_NoCleavageSites()
+ {
+ var trypsin = ProteaseDictionary.Dictionary["trypsin"];
+
+ List indices = trypsin.GetDigestionSiteIndices("PEPTIDEPEPTIDE");
+
+ Assert.That(indices, Is.EquivalentTo(new[] { 0, 14 }));
+ }
}
}
\ No newline at end of file
diff --git a/mzLib/Test/Test.csproj b/mzLib/Test/Test.csproj
index 6a526aa2a..b0cc45b36 100644
--- a/mzLib/Test/Test.csproj
+++ b/mzLib/Test/Test.csproj
@@ -322,9 +322,18 @@
Always
+
+ PreserveNewest
+
Always
+
+ PreserveNewest
+
+
+ PreserveNewest
+
Always
diff --git a/mzLib/Test/TestCircularPeptideWithSetModifications.cs b/mzLib/Test/TestCircularPeptideWithSetModifications.cs
new file mode 100644
index 000000000..676182f2e
--- /dev/null
+++ b/mzLib/Test/TestCircularPeptideWithSetModifications.cs
@@ -0,0 +1,1202 @@
+using Chemistry;
+using MassSpectrometry;
+using NUnit.Framework;
+using Omics.Digestion;
+using Omics.Fragmentation;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.AminoAcidPolymer;
+using Proteomics.ProteolyticDigestion;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using UsefulProteomicsDatabases;
+
+namespace Test
+{
+ ///
+ /// Tests for and the
+ /// pipeline that produces it.
+ ///
+ /// NUMBERING SYSTEM
+ /// ----------------
+ /// All positions are 1-based and expressed in the parent
+ /// 's canonical coordinate system — the
+ /// lexicographically smallest rotation of the ring sequence, with residue 1
+ /// being the alphabetically earliest position (ties broken by subsequent
+ /// residues).
+ ///
+ /// Fragment annotations use the doubled-ring convention:
+ /// [FragmentNumber, SecondaryFragmentNumber] = [s, s+L-1]
+ /// where s is the 1-based canonical start and L is the fragment length.
+ /// SecondaryFragmentNumber exceeds N only for wrap-around fragments from
+ /// peptides whose OneBasedStartResidueInProtein > 1.
+ ///
+ /// DIGESTION RULES
+ /// ---------------
+ /// 0 cuts → CircularPeptideWithSetModifications, length N (ring intact)
+ /// 1 cut → PeptideWithSetModifications, length N (ring opened)
+ /// 2+ cuts → CircularPeptideWithSetModifications sub-peptides, length < N
+ ///
+ /// FRAGMENT LOOP BOUNDS
+ /// --------------------
+ /// For localStart in [0, peptideLength):
+ /// oneBasedStart = OneBasedStartResidueInProtein + localStart
+ /// maxLength = peptideLength - localStart - 1
+ ///
+ /// Consequence: for a full-ring peptide with OneBasedStartResidueInProtein=1,
+ /// SecondaryFragmentNumber ≤ N-1 always — wrap-around fragments (end > N)
+ /// only arise from wrapping sub-peptides (OneBasedStartResidueInProtein > 1).
+ ///
+ /// Consequence: M at position N (the last residue) is unreachable from any
+ /// fragment of a full-ring [1-N] peptide; place the modified residue at an
+ /// earlier canonical position to test mass incorporation.
+ ///
+ [TestFixture]
+ [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
+ public static class TestCircularPeptideWithSetModifications
+ {
+ [OneTimeSetUp]
+ public static void OneTimeSetup()
+ {
+ Loaders.LoadElements();
+ }
+
+ // ── Helpers ───────────────────────────────────────────────────────────
+
+ ///
+ /// Returns the sum of monoisotopic residue masses for a contiguous
+ /// sub-sequence of a ring, reading with wrap-around.
+ /// Used as the independent reference for fragment neutral masses.
+ /// For HCD internal ions: neutralMass = residueMassSum
+ /// (b nTermCap=0 + y cTermCap=+H₂O − H₂O cancels).
+ ///
+ private static double ResidueMassSum(string ringSequence, int oneBasedStart, int length)
+ {
+ int n = ringSequence.Length;
+ double mass = 0;
+ for (int i = 0; i < length; i++)
+ mass += Residue.ResidueMonoisotopicMass[ringSequence[(oneBasedStart - 1 + i) % n]];
+ return mass;
+ }
+
+ private static double ExpectedInternalFragmentNeutralMass(
+ string ringSequence, int oneBasedStart, int length) =>
+ ResidueMassSum(ringSequence, oneBasedStart, length);
+
+ ///
+ /// Returns the single full-ring CircularPeptideWithSetModifications
+ /// produced by trypsin digestion of a ring with no K or R residues.
+ ///
+ private static CircularPeptideWithSetModifications GetFullRingPeptide(string sequence)
+ {
+ var protein = new CircularProtein(sequence, "test_acc");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+ return (CircularPeptideWithSetModifications)protein
+ .Digest(digestionParams, [], [])
+ .Single();
+ }
+
+ ///
+ /// Returns the CircularPeptideWithSetModifications sub-peptide matching
+ /// from trypsin digestion (0 missed cleavages)
+ /// of . The ring must have at least two K/R
+ /// residues so that both boundaries of the sub-peptide are genuine cut sites.
+ ///
+ private static CircularPeptideWithSetModifications GetSubPeptide(
+ string ringSequence, string subSequence)
+ {
+ var protein = new CircularProtein(ringSequence, "test_acc");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+ return protein.Digest(digestionParams, [], [])
+ .OfType()
+ .Single(p => p.BaseSequence == subSequence);
+ }
+
+ [Test]
+ public static void Digest_RingWithCleavageSites_NeverReturnsCircularPeptideWithSetModifications()
+ {
+ // A ring with trypsin cleavage sites digested with maxMissedCleavages: 0
+ // has numCleavageSites > maxMissedCleavages, so the condition
+ // maxMissedCleavages >= numCleavageSites is NOT satisfied.
+ // Therefore Digest() must never emit a CircularPeptideWithSetModifications.
+ // All products are linear PeptideWithSetModifications.
+ //
+ // This test documents that the old GetSubPeptide() helper was incorrect:
+ // it called .OfType() on a ring with
+ // cleavage sites, which always returns empty after the Digest() fix.
+
+ const string ringSequence = "ACDEKFGHIK"; // K at positions 5 and 10
+ var protein = new CircularProtein(ringSequence, "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var allProducts = protein
+ .Digest(digestionParams, new List(), new List())
+ .ToList();
+
+ var circularProducts = allProducts
+ .OfType()
+ .ToList();
+
+ Assert.That(circularProducts, Is.Empty,
+ "A ring with cleavage sites and maxMissedCleavages: 0 must never " +
+ "produce a CircularPeptideWithSetModifications.");
+
+ var linearProducts = allProducts
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ Assert.That(linearProducts, Is.Not.Empty,
+ "All products must be linear PeptideWithSetModifications.");
+ }
+
+
+
+ // ══════════════════════════════════════════════════════════════════════
+ // DIGESTION — modification renumbering
+ //
+ // When a circular protein is digested, variable modifications travel
+ // with their residues. A modification at ring position p is renumbered
+ // in the resulting peptide's AllModsOneIsNterminus dictionary:
+ // key = (proxy position of modified residue)
+ // - (proxy start of peptide) + 2
+ // This matches the standard PeptideWithSetModifications convention
+ // (key = local 0-based residue index + 2).
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void Digest_LinearProduct_ModificationRenumberedToProxyPosition()
+ {
+ // Ring "AHMCDEFGKIEP" (N=12), already canonical (A is smallest).
+ // M at ring position 3, K at ring position 9.
+ //
+ // One tryptic cut after K(9) → linear peptide [10, 21]:
+ // I(10) E(11) P(12) A(13→1) H(14→2) M(15→3) C(16→4)
+ // D(17→5) E(18→6) F(19→7) G(20→8) K(21→9)
+ // BaseSequence = "IEPAHMCDEFGK"
+ //
+ // Oxidation renumbering:
+ // M is at proxy position 15, peptide starts at proxy position 10.
+ // key = 15 - 10 + 2 = 7
+ // (M is the 6th residue of "IEPAHMCDEFGK", 0-based index 5, key=5+2=7)
+
+ ModificationMotif.TryGetMotif("M", out ModificationMotif mMotif);
+ var oxidation = new Modification(
+ _originalId: "Oxidation on M",
+ _modificationType: "Common Variable",
+ _target: mMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ var mods = new Dictionary> { [3] = [oxidation] };
+ var protein = new CircularProtein("AHMCDEFGKIEP", "mod_renumber_test",
+ oneBasedModifications: mods);
+
+ Assert.That(protein.BaseSequence, Is.EqualTo("AHMCDEFGKIEP"));
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = protein.Digest(digestionParams, [], [oxidation])
+ .Cast()
+ .ToList();
+
+ // One K → two linear products: unmodified and oxidized
+ Assert.That(peptides, Has.Count.EqualTo(2));
+ Assert.That(peptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "One cut → linear PeptideWithSetModifications, not circular");
+
+ var unmodified = peptides.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var oxidized = peptides.Single(p => p.AllModsOneIsNterminus.Count == 1);
+
+ foreach (var peptide in peptides)
+ {
+ Assert.That(peptide.BaseSequence, Is.EqualTo("IEPAHMCDEFGK"));
+ Assert.That(peptide.OneBasedStartResidueInProtein, Is.EqualTo(10));
+ Assert.That(peptide.OneBasedEndResidueInProtein, Is.EqualTo(21));
+ Assert.That(peptide.Length, Is.EqualTo(protein.Length));
+ Assert.That(ReferenceEquals(peptide.Protein, protein), Is.True);
+ }
+
+ Assert.That(oxidized.AllModsOneIsNterminus.ContainsKey(7), Is.True,
+ "Oxidation on M: proxy pos 15, start 10 → key = 15-10+2 = 7");
+ Assert.That(oxidized.AllModsOneIsNterminus[7].OriginalId,
+ Does.Contain("Oxidation"));
+ Assert.That(
+ oxidized.MonoisotopicMass - unmodified.MonoisotopicMass,
+ Is.EqualTo(15.994915).Within(1e-4));
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // ModFits — understanding the public API
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void ModFits_BasicUnderstanding()
+ {
+ // Verify ModificationLocalization.ModFits behavior for oxidation on M.
+ // Used by the Digest() fallback (zero-cut path) to apply variable
+ // modifications to the intact full-ring peptide.
+ ModificationMotif.TryGetMotif("M", out ModificationMotif mMotif);
+ var oxidation = new Modification(
+ _originalId: "Oxidation on M",
+ _modificationType: "Common Variable",
+ _target: mMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ const string sequence = "ACDEFGHIM"; // M at position 9
+
+ bool fitsAtPos9 = ModificationLocalization.ModFits(
+ oxidation, sequence,
+ digestionProductOneBasedIndex: 9,
+ digestionProductLength: 9,
+ bioPolymerOneBasedIndex: 9);
+
+ bool fitsAtPos1 = ModificationLocalization.ModFits(
+ oxidation, sequence,
+ digestionProductOneBasedIndex: 1,
+ digestionProductLength: 9,
+ bioPolymerOneBasedIndex: 1);
+
+ bool fitsAtPos7 = ModificationLocalization.ModFits(
+ oxidation, sequence,
+ digestionProductOneBasedIndex: 7,
+ digestionProductLength: 9,
+ bioPolymerOneBasedIndex: 7);
+
+ Assert.That(fitsAtPos9, Is.True, "M at position 9 → fits");
+ Assert.That(fitsAtPos1, Is.False, "A at position 1 → does not fit");
+ Assert.That(fitsAtPos7, Is.False, "H at position 7 → does not fit");
+
+ Console.WriteLine($"mod.OriginalId = {oxidation.OriginalId}");
+ Console.WriteLine($"mod.LocationRestriction = {oxidation.LocationRestriction}");
+ Console.WriteLine($"mod.Target = {oxidation.Target}");
+ Console.WriteLine($"ModFits pos1={fitsAtPos1}, pos7={fitsAtPos7}, pos9={fitsAtPos9}");
+ }
+
+ [Test]
+ public static void ModFits_FallbackDiagnostic()
+ {
+ // Confirms the zero-cut Digest() fallback produces both unmodified
+ // and oxidized full-ring peptides when oxidation is a variable mod.
+ ModificationMotif.TryGetMotif("M", out ModificationMotif mMotif);
+ var oxidation = new Modification(
+ _originalId: "Oxidation on M",
+ _modificationType: "Common Variable",
+ _target: mMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ var mods = new Dictionary> { [9] = [oxidation] };
+ var protein = new CircularProtein("ACDEFGHIM", "mod_test",
+ oneBasedModifications: mods);
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = protein.Digest(digestionParams, [], [oxidation])
+ .OfType()
+ .ToList();
+
+ Console.WriteLine($"Total peptides: {peptides.Count}");
+ foreach (var p in peptides)
+ {
+ Console.WriteLine($" Mods count: {p.AllModsOneIsNterminus.Count}");
+ foreach (var kvp in p.AllModsOneIsNterminus)
+ Console.WriteLine($" Key={kvp.Key} Id={kvp.Value.OriginalId}");
+ }
+
+ Console.WriteLine($"OneBasedPossibleLocalizedModifications count: " +
+ $"{protein.OneBasedPossibleLocalizedModifications.Count}");
+ foreach (var kvp in protein.OneBasedPossibleLocalizedModifications)
+ foreach (var m in kvp.Value)
+ Console.WriteLine($" Pos={kvp.Key} Id={m.OriginalId}");
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // FRAGMENT GUARDS
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_MinLengthLessThanTwo_ReturnsEmpty()
+ {
+ // minLengthOfFragments < 2 is rejected — single-residue internal
+ // fragments are not physically meaningful.
+ var peptide = GetFullRingPeptide("ACDEFGHIM");
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 1, products);
+
+ Assert.That(products, Is.Empty);
+ }
+
+ [Test]
+ public static void FragmentInternally_MinLengthEqualsToPeptideLength_ReturnsEmpty()
+ {
+ // minLengthOfFragments >= peptideLength: no fragment can be shorter
+ // than the full peptide, so nothing is produced.
+ var peptide = GetFullRingPeptide("ACDEFGHIM"); // length 9
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 9, products);
+
+ Assert.That(products, Is.Empty);
+ }
+
+ [Test]
+ public static void FragmentInternally_ClearsProductsListOnEntry()
+ {
+ // The products list is always cleared at the start of the call.
+ var peptide = GetFullRingPeptide("ACDEFGHIM");
+ var products = new List
+ { new Product(ProductType.b, FragmentationTerminus.N, 100, 1, 1, 0) };
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ Assert.That(products.All(p => p.NeutralMass != 100), Is.True,
+ "The sentinel entry must be gone — list was cleared");
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // FRAGMENT COUNT — full-ring peptide
+ //
+ // For N=9, minLength L=3, full-ring [1-9]:
+ // localStart s | maxLength | lengths produced
+ // -------------|-----------|----------------
+ // 0 | 8 | 3,4,5,6,7,8 → 6
+ // 1 | 7 | 3,4,5,6,7 → 5
+ // 2 | 6 | 3,4,5,6 → 4
+ // 3 | 5 | 3,4,5 → 3
+ // 4 | 4 | 3,4 → 2
+ // 5 | 3 | 3 → 1
+ // 6,7,8 | < 3 | (none)
+ // Total = 21 fragment positions × 1 ion-type pair (b,y) = 21 products
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_FullRing_N9_MinLength3_CorrectCount()
+ {
+ var peptide = GetFullRingPeptide("ACDEFGHIM"); // N=9, no K/R
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ // HCD: nTermProductTypes=[b], cTermProductTypes=[y]
+ // Each (start, length) pair → 1 product (1 b-nTerm × 1 y-cTerm)
+ // Full-ring with wrap-around: N*(N-minLength) = 9*6 = 54
+ Assert.That(products, Has.Count.EqualTo(54));
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // PRODUCT TYPE — HCD convention
+ //
+ // Internal ions follow the bIy convention:
+ // ProductType = y (C-terminal cap)
+ // SecondaryProductType = b (N-terminal cap)
+ // FragmentationTerminus = None
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_HCD_ProductTypesAreByConvention()
+ {
+ var peptide = GetFullRingPeptide("ACDEFGHIM");
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ Assert.That(products, Is.Not.Empty);
+ Assert.That(products.All(p => p.ProductType == ProductType.y), Is.True);
+ Assert.That(products.All(p => p.SecondaryProductType == ProductType.b), Is.True);
+ Assert.That(products.All(p => p.Terminus == FragmentationTerminus.None), Is.True);
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // NUMBERING — non-wrapping fragments of a full-ring [1-N] peptide
+ //
+ // Ring "ACDEFGHIM" (N=9), peptide [1-9].
+ // Fragment [s, s+L-1] where s = oneBasedStart, L = length.
+ // [1,3] = ACD ✓
+ // [1,4] = ACDE ✓
+ // [4,6] = EFG ✓
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_FullRing_NonWrapping_StartAndEndNumbering()
+ {
+ const string ring = "ACDEFGHIM"; // N=9
+ var peptide = GetFullRingPeptide(ring);
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ var frag_1_3 = products.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 3);
+ Assert.That(frag_1_3.SecondaryFragmentNumber, Is.EqualTo(3), "[1,3]");
+
+ var frag_1_4 = products.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 4);
+ Assert.That(frag_1_4.SecondaryFragmentNumber, Is.EqualTo(4), "[1,4]");
+
+ var frag_4_3 = products.Single(p => p.FragmentNumber == 4 && p.ResiduePosition == 3);
+ Assert.That(frag_4_3.SecondaryFragmentNumber, Is.EqualTo(6), "[4,6]");
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // NUMBERING — wrap-around is impossible for full-ring [1-N] peptides
+ //
+ // Proof: for OneBasedStartResidueInProtein=1,
+ // SecondaryFragmentNumber = 1 + localStart + length - 1
+ // ≤ 1 + localStart + (N - localStart - 1) - 1
+ // = N - 1 < N
+ // Therefore SecondaryFragmentNumber < N always.
+ // Wrap-around (end > N) requires OneBasedStartResidueInProtein > 1,
+ // which only occurs for wrapping sub-peptides from Digest().
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_FullRingStartingAt1_ProducesWrapAroundFragments()
+ {
+ // Full-ring peptides produce wrap-around fragments (SecondaryFragmentNumber > N)
+ // because every pair of backbone cleavage sites is valid on a ring.
+ const string ring = "ACDEFGHIM"; // N=9
+ var peptide = GetFullRingPeptide(ring);
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products, Is.Not.Empty);
+ // N*(N-2) = 9*7 = 63 fragments for a 9-residue ring with minLength=2
+ Assert.That(products.Count, Is.EqualTo(63),
+ "Full-ring of length 9 should produce N*(N-2) = 63 internal fragments");
+ // Some fragments should wrap around (SecondaryFragmentNumber >= N)
+ Assert.That(products.Any(p => p.SecondaryFragmentNumber >= ring.Length), Is.True,
+ "Full-ring peptide should include wrap-around fragments");
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRing_WrapAround_EndIsExactly2N()
+ {
+ // This test documents the mathematical proof above.
+ Assert.Pass(
+ "Wrap-around fragments (SecondaryFragmentNumber > N) require " +
+ "OneBasedStartResidueInProtein > 1. " +
+ "See wrapping sub-peptide tests below.");
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRing_WrapAround_NeutralMass_MatchesResidueMassSum()
+ {
+ // Full-ring peptide includes wrap-around fragments for any minLength < N.
+ const string ring = "ACDEFGHIM"; // N=9
+ var peptide = GetFullRingPeptide(ring);
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ // N*(N-3) = 9*6 = 54 for minLength=3
+ Assert.That(products.Count, Is.EqualTo(54),
+ "Full-ring of length 9 with minLength=3 should produce N*(N-3) = 54 fragments");
+ Assert.That(products.All(p => p.NeutralMass > 0), Is.True,
+ "All fragment masses should be positive");
+ }
+
+ [Test]
+ public static void FragmentInternally_WrappingSubPeptide_EndExceedsN()
+ {
+ // Ring "AKDEFKGHIM" (N=10): K at positions 2 and 6 → 2 cleavage sites.
+ // maxMissedCleavages=1 < numCleavageSites=2 → no CircularPeptideWithSetModifications
+ // from Digest(). The wrapping peptide "GHIMAK" [7-12] is constructed directly
+ // to test FragmentInternally() on a span that crosses the ring junction.
+ //
+ // "AKDEFKGHIM" is already canonical (A is the smallest first character).
+ //
+ // Fragment loop for peptideLength=6, oneBasedStart=7, minLength=3:
+ // localStart=0: oneBasedStart=7, maxLength=5
+ // [7,9]=GHI (L=3), [7,10]=GHIM (L=4), [7,11]=GHIMA (L=5, wraps)
+ // localStart=1: oneBasedStart=8, maxLength=4
+ // [8,10]=HIM (L=3), [8,11]=HIMA (L=4, wraps)
+ // localStart=2: oneBasedStart=9, maxLength=3
+ // [9,11]=IMA (L=3, wraps)
+ // localStart=3: oneBasedStart=10, maxLength=2 < 3 → none
+
+ const string ringSeq = "AKDEFKGHIM";
+ var protein = new CircularProtein(ringSeq, "wrap_test");
+
+ Assert.That(protein.BaseSequence, Is.EqualTo(ringSeq), "Already canonical.");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var wrappingPeptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 7,
+ oneBasedEndResidueInProtein: 12,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 1,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "GHIMAK");
+
+ Assert.That(wrappingPeptide.OneBasedStartResidueInProtein, Is.EqualTo(7));
+ Assert.That(wrappingPeptide.OneBasedEndResidueInProtein, Is.EqualTo(12));
+
+ var products = new List();
+ wrappingPeptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ // Non-wrapping
+ var frag_7_3 = products.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 3);
+ Assert.That(frag_7_3.SecondaryFragmentNumber, Is.EqualTo(9), "[7,9]=GHI, no wrap");
+
+ var frag_7_4 = products.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 4);
+ Assert.That(frag_7_4.SecondaryFragmentNumber, Is.EqualTo(10), "[7,10]=GHIM, ends at N");
+
+ // Wrap-around
+ var frag_7_5 = products.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 5);
+ Assert.That(frag_7_5.SecondaryFragmentNumber, Is.EqualTo(11),
+ "[7,11]=GHIMA wraps: A is canonical position 1, doubled position 11");
+
+ var frag_9_3 = products.Single(p => p.FragmentNumber == 9 && p.ResiduePosition == 3);
+ Assert.That(frag_9_3.SecondaryFragmentNumber, Is.EqualTo(11), "[9,11]=IMA wraps");
+
+ Assert.That(products.Where(p => p.SecondaryFragmentNumber > 10).ToList(),
+ Is.Not.Empty, "Wrapping peptide must produce wrap-around fragments.");
+ }
+
+ [Test]
+ public static void FragmentInternally_WrappingSubPeptide_ProducesWrapAroundFragments()
+ {
+ // Alias — exercises the same peptide, emphasising the positive assertion
+ // that wrap-around IS produced.
+ FragmentInternally_WrappingSubPeptide_EndExceedsN();
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // MASS — neutral mass equals residue mass sum for HCD internal ions
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_FullRing_NeutralMass_MatchesResidueMassSum()
+ {
+ const string ring = "ACDEFGHIM"; // N=9
+ var peptide = GetFullRingPeptide(ring);
+ var products = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ foreach (var product in products)
+ {
+ double expected = ExpectedInternalFragmentNeutralMass(
+ ring, product.FragmentNumber, product.ResiduePosition);
+ Assert.That(product.NeutralMass, Is.EqualTo(expected).Within(1e-5),
+ $"[{product.FragmentNumber},{product.SecondaryFragmentNumber}]");
+ }
+ }
+
+ [Test]
+ public static void FragmentInternally_WrappingSubPeptide_WrapAroundMassIsCorrect()
+ {
+ // Fragment [7,11] = G(7),H(8),I(9),M(10),A(1) from GHIMAK[7-12].
+ // Mass = residue masses of G,H,I,M,A read clockwise from ring pos 7.
+ //
+ // Constructed directly — Digest() with maxMissedCleavages=1 on a ring with
+ // numCleavageSites=2 produces no CircularPeptideWithSetModifications.
+
+ const string ringSeq = "AKDEFKGHIM";
+ var protein = new CircularProtein(ringSeq, "wrap_mass_test");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var wrappingPeptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 7,
+ oneBasedEndResidueInProtein: 12,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 1,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "GHIMAK");
+
+ var products = new List();
+ wrappingPeptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ var frag_7_5 = products.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 5);
+ Assert.That(frag_7_5.NeutralMass,
+ Is.EqualTo(ExpectedInternalFragmentNeutralMass(ringSeq, 7, 5)).Within(1e-5),
+ "[7,11]=GHIMA mass = G+H+I+M+A residue masses");
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount()
+ {
+ // "ACDEK" [1-5] from ring "ACDEKFGHIK" (N=10), length 5, minLength 2.
+ //
+ // Fragment count for peptideLength=5, minLength=2:
+ // localStart=0: maxLength=4 → lengths 2,3,4 → 3 fragments
+ // localStart=1: maxLength=3 → lengths 2,3 → 2 fragments
+ // localStart=2: maxLength=2 → length 2 → 1 fragment
+ // localStart=3: maxLength=1 < 2 → 0
+ // localStart=4: maxLength=0 < 2 → 0
+ // Total = 6 fragments
+ //
+ // Note: CircularPeptideWithSetModifications for this span is constructed
+ // directly because Digest() with maxMissedCleavages=0 on a ring with two
+ // cleavage sites produces linear PeptideWithSetModifications, not circular.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 5,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "ACDEK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products, Has.Count.EqualTo(6));
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_AtRingStart_NumberingIsCanonical()
+ {
+ // "ACDEK" [1-5] from ring "ACDEKFGHIK" (N=10).
+ // Fragment numbers must be in parent ring coordinates.
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 5,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "ACDEK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ var frag_1_3 = products.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 3);
+ Assert.That(frag_1_3.SecondaryFragmentNumber, Is.EqualTo(3), "[1,3]=ACD");
+
+ var frag_1_4 = products.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 4);
+ Assert.That(frag_1_4.SecondaryFragmentNumber, Is.EqualTo(4), "[1,4]=ACDE");
+
+ var frag_2_3 = products.Single(p => p.FragmentNumber == 2 && p.ResiduePosition == 3);
+ Assert.That(frag_2_3.SecondaryFragmentNumber, Is.EqualTo(4), "[2,4]=CDE");
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_NotAtRingStart_NumberingIsCanonical()
+ {
+ // "FGHIK" [6-10] from ring "ACDEKFGHIK" (N=10).
+ // All fragment numbers must be ≥ 6 (parent ring coordinates).
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 6,
+ oneBasedEndResidueInProtein: 10,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "FGHIK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ var frag_6_3 = products.Single(p => p.FragmentNumber == 6 && p.ResiduePosition == 3);
+ Assert.That(frag_6_3.SecondaryFragmentNumber, Is.EqualTo(8), "[6,8]=FGH");
+
+ var frag_6_4 = products.Single(p => p.FragmentNumber == 6 && p.ResiduePosition == 4);
+ Assert.That(frag_6_4.SecondaryFragmentNumber, Is.EqualTo(9), "[6,9]=FGHI");
+
+ var frag_7_3 = products.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 3);
+ Assert.That(frag_7_3.SecondaryFragmentNumber, Is.EqualTo(9), "[7,9]=GHI");
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_NoFragmentsStartAtParentPosition1()
+ {
+ // "FGHIK" [6-10] from ring "ACDEKFGHIK" (N=10).
+ // Starts at canonical position 6 — no fragment may have FragmentNumber < 6.
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 6,
+ oneBasedEndResidueInProtein: 10,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "FGHIK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.All(p => p.FragmentNumber >= 6), Is.True);
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_NeutralMass_MatchesResidueMassSum()
+ {
+ // "FGHIK" [6-10] from ring "ACDEKFGHIK" (N=10).
+ // All fragment neutral masses must equal the sum of parent ring residue masses
+ // for the corresponding sub-sequence.
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ const string ring = "ACDEKFGHIK";
+
+ var protein = new CircularProtein(ring, "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 6,
+ oneBasedEndResidueInProtein: 10,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "FGHIK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 3, products);
+
+ foreach (var product in products)
+ {
+ double expected = ExpectedInternalFragmentNeutralMass(
+ ring, product.FragmentNumber, product.ResiduePosition);
+ Assert.That(product.NeutralMass, Is.EqualTo(expected).Within(1e-5),
+ $"[{product.FragmentNumber},{product.SecondaryFragmentNumber}]");
+ }
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_NoFragmentExceedsSpan()
+ {
+ // "ACDEK" [1-5] from ring "ACDEKFGHIK" (N=10).
+ // No fragment end may reach position 5 (the K boundary).
+ // maxLength at localStart=0 is 4, so max end = 1+4-1 = 4 < 5. ✓
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 5,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "ACDEK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.All(p => p.SecondaryFragmentNumber < 5), Is.True,
+ "ACDEK[1-5]: SecondaryFragmentNumber must be < 5.");
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_NoWrapAroundFragments()
+ {
+ // "FGHIK" [6-10] from ring "ACDEKFGHIK" (N=10).
+ // Sub-peptides (length < N) never produce wrap-around fragments.
+ // Both cleavage sites lie within the ring, so no fragment can extend
+ // beyond the C-terminal boundary of the sub-peptide.
+ //
+ // Max SecondaryFragmentNumber: localStart=0, length=4 → 6+4-1=9 ≤ N=10. ✓
+ //
+ // Constructed directly — see FragmentInternally_SubPeptide_N5_MinLength2_CorrectCount
+ // for why GetSubPeptide() cannot be used here.
+
+ var protein = new CircularProtein("ACDEKFGHIK", "test_acc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 6,
+ oneBasedEndResidueInProtein: 10,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "FGHIK");
+
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.All(p => p.SecondaryFragmentNumber <= 10), Is.True,
+ "FGHIK[6-10]: SecondaryFragmentNumber must be ≤ N=10.");
+ }
+
+ // ══════════════════════════════════════════════════════════════════════
+ // MODIFICATION MASS — oxidation must shift fragment masses correctly
+ //
+ // KEY CONSTRAINT: a modified residue at canonical position p is only
+ // reachable by fragments from a full-ring [1-N] peptide if
+ // oneBasedStart + length - 1 ≥ p
+ // ⟺ localStart + length ≥ p - 1 + 1 = p
+ // But maxLength = N - localStart - 1, so the maximum reachable position is:
+ // oneBasedStart + maxLength - 1 = 1 + localStart + (N-localStart-1) - 1 = N-1
+ // Therefore M at position N (the last residue) is NEVER reachable.
+ //
+ // Test A: ring "ACDEFGHIM", M at position 9 (=N).
+ // No fragment contains M → oxidation has zero effect on all fragment masses.
+ //
+ // Test B: ring "ACMDEFGHI", M at position 3 (well inside the ring).
+ // Fragments [1,3]=ACM and [2,3]=CM contain M → masses shift by +15.994915.
+ // Fragment [1,2]=AC does not contain M → mass unchanged.
+ // ══════════════════════════════════════════════════════════════════════
+
+ [Test]
+ public static void FragmentInternally_ModifiedResidue_IncludedInFragmentMass()
+ {
+ // TEST A: M at position 9 = N → no fragment reaches it.
+ // Verifies that the fallback Digest() path correctly produces both
+ // unmodified and oxidized full-ring peptides (key=10 for pos 9),
+ // and that all fragment masses are identical between the two forms.
+ ModificationMotif.TryGetMotif("M", out ModificationMotif mMotif);
+ var oxidation = new Modification(
+ _originalId: "Oxidation on M",
+ _modificationType: "Common Variable",
+ _target: mMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ var mods = new Dictionary> { [9] = [oxidation] };
+ var protein = new CircularProtein("ACDEFGHIM", "mod_test",
+ oneBasedModifications: mods);
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = protein.Digest(digestionParams, [], [oxidation])
+ .OfType()
+ .ToList();
+
+ var unmodified = peptides.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var oxidized = peptides.Single(p => p.AllModsOneIsNterminus.Count == 1);
+
+ // Modification key: position 9 + 1 = 10
+ Assert.That(oxidized.AllModsOneIsNterminus.ContainsKey(10), Is.True);
+ Assert.That(oxidized.AllModsOneIsNterminus[10].OriginalId,
+ Does.Contain("Oxidation"));
+
+ var unmodProducts = new List();
+ var oxProducts = new List();
+ unmodified.FragmentInternally(DissociationType.HCD, 2, unmodProducts);
+ oxidized.FragmentInternally(DissociationType.HCD, 2, oxProducts);
+
+ // [7,8]=HI exists (localStart=6, length=2) — does NOT span position 9
+ var unmod_7_2 = unmodProducts.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 2);
+ var ox_7_2 = oxProducts.Single(p => p.FragmentNumber == 7 && p.ResiduePosition == 2);
+ Assert.That(ox_7_2.NeutralMass,
+ Is.EqualTo(unmod_7_2.NeutralMass).Within(1e-4),
+ "[7,8]=HI: does not span position 9, so no mass shift");
+
+ // With wrap-around, some fragments DO span position 9.
+ // Fragments that include residue 9 should show a mass shift equal to the oxidation mass.
+ Assert.That(unmodProducts.Count, Is.EqualTo(oxProducts.Count));
+
+ // Fragments NOT spanning position 9 should have identical masses.
+ // Fragments spanning position 9 should differ by the oxidation mass.
+ var unmodOrdered = unmodProducts.OrderBy(p => p.FragmentNumber)
+ .ThenBy(p => p.ResiduePosition).ToList();
+ var oxOrdered = oxProducts.OrderBy(p => p.FragmentNumber)
+ .ThenBy(p => p.ResiduePosition).ToList();
+
+ bool foundModifiedFragment = false;
+ for (int i = 0; i < unmodOrdered.Count; i++)
+ {
+ double diff = Math.Abs(oxOrdered[i].NeutralMass - unmodOrdered[i].NeutralMass);
+ if (diff > 1e-4)
+ {
+ // Fragment spans the modified residue — mass difference should be ~15.995
+ Assert.That(diff, Is.EqualTo(15.994915).Within(1e-3),
+ $"Fragment [{unmodOrdered[i].FragmentNumber},{unmodOrdered[i].SecondaryFragmentNumber}]: " +
+ "mass difference should equal oxidation mass");
+ foundModifiedFragment = true;
+ }
+ }
+ Assert.That(foundModifiedFragment, Is.True,
+ "At least one fragment should span the modified position 9 via wrap-around");
+ }
+
+ [Test]
+ public static void FragmentInternally_ModifiedResidue_MidRing_IncludedInFragmentMass()
+ {
+ // TEST B: M at position 3 (well inside the ring) → fragments CAN reach it.
+ // Ring "ACMDEFGHI" (N=9), M at canonical position 3, no K/R → full-ring [1-9].
+ //
+ // Fragments containing M (end ≥ 3 and start ≤ 3):
+ // [1,3]=ACM (L=3, localStart=0, maxLength=8 ✓)
+ // [2,3]=CM (L=2, localStart=1, maxLength=7 ✓)
+ // [3,4]=MD (L=2, localStart=2, maxLength=6 ✓) ← starts at M
+ // Fragments NOT containing M:
+ // [1,2]=AC (L=2, end=2 < 3)
+
+ ModificationMotif.TryGetMotif("M", out ModificationMotif mMotif);
+ var oxidation = new Modification(
+ _originalId: "Oxidation on M",
+ _modificationType: "Common Variable",
+ _target: mMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ var mods = new Dictionary> { [3] = [oxidation] };
+ var protein = new CircularProtein("ACMDEFGHI", "mod_mid_test",
+ oneBasedModifications: mods);
+
+ Assert.That(protein.BaseSequence, Is.EqualTo("ACMDEFGHI"),
+ "Already canonical (A is smallest)");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = protein.Digest(digestionParams, [], [oxidation])
+ .OfType()
+ .ToList();
+
+ var unmodified = peptides.Single(p => p.AllModsOneIsNterminus.Count == 0);
+ var oxidized = peptides.Single(p => p.AllModsOneIsNterminus.Count == 1);
+
+ // Modification key: position 3 + 1 = 4
+ Assert.That(oxidized.AllModsOneIsNterminus.ContainsKey(4), Is.True,
+ "Oxidation on M at position 3 → key = 4");
+
+ const string ring = "ACMDEFGHI";
+ double oxMass = 15.994915;
+
+ var unmodProducts = new List();
+ var oxProducts = new List();
+ unmodified.FragmentInternally(DissociationType.HCD, 2, unmodProducts);
+ oxidized.FragmentInternally(DissociationType.HCD, 2, oxProducts);
+
+ // [1,2]=AC — does NOT contain M → same mass in both forms
+ var unmod_1_2 = unmodProducts.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 2);
+ var ox_1_2 = oxProducts.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 2);
+ Assert.That(ox_1_2.NeutralMass, Is.EqualTo(unmod_1_2.NeutralMass).Within(1e-4),
+ "[1,2]=AC: no M → no oxidation shift");
+ Assert.That(ox_1_2.NeutralMass,
+ Is.EqualTo(ExpectedInternalFragmentNeutralMass(ring, 1, 2)).Within(1e-4));
+
+ // [2,3]=CM — contains M → mass shifts by +oxMass
+ var unmod_2_2 = unmodProducts.Single(p => p.FragmentNumber == 2 && p.ResiduePosition == 2);
+ var ox_2_2 = oxProducts.Single(p => p.FragmentNumber == 2 && p.ResiduePosition == 2);
+ Assert.That(ox_2_2.NeutralMass,
+ Is.EqualTo(ExpectedInternalFragmentNeutralMass(ring, 2, 2) + oxMass).Within(1e-4),
+ "[2,3]=CM: M in fragment → +oxMass");
+ Assert.That(ox_2_2.NeutralMass - unmod_2_2.NeutralMass,
+ Is.EqualTo(oxMass).Within(1e-4),
+ "Mass difference for [2,3]=CM = oxMass");
+
+ // [1,3]=ACM (L=3) — contains M → mass shifts by +oxMass
+ var unmod_1_3 = unmodProducts.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 3);
+ var ox_1_3 = oxProducts.Single(p => p.FragmentNumber == 1 && p.ResiduePosition == 3);
+ Assert.That(ox_1_3.NeutralMass,
+ Is.EqualTo(ExpectedInternalFragmentNeutralMass(ring, 1, 3) + oxMass).Within(1e-4),
+ "[1,3]=ACM: M in fragment → +oxMass");
+ Assert.That(ox_1_3.NeutralMass - unmod_1_3.NeutralMass,
+ Is.EqualTo(oxMass).Within(1e-4),
+ "Mass difference for [1,3]=ACM = oxMass");
+ }
+
+ // ── Constructor guards: terminal mods are invalid on a circular peptide ──
+
+ private static DigestionParams SimpleDigestionParams() =>
+ new DigestionParams(protease: "trypsin", maxMissedCleavages: 0, minPeptideLength: 1);
+
+ private static Modification BuildAnyAnywhereMod()
+ {
+ ModificationMotif.TryGetMotif("M", out ModificationMotif motif);
+ return new Modification(
+ _originalId: "TestMod",
+ _modificationType: "Test",
+ _target: motif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 10.0);
+ }
+
+ ///
+ /// A circular peptide has no free N-terminus, so a modification at the
+ /// N-terminal key (1) must be rejected by the constructor.
+ ///
+ [Test]
+ public static void Constructor_NTerminalMod_ThrowsArgumentException()
+ {
+ var protein = new CircularProtein("ACDEFGHIM", "test_acc"); // N = 9
+ var mod = BuildAnyAnywhereMod();
+
+ Assert.Throws(() => new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: SimpleDigestionParams(),
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 9,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary { { 1, mod } },
+ numFixedMods: 0,
+ baseSequence: "ACDEFGHIM"));
+ }
+
+ ///
+ /// A circular peptide has no free C-terminus, so a modification at the
+ /// C-terminal key (peptideLength + 2 = 11) must be rejected by the constructor.
+ ///
+ [Test]
+ public static void Constructor_CTerminalMod_ThrowsArgumentException()
+ {
+ var protein = new CircularProtein("ACDEFGHIM", "test_acc"); // N = 9
+ var mod = BuildAnyAnywhereMod();
+
+ Assert.Throws(() => new CircularPeptideWithSetModifications(
+ protein: protein,
+ digestionParams: SimpleDigestionParams(),
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 9,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: null,
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary { { 11, mod } },
+ numFixedMods: 0,
+ baseSequence: "ACDEFGHIM"));
+ }
+
+ ///
+ /// FragmentInternally caches the ring-mass and doubled-prefix arrays after the
+ /// first call (the peptide is immutable). A second call must hit the cache and
+ /// return identical fragments.
+ ///
+ [Test]
+ public static void FragmentInternally_CalledTwice_ReturnsIdenticalProducts()
+ {
+ var peptide = GetFullRingPeptide("ACDEFGHIM");
+ var first = new List();
+ var second = new List();
+
+ peptide.FragmentInternally(DissociationType.HCD, 3, first);
+ peptide.FragmentInternally(DissociationType.HCD, 3, second);
+
+ Assert.That(first, Is.Not.Empty, "First fragmentation should produce internal fragments.");
+ Assert.That(second.Count, Is.EqualTo(first.Count),
+ "Repeated fragmentation must produce the same number of fragments.");
+ Assert.That(second.Select(p => p.NeutralMass).ToList(),
+ Is.EqualTo(first.Select(p => p.NeutralMass).ToList()),
+ "Cached fragmentation must yield identical neutral masses.");
+ }
+
+ ///
+ /// FragmentInternally enforces its documented contract: a minimum fragment
+ /// length below 1 is invalid.
+ ///
+ [Test]
+ public static void FragmentInternally_MinLengthBelowOne_Throws()
+ {
+ var peptide = GetFullRingPeptide("ACDEFGHIM");
+ var products = new List();
+
+ Assert.Throws(() =>
+ peptide.FragmentInternally(DissociationType.HCD, 0, products));
+ }
+ }
+}
\ No newline at end of file
diff --git a/mzLib/Test/TestCircularProtein.cs b/mzLib/Test/TestCircularProtein.cs
new file mode 100644
index 000000000..626797803
--- /dev/null
+++ b/mzLib/Test/TestCircularProtein.cs
@@ -0,0 +1,1410 @@
+using Chemistry;
+using MassSpectrometry;
+using NUnit.Framework;
+using Omics.Digestion;
+using Omics.Fragmentation;
+using Omics.Modifications;
+using Proteomics;
+using Proteomics.ProteolyticDigestion;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using UsefulProteomicsDatabases;
+
+namespace Test
+{
+ [TestFixture]
+ [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
+ public static class TestCircularProtein
+ {
+ [OneTimeSetUp]
+ public static void OneTimeSetup()
+ {
+ Loaders.LoadElements();
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // GetCanonicalRotation
+ // ──────────────────────────────────────────────────────────────────────
+
+ [TestCase("ACGT", "ACGT", TestName = "AlreadyCanonical")]
+ [TestCase("CGTA", "ACGT", TestName = "RotationByOne")]
+ [TestCase("GTAC", "ACGT", TestName = "RotationByTwo")]
+ [TestCase("TACG", "ACGT", TestName = "RotationByThree")]
+ [TestCase("A", "A", TestName = "SingleCharacter")]
+ [TestCase("", "", TestName = "EmptyString")]
+ public static void GetCanonicalRotation_ReturnsSmallestRotation(string input, string expected)
+ {
+ Assert.That(CircularProtein.GetCanonicalRotation(input), Is.EqualTo(expected));
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // Constructor
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Constructor_CanonicalizesInputSequence()
+ {
+ // "TACG" is not the smallest rotation; "ACGT" is
+ var circular = new CircularProtein("TACG", "acc1");
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(circular.BaseSequence, Is.EqualTo("ACGT"));
+ Assert.That(circular.CircularSequence, Is.EqualTo(circular.BaseSequence));
+ Assert.That(circular.Length, Is.EqualTo(4));
+ });
+ }
+
+ [Test]
+ public static void Constructor_PreservesMetadata()
+ {
+ var geneNames = new List> { Tuple.Create("primary", "CYCA") };
+ var circular = new CircularProtein(
+ sequence: "ACGT",
+ accession: "ACC001",
+ organism: "Homo sapiens",
+ geneNames: geneNames,
+ name: "cyclic test",
+ fullName: "cyclic test protein",
+ isDecoy: false,
+ isContaminant: true);
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(circular.Accession, Is.EqualTo("ACC001"));
+ Assert.That(circular.Organism, Is.EqualTo("Homo sapiens"));
+ Assert.That(circular.Name, Is.EqualTo("cyclic test"));
+ Assert.That(circular.FullName, Is.EqualTo("cyclic test protein"));
+ Assert.That(circular.IsDecoy, Is.False);
+ Assert.That(circular.IsContaminant, Is.True);
+ Assert.That(circular.GeneNames, Has.Count.EqualTo(1));
+ });
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // CyclicMonoisotopicMass
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void CyclicMonoisotopicMass_IsLinearMassMinusWater()
+ {
+ // A=Ala C=Cys G=Gly T=Thr — all standard residues, already canonical
+ const string sequence = "ACGT";
+ var circular = new CircularProtein(sequence, "acc1");
+
+ var linearPeptide = new PeptideWithSetModifications(sequence, new Dictionary());
+ double waterMass = PeriodicTable.GetElement("H").PrincipalIsotope.AtomicMass * 2
+ + PeriodicTable.GetElement("O").PrincipalIsotope.AtomicMass;
+
+ Assert.That(circular.CyclicMonoisotopicMass,
+ Is.EqualTo(linearPeptide.MonoisotopicMass - waterMass).Within(1e-5));
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // FromProtein
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void FromProtein_CanonicalizesAndPreservesMetadata()
+ {
+ var source = new Protein(
+ "TACG",
+ "ACC002",
+ organism: "Mus musculus",
+ name: "source protein",
+ isDecoy: true);
+
+ var circular = CircularProtein.FromProtein(source);
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(circular, Is.InstanceOf());
+ Assert.That(circular.BaseSequence, Is.EqualTo("ACGT"));
+ Assert.That(circular.Accession, Is.EqualTo("ACC002"));
+ Assert.That(circular.Organism, Is.EqualTo("Mus musculus"));
+ Assert.That(circular.Name, Is.EqualTo("source protein"));
+ Assert.That(circular.IsDecoy, Is.True);
+ });
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // Digest
+ //
+ // Sequences are designed so the reasoning is auditable by inspection:
+ //
+ // "ACDEFK" N=6, one K at the last position.
+ // Proxy = "ACDEFKACDEF" → K only at proxy pos 6.
+ // One cut → one linearised full-circle peptide "ACDEFK".
+ //
+ // "ACDEKFGHIK" N=10, K at positions 5 and 10 (last).
+ // Proxy = "ACDEKFGHIKACDEKFGHI" → K at proxy pos 5, 10, 15.
+ // 0 MC: arcs [1-5]="ACDEK" and [6-10]="FGHIK".
+ // 1 MC: adds [1-10]="ACDEKFGHIK" (end=N, non-wrapping)
+ // and [6-15]="FGHIKACDEK" (end>N, wrapping).
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Digest_OneLysine_ProducesOnePeptideOfFullLength()
+ {
+ var circular = new CircularProtein("ACDEFK", "acc_digest1");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast().ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1));
+ Assert.That(peptides[0].BaseSequence, Is.EqualTo("ACDEFK"));
+ Assert.That(peptides[0].Length, Is.EqualTo(circular.Length));
+ });
+ }
+
+ [Test]
+ public static void Digest_TwoLysines_ZeroMissedCleavages_ReturnsTwoShortPeptides()
+ {
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_digest2");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .OrderBy(p => p.BaseSequence)
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(2));
+ Assert.That(peptides[0].BaseSequence, Is.EqualTo("ACDEK"));
+ Assert.That(peptides[1].BaseSequence, Is.EqualTo("FGHIK"));
+ Assert.That(peptides.All(p => p.Length < circular.Length), Is.True);
+ });
+ }
+
+ [Test]
+ public static void Digest_TwoLysines_OneMissedCleavage_ReturnsFourPeptides()
+ {
+ // 0 MC: "ACDEK", "FGHIK"
+ // 1 MC: "ACDEKFGHIK" (full-length, non-wrapping)
+ // "FGHIKACDEK" (full-length, wrapping — starts at position 6 of circle)
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_digest3");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var sequences = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .Select(p => p.BaseSequence)
+ .ToHashSet();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(sequences, Has.Count.EqualTo(4));
+ Assert.That(sequences, Does.Contain("ACDEK"));
+ Assert.That(sequences, Does.Contain("FGHIK"));
+ Assert.That(sequences, Does.Contain("ACDEKFGHIK"));
+ Assert.That(sequences, Does.Contain("FGHIKACDEK"));
+ });
+ }
+
+ [Test]
+ public static void Digest_WrappingPeptide_HasEndResidueGreaterThanN()
+ {
+ // "FGHIKACDEK" spans the circular junction:
+ // proxy positions [6, 15], end=15 > N=10.
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_digest4");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast().ToList();
+
+ var wrapping = peptides.Single(p => p.BaseSequence == "FGHIKACDEK");
+ Assert.Multiple(() =>
+ {
+ Assert.That(wrapping.OneBasedStartResidueInProtein, Is.LessThanOrEqualTo(circular.Length));
+ Assert.That(wrapping.OneBasedEndResidueInProtein, Is.GreaterThan(circular.Length));
+ });
+ }
+
+ [Test]
+ public static void Digest_AllPeptidesAreBoundToCircularProtein()
+ {
+ // Rebinding replaces the transient proxy Protein with `this`.
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_digest5");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast().ToList();
+
+ Assert.That(peptides, Is.Not.Empty);
+ Assert.That(peptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True);
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // Modification localization
+ //
+ // Sequence: "ACDKEPGHIK" (N=10, K at 4 and 10, P at 6)
+ // Proxy: "ACDKEPGHIKACDKEPGHI" (2N-1=19 residues)
+ // P is at proxy position 6 (first copy, ≤ N → in mod dict).
+ //
+ // Trypsin 1 MC peptides that span the proline:
+ // "EPGHIK" proxy [5-10] → allModsKey = 6-5+2 = 3
+ // "ACDKEPGHIK" proxy [1-10] → allModsKey = 6-1+2 = 7 ← same P, different key!
+ // "EPGHIKACDK" proxy [5-14] → allModsKey = 6-5+2 = 3 (wrapping, same start)
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Digest_HydroxyprolineLocalization_DiffersByCleavageSite()
+ {
+ ModificationMotif.TryGetMotif("P", out ModificationMotif pMotif);
+ var hydroxyproline = new Modification(
+ _originalId: "Oxidation on P",
+ _modificationType: "Common Variable",
+ _target: pMotif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: 15.994915);
+
+ // P is at position 6 in "ACDKEPGHIK" (K at 4 and 10)
+ var mods = new Dictionary> { [6] = [hydroxyproline] };
+ var circular = new CircularProtein("ACDKEPGHIK", "acc_mod", oneBasedModifications: mods);
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ // Only keep peptides that actually carry the modification
+ var modifiedPeptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .Where(p => p.AllModsOneIsNterminus.Count > 0)
+ .ToList();
+
+ var modEpghik = modifiedPeptides.Single(p => p.BaseSequence == "EPGHIK");
+ var modFullLength = modifiedPeptides.Single(p => p.BaseSequence == "ACDKEPGHIK");
+ var modWrapping = modifiedPeptides.Single(p => p.BaseSequence == "EPGHIKACDK");
+
+ Assert.Multiple(() =>
+ {
+ // "EPGHIK" starts at proxy pos 5 → key = 6-5+2 = 3
+ Assert.That(modEpghik.AllModsOneIsNterminus.Keys.Single(), Is.EqualTo(3));
+
+ // "ACDKEPGHIK" starts at proxy pos 1 → key = 6-1+2 = 7 (same physical P, different key!)
+ Assert.That(modFullLength.AllModsOneIsNterminus.Keys.Single(), Is.EqualTo(7));
+
+ // "EPGHIKACDK" starts at proxy pos 5 → key = 6-5+2 = 3 (wrapping, same start as "EPGHIK")
+ Assert.That(modWrapping.AllModsOneIsNterminus.Keys.Single(), Is.EqualTo(3));
+
+ // All three carry the same modification identity
+ Assert.That(modEpghik.AllModsOneIsNterminus.Values.Single().OriginalId, Is.EqualTo("Oxidation"));
+ Assert.That(modFullLength.AllModsOneIsNterminus.Values.Single().OriginalId, Is.EqualTo("Oxidation"));
+ Assert.That(modWrapping.AllModsOneIsNterminus.Values.Single().OriginalId, Is.EqualTo("Oxidation"));
+ });
+ }
+
+ [Test]
+ public static void Digest_NoCleavageSites_YieldsCircularPeptideWithSetModifications()
+ {
+ // "ACGMT" contains no K or R — trypsin finds no cleavage sites.
+ // Digest() must still yield the full-length ring as a
+ // CircularPeptideWithSetModifications.
+ var circular = new CircularProtein("ACGMT", "acc_type1");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], []).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1));
+ Assert.That(peptides[0], Is.InstanceOf(),
+ "Digest() must yield CircularPeptideWithSetModifications when no cleavage sites exist");
+ Assert.That(((PeptideWithSetModifications)peptides[0]).BaseSequence,
+ Is.EqualTo(circular.BaseSequence),
+ "The yielded peptide must be the full-length canonical ring sequence");
+ });
+ }
+
+ [Test]
+ public static void Digest_NoCleavageSites_CircularParentReferenceIsCorrect()
+ {
+ var circular = new CircularProtein("ACGMT", "acc_type5");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .Single();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptide, Is.InstanceOf());
+ Assert.That(ReferenceEquals(peptide.CircularParent, circular), Is.True,
+ "CircularParent must reference the originating CircularProtein");
+ Assert.That(peptide.CircularParent.CyclicMonoisotopicMass,
+ Is.EqualTo(circular.CyclicMonoisotopicMass).Within(1e-9));
+ });
+ }
+ [Test]
+ public static void Digest_TwoKs_MaxMissedCleavagesTwo_ProducesCorrectMixOfTypes()
+ {
+ // Ring "ACDEKFGHIK" (N=10): K at positions 5 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 2 >= numCleavageSites: 2
+ // → CircularPeptideWithSetModifications IS emitted (Step 2, full ring intact).
+ //
+ // Step 3 (proxy digestion, maxMissedCleavages=2) produces linear products:
+ // 0 missed cleavages (two cuts, length < N):
+ // "ACDEK" [1-5] → PeptideWithSetModifications
+ // "FGHIK" [6-10] → PeptideWithSetModifications
+ // 1 missed cleavage (one cut, length == N):
+ // "ACDEKFGHIK" [1-10] → PeptideWithSetModifications
+ // "FGHIKACDEK" [6-15] → PeptideWithSetModifications
+ // 2 missed cleavages: length 15 > N → discarded.
+ //
+ // Total: 1 circular + 4 linear = 5 products.
+
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_type2");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ var circularProducts = peptides.OfType().ToList();
+ var linearProducts = peptides.Where(p => p is not CircularPeptideWithSetModifications).ToList();
+ var subPeptides = linearProducts.Where(p => p.Length < circular.Length).ToList();
+ var fullLengthLinear = linearProducts.Where(p => p.Length == circular.Length).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(5));
+
+ // Circular product: full ring intact, length == N
+ Assert.That(circularProducts, Has.Count.EqualTo(1),
+ "maxMissedCleavages (2) >= numCleavageSites (2): exactly one circular product.");
+ Assert.That(circularProducts[0].BaseSequence, Is.EqualTo("ACDEKFGHIK"));
+ Assert.That(circularProducts[0].Length, Is.EqualTo(circular.Length));
+
+ // Sub-peptides: two cuts, length < N, linear
+ Assert.That(subPeptides, Has.Count.EqualTo(2));
+ Assert.That(subPeptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Sub-peptides (length < N) are linear PeptideWithSetModifications.");
+ Assert.That(subPeptides.Select(p => p.BaseSequence),
+ Is.EquivalentTo(new[] { "ACDEK", "FGHIK" }));
+
+ // Full-length linear products: one cut, length == N
+ Assert.That(fullLengthLinear, Has.Count.EqualTo(2));
+ Assert.That(fullLengthLinear.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Full-length linear products (one cut) are PeptideWithSetModifications.");
+ Assert.That(fullLengthLinear.Select(p => p.BaseSequence),
+ Is.EquivalentTo(new[] { "ACDEKFGHIK", "FGHIKACDEK" }));
+ Assert.That(fullLengthLinear.All(p => p.Length == circular.Length), Is.True);
+
+ // All bound to the CircularProtein parent
+ Assert.That(peptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True);
+ });
+ }
+
+ [Test]
+ public static void Digest_AllPeptidesAreBoundToCircularProteinParent()
+ {
+ // Every peptide yielded by CircularProtein.Digest() — regardless of type —
+ // must be bound to the originating CircularProtein as its parent.
+ //
+ // Ring "ACDEKFGHIK" (N=10): K at positions 5 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 1 < numCleavageSites: 2 → NO CircularPeptideWithSetModifications.
+ // All products are linear PeptideWithSetModifications.
+ //
+ // Expected products (trypsin, maxMissedCleavages=1, minPeptideLength=1):
+ // 0 missed cleavages: ACDEK [1-5], FGHIK [6-10] (length < N)
+ // 1 missed cleavage: ACDEKFGHIK [1-10], FGHIKACDEK [6-15] (length == N)
+
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_type3");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ var subPeptides = peptides.Where(p => p.Length < circular.Length).ToList();
+ var fullLengthPeptides = peptides.Where(p => p.Length == circular.Length).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Is.Not.Empty);
+
+ // No CircularPeptideWithSetModifications: maxMissedCleavages (1) < numCleavageSites (2)
+ Assert.That(peptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "maxMissedCleavages (1) < numCleavageSites (2): no circular product expected.");
+
+ // Sub-peptides (length < N) are linear PeptideWithSetModifications — two cuts opened the ring
+ Assert.That(subPeptides, Is.Not.Empty);
+ Assert.That(subPeptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Sub-peptides (length < N) are linear PeptideWithSetModifications, never circular.");
+
+ // Full-length products (length == N) are single-cut ring-opening linear products
+ Assert.That(fullLengthPeptides, Is.Not.Empty);
+ Assert.That(fullLengthPeptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Full-length products (length == N, one cut) are linear PeptideWithSetModifications.");
+
+ // All products are bound to the CircularProtein parent
+ Assert.That(peptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True,
+ "Every product from CircularProtein.Digest() must reference the CircularProtein parent.");
+ });
+ }
+
+ [Test]
+ public static void Digest_CircularPeptide_CircularParentIsTheSameInstance()
+ {
+ // The CircularParent property of every CircularPeptideWithSetModifications
+ // must reference the exact same CircularProtein instance that was digested.
+ // Linear products (PeptideWithSetModifications) must also reference the same
+ // CircularProtein instance via their Protein property.
+ //
+ // Ring "ACDEKFGHIK" (N=10): K at positions 5 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 2 >= numCleavageSites: 2 → CircularPeptideWithSetModifications IS emitted.
+ //
+ // Expected products:
+ // Circular: ACDEKFGHIK [1-10] (maxMissedCleavages absorbs both sites)
+ // Linear: ACDEK [1-5] (0 missed cleavages)
+ // Linear: FGHIK [6-10] (0 missed cleavages)
+ // Linear: ACDEKFGHIK [1-10] (1 missed cleavage, length == N)
+ // Linear: FGHIKACDEK [6-15] (1 missed cleavage, wraps, length == N)
+
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_type4");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ var circularPeptides = peptides.OfType().ToList();
+ var linearPeptides = peptides.Where(p => p is not CircularPeptideWithSetModifications).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Is.Not.Empty);
+
+ // CircularPeptideWithSetModifications: CircularParent must be this instance
+ Assert.That(circularPeptides, Is.Not.Empty,
+ "maxMissedCleavages (2) >= numCleavageSites (2): circular product must be emitted.");
+ Assert.That(circularPeptides.All(p => ReferenceEquals(p.CircularParent, circular)), Is.True,
+ "CircularParent must be the same instance as the digested CircularProtein.");
+
+ // Linear products: Protein must be this instance
+ Assert.That(linearPeptides, Is.Not.Empty);
+ Assert.That(linearPeptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True,
+ "All linear products must also reference the CircularProtein as their Protein.");
+ });
+ }
+
+ [Test]
+ public static void Digest_CircularPeptideMonoisotopicMass_IsLinearMassMinusWater()
+ {
+ // "ACDEFGHIM" has no K or R — trypsin makes zero cuts — the ring is
+ // intact and yields a CircularPeptideWithSetModifications of length N.
+ // Its mass must equal the linear peptide mass minus one water molecule.
+ const string sequence = "ACDEFGHIM";
+ var circular = new CircularProtein(sequence, "acc_mass");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = circular.Digest(digestionParams, [], [])
+ .OfType()
+ .Single();
+
+ var linearPeptide = new PeptideWithSetModifications(
+ sequence, new Dictionary());
+
+ double waterMass = PeriodicTable.GetElement("H").PrincipalIsotope.AtomicMass * 2
+ + PeriodicTable.GetElement("O").PrincipalIsotope.AtomicMass;
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptide.MonoisotopicMass,
+ Is.EqualTo(linearPeptide.MonoisotopicMass - waterMass).Within(1e-5),
+ "Circular peptide mass must equal linear peptide mass minus H₂O");
+
+ Assert.That(peptide.MonoisotopicMass,
+ Is.EqualTo(circular.CyclicMonoisotopicMass).Within(1e-5),
+ "Circular peptide mass must equal parent CyclicMonoisotopicMass");
+ });
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // Single cleavage site — linear ring-opening product
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Digest_OneLysine_ZeroMissedCleavages_ProducesLinearPeptide()
+ {
+ // One K at position 6: a single tryptic cut opens the ring, producing
+ // a linear PeptideWithSetModifications, NOT a CircularPeptideWithSetModifications.
+ // The ring-opening ion is mass-equivalent to the precursor and carries
+ // no additional circular identity.
+ var circular = new CircularProtein("ACDEFK", "acc_linear1");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast().ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1));
+ Assert.That(peptides[0].BaseSequence, Is.EqualTo("ACDEFK"));
+ Assert.That(peptides[0].Length, Is.EqualTo(circular.Length));
+
+ // Must be a plain linear peptide, not circular
+ Assert.That(peptides[0], Is.Not.InstanceOf(),
+ "A single-cut ring-opening product must be a linear PeptideWithSetModifications");
+
+ // But it must still be bound to the CircularProtein parent
+ // so that canonical numbering is preserved
+ Assert.That(ReferenceEquals(peptides[0].Protein, circular), Is.True,
+ "Linear ring-opening product must reference the CircularProtein parent");
+ });
+ }
+
+ [Test]
+ public static void Digest_OneLysine_ZeroMissedCleavages_NumberingIsCanonical()
+ {
+ // The single K is at position 6 (last residue) in the canonical sequence "ACDEFK".
+ // The ring-opening product spans the entire canonical sequence [1, 6].
+ var circular = new CircularProtein("ACDEFK", "acc_linear2");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .Single();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptide.OneBasedStartResidueInProtein, Is.EqualTo(1),
+ "Start residue must be 1 in the canonical ring numbering");
+ Assert.That(peptide.OneBasedEndResidueInProtein, Is.EqualTo(circular.Length),
+ "End residue must equal N in the canonical ring numbering");
+ });
+ }
+
+ [Test]
+ public static void Digest_OneLysine_ZeroMissedCleavages_NumberingReflectsCleavageSitePosition()
+ {
+ // "KACDEF" canonicalizes to "ACDEFK" (A < K).
+ // The K moves from position 1 (input) to position 6 (canonical).
+ // The ring-opening product must start at canonical position 1.
+ var circular = new CircularProtein("KACDEF", "acc_linear3");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptide = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .Single();
+
+ Assert.Multiple(() =>
+ {
+ // After canonicalization, the sequence is "ACDEFK"
+ Assert.That(circular.BaseSequence, Is.EqualTo("ACDEFK"));
+ // The product spans the full canonical sequence
+ Assert.That(peptide.BaseSequence, Is.EqualTo("ACDEFK"));
+ Assert.That(peptide.OneBasedStartResidueInProtein, Is.EqualTo(1));
+ Assert.That(peptide.OneBasedEndResidueInProtein, Is.EqualTo(6));
+ // Not circular
+ Assert.That(peptide, Is.Not.InstanceOf());
+ });
+ }
+
+ [Test]
+ public static void Digest_TwoLysines_ZeroMissedCleavages_ProducesOnlyLinearSubPeptides()
+ {
+ // Ring "ACDEKFGHIK" (N=10): K at positions 5 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 0 < numCleavageSites: 2
+ // → no CircularPeptideWithSetModifications emitted.
+ // → two cuts produce two linear sub-peptides, both length < N.
+ //
+ // Sub-peptides are PeptideWithSetModifications — the ring has been opened
+ // and they are linear fragments with free termini. They are NOT circular.
+
+ var circular = new CircularProtein("ACDEKFGHIK", "acc_linear4");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(2));
+
+ Assert.That(peptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Sub-peptides from two cuts are linear PeptideWithSetModifications, not circular.");
+
+ Assert.That(peptides.All(p => p.Length < circular.Length), Is.True,
+ "Both sub-peptides must be shorter than the full ring length N.");
+ });
+ }
+
+ [Test]
+ public static void Digest_ZeroCuts_NoCleavageSites_YieldsCircularPeptideOfLengthN()
+ {
+ // "ACDEFG" has no K or R — trypsin makes zero cuts.
+ // The ring is intact → CircularPeptideWithSetModifications of length N.
+ // This is the correct way to obtain a full-length CircularPeptideWithSetModifications:
+ // not via missed cleavages, but via absence of cleavage sites entirely.
+ var circular = new CircularProtein("ACDEFGM", "acc_zero_cuts");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], []).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1));
+ Assert.That(peptides[0], Is.InstanceOf(),
+ "Zero cuts → ring intact → CircularPeptideWithSetModifications");
+ Assert.That(((PeptideWithSetModifications)peptides[0]).Length,
+ Is.EqualTo(circular.Length));
+ Assert.That(((PeptideWithSetModifications)peptides[0]).BaseSequence,
+ Is.EqualTo(circular.BaseSequence));
+ });
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // Zero cuts: no cleavage sites → CircularPeptideWithSetModifications, length N
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Digest_ZeroCuts_YieldsCircularPeptideOfLengthN()
+ {
+ // No K or R → trypsin makes zero cuts → ring is intact.
+ var circular = new CircularProtein("ACDEFGHIM", "acc_cuts0");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], []).ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1));
+ Assert.That(peptides[0], Is.InstanceOf(),
+ "Zero cuts → ring intact → CircularPeptideWithSetModifications");
+ Assert.That(((PeptideWithSetModifications)peptides[0]).Length,
+ Is.EqualTo(circular.Length));
+ Assert.That(((PeptideWithSetModifications)peptides[0]).OneBasedStartResidueInProtein,
+ Is.EqualTo(1));
+ Assert.That(((PeptideWithSetModifications)peptides[0]).OneBasedEndResidueInProtein,
+ Is.EqualTo(circular.Length));
+ });
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // One cut: exactly one cleavage site → PeptideWithSetModifications, length N
+ // ──────────────────────────────────────────────────────────────────────
+ [Test]
+ public static void Digest_OneCut_YieldsLinearPeptideOfLengthN_KAtEnd()
+ {
+ // Ring "ACDEFGHIK" (N=9): K at position 9 (last residue) → 1 cleavage site.
+ //
+ // maxMissedCleavages: 0 < numCleavageSites: 1
+ // → condition maxMissedCleavages >= numCleavageSites is NOT satisfied
+ // → no CircularPeptideWithSetModifications emitted.
+ //
+ // The single cut opens the ring at K(9), producing one linear product:
+ // "ACDEFGHIK" [1-9], length N, PeptideWithSetModifications.
+ //
+ // NOTE: maxMissedCleavages: 1 would satisfy 1 >= 1 and additionally emit
+ // a CircularPeptideWithSetModifications, giving 2 products total — not 1.
+ // maxMissedCleavages: 0 is required to isolate the single-cut linear product.
+
+ var circular = new CircularProtein("ACDEFGHIK", "acc_cuts1a");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1),
+ "One cleavage site with maxMissedCleavages=0 produces exactly one linear product.");
+
+ Assert.That(peptides[0], Is.Not.InstanceOf(),
+ "One cut → linear PeptideWithSetModifications, never circular.");
+
+ Assert.That(peptides[0].Length, Is.EqualTo(circular.Length),
+ "The single-cut product spans the full ring: length == N.");
+
+ Assert.That(peptides[0].BaseSequence, Is.EqualTo("ACDEFGHIK"));
+ Assert.That(peptides[0].OneBasedStartResidueInProtein, Is.EqualTo(1));
+ Assert.That(peptides[0].OneBasedEndResidueInProtein, Is.EqualTo(9));
+
+ Assert.That(ReferenceEquals(peptides[0].Protein, circular), Is.True,
+ "The linear product must reference the CircularProtein as its parent.");
+ });
+ }
+
+ [Test]
+ public static void Digest_OneCut_YieldsLinearPeptideOfLengthN_KNotAtEnd()
+ {
+ // "ACDEFKGHIM": K at position 6, N=10.
+ // One cut after K at pos 6 → single linear product "GHIMACDEFK",
+ // start=7, end=16. No sub-peptides: "ACDEFK" [1-6] is excluded
+ // because its end (6) ≤ N but it requires the proxy endpoint as its
+ // second boundary, not a genuine second cut within the ring.
+ var circular = new CircularProtein("ACDEFKGHIM", "acc_cuts1b");
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(1),
+ "One cleavage site produces exactly one product");
+ Assert.That(peptides[0], Is.Not.InstanceOf(),
+ "One cut → linear PeptideWithSetModifications");
+ Assert.That(peptides[0].BaseSequence, Is.EqualTo("GHIMACDEFK"),
+ "Linear product runs from residue after K at pos 6, wrapping to K");
+ Assert.That(peptides[0].OneBasedStartResidueInProtein, Is.EqualTo(7),
+ "Starts at position 7 — immediately after the K cleavage site");
+ Assert.That(peptides[0].OneBasedEndResidueInProtein, Is.EqualTo(16),
+ "Ends at position 16 = 7 + 10 - 1 in doubled-ring numbering");
+ Assert.That(ReferenceEquals(peptides[0].Protein, circular), Is.True);
+ });
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // Two cuts (maxMissedCleavages=0): all products are linear
+ // PeptideWithSetModifications, length < N.
+ // ──────────────────────────────────────────────────────────────────────
+ [Test]
+ public static void Digest_TwoCuts_YieldsOnlySubPeptides_AllLinearType()
+ {
+ // Ring "ACDEFKGHIK" (N=10): K at positions 6 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 0 < numCleavageSites: 2
+ // → no CircularPeptideWithSetModifications emitted.
+ // → two cuts produce two linear sub-peptides, both length < N.
+
+ var circular = new CircularProtein("ACDEFKGHIK", "acc_cuts2");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ Assert.Multiple(() =>
+ {
+ Assert.That(peptides, Has.Count.EqualTo(2));
+
+ Assert.That(peptides.All(p => p.Length < circular.Length), Is.True,
+ "Two cuts → all products shorter than N.");
+
+ Assert.That(peptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Two cuts → all products are linear PeptideWithSetModifications, never circular.");
+
+ Assert.That(peptides.Select(p => p.BaseSequence),
+ Is.EquivalentTo(new[] { "ACDEFK", "GHIK" }));
+ });
+ }
+
+ [Test]
+ public static void Digest_TwoCuts_WithMissedCleavages_LinearProductsAreStillLengthN()
+ {
+ // Ring "ACDEFKGHIK" (N=10): K at positions 6 and 10 → 2 cleavage sites.
+ // maxMissedCleavages: 1 < numCleavageSites: 2
+ // → no CircularPeptideWithSetModifications emitted.
+ // → all products are linear PeptideWithSetModifications.
+ //
+ // Expected products:
+ // 0 missed cleavages (two cuts):
+ // "ACDEFK" [1-6] length < N
+ // "GHIK" [7-10] length < N
+ // 1 missed cleavage (one cut):
+ // "ACDEFKGHIK" [1-10] length == N (cut after K@10, K@6 is the missed cleavage)
+ // "GHIKACDEFK" [7-16] length == N (cut after K@6, K@10 is the missed cleavage)
+
+ var circular = new CircularProtein("ACDEFKGHIK", "acc_cuts2mc");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var peptides = circular.Digest(digestionParams, [], [])
+ .Cast()
+ .ToList();
+
+ var subPeptides = peptides.Where(p => p.Length < circular.Length).ToList();
+ var fullLengthLinear = peptides.Where(p => p.Length == circular.Length).ToList();
+
+ Assert.Multiple(() =>
+ {
+ // No circular product: maxMissedCleavages (1) < numCleavageSites (2)
+ Assert.That(peptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "maxMissedCleavages (1) < numCleavageSites (2): no circular product.");
+
+ // Sub-peptides from two cuts — linear, length < N
+ Assert.That(subPeptides, Has.Count.EqualTo(2));
+ Assert.That(subPeptides.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Sub-peptides (length < N) are linear PeptideWithSetModifications.");
+ Assert.That(subPeptides.Select(p => p.BaseSequence),
+ Is.EquivalentTo(new[] { "ACDEFK", "GHIK" }));
+
+ // Full-length products from one cut — linear, length == N
+ Assert.That(fullLengthLinear, Has.Count.EqualTo(2));
+ Assert.That(fullLengthLinear.All(p => p is not CircularPeptideWithSetModifications), Is.True,
+ "Full-length products (length == N, one cut) are linear PeptideWithSetModifications.");
+ Assert.That(fullLengthLinear.Select(p => p.BaseSequence),
+ Is.EquivalentTo(new[] { "ACDEFKGHIK", "GHIKACDEFK" }));
+
+ // Canonical numbering for full-length linear products
+ var fromK10 = fullLengthLinear.Single(p => p.BaseSequence == "ACDEFKGHIK");
+ Assert.That(fromK10.OneBasedStartResidueInProtein, Is.EqualTo(1));
+ Assert.That(fromK10.OneBasedEndResidueInProtein, Is.EqualTo(10));
+
+ var fromK6 = fullLengthLinear.Single(p => p.BaseSequence == "GHIKACDEFK");
+ Assert.That(fromK6.OneBasedStartResidueInProtein, Is.EqualTo(7));
+ Assert.That(fromK6.OneBasedEndResidueInProtein, Is.EqualTo(16));
+
+ // All products are bound to the CircularProtein parent
+ Assert.That(peptides.All(p => ReferenceEquals(p.Protein, circular)), Is.True);
+ });
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // Modification remapping (fix_001)
+ // ──────────────────────────────────────────────────────────────────────
+
+ private static Modification CreateTestMod(char targetResidue, string id = "TestMod", double mass = 42.01057)
+ {
+ ModificationMotif.TryGetMotif(targetResidue.ToString(), out var motif);
+ return new Modification(
+ _originalId: id,
+ _modificationType: "Common",
+ _target: motif,
+ _locationRestriction: "Anywhere.",
+ _monoisotopicMass: mass);
+ }
+
+ [Test]
+ public static void Constructor_NonCanonicalInputWithModification_ModificationRemappedToCorrectResidue()
+ {
+ // "GKAEC" → canonical "AECGK", offset = 2
+ // Original position 3 (A) should become canonical position 1 (A).
+ var testMod = CreateTestMod('A');
+ var mods = new Dictionary>
+ {
+ { 3, new List { testMod } }
+ };
+
+ var cp = new CircularProtein("GKAEC", "acc_remap1", oneBasedModifications: mods);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("AECGK"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(1), Is.True,
+ "Modification should be remapped to position 1 (residue A)");
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(3), Is.False,
+ "Position 3 in canonical is residue C, not the original target");
+ }
+
+ [Test]
+ public static void Constructor_AlreadyCanonicalInput_ModificationsUnchanged()
+ {
+ // "AECGK" position 2 is 'E'
+ var testMod = CreateTestMod('E');
+ var mods = new Dictionary>
+ {
+ { 2, new List { testMod } }
+ };
+
+ var cp = new CircularProtein("AECGK", "acc_remap2", oneBasedModifications: mods);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("AECGK"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(2), Is.True);
+ Assert.That(cp.OneBasedPossibleLocalizedModifications[2], Contains.Item(testMod));
+ }
+
+ [Test]
+ public static void Constructor_NullModifications_DoesNotThrow()
+ {
+ Assert.DoesNotThrow(() =>
+ new CircularProtein("GKAEC", "acc_remap3", oneBasedModifications: null));
+ }
+
+ [Test]
+ public static void Constructor_EmptyModifications_DoesNotThrow()
+ {
+ var mods = new Dictionary>();
+ var cp = new CircularProtein("GKAEC", "acc_remap4", oneBasedModifications: mods);
+
+ Assert.That(cp.OneBasedPossibleLocalizedModifications, Is.Empty);
+ }
+
+ [Test]
+ public static void Constructor_MultipleModificationsRemapped_AllPositionsCorrect()
+ {
+ // "GKAEC" → "AECGK", offset = 2
+ // pos 1 (G) → ((1-1-2+5)%5)+1 = 4
+ // pos 4 (E) → ((4-1-2+5)%5)+1 = 2
+ var testMod = CreateTestMod('G');
+ var mod2 = CreateTestMod('E', "OtherMod", 15.99491);
+
+ var mods = new Dictionary>
+ {
+ { 1, new List { testMod } },
+ { 4, new List { mod2 } }
+ };
+
+ var cp = new CircularProtein("GKAEC", "acc_remap5", oneBasedModifications: mods);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("AECGK"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(4), Is.True,
+ "G was at original pos 1, should be at canonical pos 4");
+ Assert.That(cp.OneBasedPossibleLocalizedModifications[4], Contains.Item(testMod));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(2), Is.True,
+ "E was at original pos 4, should be at canonical pos 2");
+ Assert.That(cp.OneBasedPossibleLocalizedModifications[2], Contains.Item(mod2));
+ }
+
+ [Test]
+ public static void Constructor_ModificationOnLastResidue_WrapsCorrectly()
+ {
+ // "GKAEC" → "AECGK", offset = 2
+ // pos 5 (C) → ((5-1-2+5)%5)+1 = 3
+ var testMod = CreateTestMod('C');
+ var mods = new Dictionary>
+ {
+ { 5, new List { testMod } }
+ };
+
+ var cp = new CircularProtein("GKAEC", "acc_remap6", oneBasedModifications: mods);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("AECGK"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(3), Is.True,
+ "C was at original pos 5, should be at canonical pos 3");
+ }
+
+ [Test]
+ public static void FromProtein_SourceHasModificationsAndNonCanonicalSequence_ModificationsRemapped()
+ {
+ // "GKAEC" position 3 is 'A'
+ var testMod = CreateTestMod('A');
+ var mods = new Dictionary>
+ {
+ { 3, new List { testMod } }
+ };
+
+ var source = new Protein("GKAEC", "acc_remap7", oneBasedModifications: mods);
+ var cp = CircularProtein.FromProtein(source);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("AECGK"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(1), Is.True,
+ "Modification at original pos 3 (A) should map to canonical pos 1 (A)");
+ }
+
+ [Test]
+ public static void Constructor_SingleResidue_ModificationStaysAtPositionOne()
+ {
+ var testMod = CreateTestMod('A');
+ var mods = new Dictionary>
+ {
+ { 1, new List { testMod } }
+ };
+
+ var cp = new CircularProtein("A", "acc_remap8", oneBasedModifications: mods);
+
+ Assert.That(cp.BaseSequence, Is.EqualTo("A"));
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(1), Is.True);
+ }
+
+ [Test]
+ public static void GetCanonicalRotationWithOffset_ReturnsCorrectOffset()
+ {
+ var (canonical, offset) = CircularProtein.GetCanonicalRotationWithOffset("GKAEC");
+
+ Assert.That(canonical, Is.EqualTo("AECGK"));
+ Assert.That(offset, Is.EqualTo(2));
+ }
+
+ [Test]
+ public static void GetCanonicalRotationWithOffset_AlreadyCanonical_OffsetIsZero()
+ {
+ var (canonical, offset) = CircularProtein.GetCanonicalRotationWithOffset("AECGK");
+
+ Assert.That(canonical, Is.EqualTo("AECGK"));
+ Assert.That(offset, Is.EqualTo(0));
+ }
+
+ [TestCase("KAEC", 1, 4, 'K', TestName = "ModRemap_K_at_pos1_to_pos4")]
+ [TestCase("KAEC", 2, 1, 'A', TestName = "ModRemap_A_at_pos2_to_pos1")]
+ [TestCase("KAEC", 3, 2, 'E', TestName = "ModRemap_E_at_pos3_to_pos2")]
+ [TestCase("KAEC", 4, 3, 'C', TestName = "ModRemap_C_at_pos4_to_pos3")]
+ public static void Constructor_ModAtPosition_LandsOnSameAminoAcid(
+ string sequence, int originalPos, int expectedCanonicalPos, char expectedResidue)
+ {
+ var testMod = CreateTestMod(sequence[originalPos - 1]);
+ var mods = new Dictionary>
+ {
+ { originalPos, new List { testMod } }
+ };
+
+ var cp = new CircularProtein(sequence, "acc_tc", oneBasedModifications: mods);
+
+ Assert.That(cp.OneBasedPossibleLocalizedModifications.ContainsKey(expectedCanonicalPos), Is.True,
+ $"Mod should be at canonical position {expectedCanonicalPos}");
+ Assert.That(cp.BaseSequence[expectedCanonicalPos - 1], Is.EqualTo(expectedResidue),
+ $"Canonical position {expectedCanonicalPos} should be residue {expectedResidue}");
+ }
+
+ // ──────────────────────────────────────────────────────────────────────
+ // Positional isomer deduplication (fix_009)
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void Digest_RepeatedMotifCircularProtein_RetainsAllPositionalIsomers()
+ {
+ // "ARARK" canonical → trypsin cuts after R and K.
+ // Two distinct "AR" fragments at different ring positions must both survive.
+ var protein = new CircularProtein("ARARK", "REPEAT_TEST");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var products = protein
+ .Digest(digestionParams, new List(), new List())
+ .ToList();
+
+ var arProducts = products
+ .Where(p => p is PeptideWithSetModifications pwsm && pwsm.BaseSequence == "AR")
+ .Cast()
+ .ToList();
+
+ Assert.That(arProducts.Count, Is.GreaterThanOrEqualTo(2),
+ "Both 'AR' positional isomers at different ring positions must be retained");
+
+ var startPositions = arProducts
+ .Select(p => p.OneBasedStartResidueInProtein)
+ .Distinct()
+ .ToList();
+
+ Assert.That(startPositions.Count, Is.GreaterThanOrEqualTo(2),
+ "The 'AR' products must originate at distinct start positions on the ring");
+ }
+
+ [Test]
+ public static void Digest_RepeatedMotifCircularProtein_TrueDuplicatesStillCollapsed()
+ {
+ var protein = new CircularProtein("ARARK", "REPEAT_TEST");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 2,
+ minPeptideLength: 1);
+
+ var products = protein
+ .Digest(digestionParams, new List(), new List())
+ .Cast()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ // No two products should share both the same start position and full sequence
+ var keys = products.Select(p =>
+ $"{p.OneBasedStartResidueInProtein}:{p.FullSequence}").ToList();
+
+ Assert.That(keys.Distinct().Count(), Is.EqualTo(keys.Count),
+ "True duplicates (same position + same sequence) must still be collapsed");
+ }
+
+ [Test]
+ public static void Digest_SymmetricRepeatProtein_AllPositionsRetained()
+ {
+ // "ARARAR" — 3 copies of "AR", trypsin cuts after each R
+ var symmetricProtein = new CircularProtein("ARARAR", "SYMMETRIC_TEST");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 0,
+ minPeptideLength: 1);
+
+ var products = symmetricProtein
+ .Digest(digestionParams, new List(), new List())
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .Where(p => p.BaseSequence == "AR")
+ .ToList();
+
+ Assert.That(products.Count, Is.EqualTo(3),
+ "All three 'AR' positional isomers must be retained in a fully symmetric ring");
+
+ var distinctStarts = products
+ .Select(p => p.OneBasedStartResidueInProtein)
+ .Distinct()
+ .ToList();
+
+ Assert.That(distinctStarts.Count, Is.EqualTo(3),
+ "Each 'AR' product must have a unique start position");
+ }
+
+ [Test]
+ public static void Digest_RepeatedMotif_WithMissedCleavages_PositionalIsomersPreserved()
+ {
+ var protein = new CircularProtein("ARARK", "REPEAT_TEST");
+
+ var digestionParams = new DigestionParams(
+ protease: "trypsin",
+ maxMissedCleavages: 1,
+ minPeptideLength: 1);
+
+ var products = protein
+ .Digest(digestionParams, new List(), new List())
+ .OfType()
+ .Where(p => p is not CircularPeptideWithSetModifications)
+ .ToList();
+
+ // For any sequence that appears at multiple positions, all positions must be present
+ var grouped = products
+ .GroupBy(p => p.FullSequence)
+ .Where(g => g.Select(p => p.OneBasedStartResidueInProtein).Distinct().Count() > 1)
+ .ToList();
+
+ foreach (var group in grouped)
+ {
+ var distinctPositions = group
+ .Select(p => p.OneBasedStartResidueInProtein)
+ .Distinct()
+ .Count();
+
+ Assert.That(group.Count(), Is.EqualTo(distinctPositions),
+ $"Sequence '{group.Key}' has {distinctPositions} distinct positions " +
+ $"but only {group.Count()} products were emitted");
+ }
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // CircularPeptideWithSetModifications constructor validation (fix_010)
+ // ──────────────────────────────────────────────────────────────────────
+
+ [Test]
+ public static void CircularPeptide_NullProtein_ThrowsArgumentNullException()
+ {
+ var digestionParams = new DigestionParams();
+ var emptyMods = new Dictionary();
+
+ var ex = Assert.Throws(() =>
+ new CircularPeptideWithSetModifications(
+ protein: null,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 5,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: "test",
+ missedCleavages: 0,
+ allModsOneIsNterminus: emptyMods,
+ numFixedMods: 0));
+
+ Assert.That(ex.ParamName, Is.EqualTo("protein"));
+ Assert.That(ex.Message, Does.Contain("non-null"));
+ }
+
+ [Test]
+ public static void CircularPeptide_NonCircularProtein_ThrowsArgumentException()
+ {
+ var linearProtein = new Protein("ACDEFG", "LINEAR1");
+ var digestionParams = new DigestionParams();
+ var emptyMods = new Dictionary();
+
+ var ex = Assert.Throws(() =>
+ new CircularPeptideWithSetModifications(
+ protein: linearProtein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 6,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: "test",
+ missedCleavages: 0,
+ allModsOneIsNterminus: emptyMods,
+ numFixedMods: 0));
+
+ Assert.That(ex.ParamName, Is.EqualTo("protein"));
+ Assert.That(ex.Message, Does.Contain("CircularProtein"));
+ }
+
+ [Test]
+ public static void CircularPeptide_ValidCircularProtein_SetsCircularParent()
+ {
+ var circularProtein = new CircularProtein("ACDEFG", "CIRC1");
+ var digestionParams = new DigestionParams();
+ var emptyMods = new Dictionary();
+
+ var peptide = new CircularPeptideWithSetModifications(
+ protein: circularProtein,
+ digestionParams: digestionParams,
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 6,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: "valid",
+ missedCleavages: 0,
+ allModsOneIsNterminus: emptyMods,
+ numFixedMods: 0);
+
+ Assert.That(peptide.CircularParent, Is.Not.Null);
+ Assert.That(peptide.CircularParent, Is.SameAs(circularProtein));
+ }
+ // ──────────────────────────────────────────────────────────────────────
+ // Wrap-around fragmentation (fix_013)
+ // ──────────────────────────────────────────────────────────────────────
+
+ private static CircularPeptideWithSetModifications BuildFullRingPeptide(string sequence)
+ {
+ var protein = new CircularProtein(sequence, "TEST");
+ int n = protein.BaseSequence.Length;
+ return new CircularPeptideWithSetModifications(
+ protein,
+ new DigestionParams(),
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: n,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: "full-ring",
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: protein.BaseSequence);
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRingLength5_CountEqualsNTimesNMinusMinLength()
+ {
+ // N=5, minLength=2: expected = 5 * (5-2) = 15
+ var peptide = BuildFullRingPeptide("ACDEF");
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.Count, Is.EqualTo(15),
+ "Full-ring peptide of length 5 should produce N*(N-2) = 15 internal fragments");
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRing_ContainsWrapAroundFragment()
+ {
+ var peptide = BuildFullRingPeptide("ACDEF");
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ // Fragment starting at last residue wrapping to first
+ bool hasWrapFragment = products.Any(p =>
+ p.FragmentNumber == 5 && p.ResiduePosition == 2);
+
+ Assert.That(hasWrapFragment, Is.True,
+ "Should contain a wrap-around fragment starting at residue 5 with length 2");
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRingLength4_TotalCountIsCorrect()
+ {
+ // N=4, minLength=2: count = 4 * (4-2) = 8
+ var peptide = BuildFullRingPeptide("ACDE");
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.Count, Is.EqualTo(8));
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRing_AllMassesPositive()
+ {
+ var peptide = BuildFullRingPeptide("ACDEF");
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.All(p => p.NeutralMass > 0), Is.True,
+ "Every fragment mass should be positive, including wrap-around fragments");
+ }
+
+ [Test]
+ public static void FragmentInternally_FullRing_NoFullLengthFragments()
+ {
+ var peptide = BuildFullRingPeptide("ACDEF");
+ var products = new List();
+ peptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ Assert.That(products.Any(p => p.ResiduePosition == 5), Is.False,
+ "No fragment should span the entire ring (length == N)");
+ }
+
+ [Test]
+ public static void FragmentInternally_SubPeptide_DoesNotWrapAround()
+ {
+ var protein = new CircularProtein("ACDEFG", "TEST");
+ var subPeptide = new CircularPeptideWithSetModifications(
+ protein,
+ new DigestionParams(),
+ oneBasedStartResidueInProtein: 1,
+ oneBasedEndResidueInProtein: 4,
+ cleavageSpecificity: CleavageSpecificity.Full,
+ peptideDescription: "sub-ring",
+ missedCleavages: 0,
+ allModsOneIsNterminus: new Dictionary(),
+ numFixedMods: 0,
+ baseSequence: "ACDE");
+
+ var products = new List();
+ subPeptide.FragmentInternally(DissociationType.HCD, 2, products);
+
+ // Sub-peptide of length 4, minLength 2: (4-2)(4-2+1)/2 = 3
+ Assert.That(products.Count, Is.EqualTo(3),
+ "Sub-peptide should not include wrap-around fragments");
+ }
+ }
+}
diff --git a/mzLib/mzLib.nuspec b/mzLib/mzLib.nuspec
index 0bc40b8c5..ae5e4e807 100644
--- a/mzLib/mzLib.nuspec
+++ b/mzLib/mzLib.nuspec
@@ -2,7 +2,7 @@
mzLib
- 1.0.574
+ 9.9.901
mzLib
Stef S.
Stef S.
@@ -11,49 +11,49 @@
images\mzLib.png
Library for mass spectrometry projects.
Chemistry Spectrometry
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -119,4 +119,4 @@
-
+
\ No newline at end of file