Rel 20210426
BIN
Bilder/3-logo-migros-kulturprozent.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
Bilder/Fusszeile.JPG
Normal file
|
After Width: | Height: | Size: 175 KiB |
BIN
Bilder/Fusszeile.JPG_original
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
Bilder/Fusszeile.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
Bilder/Fusszeile.png.old
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
Bilder/Fusszeile.psd
Normal file
BIN
Bilder/Fusszeile2.psd
Normal file
BIN
Bilder/Fusszeile_test.png
Normal file
|
After Width: | Height: | Size: 123 KiB |
BIN
Bilder/Partner.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
Bilder/QW.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
Bilder/QW1.png
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
Bilder/ZKS.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
Bilder/logo_swisslos_sportfonds_farbig-300x96.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Bilder/qw.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
@@ -48,6 +48,9 @@
|
||||
<Reference Include="CrystalDecisions.ReportSource, Version=13.0.4000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL" />
|
||||
<Reference Include="CrystalDecisions.Shared, Version=13.0.4000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL" />
|
||||
<Reference Include="CrystalDecisions.Web, Version=13.0.4000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, processorArchitecture=MSIL" />
|
||||
<Reference Include="csvadapter">
|
||||
<HintPath>..\..\EDOKA\client\EDOKA\bin\csvadapter.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FastReport, Version=2021.1.21.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>C:\Program Files (x86)\FastReports\FastReport.Net\Framework 4.0\FastReport.dll</HintPath>
|
||||
@@ -726,6 +729,12 @@
|
||||
<DependentUpon>Erdgas.rpt</DependentUpon>
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Resultate\Reports\Rpt_Auswertung_GesamtSponsoren.cs">
|
||||
<DependentUpon>Rpt_Auswertung_GesamtSponsoren.rpt</DependentUpon>
|
||||
<AutoGen>True</AutoGen>
|
||||
<SubType>Component</SubType>
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<Compile Include="Resultate\Reports\Rpt_Auswertung_Gesamt.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
@@ -923,6 +932,10 @@ ButtonFeatures.aspx</DependentUpon>
|
||||
<Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
|
||||
<LastGenOutput>Erdgas.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Resultate\Reports\Rpt_Auswertung_GesamtSponsoren.rpt">
|
||||
<Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
|
||||
<LastGenOutput>Rpt_Auswertung_GesamtSponsoren.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Resultate\Reports\Rpt_Auswertung_Gesamt.rpt">
|
||||
<Generator>CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator</Generator>
|
||||
<LastGenOutput>Rpt_Auswertung_Gesamt.cs</LastGenOutput>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<td>
|
||||
<ej:Button ID="btnAufbereiten" runat="server" Type="Button" OnClick="btnAufbereiten_Click" Text="Daten aufbereiten"></ej:Button>
|
||||
<asp:Panel ID="pnlreports" runat="server" Visible="false">
|
||||
<asp:HyperLink ID="ReportGesamt" runat="server" NavigateUrl="~/Resultate/Report.aspx?rpt=Rpt_Auswertung_Gesamt.rpt" Text="Report Komplett" Target="_blank" Enabled="True"></asp:HyperLink>
|
||||
<asp:HyperLink ID="ReportGesamt" runat="server" NavigateUrl="~/Resultate/Report.aspx?rpt=Rpt_Auswertung_GesamtSponsoren.rpt" Text="Report Komplett" Target="_blank" Enabled="True"></asp:HyperLink>
|
||||
<br />
|
||||
<asp:HyperLink ID="ReportGesamtTop20" runat="server" NavigateUrl="~/Resultate/Report.aspx?rpt=Rpt_Auswertung_Gesamt_top_20.rpt" Text="Report Komplett Top 20" Target="_blank" Enabled="True"></asp:HyperLink>
|
||||
<br />
|
||||
|
||||
@@ -152,13 +152,20 @@ namespace QW2021C.Resultate
|
||||
string orte;
|
||||
int ortnr = 0;
|
||||
s = this.selEinzelauswertung.Text.ToString();
|
||||
ortnr = Convert.ToInt32(this.selEinzelauswertung.Value);
|
||||
clsDB db = new clsDB();
|
||||
db.Get_Tabledata("Select * from res_ort where ort='" + s.ToString() + "'", false, true);
|
||||
if (db.dsdaten.Tables[0].Rows.Count == 0) return;
|
||||
ortnr = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0][0]);
|
||||
db.dsdaten.Tables.Clear();
|
||||
|
||||
|
||||
|
||||
orte = s;
|
||||
DataTable ortdata = Get_Orttabelle(orte);
|
||||
if (this.cbu10u12Einzel.Checked == true) U1012 = "J";
|
||||
|
||||
DataSet ds = new DataSet();
|
||||
clsDB db = new clsDB();
|
||||
//clsDB db = new clsDB();
|
||||
db.Get_Reportdata(orte, U1012, erdgas, vierkampf,ortnr);
|
||||
string dataname = DateTime.Now.ToString("ddMMyyyyHHmmss") + "_Rpt.xml";
|
||||
|
||||
|
||||
@@ -23,6 +23,23 @@ namespace QW2021C.Resultate
|
||||
ReportDocument cr = new ReportDocument();
|
||||
cr.Load(rptfilename);
|
||||
|
||||
int i;
|
||||
//FormulaFieldDefinitions crFormulaFieldDefinitions;
|
||||
//FormulaFieldDefinition crFormulaFieldDefinition;
|
||||
//FormulaFieldDefinition=crim
|
||||
//Section section;
|
||||
|
||||
//int LoopFormula;
|
||||
//string FormulaName;
|
||||
//crFormulaFieldDefinitions = cr.DataDefinition.
|
||||
|
||||
//for (LoopFormula = 0; LoopFormula <= crFormulaFieldDefinitions.Count - 1; LoopFormula++)
|
||||
//{
|
||||
// crFormulaFieldDefinition = crFormulaFieldDefinitions[LoopFormula];
|
||||
// FormulaName = crFormulaFieldDefinition.Name;
|
||||
// Console.WriteLine(FormulaName);
|
||||
//}
|
||||
|
||||
switch (report)
|
||||
{
|
||||
case "Vierkampf.rpt":
|
||||
@@ -101,11 +118,26 @@ namespace QW2021C.Resultate
|
||||
|
||||
|
||||
string[] splitter = ortliste.Split(';');
|
||||
|
||||
int i;
|
||||
for (i = 1; i < splitter.Length; i++)
|
||||
|
||||
//int i;
|
||||
for (i = 1; i < 9; i++)
|
||||
{
|
||||
// CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject;
|
||||
try
|
||||
{
|
||||
MyTextObject = cr.ReportDefinition.ReportObjects["Text" + i.ToString()] as TextObject;
|
||||
MyTextObject.Text = "";
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
for (i = 1; i <= splitter.Length; i++)
|
||||
|
||||
{
|
||||
// CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject;
|
||||
MyTextObject = cr.ReportDefinition.ReportObjects["Text" + i.ToString()] as TextObject;
|
||||
MyTextObject.Text = "";
|
||||
try
|
||||
|
||||
134
Resultate/Report.aspx.vb
Normal file
@@ -0,0 +1,134 @@
|
||||
Imports CrystalDecisions.CrystalReports.Engine
|
||||
Imports System
|
||||
Imports System.Web.UI
|
||||
Imports System.Data
|
||||
|
||||
Namespace QW2021C.Resultate
|
||||
Public Partial Class Report
|
||||
Inherits Page
|
||||
|
||||
Protected Sub Page_Init(ByVal sender As Object, ByVal e As EventArgs)
|
||||
Dim report As String = Request.QueryString("rpt").ToString()
|
||||
Dim ds As DataSet = New DataSet()
|
||||
ds.ReadXml(MyBase.Session("Reportdaten").ToString())
|
||||
Dim rptfilename As String = Server.MapPath("~\Resultate\Reports\" & report.ToString())
|
||||
Dim cr As ReportDocument = New ReportDocument()
|
||||
cr.Load(rptfilename)
|
||||
Dim i As Integer
|
||||
'FormulaFieldDefinitions crFormulaFieldDefinitions;
|
||||
'FormulaFieldDefinition crFormulaFieldDefinition;
|
||||
'FormulaFieldDefinition=crim
|
||||
'Section section;
|
||||
|
||||
'int LoopFormula;
|
||||
'string FormulaName;
|
||||
'crFormulaFieldDefinitions = cr.DataDefinition.
|
||||
|
||||
'for (LoopFormula = 0; LoopFormula <= crFormulaFieldDefinitions.Count - 1; LoopFormula++)
|
||||
'{
|
||||
' crFormulaFieldDefinition = crFormulaFieldDefinitions[LoopFormula];
|
||||
' FormulaName = crFormulaFieldDefinition.Name;
|
||||
' Console.WriteLine(FormulaName);
|
||||
'}
|
||||
|
||||
Select Case report
|
||||
Case "Vierkampf.rpt"
|
||||
Dim MyTextObject As TextObject
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtheader0"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Kopfzeile1").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtheader1"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Kopfzeile1").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txttitel"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Titel").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtstadion"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Stadion").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtorganisator"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Organisator").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtdatum"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Datum").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtwettkampfnr"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Wettkampfnr").ToString()
|
||||
cr.SetDataSource(ds.Tables(1))
|
||||
Me.CrystalReportViewer1.ReportSource = cr
|
||||
Me.CrystalReportViewer1.RefreshReport()
|
||||
Dim ci As CrystalDecisions.Shared.ConnectionInfo = New CrystalDecisions.Shared.ConnectionInfo()
|
||||
Case "erdgas.rpt"
|
||||
'CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject;
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtheader0"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Kopfzeile1").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtheader1"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Kopfzeile1").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txttitel"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Titel").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtstadion"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Stadion").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtorganisator"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Organisator").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtdatum"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Datum").ToString()
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("txtwettkampfnr"), TextObject)
|
||||
MyTextObject.Text = MyBase.Session("Wettkampfnr").ToString()
|
||||
cr.SetDataSource(ds.Tables(1))
|
||||
Me.CrystalReportViewer1.ReportSource = cr
|
||||
|
||||
'CrystalDecisions.Shared.ConnectionInfo ci = new CrystalDecisions.Shared.ConnectionInfo();
|
||||
Me.CrystalReportViewer1.RefreshReport()
|
||||
Case Else
|
||||
Dim ortliste = ""
|
||||
|
||||
For Each dr As DataRow In ds.Tables(0).Rows
|
||||
If Not Equals(ortliste, "") Then ortliste = ortliste & ";"
|
||||
ortliste = ortliste & dr(0).ToString()
|
||||
Next
|
||||
|
||||
Dim dt As DataTable = New DataTable()
|
||||
|
||||
For Each c As DataColumn In ds.Tables(1).Columns
|
||||
|
||||
If Equals(c.ColumnName.ToString(), "Rang") OrElse Equals(c.ColumnName.ToString(), "BestPunkte") Then
|
||||
dt.Columns.Add(c.ColumnName, Type.GetType("System.Int32"))
|
||||
Else
|
||||
dt.Columns.Add(c.ColumnName)
|
||||
End If
|
||||
Next
|
||||
|
||||
For Each dr As DataRow In ds.Tables(1).Rows
|
||||
dt.ImportRow(dr)
|
||||
Next
|
||||
|
||||
Dim splitter = ortliste.Split(";"c)
|
||||
|
||||
'int i;
|
||||
For i = 1 To 9 - 1
|
||||
|
||||
Try
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("Text" & i.ToString()), TextObject)
|
||||
MyTextObject.Text = ""
|
||||
Catch
|
||||
End Try
|
||||
Next
|
||||
|
||||
For i = 1 To splitter.Length
|
||||
' CrystalDecisions.CrystalReports.Engine.TextObject MyTextObject;
|
||||
MyTextObject = TryCast(cr.ReportDefinition.ReportObjects("Text" & i.ToString()), TextObject)
|
||||
MyTextObject.Text = ""
|
||||
|
||||
Try
|
||||
MyTextObject.Text = splitter(i - 1).ToString()
|
||||
Catch
|
||||
End Try
|
||||
Next
|
||||
|
||||
cr.SetDataSource(dt)
|
||||
Me.CrystalReportViewer1.ReportSource = cr
|
||||
|
||||
'CrystalDecisions.Shared.ConnectionInfo ci = new CrystalDecisions.Shared.ConnectionInfo();
|
||||
Me.CrystalReportViewer1.RefreshReport()
|
||||
End Select
|
||||
End Sub
|
||||
|
||||
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
|
||||
If MyBase.Page.IsPostBack = True Then Return
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
||||
193
Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.cs
Normal file
@@ -0,0 +1,193 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
// Laufzeitversion:4.0.30319.42000
|
||||
//
|
||||
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
// der Code erneut generiert wird.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace QW2021C.Resultate.Reports {
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using CrystalDecisions.Shared;
|
||||
using CrystalDecisions.ReportSource;
|
||||
using CrystalDecisions.CrystalReports.Engine;
|
||||
|
||||
|
||||
public class Rpt_Auswertung_GesamtSponsoren : ReportClass {
|
||||
|
||||
public Rpt_Auswertung_GesamtSponsoren() {
|
||||
}
|
||||
|
||||
public override string ResourceName {
|
||||
get {
|
||||
return "Rpt_Auswertung_GesamtSponsoren.rpt";
|
||||
}
|
||||
set {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
public override bool NewGenerator {
|
||||
get {
|
||||
return true;
|
||||
}
|
||||
set {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
public override string FullResourceName {
|
||||
get {
|
||||
return "QW2021C.Resultate.Reports.Rpt_Auswertung_GesamtSponsoren.rpt";
|
||||
}
|
||||
set {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section Section1 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[0];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section Section2 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[1];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection1 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[2];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection2 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[3];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection4 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[4];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section DetailSection3 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[5];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection2 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[6];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[7];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section Section4 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[8];
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public CrystalDecisions.CrystalReports.Engine.Section Section5 {
|
||||
get {
|
||||
return this.ReportDefinition.Sections[9];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")]
|
||||
public class CachedRpt_Auswertung_GesamtSponsoren : Component, ICachedReport {
|
||||
|
||||
public CachedRpt_Auswertung_GesamtSponsoren() {
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public virtual bool IsCacheable {
|
||||
get {
|
||||
return true;
|
||||
}
|
||||
set {
|
||||
//
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public virtual bool ShareDBLogonInfo {
|
||||
get {
|
||||
return false;
|
||||
}
|
||||
set {
|
||||
//
|
||||
}
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
||||
public virtual System.TimeSpan CacheTimeOut {
|
||||
get {
|
||||
return CachedReportConstants.DEFAULT_TIMEOUT;
|
||||
}
|
||||
set {
|
||||
//
|
||||
}
|
||||
}
|
||||
|
||||
public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() {
|
||||
Rpt_Auswertung_GesamtSponsoren rpt = new Rpt_Auswertung_GesamtSponsoren();
|
||||
rpt.Site = this.Site;
|
||||
return rpt;
|
||||
}
|
||||
|
||||
public virtual string GetCustomizedCacheKey(RequestContext request) {
|
||||
String key = null;
|
||||
// // The following is the code used to generate the default
|
||||
// // cache key for caching report jobs in the ASP.NET Cache.
|
||||
// // Feel free to modify this code to suit your needs.
|
||||
// // Returning key == null causes the default cache key to
|
||||
// // be generated.
|
||||
//
|
||||
// key = RequestContext.BuildCompleteCacheKey(
|
||||
// request,
|
||||
// null, // sReportFilename
|
||||
// this.GetType(),
|
||||
// this.ShareDBLogonInfo );
|
||||
return key;
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Resultate/Reports/Rpt_Auswertung_GesamtSponsoren.rpt
Normal file
@@ -2,7 +2,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
@@ -66,27 +68,33 @@ namespace QW2021C.Resultate
|
||||
string filename = this.hiddenfilename.Value;
|
||||
string targetFolder = HttpContext.Current.Server.MapPath("~/Upload");
|
||||
filename = targetFolder + "\\" + filename;
|
||||
|
||||
string fn;
|
||||
|
||||
GenericParserAdapter Parser = new GenericParserAdapter(filename);
|
||||
GenericParserAdapter Parser = new GenericParserAdapter(filename,System.Text.Encoding.GetEncoding("Windows-1252"));
|
||||
DataSet ds = new DataSet();
|
||||
|
||||
Parser.ColumnDelimiter = Convert.ToChar(";");
|
||||
Parser.FirstRowHasHeader = true;
|
||||
|
||||
ds = Parser.GetDataSet();
|
||||
|
||||
clsDB db = new clsDB();
|
||||
|
||||
|
||||
db.truncate_table("dbo.res_taf_import");
|
||||
db.dsdaten.Tables.Clear();
|
||||
db.Get_Tabeldata_for_Update("Select * from dbo.res_taf_import", false, true);
|
||||
foreach (System.Data.DataRow r in ds.Tables[0].Rows )
|
||||
{
|
||||
System.Data.DataRow rn = db.dsdaten.Tables[0].NewRow();
|
||||
for (int i = 0; i < 23; i++)
|
||||
for (int i = 0; i < 24; i++)
|
||||
{
|
||||
|
||||
|
||||
rn[i] = r[i];
|
||||
|
||||
}
|
||||
rn[23] = this.hiddenortnr.Value.ToString();
|
||||
rn[24] = this.hiddenortnr.Value.ToString();
|
||||
rn[25] = 0;
|
||||
db.dsdaten.Tables[0].Rows.Add(rn);
|
||||
}
|
||||
db.Update_Tabeldata();
|
||||
@@ -95,5 +103,32 @@ namespace QW2021C.Resultate
|
||||
|
||||
|
||||
}
|
||||
|
||||
protected byte[] GetCSVFileContent(string fileName)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
using (StreamReader sr = new StreamReader(fileName, Encoding.Default, true))
|
||||
{
|
||||
String line;
|
||||
// Read and display lines from the file until the end of
|
||||
// the file is reached.
|
||||
while ((line = sr.ReadLine()) != null)
|
||||
{
|
||||
sb.AppendLine(line);
|
||||
}
|
||||
}
|
||||
string allines = sb.ToString();
|
||||
|
||||
|
||||
UTF8Encoding utf8 = new UTF8Encoding();
|
||||
|
||||
|
||||
var preamble = utf8.GetPreamble();
|
||||
|
||||
var data = utf8.GetBytes(allines);
|
||||
|
||||
|
||||
return data;
|
||||
}
|
||||
}
|
||||
}
|
||||
536
Upload/Resultate-1.csv
Normal file
@@ -0,0 +1,536 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;30.30;;1;1;1;12;451
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;464;;;7;;;
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.90;;2;3;1;4;358
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;10.10;;12;12;1;1;106
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;731;;;3;;;
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.80;;1;1;1;5;606
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;11.11;;11;11;1;2;125
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;465;;;6;;;
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10.10;;3;6;1;2;321
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;12.12;;10;10;1;3;144
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;747;;;2;;;
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.88;;1;2;2;1;585
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;13.13;;9;9;1;4;162
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;217;;;11;;;
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;13.13;;6;11;2;6;19
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;15.15;;8;8;1;5;198
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;455;;;8;;;
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;2;4;170
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;20.20;;7;7;1;6;285
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;658;;;4;;;
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10.00;;3;5;2;3;339
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;22.22;;6;6;1;7;319
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;407;;;10;;;
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12.12;;5;10;2;5;72
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;23.23;;5;5;1;8;335
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;433;;;9;;;
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12.00;;5;9;1;6;81
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;24.24;;4;4;1;9;352
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;539;;;5;;;
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;1;3;170
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;25.25;;3;3;1;10;369
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;759;;;1;;;
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.99;;2;4;2;2;341
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;28.28;;2;2;1;11;418
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;754;;;4;;;
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;10.10;;7;7;1;1;205
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;10.00;;2;2;1;1;549
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;740;;;6;;;
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;12.12;;6;6;1;2;252
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;9.00;;3;3;1;2;488
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;749;;;5;;;
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;15.15;;5;5;1;3;322
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;8.00;;4;4;1;3;427
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;800;;;3;;;
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;20.20;;3;3;1;4;435
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;7.00;;5;5;1;4;365
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;714;;;7;;;
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;19.19;;4;4;1;5;413
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;6.00;;6;6;1;5;301
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;1’067;;;1;;;
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;21.21;;2;2;1;6;458
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;11.00;;1;1;1;6;609
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;882;;;2;;;
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;30.00;;1;1;1;7;646
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;5.00;;7;7;1;7;236
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;488;;;10;;;
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.10;;10;10;1;1;329
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;10.50;;10;10;1;1;159
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;604;;;9;;;
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.20;;6;6;1;2;424
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;11.50;;9;9;1;2;180
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;624;;;8;;;
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.20;;7;7;1;3;424
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;12.50;;8;8;1;3;200
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;785;;;5;;;
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;4;565
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;13.50;;7;7;1;4;220
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;805;;;4;;;
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;14.50;;6;6;1;5;240
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;825;;;2;;;
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;4;4;1;6;565
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;15.50;;5;5;1;6;260
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;704;;;6;;;
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.20;;8;8;1;7;424
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;16.50;;4;4;1;7;280
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;817;;;3;;;
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.30;;5;5;1;8;518
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;17.50;;3;3;1;8;299
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;696;;;7;;;
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.15;;9;9;1;9;377
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;18.50;;2;2;1;9;319
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;903;;;1;;;
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;10;565
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;19.50;;1;1;1;10;338
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
|
16
Upload/Resultate-1_small.csv
Normal file
@@ -0,0 +1,16 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;30.3;;1;1;1;12;451
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;805;;;4;;;
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;14.5;;6;6;1;5;240
|
||||
|
16
Upload/Resultate-1_small.csv.csv
Normal file
@@ -0,0 +1,16 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;30.3;;1;1;1;12;451
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;805;;;4;;;
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;14.5;;6;6;1;5;240
|
||||
|
536
Upload/Resultate-1x.csv
Normal file
@@ -0,0 +1,536 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Vir g;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;18;249217;Quentin;von Vir g;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Vir g;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Vir g;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Vir g;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccol•;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;23;254962;Niccol•;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccol•;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccol•;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccol•;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;30.3;;1;1;1;12;451
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;464;;;7;;;
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;9.9;;2;3;1;4;358
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;10.1;;12;12;1;1;106
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laur‚n;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laur‚n;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laur‚n;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laur‚n;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laur‚n;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;731;;;3;;;
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;8.8;;1;1;1;5;606
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;11.11;;11;11;1;2;125
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;465;;;6;;;
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;10.1;;3;6;1;2;321
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;12.12;;10;10;1;3;144
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;747;;;2;;;
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;8.88;;1;2;2;1;585
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;13.13;;9;9;1;4;162
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;217;;;11;;;
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;13.13;;6;11;2;6;19
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;15.15;;8;8;1;5;198
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;455;;;8;;;
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;2;4;170
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;20.2;;7;7;1;6;285
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;658;;;4;;;
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;10;;3;5;2;3;339
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;22.22;;6;6;1;7;319
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;407;;;10;;;
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;12.12;;5;10;2;5;72
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;23.23;;5;5;1;8;335
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;433;;;9;;;
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;12;;5;9;1;6;81
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;24.24;;4;4;1;9;352
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;539;;;5;;;
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;1;3;170
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;25.25;;3;3;1;10;369
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;759;;;1;;;
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;9.99;;2;4;2;2;341
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;28.28;;2;2;1;11;418
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;754;;;4;;;
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;10.1;;7;7;1;1;205
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;10;;2;2;1;1;549
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;740;;;6;;;
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;12.12;;6;6;1;2;252
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;9;;3;3;1;2;488
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;749;;;5;;;
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;15.15;;5;5;1;3;322
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;8;;4;4;1;3;427
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;800;;;3;;;
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;20.2;;3;3;1;4;435
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;7;;5;5;1;4;365
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;714;;;7;;;
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;19.19;;4;4;1;5;413
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;6;;6;6;1;5;301
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;1?067;;;1;;;
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;21.21;;2;2;1;6;458
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;11;;1;1;1;6;609
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;882;;;2;;;
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;30;;1;1;1;7;646
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;5;;7;7;1;7;236
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Rib‚ron;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;54;176257;Alan;Obrecht-Rib‚ron;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Rib‚ron;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Rib‚ron;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Rib‚ron;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Fl<46>e;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;57;171967;Elio;Von Fl<46>e;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Fl<46>e;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Fl<46>e;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Fl<46>e;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;K<>enzi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;68;174163;Nina;K<>enzi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;K<>enzi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;K<>enzi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;K<>enzi;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;R<>egg;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;75;176328;Emilia;R<>egg;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;R<>egg;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;R<>egg;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;R<>egg;2009;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;488;;;10;;;
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.1;;10;10;1;1;329
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;10.5;;10;10;1;1;159
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;604;;;9;;;
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;6;6;1;2;424
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;11.5;;9;9;1;2;180
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;624;;;8;;;
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;7;7;1;3;424
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;12.5;;8;8;1;3;200
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;785;;;5;;;
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;4;565
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;13.5;;7;7;1;4;220
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;805;;;4;;;
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;14.5;;6;6;1;5;240
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;825;;;2;;;
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;4;4;1;6;565
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;15.5;;5;5;1;6;260
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;704;;;6;;;
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;8;8;1;7;424
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;16.5;;4;4;1;7;280
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;817;;;3;;;
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.3;;5;5;1;8;518
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;17.5;;3;3;1;8;299
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;696;;;7;;;
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.15;;9;9;1;9;377
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;18.5;;2;2;1;9;319
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;903;;;1;;;
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;10;565
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;19.5;;1;1;1;10;338
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Str„hl;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;99;173476;Mila;Str„hl;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Str„hl;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Str„hl;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Str„hl;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Z<>nd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;103;172299;Lavinia;Z<>nd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Z<>nd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Z<>nd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Z<>nd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;106;153352;C‚line;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;106;153352;C‚line;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;C‚line;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;C‚line;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;C‚line;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;W<>thrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;107;174602;Kayline;W<>thrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;W<>thrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;W<>thrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;W<>thrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
|
536
Upload/Resultate-2.csv
Normal file
@@ -0,0 +1,536 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;30.30;;1;1;1;12;451
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;464;;;7;;;
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.90;;2;3;1;4;358
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;10.10;;12;12;1;1;106
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;731;;;3;;;
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.80;;1;1;1;5;606
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;11.11;;11;11;1;2;125
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;465;;;6;;;
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10.10;;3;6;1;2;321
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;12.12;;10;10;1;3;144
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;747;;;2;;;
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.88;;1;2;2;1;585
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;13.13;;9;9;1;4;162
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;217;;;11;;;
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;13.13;;6;11;2;6;19
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;15.15;;8;8;1;5;198
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;455;;;8;;;
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;2;4;170
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;20.20;;7;7;1;6;285
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;658;;;4;;;
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10.00;;3;5;2;3;339
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;22.22;;6;6;1;7;319
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;407;;;10;;;
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12.12;;5;10;2;5;72
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;23.23;;5;5;1;8;335
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;433;;;9;;;
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12.00;;5;9;1;6;81
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;24.24;;4;4;1;9;352
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;539;;;5;;;
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;1;3;170
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;25.25;;3;3;1;10;369
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;759;;;1;;;
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.99;;2;4;2;2;341
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;28.28;;2;2;1;11;418
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;754;;;4;;;
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;10.10;;7;7;1;1;205
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;10.00;;2;2;1;1;549
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;740;;;6;;;
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;12.12;;6;6;1;2;252
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;9.00;;3;3;1;2;488
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;749;;;5;;;
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;15.15;;5;5;1;3;322
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;8.00;;4;4;1;3;427
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;800;;;3;;;
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;20.20;;3;3;1;4;435
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;7.00;;5;5;1;4;365
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;714;;;7;;;
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;19.19;;4;4;1;5;413
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;6.00;;6;6;1;5;301
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;1’067;;;1;;;
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;21.21;;2;2;1;6;458
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;11.00;;1;1;1;6;609
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;882;;;2;;;
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;30.00;;1;1;1;7;646
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;5.00;;7;7;1;7;236
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’119;;;8;;;
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:47.52;;1;1;1;1;631
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.10;;10;10;1;1;329
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;10.50;;10;10;1;1;159
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’191;;;6;;;
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:49.82;;2;2;1;2;587
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.20;;6;6;1;2;424
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;11.50;;9;9;1;2;180
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’200;;;5;;;
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:50.36;;3;3;1;3;576
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.20;;7;7;1;3;424
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;12.50;;8;8;1;3;200
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’346;;;1;;;
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:51.21;;4;4;1;4;561
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.35;;1;1;1;4;565
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;13.50;;7;7;1;4;220
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’300;;;2;;;
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:54.93;;5;5;1;5;495
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;14.50;;6;6;1;5;240
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’278;;;3;;;
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:57.38;;6;6;1;6;453
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.35;;4;4;1;6;565
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;15.50;;5;5;1;6;260
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’063;;;9;;;
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:03.51;;7;7;1;7;359
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.20;;8;8;1;7;424
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;16.50;;4;4;1;7;280
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’164;;;7;;;
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:04.32;;8;8;1;8;347
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.30;;5;5;1;8;518
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;17.50;;3;3;1;8;299
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’023;;;10;;;
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:05.77;;9;9;1;9;327
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.15;;9;9;1;9;377
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;18.50;;2;2;1;9;319
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’226;;;4;;;
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:06.03;;10;10;1;10;323
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;1.35;;1;1;1;10;565
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;19.50;;1;1;1;10;338
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;- 1;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
|
536
Upload/Resultate-2Mit_hOC_Info.csv
Normal file
@@ -0,0 +1,536 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;1;248930;Leo;Braune-Krickau;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;2;254945;Joel;Folly;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;3;244187;Lukas;Gasser;2010;M;;;98;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;4;254948;Tiago;Gonzalo;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;5;248101;Oliver;Guye;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;6;247957;Linus;Helfer;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;7;A:999998;Test;Hutter;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;8;244193;Cla;Illi;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;9;248102;Ryan;Kannangarage;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;10;176112;Lennox;Lehmkuhl;2010;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;11;254958;Eliah;Netuschil;2011;M;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;12;173451;Jan;Ochsenbein;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;13;176899;Luis;Puschmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;14;248284;Raphael;Reinle;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;15;173448;Linus;Roy;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;16;244198;Ephraim;Taub;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;17;254961;Ananiya;Tresch;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;18;249217;Quentin;von Virág;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;19;176258;Julian;Weber;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;20;247959;Mio;Wegmann;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;21;246095;Levi;Wunderlin;2010;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;22;247960;Julian;Zahnd;2011;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;23;254962;Niccolò;Zuffellato;2011;M;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;24;254938;Leonie;Abegg;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;451;;;;;;
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;n.a.;;;;1;1;0
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;30.3;;1;1;1;12;451
|
||||
Athlete;25;248098;Eloïse;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;464;;;7;;;
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.9;;2;3;1;4;358
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;10.1;;12;12;1;1;106
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;27;254944;Laurén;D'Amico;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;731;;;3;;;
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.8;;1;1;1;5;606
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;11.11;;11;11;1;2;125
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;29;255216;Ima;Dufner;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;30;254946;Margot;Geimer;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;465;;;6;;;
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10.1;;3;6;1;2;321
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;12.12;;10;10;1;3;144
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;747;;;2;;;
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;8.88;;1;2;2;1;585
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;13.13;;9;9;1;4;162
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;217;;;11;;;
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;13.13;;6;11;2;6;19
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;15.15;;8;8;1;5;198
|
||||
Athlete;33;248107;Jaël Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;455;;;8;;;
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;2;4;170
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;20.2;;7;7;1;6;285
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;658;;;4;;;
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;10;;3;5;2;3;339
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;22.22;;6;6;1;7;319
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;407;;;10;;;
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12.12;;5;10;2;5;72
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;23.23;;5;5;1;8;335
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;433;;;9;;;
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;12;;5;9;1;6;81
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;24.24;;4;4;1;9;352
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;539;;;5;;;
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;1;3;170
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;25.25;;3;3;1;10;369
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;759;;;1;;;
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;9.99;;2;4;2;2;341
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;28.28;;2;2;1;11;418
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;40;254959;Noemi;Ruff;2011;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;41;247955;Louna;Sjeverac;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;42;251370;Liv;Stanek;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;43;176604;Nayla;Sturzenegger;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U12W;False;0;;;;;;
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;BAL;;U12W;False;;;;;;;0
|
||||
Athlete;44;247956;Nika;Venus;2010;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEZ;1;U12W;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;754;;;4;;;
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;10.1;;7;7;1;1;205
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;10;;2;2;1;1;549
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;740;;;6;;;
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;12.12;;6;6;1;2;252
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;9;;3;3;1;2;488
|
||||
Athlete;46;247246;Jacob;Bründler;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;749;;;5;;;
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;15.15;;5;5;1;3;322
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;8;;4;4;1;3;427
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;800;;;3;;;
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;20.2;;3;3;1;4;435
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;7;;5;5;1;4;365
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;714;;;7;;;
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;19.19;;4;4;1;5;413
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;6;;6;6;1;5;301
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;1’067;;;1;;;
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;21.21;;2;2;1;6;458
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;11;;1;1;1;6;609
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;882;;;2;;;
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;30;;1;1;1;7;646
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;5;;7;7;1;7;236
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;52;174342;Emil;Merkel;2009;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;53;173447;Alex;Ngwenya;2008;M;;;POL;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;54;176257;Alan;Obrecht-Ribéron;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;55;252178;Nicolas Matthias;Schib;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;56;253546;Jovin;Venus;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;57;171967;Elio;Von Flüe;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14M;False;0;;;;;;
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14M;False;;;;;;;0
|
||||
Athlete;58;173939;Julian;Widmer;2008;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14M;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;59;173425;Isabelle;Biber;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;60;252181;Cherin;D'Amico;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;61;172361;Amani Jahzara;Ferguson Simpson;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;62;254963;Zoe;Fischer;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;63;173426;Luisa;Frei;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;64;174345;Lina;Hafner;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;65;173431;Sophie;Hintermann;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;66;173940;Laura;Huber;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;67;163915;Linn;Illi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;68;174163;Nina;Küenzi;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;69;252180;Stella;Minichiello;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;70;173450;Thalia;Ochsenbein;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;71;176422;Shaniqua;Paul;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;72;176881;Lia;Peter;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;73;176746;Emma;Pisanu;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;74;167940;Nora, Anna;Probst;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;75;176328;Emilia;Rüegg;2009;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;76;176245;Stella;Ruff;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;77;247358;Ava;Stanek;2008;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;78;173436;Alessandra;Stocker;2008;W;;;ITA;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;1.35;;1;1;1;4;565
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;1.35;;1;1;1;10;565
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XO;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XXO;U16W;False;1.35;;4;4;1;6;565
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XO;U16W;False;1.3;;5;5;1;8;518
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;1.2;;6;6;1;2;424
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’119;;;8;;;
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:47.52;;1;1;1;1;631
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;1.2;;7;7;1;3;424
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;10.5;;10;10;1;1;159
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’191;;;6;;;
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:49.82;;2;2;1;2;587
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XXO;U16W;False;1.2;;8;8;1;7;424
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;11.5;;9;9;1;2;180
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’200;;;5;;;
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:50.36;;3;3;1;3;576
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XXO;U16W;False;1.15;;9;9;1;9;377
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;12.5;;8;8;1;3;200
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’346;;;1;;;
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:51.21;;4;4;1;4;561
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;XO;U16W;False;1.1;;10;10;1;1;329
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;13.5;;7;7;1;4;220
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’300;;;2;;;
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:54.93;;5;5;1;5;495
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;79;176584;Ashik;Begum;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;89;173471;Malena;Grošin;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;14.5;;6;6;1;5;240
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’278;;;3;;;
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;1:57.38;;6;6;1;6;453
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;80;255218;Finn;Davi;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;15.5;;5;5;1;6;260
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’063;;;9;;;
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:03.51;;7;7;1;7;359
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;81;173478;Manuel;Frei;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;16.5;;4;4;1;7;280
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’164;;;7;;;
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:04.32;;8;8;1;8;347
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;82;174423;Lucien;Kissling;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;92;176148;Leonie;Körner;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;17.5;;3;3;1;8;299
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’023;;;10;;;
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:05.77;;9;9;1;9;327
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;83;174424;Luis;Manger;2007;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;18.5;;2;2;1;9;319
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;1’226;;;4;;;
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;2:06.03;;10;10;1;10;323
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;84;175461;Charles;Zingraff;2006;M;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;19.5;;1;1;1;10;338
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;95;252297;Lucija;Mitrovic;2006;W;;;;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;96;245408;Marlena;Noth;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;97;173475;Kaija;Peloli;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;98;163914;Hannah;Stalder;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;99;173476;Mila;Strähl;2007;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;100;248931;Lorelai;Thomann;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;101;244368;Philippa;Tuor;2006;W;;;SUI;LAC TV Unterstrass Zürich;1.ZH.1802;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U12M;False;0;;;;;;
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;BAL;;U12M;False;;;;;;;0
|
||||
Athlete;102;A:999996;Peter;Muster;2010;M;;;SUI;LC Meilen;1.ZH.1837;SUI;WEZ;1;U12M;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U14W;False;0;;;;;;
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;60M;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;DW;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;KUG;;U14W;False;;;;;;;0
|
||||
Athlete;103;172299;Lavinia;Zünd;2009;W;;;SUI;LC Meilen;1.ZH.1837;SUI;WEI;2;U14W;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;104;174599;Leo;Bartholdi;2006;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16M;False;0;;;;;;
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;;U16M;False;;;;;;;0
|
||||
Athlete;105;250351;Cyril;Tobler;2007;M;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16M;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;106;153352;Céline;Weber;2006;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;4-K;;U16W;False;0;;;;;;
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;600;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;80M;;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;HOC;O;U16W;False;;;;;;;0
|
||||
Athlete;107;174602;Kayline;Wüthrich;2007;W;;;SUI;LC Meilen;1.ZH.1837;SUI;SPE;;U16W;False;;;;;;;0
|
||||
|
58
Upload/Resultate_Nur_mit_Punkten.csv
Normal file
@@ -0,0 +1,58 @@
|
||||
Type;Bib;Code;FirstName;LastName;Yob;Gender;RelayNumber;RelayName;Nation;ClubName;ClubCode;ClubNation;Event;EventInfo;Class;NotCompetitive;Result;Wind;HeatRank;RoundRank;HeatNr;Lane;SinglePoints
|
||||
Athlete;25;248098;Elo‹se;Chabloz;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;30.3;;1;1;1;12;451
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;9.9;;2;3;1;4;358
|
||||
Athlete;26;245048;Edda;Crola;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;10.1;;12;12;1;1;106
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;8.8;;1;1;1;5;606
|
||||
Athlete;28;247161;Gaia;Desiderio;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;11.11;;11;11;1;2;125
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;10.1;;3;6;1;2;321
|
||||
Athlete;31;248105;Luna;Maiwald;2010;W;;;GER;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;12.12;;10;10;1;3;144
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;8.88;;1;2;2;1;585
|
||||
Athlete;32;249493;Sophie;Meili;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;13.13;;9;9;1;4;162
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;13.13;;6;11;2;6;19
|
||||
Athlete;33;248107;Ja‰l Anne;Merkel;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;15.15;;8;8;1;5;198
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;2;4;170
|
||||
Athlete;34;244191;Olivia;Ngwenya;2010;W;;;POL;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;20.2;;7;7;1;6;285
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;10;;3;5;2;3;339
|
||||
Athlete;35;247961;July-Mae;Ouattara;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;22.22;;6;6;1;7;319
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;12.12;;5;10;2;5;72
|
||||
Athlete;36;173432;Elin Katharina;Probst;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;23.23;;5;5;1;8;335
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;12;;5;9;1;6;81
|
||||
Athlete;37;173433;Tilda;Puhan;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;24.24;;4;4;1;9;352
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;11.11;;4;7;1;3;170
|
||||
Athlete;38;252182;Seraina;Rosenberg;2010;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;25.25;;3;3;1;10;369
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;60M;;U12W;False;9.99;;2;4;2;2;341
|
||||
Athlete;39;248109;Annabelle;Roy;2011;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;BAL;;U12W;False;28.28;;2;2;1;11;418
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;10.1;;7;7;1;1;205
|
||||
Athlete;45;167942;Bru;Bonaventura;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;10;;2;2;1;1;549
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;12.12;;6;6;1;2;252
|
||||
Athlete;46;247246;Jacob;Br<42>ndler;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;9;;3;3;1;2;488
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;15.15;;5;5;1;3;322
|
||||
Athlete;47;247312;Andri;Capaul;2008;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;8;;4;4;1;3;427
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;20.2;;3;3;1;4;435
|
||||
Athlete;48;248282;Raffael;Guye;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;7;;5;5;1;4;365
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;19.19;;4;4;1;5;413
|
||||
Athlete;49;173454;Nevio;Huber;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;6;;6;6;1;5;301
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;21.21;;2;2;1;6;458
|
||||
Athlete;50;176149;Jan;Kehrle;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;11;;1;1;1;6;609
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;DW;;U14M;False;30;;1;1;1;7;646
|
||||
Athlete;51;247162;Carlo;Leisinger;2009;M;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;KUG;;U14M;False;5;;7;7;1;7;236
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.1;;10;10;1;1;329
|
||||
Athlete;85;244201;Lena;Bischoff;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;10.5;;10;10;1;1;159
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;6;6;1;2;424
|
||||
Athlete;86;174525;Anne;Dufner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;11.5;;9;9;1;2;180
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;7;7;1;3;424
|
||||
Athlete;87;173469;Mia;Fischer;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;12.5;;8;8;1;3;200
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;4;565
|
||||
Athlete;88;161296;Ayele Carine;Folly;2006;W;;;TOG;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;13.5;;7;7;1;4;220
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;3;3;1;5;565
|
||||
Athlete;89;173471;Malena;Gro?in;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;14.5;;6;6;1;5;240
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;4;4;1;6;565
|
||||
Athlete;90;174285;Ariane;Jakob;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;15.5;;5;5;1;6;260
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.2;;8;8;1;7;424
|
||||
Athlete;91;249198;Soraya Nerea;Kaiser;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;16.5;;4;4;1;7;280
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.3;;5;5;1;8;518
|
||||
Athlete;92;176148;Leonie;K”rner;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;17.5;;3;3;1;8;299
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.15;;9;9;1;9;377
|
||||
Athlete;93;244203;Hanna;Leemann;2006;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;18.5;;2;2;1;9;319
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;HOC;;U16W;False;1.35;;1;1;1;10;565
|
||||
Athlete;94;173473;Ella;Meissner;2007;W;;;SUI;LAC TV Unterstrass Z<>rich;1.ZH.1802;SUI;SPE;;U16W;False;19.5;;1;1;1;10;338
|
||||
|
20117
Workdir/22042021212602_Rpt.xml
Normal file
20117
Workdir/22042021213431_Rpt.xml
Normal file
63515
Workdir/22042021213458_Rpt.xml
Normal file
41098
Workdir/22042021213642_Rpt.xml
Normal file
41098
Workdir/22042021213830_Rpt.xml
Normal file
20117
Workdir/23042021062614_Rpt.xml
Normal file
20117
Workdir/23042021062832_Rpt.xml
Normal file
41098
Workdir/23042021074238_Rpt.xml
Normal file
20117
Workdir/23042021093211_Rpt.xml
Normal file
41098
Workdir/23042021094934_Rpt.xml
Normal file
41098
Workdir/23042021104556_Rpt.xml
Normal file
41098
Workdir/23042021104826_Rpt.xml
Normal file
41098
Workdir/23042021115703_Rpt.xml
Normal file
975
Workdir/24042021113839_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>Test 3</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>0.14</F0>
|
||||
<Best>0.14</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.14</F0>
|
||||
<Best>0.14</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.33</F0>
|
||||
<Best>2.33</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.43</F0>
|
||||
<Best>2.43</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.60</F0>
|
||||
<Best>0.60</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.92</F0>
|
||||
<Best>1.92</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.25</F0>
|
||||
<Best>1.25</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.12</F0>
|
||||
<Best>0.12</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>0.15</F0>
|
||||
<Best>0.15</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.14</F0>
|
||||
<Best>0.14</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.95</F0>
|
||||
<Best>1.95</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.14</F0>
|
||||
<Best>0.14</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>0.16</F0>
|
||||
<Best>0.16</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.14</F0>
|
||||
<Best>0.14</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.12</F0>
|
||||
<Best>0.12</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.75</F0>
|
||||
<Best>1.75</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.13</F0>
|
||||
<Best>0.13</Best>
|
||||
<BestPunkte>518</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.13</F0>
|
||||
<Best>2.13</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.05</F0>
|
||||
<Best>1.05</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.11</F0>
|
||||
<Best>0.11</Best>
|
||||
<BestPunkte>329</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.85</F0>
|
||||
<Best>1.85</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.12</F0>
|
||||
<Best>0.12</Best>
|
||||
<BestPunkte>377</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>0.99</F0>
|
||||
<Best>0.99</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>0.88</F0>
|
||||
<Best>0.88</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.50</F0>
|
||||
<Best>0.50</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>3.00</F0>
|
||||
<Best>3.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.90</F0>
|
||||
<Best>0.90</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.80</F0>
|
||||
<Best>0.80</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.23</F0>
|
||||
<Best>2.23</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>3.03</F0>
|
||||
<Best>3.03</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.83</F0>
|
||||
<Best>2.83</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.70</F0>
|
||||
<Best>0.70</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>0.21</F0>
|
||||
<Best>0.21</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.65</F0>
|
||||
<Best>1.65</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>0.12</F0>
|
||||
<Best>0.12</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>0.89</F0>
|
||||
<Best>0.89</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.53</F0>
|
||||
<Best>2.53</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/24042021114211_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>Test 3</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.30</F0>
|
||||
<Best>1.30</Best>
|
||||
<BestPunkte>518</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>329</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>377</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/24042021120019_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>Test 3</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.30</F0>
|
||||
<Best>1.30</Best>
|
||||
<BestPunkte>518</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>329</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>377</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/24042021120402_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>Test 3</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>565</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.30</F0>
|
||||
<Best>1.30</Best>
|
||||
<BestPunkte>518</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>329</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>377</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>HOC</Disziplin>
|
||||
<F0>1.20</F0>
|
||||
<Best>1.20</Best>
|
||||
<BestPunkte>424</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
6
Workdir/24042021134517_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
41098
Workdir/24042021134607_Rpt.xml
Normal file
93262
Workdir/24042021134723_Rpt.xml
Normal file
93262
Workdir/24042021152638_Rpt.xml
Normal file
20117
Workdir/24042021152727_Rpt.xml
Normal file
20984
Workdir/24042021152755_Rpt.xml
Normal file
19012
Workdir/24042021153643_Rpt.xml
Normal file
6
Workdir/26042021091540_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021091609_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021092139_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021092209_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021092401_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021093214_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021094110_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021094247_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021094254_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021094434_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021100337_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021102142_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:31</F0>
|
||||
<Best>00:11:31</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.33</F0>
|
||||
<Best>2.33</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.43</F0>
|
||||
<Best>2.43</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.60</F0>
|
||||
<Best>0.60</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.92</F0>
|
||||
<Best>1.92</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.25</F0>
|
||||
<Best>1.25</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:36</F0>
|
||||
<Best>00:11:36</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:33</F0>
|
||||
<Best>00:12:33</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:63</F0>
|
||||
<Best>00:12:63</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.95</F0>
|
||||
<Best>1.95</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:08</F0>
|
||||
<Best>00:12:08</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:72</F0>
|
||||
<Best>00:11:72</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.75</F0>
|
||||
<Best>1.75</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:72</F0>
|
||||
<Best>00:12:72</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.13</F0>
|
||||
<Best>2.13</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.05</F0>
|
||||
<Best>1.05</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:22</F0>
|
||||
<Best>00:11:22</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.85</F0>
|
||||
<Best>1.85</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:13:27</F0>
|
||||
<Best>00:13:27</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.50</F0>
|
||||
<Best>0.50</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>3.00</F0>
|
||||
<Best>3.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.90</F0>
|
||||
<Best>0.90</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.80</F0>
|
||||
<Best>0.80</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.23</F0>
|
||||
<Best>2.23</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>3.03</F0>
|
||||
<Best>3.03</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.83</F0>
|
||||
<Best>2.83</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.70</F0>
|
||||
<Best>0.70</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.65</F0>
|
||||
<Best>1.65</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:81</F0>
|
||||
<Best>00:12:81</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.53</F0>
|
||||
<Best>2.53</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021102604_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:31</F0>
|
||||
<Best>00:11:31</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.33</F0>
|
||||
<Best>2.33</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.43</F0>
|
||||
<Best>2.43</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.60</F0>
|
||||
<Best>0.60</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.92</F0>
|
||||
<Best>1.92</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.25</F0>
|
||||
<Best>1.25</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:36</F0>
|
||||
<Best>00:11:36</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:33</F0>
|
||||
<Best>00:12:33</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:63</F0>
|
||||
<Best>00:12:63</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.95</F0>
|
||||
<Best>1.95</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:08</F0>
|
||||
<Best>00:12:08</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:72</F0>
|
||||
<Best>00:11:72</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.75</F0>
|
||||
<Best>1.75</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:72</F0>
|
||||
<Best>00:12:72</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.13</F0>
|
||||
<Best>2.13</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.05</F0>
|
||||
<Best>1.05</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:11:22</F0>
|
||||
<Best>00:11:22</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.85</F0>
|
||||
<Best>1.85</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:13:27</F0>
|
||||
<Best>00:13:27</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.50</F0>
|
||||
<Best>0.50</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>3.00</F0>
|
||||
<Best>3.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.90</F0>
|
||||
<Best>0.90</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.80</F0>
|
||||
<Best>0.80</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.23</F0>
|
||||
<Best>2.23</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>3.03</F0>
|
||||
<Best>3.03</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.83</F0>
|
||||
<Best>2.83</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.70</F0>
|
||||
<Best>0.70</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.65</F0>
|
||||
<Best>1.65</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>00:12:81</F0>
|
||||
<Best>00:12:81</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.53</F0>
|
||||
<Best>2.53</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021102857_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:10</F0>
|
||||
<Best>01:53:10</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>121.20</F0>
|
||||
<Best>121.20</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>120.00</F0>
|
||||
<Best>120.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:60</F0>
|
||||
<Best>01:53:60</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:30</F0>
|
||||
<Best>02:03:30</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:30</F0>
|
||||
<Best>02:06:30</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:00:80</F0>
|
||||
<Best>02:00:80</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:20</F0>
|
||||
<Best>01:57:20</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:07:20</F0>
|
||||
<Best>02:07:20</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>111.10</F0>
|
||||
<Best>111.10</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:52:20</F0>
|
||||
<Best>01:52:20</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:12:70</F0>
|
||||
<Best>02:12:70</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>99.00</F0>
|
||||
<Best>99.00</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>88.00</F0>
|
||||
<Best>88.00</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>100.00</F0>
|
||||
<Best>100.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>101.00</F0>
|
||||
<Best>101.00</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>131.30</F0>
|
||||
<Best>131.30</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>99.90</F0>
|
||||
<Best>99.90</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:08:10</F0>
|
||||
<Best>02:08:10</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>88.80</F0>
|
||||
<Best>88.80</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>111.10</F0>
|
||||
<Best>111.10</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021103123_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:10</F0>
|
||||
<Best>01:53:10</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.33</F0>
|
||||
<Best>2.33</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.43</F0>
|
||||
<Best>2.43</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.60</F0>
|
||||
<Best>0.60</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.92</F0>
|
||||
<Best>1.92</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.25</F0>
|
||||
<Best>1.25</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:60</F0>
|
||||
<Best>01:53:60</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:30</F0>
|
||||
<Best>02:03:30</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:30</F0>
|
||||
<Best>02:06:30</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.95</F0>
|
||||
<Best>1.95</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:00:80</F0>
|
||||
<Best>02:00:80</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:20</F0>
|
||||
<Best>01:57:20</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.75</F0>
|
||||
<Best>1.75</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:07:20</F0>
|
||||
<Best>02:07:20</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.13</F0>
|
||||
<Best>2.13</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.05</F0>
|
||||
<Best>1.05</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:52:20</F0>
|
||||
<Best>01:52:20</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.85</F0>
|
||||
<Best>1.85</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:12:70</F0>
|
||||
<Best>02:12:70</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.50</F0>
|
||||
<Best>0.50</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>3.00</F0>
|
||||
<Best>3.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.90</F0>
|
||||
<Best>0.90</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.80</F0>
|
||||
<Best>0.80</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.23</F0>
|
||||
<Best>2.23</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>3.03</F0>
|
||||
<Best>3.03</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.83</F0>
|
||||
<Best>2.83</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.70</F0>
|
||||
<Best>0.70</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.65</F0>
|
||||
<Best>1.65</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:08:10</F0>
|
||||
<Best>02:08:10</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.53</F0>
|
||||
<Best>2.53</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021105242_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.35</F0>
|
||||
<Best>1.35</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:10</F0>
|
||||
<Best>01:53:10</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.00</F0>
|
||||
<Best>1.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.33</F0>
|
||||
<Best>2.33</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.43</F0>
|
||||
<Best>2.43</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.60</F0>
|
||||
<Best>0.60</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.92</F0>
|
||||
<Best>1.92</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.25</F0>
|
||||
<Best>1.25</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:60</F0>
|
||||
<Best>01:53:60</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.45</F0>
|
||||
<Best>1.45</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:30</F0>
|
||||
<Best>02:03:30</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:30</F0>
|
||||
<Best>02:06:30</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.95</F0>
|
||||
<Best>1.95</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.55</F0>
|
||||
<Best>1.55</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:00:80</F0>
|
||||
<Best>02:00:80</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.15</F0>
|
||||
<Best>1.15</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:20</F0>
|
||||
<Best>01:57:20</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.75</F0>
|
||||
<Best>1.75</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:07:20</F0>
|
||||
<Best>02:07:20</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.13</F0>
|
||||
<Best>2.13</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>1.10</F0>
|
||||
<Best>1.10</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.05</F0>
|
||||
<Best>1.05</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:52:20</F0>
|
||||
<Best>01:52:20</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.85</F0>
|
||||
<Best>1.85</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:12:70</F0>
|
||||
<Best>02:12:70</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.01</F0>
|
||||
<Best>1.01</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.12</F0>
|
||||
<Best>1.12</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.50</F0>
|
||||
<Best>0.50</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>3.00</F0>
|
||||
<Best>3.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.90</F0>
|
||||
<Best>0.90</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.80</F0>
|
||||
<Best>0.80</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.23</F0>
|
||||
<Best>2.23</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>3.03</F0>
|
||||
<Best>3.03</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.22</F0>
|
||||
<Best>1.22</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.52</F0>
|
||||
<Best>1.52</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.83</F0>
|
||||
<Best>2.83</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>0.70</F0>
|
||||
<Best>0.70</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>2.02</F0>
|
||||
<Best>2.02</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>1.65</F0>
|
||||
<Best>1.65</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:08:10</F0>
|
||||
<Best>02:08:10</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>1.32</F0>
|
||||
<Best>1.32</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>2.53</F0>
|
||||
<Best>2.53</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021105442_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:10</F0>
|
||||
<Best>01:53:10</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:60</F0>
|
||||
<Best>01:53:60</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:30</F0>
|
||||
<Best>02:03:30</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:30</F0>
|
||||
<Best>02:06:30</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:00:80</F0>
|
||||
<Best>02:00:80</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:20</F0>
|
||||
<Best>01:57:20</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:07:20</F0>
|
||||
<Best>02:07:20</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:52:20</F0>
|
||||
<Best>01:52:20</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:12:70</F0>
|
||||
<Best>02:12:70</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:08:10</F0>
|
||||
<Best>02:08:10</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021105751_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:10</F0>
|
||||
<Best>01:53:10</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:53:60</F0>
|
||||
<Best>01:53:60</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:30</F0>
|
||||
<Best>02:03:30</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:30</F0>
|
||||
<Best>02:06:30</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:00:80</F0>
|
||||
<Best>02:00:80</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:20</F0>
|
||||
<Best>01:57:20</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:07:20</F0>
|
||||
<Best>02:07:20</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:52:20</F0>
|
||||
<Best>01:52:20</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:12:70</F0>
|
||||
<Best>02:12:70</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:08:10</F0>
|
||||
<Best>02:08:10</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021105916_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:51:21</F0>
|
||||
<Best>01:51:21</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:50:36</F0>
|
||||
<Best>01:50:36</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:54:93</F0>
|
||||
<Best>01:54:93</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:03</F0>
|
||||
<Best>02:06:03</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:38</F0>
|
||||
<Best>01:57:38</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:49:82</F0>
|
||||
<Best>01:49:82</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:04:32</F0>
|
||||
<Best>02:04:32</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:47:52</F0>
|
||||
<Best>01:47:52</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:05:77</F0>
|
||||
<Best>02:05:77</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:51</F0>
|
||||
<Best>02:03:51</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
975
Workdir/26042021110018_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:51:21</F0>
|
||||
<Best>01:51:21</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:50:36</F0>
|
||||
<Best>01:50:36</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:54:93</F0>
|
||||
<Best>01:54:93</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:03</F0>
|
||||
<Best>02:06:03</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:38</F0>
|
||||
<Best>01:57:38</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:49:82</F0>
|
||||
<Best>01:49:82</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:04:32</F0>
|
||||
<Best>02:04:32</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:47:52</F0>
|
||||
<Best>01:47:52</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:05:77</F0>
|
||||
<Best>02:05:77</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:51</F0>
|
||||
<Best>02:03:51</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
1145
Workdir/26042021110133_Rpt.xml
Normal file
975
Workdir/26042021121510_Rpt.xml
Normal file
@@ -0,0 +1,975 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>13.50</F0>
|
||||
<Best>13.50</Best>
|
||||
<BestPunkte>220</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Folly Ayele Carine</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>161296</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:51:21</F0>
|
||||
<Best>01:51:21</Best>
|
||||
<BestPunkte>561</BestPunkte>
|
||||
<Land>TOG</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>205</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Bonaventura Bru</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>167942</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>549</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>72</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>23.23</F0>
|
||||
<Best>23.23</Best>
|
||||
<BestPunkte>335</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>12.00</F0>
|
||||
<Best>12.00</Best>
|
||||
<BestPunkte>81</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>24.24</F0>
|
||||
<Best>24.24</Best>
|
||||
<BestPunkte>352</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>6.00</F0>
|
||||
<Best>6.00</Best>
|
||||
<BestPunkte>301</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Huber Nevio</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>173454</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>19.19</F0>
|
||||
<Best>19.19</Best>
|
||||
<BestPunkte>413</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>12.50</F0>
|
||||
<Best>12.50</Best>
|
||||
<BestPunkte>200</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Fischer Mia</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>173469</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:50:36</F0>
|
||||
<Best>01:50:36</Best>
|
||||
<BestPunkte>576</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>14.50</F0>
|
||||
<Best>14.50</Best>
|
||||
<BestPunkte>240</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Gro?in Malena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173471</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:54:93</F0>
|
||||
<Best>01:54:93</Best>
|
||||
<BestPunkte>495</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:06:03</F0>
|
||||
<Best>02:06:03</Best>
|
||||
<BestPunkte>323</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Meissner Ella</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>173473</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>19.50</F0>
|
||||
<Best>19.50</Best>
|
||||
<BestPunkte>338</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>15.50</F0>
|
||||
<Best>15.50</Best>
|
||||
<BestPunkte>260</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Jakob Ariane</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174285</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:57:38</F0>
|
||||
<Best>01:57:38</Best>
|
||||
<BestPunkte>453</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>11.50</F0>
|
||||
<Best>11.50</Best>
|
||||
<BestPunkte>180</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Dufner Anne</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>174525</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:49:82</F0>
|
||||
<Best>01:49:82</Best>
|
||||
<BestPunkte>587</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>17.50</F0>
|
||||
<Best>17.50</Best>
|
||||
<BestPunkte>299</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>K?rner Leonie</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>176148</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:04:32</F0>
|
||||
<Best>02:04:32</Best>
|
||||
<BestPunkte>347</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>21.21</F0>
|
||||
<Best>21.21</Best>
|
||||
<BestPunkte>458</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Kehrle Jan</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>176149</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>11.00</F0>
|
||||
<Best>11.00</Best>
|
||||
<BestPunkte>609</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>285</BestPunkte>
|
||||
<Land>POL</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>10.50</F0>
|
||||
<Best>10.50</Best>
|
||||
<BestPunkte>159</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Bischoff Lena</name>
|
||||
<Jahrgang>2007</Jahrgang>
|
||||
<Lizenz>244201</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>01:47:52</F0>
|
||||
<Best>01:47:52</Best>
|
||||
<BestPunkte>631</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>18.50</F0>
|
||||
<Best>18.50</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Leemann Hanna</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>244203</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:05:77</F0>
|
||||
<Best>02:05:77</Best>
|
||||
<BestPunkte>327</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>12</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>106</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.90</F0>
|
||||
<Best>9.90</Best>
|
||||
<BestPunkte>358</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>125</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.80</F0>
|
||||
<Best>8.80</Best>
|
||||
<BestPunkte>606</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>5.00</F0>
|
||||
<Best>5.00</Best>
|
||||
<BestPunkte>236</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Leisinger Carlo</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247162</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>30.00</F0>
|
||||
<Best>30.00</Best>
|
||||
<BestPunkte>646</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>252</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Br?ndler Jacob</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>247246</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>9.00</F0>
|
||||
<Best>9.00</Best>
|
||||
<BestPunkte>488</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>322</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Capaul Andri</name>
|
||||
<Jahrgang>2008</Jahrgang>
|
||||
<Lizenz>247312</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>8.00</F0>
|
||||
<Best>8.00</Best>
|
||||
<BestPunkte>427</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>22.22</F0>
|
||||
<Best>22.22</Best>
|
||||
<BestPunkte>319</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.00</F0>
|
||||
<Best>10.00</Best>
|
||||
<BestPunkte>339</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Chabloz Elo?se</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248098</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>30.30</F0>
|
||||
<Best>30.30</Best>
|
||||
<BestPunkte>451</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>12.12</F0>
|
||||
<Best>12.12</Best>
|
||||
<BestPunkte>144</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>10.10</F0>
|
||||
<Best>10.10</Best>
|
||||
<BestPunkte>321</BestPunkte>
|
||||
<Land>GER</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>19</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>8</Rang>
|
||||
<name>Merkel Ja?l Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>15.15</F0>
|
||||
<Best>15.15</Best>
|
||||
<BestPunkte>198</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>9.99</F0>
|
||||
<Best>9.99</Best>
|
||||
<BestPunkte>341</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>28.28</F0>
|
||||
<Best>28.28</Best>
|
||||
<BestPunkte>418</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>KUG</Disziplin>
|
||||
<F0>7.00</F0>
|
||||
<Best>7.00</Best>
|
||||
<BestPunkte>365</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Guye Raffael</name>
|
||||
<Jahrgang>2009</Jahrgang>
|
||||
<Lizenz>248282</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U14M</Kategorie_kurzname>
|
||||
<Kategorie>U14M</Kategorie>
|
||||
<Disziplin>DW</Disziplin>
|
||||
<F0>20.20</F0>
|
||||
<Best>20.20</Best>
|
||||
<BestPunkte>435</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>SPE</Disziplin>
|
||||
<F0>16.50</F0>
|
||||
<Best>16.50</Best>
|
||||
<BestPunkte>280</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Kaiser Soraya Nerea</name>
|
||||
<Jahrgang>2006</Jahrgang>
|
||||
<Lizenz>249198</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U16W</Kategorie_kurzname>
|
||||
<Kategorie>U16W</Kategorie>
|
||||
<Disziplin>600</Disziplin>
|
||||
<F0>02:03:51</F0>
|
||||
<Best>02:03:51</Best>
|
||||
<BestPunkte>359</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>13.13</F0>
|
||||
<Best>13.13</Best>
|
||||
<BestPunkte>162</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>8.88</F0>
|
||||
<Best>8.88</Best>
|
||||
<BestPunkte>585</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>60M</Disziplin>
|
||||
<F0>11.11</F0>
|
||||
<Best>11.11</Best>
|
||||
<BestPunkte>170</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Z?rich</Verein>
|
||||
<Kategorie_kurzname>U12W</Kategorie_kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Disziplin>BAL</Disziplin>
|
||||
<F0>25.25</F0>
|
||||
<Best>25.25</Best>
|
||||
<BestPunkte>369</BestPunkte>
|
||||
<Land>SUI</Land>
|
||||
<hochversuch />
|
||||
<hochbest />
|
||||
<team />
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
1145
Workdir/26042021121641_Rpt.xml
Normal file
1145
Workdir/26042021122205_Rpt.xml
Normal file
1145
Workdir/26042021124117_Rpt.xml
Normal file
1145
Workdir/26042021124708_Rpt.xml
Normal file
1145
Workdir/26042021124740_Rpt.xml
Normal file
1145
Workdir/26042021154344_Rpt.xml
Normal file
1145
Workdir/26042021155110_Rpt.xml
Normal file
1145
Workdir/26042021155139_Rpt.xml
Normal file
1145
Workdir/26042021155329_Rpt.xml
Normal file
1145
Workdir/26042021155922_Rpt.xml
Normal file
1145
Workdir/26042021164815_Rpt.xml
Normal file
1145
Workdir/26042021164837_Rpt.xml
Normal file
1145
Workdir/26042021164941_Rpt.xml
Normal file
1145
Workdir/26042021165237_Rpt.xml
Normal file
6
Workdir/26042021165654_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021165724_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCZ</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021165742_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021165755_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
6
Workdir/26042021165807_Rpt.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
</NewDataSet>
|
||||
336
Workdir/26042021165842_Rpt.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_mehrkampf>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.80</Lei1>
|
||||
<Pun1>606</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>606</Best>
|
||||
<team />
|
||||
<pk>5</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.88</Lei1>
|
||||
<Pun1>585</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>585</Best>
|
||||
<team />
|
||||
<pk>10</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.90</Lei1>
|
||||
<Pun1>358</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>358</Best>
|
||||
<team />
|
||||
<pk>4</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.99</Lei1>
|
||||
<Pun1>341</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>341</Best>
|
||||
<team />
|
||||
<pk>9</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.00</Lei1>
|
||||
<Pun1>339</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>339</Best>
|
||||
<team />
|
||||
<pk>6</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.10</Lei1>
|
||||
<Pun1>321</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>321</Best>
|
||||
<team />
|
||||
<pk>7</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>3</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>11</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.00</Lei1>
|
||||
<Pun1>81</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>81</Best>
|
||||
<team />
|
||||
<pk>2</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.12</Lei1>
|
||||
<Pun1>72</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>72</Best>
|
||||
<team />
|
||||
<pk>1</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Jaël Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>13.13</Lei1>
|
||||
<Pun1>19</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>19</Best>
|
||||
<team />
|
||||
<pk>8</pk>
|
||||
</_mehrkampf>
|
||||
</NewDataSet>
|
||||
336
Workdir/26042021165911_Rpt.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_mehrkampf>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.80</Lei1>
|
||||
<Pun1>606</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>606</Best>
|
||||
<team />
|
||||
<pk>5</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.88</Lei1>
|
||||
<Pun1>585</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>585</Best>
|
||||
<team />
|
||||
<pk>10</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.90</Lei1>
|
||||
<Pun1>358</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>358</Best>
|
||||
<team />
|
||||
<pk>4</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.99</Lei1>
|
||||
<Pun1>341</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>341</Best>
|
||||
<team />
|
||||
<pk>9</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.00</Lei1>
|
||||
<Pun1>339</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>339</Best>
|
||||
<team />
|
||||
<pk>6</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.10</Lei1>
|
||||
<Pun1>321</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>321</Best>
|
||||
<team />
|
||||
<pk>7</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>3</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>11</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.00</Lei1>
|
||||
<Pun1>81</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>81</Best>
|
||||
<team />
|
||||
<pk>2</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.12</Lei1>
|
||||
<Pun1>72</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>72</Best>
|
||||
<team />
|
||||
<pk>1</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Jaël Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>13.13</Lei1>
|
||||
<Pun1>19</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>19</Best>
|
||||
<team />
|
||||
<pk>8</pk>
|
||||
</_mehrkampf>
|
||||
</NewDataSet>
|
||||
336
Workdir/26042021165934_Rpt.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.80</Lei1>
|
||||
<Pun1>606</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>606</Best>
|
||||
<team />
|
||||
<pk>5</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.88</Lei1>
|
||||
<Pun1>585</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>585</Best>
|
||||
<team />
|
||||
<pk>10</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.90</Lei1>
|
||||
<Pun1>358</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>358</Best>
|
||||
<team />
|
||||
<pk>4</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.99</Lei1>
|
||||
<Pun1>341</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>341</Best>
|
||||
<team />
|
||||
<pk>9</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.00</Lei1>
|
||||
<Pun1>339</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>339</Best>
|
||||
<team />
|
||||
<pk>6</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.10</Lei1>
|
||||
<Pun1>321</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>321</Best>
|
||||
<team />
|
||||
<pk>7</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>3</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>11</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.00</Lei1>
|
||||
<Pun1>81</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>81</Best>
|
||||
<team />
|
||||
<pk>2</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.12</Lei1>
|
||||
<Pun1>72</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>72</Best>
|
||||
<team />
|
||||
<pk>1</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Jaël Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>13.13</Lei1>
|
||||
<Pun1>19</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>19</Best>
|
||||
<team />
|
||||
<pk>8</pk>
|
||||
</_data>
|
||||
</NewDataSet>
|
||||
336
Workdir/26042021170011_Rpt.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_mehrkampf>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.80</Lei1>
|
||||
<Pun1>606</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>606</Best>
|
||||
<team />
|
||||
<pk>5</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.88</Lei1>
|
||||
<Pun1>585</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>585</Best>
|
||||
<team />
|
||||
<pk>10</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.90</Lei1>
|
||||
<Pun1>358</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>358</Best>
|
||||
<team />
|
||||
<pk>4</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.99</Lei1>
|
||||
<Pun1>341</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>341</Best>
|
||||
<team />
|
||||
<pk>9</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.00</Lei1>
|
||||
<Pun1>339</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>339</Best>
|
||||
<team />
|
||||
<pk>6</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.10</Lei1>
|
||||
<Pun1>321</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>321</Best>
|
||||
<team />
|
||||
<pk>7</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>3</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>11</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.00</Lei1>
|
||||
<Pun1>81</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>81</Best>
|
||||
<team />
|
||||
<pk>2</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.12</Lei1>
|
||||
<Pun1>72</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>72</Best>
|
||||
<team />
|
||||
<pk>1</pk>
|
||||
</_mehrkampf>
|
||||
<_mehrkampf>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Jaël Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>13.13</Lei1>
|
||||
<Pun1>19</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>19</Best>
|
||||
<team />
|
||||
<pk>8</pk>
|
||||
</_mehrkampf>
|
||||
</NewDataSet>
|
||||
336
Workdir/26042021170022_Rpt.xml
Normal file
@@ -0,0 +1,336 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<NewDataSet>
|
||||
<Table1>
|
||||
<Ort>1. LCR</Ort>
|
||||
</Table1>
|
||||
<_data>
|
||||
<Rang>1</Rang>
|
||||
<name>Desiderio Gaia</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>247161</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.80</Lei1>
|
||||
<Pun1>606</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>606</Best>
|
||||
<team />
|
||||
<pk>5</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>2</Rang>
|
||||
<name>Meili Sophie</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>249493</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>8.88</Lei1>
|
||||
<Pun1>585</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>585</Best>
|
||||
<team />
|
||||
<pk>10</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>3</Rang>
|
||||
<name>Crola Edda</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>245048</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.90</Lei1>
|
||||
<Pun1>358</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>358</Best>
|
||||
<team />
|
||||
<pk>4</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>4</Rang>
|
||||
<name>Roy Annabelle</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248109</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>9.99</Lei1>
|
||||
<Pun1>341</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>341</Best>
|
||||
<team />
|
||||
<pk>9</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>5</Rang>
|
||||
<name>Ouattara July-Mae</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>247961</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.00</Lei1>
|
||||
<Pun1>339</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>339</Best>
|
||||
<team />
|
||||
<pk>6</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>6</Rang>
|
||||
<name>Maiwald Luna</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>248105</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>10.10</Lei1>
|
||||
<Pun1>321</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>321</Best>
|
||||
<team />
|
||||
<pk>7</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Ngwenya Olivia</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>244191</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>3</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>7</Rang>
|
||||
<name>Rosenberg Seraina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>252182</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>11.11</Lei1>
|
||||
<Pun1>170</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>170</Best>
|
||||
<team />
|
||||
<pk>11</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>9</Rang>
|
||||
<name>Puhan Tilda</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173433</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.00</Lei1>
|
||||
<Pun1>81</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>81</Best>
|
||||
<team />
|
||||
<pk>2</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>10</Rang>
|
||||
<name>Probst Elin Katharina</name>
|
||||
<Jahrgang>2010</Jahrgang>
|
||||
<Lizenz>173432</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>12.12</Lei1>
|
||||
<Pun1>72</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>72</Best>
|
||||
<team />
|
||||
<pk>1</pk>
|
||||
</_data>
|
||||
<_data>
|
||||
<Rang>11</Rang>
|
||||
<name>Merkel Jaël Anne</name>
|
||||
<Jahrgang>2011</Jahrgang>
|
||||
<Lizenz>248107</Lizenz>
|
||||
<Verein>LAC TV Unterstrass Zürich</Verein>
|
||||
<Kategorie_Kurzname>U12W</Kategorie_Kurzname>
|
||||
<Kategorie>U12W</Kategorie>
|
||||
<Dis1>60m</Dis1>
|
||||
<Lei1>13.13</Lei1>
|
||||
<Pun1>19</Pun1>
|
||||
<Dis2>60m</Dis2>
|
||||
<Lei2>0</Lei2>
|
||||
<Pun2>0</Pun2>
|
||||
<Dis3 />
|
||||
<Lei3>0</Lei3>
|
||||
<Pun3>0</Pun3>
|
||||
<Dis4 />
|
||||
<Lei4>0</Lei4>
|
||||
<Pun4>0</Pun4>
|
||||
<Dis5 />
|
||||
<Lei5 />
|
||||
<Pun5 />
|
||||
<Dis6 />
|
||||
<Lei6 />
|
||||
<Pun6 />
|
||||
<Best>19</Best>
|
||||
<team />
|
||||
<pk>8</pk>
|
||||
</_data>
|
||||
</NewDataSet>
|
||||