Index: trunk/MagicSoft/Cosy/tpoint/gui.C
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/gui.C	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/gui.C	(revision 8570)
@@ -38,5 +38,6 @@
 class Set : public TObject
 {
-    friend ifstream &operator>>(ifstream &fin, Set &set);
+    friend istream &operator>>(istream &fin,  Set &set);
+    friend ostream &operator<<(ostream &fout, Set &set);
 private:
     Double_t fStarAz;
@@ -148,5 +149,5 @@
 ClassImp(Set);
 
-ifstream &operator>>(ifstream &fin, Set &set)
+istream &operator>>(istream &fin, Set &set)
 {
     TString str;
@@ -181,4 +182,15 @@
 
     return fin;
+}
+
+ostream &operator<<(ostream &out, Set &set)
+{
+    out << Form("%8.3f", set.fStarAz*TMath::RadToDeg()) << " ";
+    out << Form("%8.3f", set.fStarEl*TMath::RadToDeg()) << " ";
+    out << Form("%8.3f", set.fRawAz*TMath::RadToDeg()) << " ";
+    out << Form("%8.1f", set.fRawEl*TMath::RadToDeg()) << " ";
+    out << set.fMag;
+
+    return out;
 }
 
@@ -192,5 +204,6 @@
         kTbLoadStars,
         kTbReset,
-        kTbResetStars
+        kTbResetStars,
+        kTbReloadStars
     };
 
@@ -203,7 +216,9 @@
     MPointing fBending;
 
+    TString fFileNameStars;
+
     FontStruct_t fFont;
 
-    void Fcn(Int_t &npar, Double_t *gin, Double_t &f, Double_t *par, Int_t iflag)
+    void Fcn(Int_t &/*npar*/, Double_t */*gin*/, Double_t &f, Double_t *par, Int_t /*iflag*/)
     {
         f = 0;
@@ -381,8 +396,8 @@
         }
 
-        ifstream fin("horizon.dat");
+        ifstream fin(fname);
         if (!fin)
         {
-            cout << "ERROR - horizon.dat not found." << endl;
+            cout << "ERROR - " << fname << " not found." << endl;
             return;
         }
@@ -509,4 +524,5 @@
         fBending.GetMinuitParameters(minuit);
         fBending.PrintMinuitParameters(minuit);
+        cout << endl;
         //fBending.Save("bending_magic.txt");
     
@@ -530,5 +546,7 @@
         MPointing b2;
         b2.SetParameters(par);
-    
+
+        cout << "Sets with Residual exceeding 0.13deg:" << endl;
+
         //
         // Calculate correction and residuals
@@ -536,4 +554,6 @@
         for (int i=0; i<fCoordinates.GetSize(); i++)
         {
+            Set orig = *(Set*)fCoordinates.At(i);
+
             Set &set0 = *(Set*)fCoordinates.At(i);
     
@@ -557,11 +577,15 @@
 
             Double_t err;
+            Double_t resi = set0.GetResidual(&err);
     
             gdzd.SetPoint(i, za.Az(), set0.GetDZd());
             gdaz.SetPoint(i, za.Zd(), dz);
-            graz.SetPoint(i, za.Az(), set0.GetResidual(&err));
+            graz.SetPoint(i, za.Az(), resi);
             graz.SetPointError(i, 0, err);
-            grzd.SetPoint(i, za.Zd(), set0.GetResidual(&err));
+            grzd.SetPoint(i, za.Zd(), resi);
             grzd.SetPointError(i, 0, err);
+
+            if (resi>0.13)//orig.GetStarAz()>0 && orig.GetStarAz()<50 && set0.GetDZd()<-0.032 && orig.GetStarEl()<80) // 0.13
+                cout << " " << orig << "  <" << resi << ">" << endl;
 
             proaz.Fill(za.Az(), set0.GetResidual(&err));
@@ -949,6 +973,46 @@
     }
 
+    void LoadCollection(TString fname)
+    {
+        ifstream fin(fname);
+        if (!fin)
+        {
+            cout << "Collection '" << fname << "' not found!" << endl;
+            return;
+        }
+
+        while (1)
+        {
+            TString line;
+            line.ReadLine(fin);
+            if (!fin)
+                break;
+
+            line = line.Strip(TString::kBoth);
+            if (line[0]=='#')
+                continue;
+            if (line.Length()==0)
+                continue;
+
+            if (!line.EndsWith(".txt"))
+            {
+                cout << "WARNING: " << line << endl;
+                continue;
+            }
+
+            LoadStars(line);
+        }
+    }
+
+
     void LoadStars(TString fname="tpoint.txt")
     {
+        if (fname.EndsWith(".col"))
+        {
+            LoadCollection(fname);
+            fFileNameStars = fname;
+            return;
+        }
+
         const Int_t size = fOriginal.GetSize();
 
@@ -975,6 +1039,9 @@
         }
 
-        cout << "Found " << fOriginal.GetSize()-size << " sets of coordinates ";
-        cout << "(Total=" << fOriginal.GetSize() << ")" << endl;
+        cout << "Found " << fOriginal.GetSize()-size;
+        cout << " sets of coordinates in " << fname;
+        cout << " (Total=" << fOriginal.GetSize() << ")" << endl;
+
+        fFileNameStars = fname;
     }
 
@@ -987,6 +1054,7 @@
         static const char *gOpenTypes[] =
         {
-            "TPoint files", "*.txt",
-            "All files",    "*",
+            "TPoint files",     "*.txt",
+            "Collection files", "*.col",
+            "All files",        "*",
             NULL,           NULL
         };
@@ -1009,5 +1077,5 @@
     }
 
-    Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t mp2)
+    Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t)
     {
         // cout << "Msg: " << hex << GET_MSG(msg) << endl;
@@ -1046,4 +1114,9 @@
                     DisplayBending();
                     return kTRUE;
+                case kTbReloadStars:
+                    fOriginal.Delete();
+                    LoadStars(fFileNameStars); // FIXME: Use TGLabel!
+                    DisplayData();
+                    return kTRUE;
                 case kTbResetStars:
                     fOriginal.Delete();
@@ -1111,11 +1184,11 @@
     {
         TGLabel *l1 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+1);
-        l1->SetText(Form("Before: %.1f +- %.1f SE", before, 0));
+        l1->SetText(Form("Before: %.1f +- %.1f SE", before, 0.));
 
         TGLabel *l2 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+2);
-        l2->SetText(Form("After:  %.1f +- %.1f SE", after, 0));
+        l2->SetText(Form("After:  %.1f +- %.1f SE", after, 0.));
 
         TGLabel *l3 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+3);
-        l3->SetText(Form("Backw:  %.1f +- %.1f SE", backw, 0));
+        l3->SetText(Form("Backw:  %.1f +- %.1f SE", backw, 0.));
     }
 
@@ -1126,5 +1199,5 @@
             gVirtualX->DeleteFont(fFont);
     }
-    MFit() : TGMainFrame(gClient->GetRoot(), 750, 370, kHorizontalFrame)
+    MFit(const char *fname) : TGMainFrame(gClient->GetRoot(), 750, 370, kHorizontalFrame)
     {
         fCoordinates.SetOwner();
@@ -1153,12 +1226,13 @@
 
 
-        TGLayoutHints *hints4 = new TGLayoutHints(kLHintsExpandX, 5, 5,  5);
-        TGLayoutHints *hints5 = new TGLayoutHints(kLHintsExpandX, 5, 5, 15);
-        AddTextButton(grp1, "Load Pointing Model", kTbLoad,       hints5);
-        AddTextButton(grp1, "Save Pointing Model", kTbSave,       hints4);
-        AddTextButton(grp1, "Fit Parameters",      kTbFit,        hints5);
-        AddTextButton(grp1, "Reset Parameters",    kTbReset,      hints4);
-        AddTextButton(grp1, "Load Stars",          kTbLoadStars,  hints5);
-        AddTextButton(grp1, "Reset Stars",         kTbResetStars, hints4);
+        TGLayoutHints *hints4 = new TGLayoutHints(kLHintsExpandX, 5, 5,  3);
+        TGLayoutHints *hints5 = new TGLayoutHints(kLHintsExpandX, 5, 5, 10);
+        AddTextButton(grp1, "Load Pointing Model", kTbLoad,        hints5);
+        AddTextButton(grp1, "Save Pointing Model", kTbSave,        hints4);
+        AddTextButton(grp1, "Fit Parameters",      kTbFit,         hints5);
+        AddTextButton(grp1, "Reset Parameters",    kTbReset,       hints4);
+        AddTextButton(grp1, "Load Stars",          kTbLoadStars,   hints5);
+        AddTextButton(grp1, "Reset Stars",         kTbResetStars,  hints4);
+        AddTextButton(grp1, "Reload Stars",        kTbReloadStars, hints4);
         fList->Add(hints4);
         fList->Add(hints5);
@@ -1253,4 +1327,7 @@
         MapWindow();
 
+        if (fname)
+            LoadStars(fname);
+
         DisplayBending();
         DisplayData();
@@ -1261,8 +1338,8 @@
 ClassImp(MFit);
 
-void gui()
+void gui(const char *fname=NULL)
 {
     gErrorIgnoreLevel = kError;
-    new MFit;
+    new MFit(fname);
     // TF1 f1("f1", "[0]/cos((90-x)*3.1415/180)", 0, 90)
 }
Index: trunk/MagicSoft/Cosy/tpoint/starg200604.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200604.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200604.txt	(revision 8570)
@@ -97,5 +97,5 @@
 174.7119 37.83614 174.6868 37.89535 13.31528 -23.17167 0.029179 0.008317856 53831.052662 35 47.042915879
 164.0729 32.68091 164.0594 32.73623 14.10611 -26.6825 0.02345264 -0.0002830303 53831.056612 19 50.100718336
-149 38.70512 148.3018 39.04895 14.84806 -16.04167 0.0322646 -0.008215184 53831.059295 19 48.134480151
+##149 38.70512 148.3018 39.04895 14.84806 -16.04167 0.0322646 -0.008215184 53831.059295 19 48.134480151
 137.39 41.54374 137.3656 41.61515 15.28333 -9.383056 0.0476341 -0.002002779 53831.061408 24 47.48379017
 
Index: trunk/MagicSoft/Cosy/tpoint/starg200606.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200606.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200606.txt	(revision 8570)
@@ -5,4 +5,4 @@
 # 10.06.2006 03:01:10.536
 23.93977 71.57613 24.11383 71.62783 19.74944 45.13083 0.01096671 0.07643101 53896.125816 44 60.801871456
-69.22305 69.28094 69.32599 69.40241 20.77028 33.97028 0.007843975 0.05557714 53896.132659 41 62.129820416
+##69.22305 69.28094 69.32599 69.40241 20.77028 33.97028 0.007843975 0.05557714 53896.132659 41 62.129820416
 156.6169 58.25111 156.7153 58.31012 20.18833 -0.8213889 0.01147947 0.03712898 53896.140219 34 65.047523629
Index: trunk/MagicSoft/Cosy/tpoint/starg200607.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200607.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200607.txt	(revision 8570)
@@ -6,5 +6,5 @@
 -114.3073 74.3045 245.7305 74.32906 16.50361 21.48972 -0.01115726 0.02319339 53921.991754 21 55.406030246
 -4.987543 66.32784 355.0216 66.35837 17.50722 52.30139 0.01015293 0.005844939 53921.999912 20 51.565061437
-1.588808 67.13388 1.550151 67.27385 17.94333 51.48889 0.004878146 0.04199262 53922.006266 33 51.747433837
+##1.588808 67.13388 1.550151 67.27385 17.94333 51.48889 0.004878146 0.04199262 53922.006266 33 51.747433837
 -1.183064 67.36136 358.8275 67.41977 17.94333 51.48889 0.1449262 0.03287638 53922.010963 29 51.499442344
 123.4918 58.23997 123.5138 58.27546 19.84639 8.868333 0.006455802 0.0223474 53922.015194 27 54.987391304
@@ -62,5 +62,5 @@
 
 # 12.07.2006 23:49:48.018
-33.9057 77.6274 34.22815 77.49184 18.61556 38.78361 -0.01379127 0.09198435 53928.992917 54 83.561030246
+##33.9057 77.6274 34.22815 77.49184 18.61556 38.78361 -0.01379127 0.09198435 53928.992917 54 83.561030246
 -153.2097 72.0995 206.797 72.10401 17.58222 12.56 0.0008547185 0.01367811 53928.997601 42 89.572703214
 -129.5834 44.23595 230.4329 44.26537 16.23917 -3.694444 0.03711084 -0.004567432 53929.012327 27 90.82592155
Index: trunk/MagicSoft/Cosy/tpoint/starg200608.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200608.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200608.txt	(revision 8570)
@@ -150,5 +150,5 @@
 
 # 14.08.2006 00:08:48.224
-44.25737 76.1243 44.18101 76.24191 21.24639 38.04556 -0.003436872 0.08360607 53961.006114 60 52.153766541
+##44.25737 76.1243 44.18101 76.24191 21.24639 38.04556 -0.003436872 0.08360607 53961.006114 60 52.153766541
 
 # 16.08.2006 01:26:04.268
@@ -157,5 +157,5 @@
 
 # 16.08.2006 00:06:50.007
-33.65171 36.9621 33.70627 36.92187 0.945 60.71667 -0.01118547 -0.06308687 53963.007988 33 55.91350189
+##33.65171 36.9621 33.70627 36.92187 0.945 60.71667 -0.01118547 -0.06308687 53963.007988 33 55.91350189
 -14.02903 41.75293 345.9813 41.79139 18.35083 72.73278 0.03734512 -0.01055019 53963.017848 30 46.427041588
 33.21299 39.17775 33.23214 39.20392 0.945 60.71667 -0.004790842 -0.02040282 53963.021044 47 51.586573724
Index: trunk/MagicSoft/Cosy/tpoint/starg200610.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200610.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200610.txt	(revision 8570)
@@ -21,5 +21,5 @@
 # 04.10.2006 02:04:29.826
 -43.48844 80.05967 316.3895 80.15046 1.162222 35.62056 0.0020254 0.1447297 54012.086456 45 62.385113422
--163.8454 81.63075 195.2049 81.81904 1.910556 20.80806 0.008981749 0.1861072 54012.100893 35 59.241356333
+#-163.8454 81.63075 195.2049 81.81904 1.910556 20.80806 0.008981749 0.1861072 54012.100893 35 59.241356333
 
 # 03.10.2006 23:31:31.480
@@ -82,9 +82,9 @@
 177.8679 14.55913 177.8962 14.58251 1.101389 -46.71861 0.01414345 -0.014621 54019.033415 26 72.492254253
 179.233 14.58905 179.2602 14.63928 1.101389 -46.71861 0.02881377 -0.01776535 54019.038737 25 72.525094518
--179.905 14.61782 180.1272 14.76863 1.101389 -46.71861 0.1521221 -0.01846981 54019.042123 26 72.340548204
+##-179.905 14.61782 180.1272 14.76863 1.101389 -46.71861 0.1521221 -0.01846981 54019.042123 26 72.340548204
 -176.0979 14.57463 183.9303 14.63047 1.101389 -46.71861 0.1792556 -0.01104678 54019.057038 24 75.230850662
 
 # 11.10.2006 03:01:13.820
--97.50783 2.643879 262.275 2.880347 21.52583 -5.571111 0.08208019 -0.02122428 54019.125854 15 102.52738658
+##-97.50783 2.643879 262.275 2.880347 21.52583 -5.571111 0.08208019 -0.02122428 54019.125854 15 102.52738658
 
 # 11.10.2006 04:07:14.484
@@ -133,5 +133,5 @@
 -49.02501 21.01964 311.001 21.04816 19.74944 45.13083 0.06144763 -0.01638229 54020.061602 66 54.935028355
 -164.6875 16.77888 195.3459 16.79891 0.4380556 -42.30611 0.1365748 -0.01343263 54020.066891 38 56.51989603
--140.9461 18.5844 219.0753 18.52699 22.96083 -29.62222 0.06236272 -0.00854584 54020.070395 40 57.334168242
+##-140.9461 18.5844 219.0753 18.52699 22.96083 -29.62222 0.06236272 -0.00854584 54020.070395 40 57.334168242
 
 # 13.10.2006 02:33:10.326
Index: trunk/MagicSoft/Cosy/tpoint/starg200611.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200611.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200611.txt	(revision 8570)
@@ -418,5 +418,5 @@
 
 # 29.11.2006 19:55:36.369
-69.43512 5.898449 69.11355 6.070534 5.6275 21.1425 0.02137416 -0.02402933 54068.830282 24 76.482958412
+##69.43512 5.898449 69.11355 6.070534 5.6275 21.1425 0.02137416 -0.02402933 54068.830282 24 76.482958412
 
 # 29.11.2006 21:45:37.922
Index: trunk/MagicSoft/Cosy/tpoint/starg200612.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200612.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200612.txt	(revision 8570)
@@ -230,5 +230,5 @@
 
 # 29.12.2006 01:16:19.278
--141.5291 4.761446 218.2554 4.948793 2.971111 -40.30472 0.03696056 -0.03690685 54098.053001 15 76.389399811
+##-141.5291 4.761446 218.2554 4.948793 2.971111 -40.30472 0.03696056 -0.03690685 54098.053001 15 76.389399811
 
 # 29.12.2006 00:13:40.221
@@ -294,5 +294,5 @@
 
 # 28.12.2006 23:28:55.575
--125.3518 42.53172 234.2042 42.68037 2.3225 -2.9775 0.03852677 0.006507789 54097.978421 36 61.382915879
+##-125.3518 42.53172 234.2042 42.68037 2.3225 -2.9775 0.03852677 0.006507789 54097.978421 36 61.382915879
 
 # 29.12.2006 00:22:25.845
@@ -318,5 +318,5 @@
 
 # 29.12.2006 01:00:55.154
--107.9521 24.49372 251.6001 24.65375 2.3225 -2.9775 0.02825901 2.775316e-05 54098.042305 35 67.51768431
+##-107.9521 24.49372 251.6001 24.65375 2.3225 -2.9775 0.02825901 2.775316e-05 54098.042305 35 67.51768431
 
 # 28.12.2006 22:45:40.093
@@ -360,5 +360,5 @@
 
 # 29.12.2006 23:05:52.849
--4.015319 4.80647 355.795 4.991988 17.14639 65.71472 0.03232907 -0.04920624 54098.962417 24 82.35944707
+#-4.015319 4.80647 355.795 4.991988 17.14639 65.71472 0.03232907 -0.04920624 54098.962417 24 82.35944707
 
 # 29.12.2006 23:30:08.598
@@ -368,5 +368,5 @@
 
 # 30.12.2006 02:17:38.232
--18.32551 56.75148 341.3548 56.85292 6.326944 59.01083 0.01134781 0.01885649 54099.095581 59 49.1675
+#-18.32551 56.75148 341.3548 56.85292 6.326944 59.01083 0.01134781 0.01885649 54099.095581 59 49.1675
 
 # 30.12.2006 00:24:21.193
@@ -404,8 +404,8 @@
 
 # 30.12.2006 01:59:38.818
-6.276389 35.73588 6.016695 35.89383 9.618056 81.32639 0.03650354 0.001163716 54099.083088 40 50.39186673
+##6.276389 35.73588 6.016695 35.89383 9.618056 81.32639 0.03650354 0.001163716 54099.083088 40 50.39186673
 
 # 30.12.2006 02:05:46.275
-11.12723 21.39161 10.90714 21.54778 15.73417 77.79444 0.01684755 -0.02496617 54099.087341 36 54.827958412
+##11.12723 21.39161 10.90714 21.54778 15.73417 77.79444 0.01684755 -0.02496617 54099.087341 36 54.827958412
 
 # 29.12.2006 22:16:49.671
@@ -448,5 +448,5 @@
 
 # 29.12.2006 23:13:11.750
--3.267682 4.701214 356.5327 4.884759 17.14639 65.71472 0.03110377 -0.03769408 54098.967497 28 82.673355388
+##-3.267682 4.701214 356.5327 4.884759 17.14639 65.71472 0.03110377 -0.03769408 54098.967497 28 82.673355388
 
 # 29.12.2006 21:01:41.498
@@ -472,5 +472,5 @@
 
 # 30.12.2006 01:29:23.933
-23.81877 33.63767 23.57987 33.71723 11.52333 69.33111 -0.04228798 7.030744e-06 54099.062083 42 52.097689036
+##23.81877 33.63767 23.57987 33.71723 11.52333 69.33111 -0.04228798 7.030744e-06 54099.062083 42 52.097689036
 
 # 29.12.2006 20:30:30.291
@@ -487,5 +487,5 @@
 
 # 30.12.2006 01:35:29.990
-23.39091 28.75334 23.16234 28.90792 12.55806 69.78833 0.02538407 -0.008007721 54099.066319 39 53.139669187
+##23.39091 28.75334 23.16234 28.90792 12.55806 69.78833 0.02538407 -0.008007721 54099.066319 39 53.139669187
 
 # 29.12.2006 23:58:11.398
@@ -496,5 +496,5 @@
 
 # 29.12.2006 23:08:23.136
--3.760981 4.768385 356.0488 4.956972 17.14639 65.71472 0.03592046 -0.04682564 54098.964157 26 82.420222117
+##-3.760981 4.768385 356.0488 4.956972 17.14639 65.71472 0.03592046 -0.04682564 54098.964157 26 82.420222117
 
 # 29.12.2006 21:09:21.640
@@ -523,5 +523,5 @@
 
 # 30.12.2006 01:49:16.389
-15.00587 23.18055 14.77355 23.33683 14.45861 75.69611 0.02137554 -0.008550698 54099.075884 34 55.09721172
+##15.00587 23.18055 14.77355 23.33683 14.45861 75.69611 0.02137554 -0.008550698 54099.075884 34 55.09721172
 
 # 29.12.2006 20:57:14.606
@@ -556,5 +556,5 @@
 
 # 30.12.2006 01:24:13.038
-26.18508 46.50922 25.93323 46.63703 9.525556 63.06194 0.0243861 0.01169257 54099.058484 36 50.279229679
+##26.18508 46.50922 25.93323 46.63703 9.525556 63.06194 0.0243861 0.01169257 54099.058484 36 50.279229679
 
 # 29.12.2006 21:29:22.616
@@ -589,5 +589,5 @@
 
 # 30.12.2006 02:09:13.045
-14.2523 8.304267 14.03734 8.407043 17.14639 65.71472 -0.0464444 -0.02288311 54099.089734 27 70.511379962
+##14.2523 8.304267 14.03734 8.407043 17.14639 65.71472 -0.0464444 -0.02288311 54099.089734 27 70.511379962
 
 # 30.12.2006 00:47:49.457
Index: trunk/MagicSoft/Cosy/tpoint/starg200701.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200701.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200701.txt	(revision 8570)
@@ -119,5 +119,5 @@
 
 # 09.01.2007 01:07:53.889
--82.91452 44.95564 276.3387 45.08465 3.791389 24.105 0.02185964 -0.00883984 54109.047151 25 69.660430057
+##-82.91452 44.95564 276.3387 45.08465 3.791389 24.105 0.02185964 -0.00883984 54109.047151 25 69.660430057
 
 # 09.01.2007 00:17:39.826
@@ -140,8 +140,8 @@
 
 # 09.01.2007 00:59:04.265
--127.2178 28.94458 232.4926 29.08519 3.967222 -13.50861 0.01135579 -0.02256062 54109.041022 15 68.110680529
+##-127.2178 28.94458 232.4926 29.08519 3.967222 -13.50861 0.01135579 -0.02256062 54109.041022 15 68.110680529
 
 # 09.01.2007 00:02:33.063
--13.45951 26.67505 346.26 26.8263 23.65583 77.6325 0.02056931 -0.01334308 54109.001772 18 54.748199433
+##-13.45951 26.67505 346.26 26.8263 23.65583 77.6325 0.02056931 -0.01334308 54109.001772 18 54.748199433
 
 # 09.01.2007 00:22:27.200
Index: trunk/MagicSoft/Cosy/tpoint/starg200702.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200702.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200702.txt	(revision 8570)
@@ -39,5 +39,5 @@
 23.79393 10.97569 23.8289 11.01226 16.39972 61.51417 0.0132208 -0.03177664 54155.959931 34 56.55092155
 17.33236 25.07472 17.34482 25.11375 14.845 74.15556 0.02070193 -0.006507297 54155.963106 25 49.564678639
-49.71394 10.37563 49.49719 10.53556 15.0325 40.39056 0.01397247 -0.0353923 54155.965974 25 57.794380907
+##49.71394 10.37563 49.49719 10.53556 15.0325 40.39056 0.01397247 -0.0353923 54155.965974 25 57.794380907
 -70.21946 79.2322 289.6389 79.25526 7.576667 31.88833 -0.003276678 0.1489041 54155.969815 38 50.751961248
 
@@ -102,5 +102,5 @@
 # 27.02.2007 23:30:39.938
 -170.8536 20.47767 189.1731 20.50191 8.059722 -40.00333 0.03539627 -0.01787253 54158.979629 83 68.567282609
--167.9827 19.21775 191.8011 19.40514 7.870278 -40.57583 0.04779855 -0.01931203 54158.981373 80 69.700241021
+##-167.9827 19.21775 191.8011 19.40514 7.870278 -40.57583 0.04779855 -0.01931203 54158.981373 80 69.700241021
 -172.2875 13.28763 187.7415 13.31333 8.158889 -47.33667 0.02881222 -0.0200932 54158.983465 77 77.654834594
 177.6709 17.76638 177.7401 17.79638 9.133333 -43.4325 0.02538218 -0.02102536 54158.984852 64 70.745051985
Index: trunk/MagicSoft/Cosy/tpoint/starg200703.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200703.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200703.txt	(revision 8570)
@@ -79,9 +79,9 @@
 32.90204 31.12065 32.92691 31.15903 16.39972 61.51417 0.007444802 -0.01776568 54169.054348 31 74.45026465
 35.67708 38.72002 35.6835 38.76152 15.41556 58.96611 0.01770323 -0.007397176 54169.055484 32 74.393983932
-24.46 45.9231 24.23528 46.04378 14.07306 64.37583 0.01147657 -0.00140289 54169.05706 32 72.725869565
+##24.46 45.9231 24.23528 46.04378 14.07306 64.37583 0.01147657 -0.00140289 54169.05706 32 72.725869565
 15.81469 37.5401 15.79992 37.57117 14.845 74.15556 -0.04760173 0.01683843 54169.058664 27 73.49100189
 
 # 10.03.2007 00:35:18.488
--61.98982 33.28737 297.6899 33.4397 5.995278 37.2125 0.02925235 -0.007617436 54169.02452 19 69.395203214
+##-61.98982 33.28737 297.6899 33.4397 5.995278 37.2125 0.02925235 -0.007617436 54169.02452 19 69.395203214
 -154.7753 71.6306 205.1569 71.66319 10.13944 11.96722 0.02838914 0.07385127 54169.029597 34 69.004187146
 139.8661 79.41267 139.7284 79.44665 11.235 20.52361 0.02287761 0.1515234 54169.033159 26 70.169258034
Index: trunk/MagicSoft/Cosy/tpoint/starg200706.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/starg200706.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/starg200706.txt	(revision 8570)
@@ -24,5 +24,5 @@
 -58.17211 88.98067 301.8963 89.08253 17.96278 29.24778 0 0 54254.103137 52 67.611545369
 -101.059 65.10628 258.9387 65.1548 16.50361 21.48972 -0.05791216 -0.03920462 54254.112757 43 67.934319471
-50.03849 82.5615 49.46401 82.62217 18.83472 33.36278 0.06944439 0.6381071 54254.117936 78 68.337277883
+##50.03849 82.5615 49.46401 82.62217 18.83472 33.36278 0.06944439 0.6381071 54254.117936 78 68.337277883
 -21.86293 63.75523 338.0652 63.77347 17.50722 52.30139 -0.02410645 0.1200334 54254.124779 41 73.550316635
 -6.170107 79.98216 353.3393 79.9897 18.61556 38.78361 0.07473618 0.5782356 54254.131541 8 139.9899811
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0604.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0604.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0604.txt	(revision 8570)
@@ -107,5 +107,5 @@
 62.76163 79.03668 205.088 70.01983 15.25833 33.31472 0.01402154 0.07380006 53829.119153 220 3.579
 120.6282 86.66633 262.2385 77.63959 14.74972 27.07417 0.01246297 0.2416733 53829.121395 219.9 2.923
-##-32.77347 88.06979 108.0768 79.19966 14.53056 30.37139 0.03776824 0.4777029 53829.124531 216 3.597
+-32.77347 88.06979 108.0768 79.19966 14.53056 30.37139 0.03776824 0.4777029 53829.124531 216 3.597
 -8.590648 80.33966 133.661 71.47017 14.53472 38.30833 0.02533357 0.09882537 53829.126479 215.2 3.355
 
@@ -122,6 +122,6 @@
 34.56055 62.79323 177.0697 53.8156 13.79222 49.31333 0.02963412 0.01347078 53830.022964 199.8 2.686
 
-19.93937 61.178 162.4332 52.28303 13.39861 54.92528 0.1097129 0.03040379 53830.025645 211.8 2.758
-32.65213 46.6038 175.1667 37.71592 15.41556 58.96611 0.101772 0.03637113 53830.028368 216.4 3.434
+##19.93937 61.178 162.4332 52.28303 13.39861 54.92528 0.1097129 0.03040379 53830.025645 211.8 2.758
+##32.65213 46.6038 175.1667 37.71592 15.41556 58.96611 0.101772 0.03637113 53830.028368 216.4 3.434
 32.19981 39.39725 174.7312 30.45071 16.39972 61.51417 0.03687495 0.02541495 53830.031085 219.1 3.206
 
@@ -237,5 +237,5 @@
 
 163.8613 32.63075 306.3679 23.6847 14.10611 -26.6825 0.03187289 0.01381351 53831.056038 221.4 3.353
-#148.6646 38.56182 290.4875 29.89164 14.84806 -16.04167 0.3115597 0.7063722 53831.058437 227.6 4.485
+##148.6646 38.56182 290.4875 29.89164 14.84806 -16.04167 0.3115597 0.7063722 53831.058437 227.6 4.485
 
 137.0777 41.36664 279.5793 32.40509 15.28333 -9.383056 0.02377039 0.02639057 53831.060584 234.8 2.982
@@ -245,17 +245,16 @@
 
 170.9597 24.13072 313.4821 15.18573 14.11139 -36.37 0.02932651 0.001117627 53831.069953 224.4 2.657
-#177.08 19.36069 319.5913 10.50675 13.825 -41.68778 0.1172856 0.01296893 53831.076222 218.8 3.563
+##177.08 19.36069 319.5913 10.50675 13.825 -41.68778 0.1172856 0.01296893 53831.076222 218.8 3.563
 
 # --- 06.04.2006 02:00:48.000
 
 170.3025 18.13392 312.8512 9.205984 14.59167 -42.15778 0.04208147 -0.02520068 53831.083889 215.3 2.739
-167.5934 16.46575 310.1122 7.59479 14.97556 -43.13389 0.0997214 0.009463094 53831.088848 240 2.983
-
-#51.78985 14.74702 194.3828 5.801819 20.37056 40.25667 0.02308418 -0.02308396 53831.095473 236.8 2.78
+##167.5934 16.46575 310.1122 7.59479 14.97556 -43.13389 0.0997214 0.009463094 53831.088848 240 2.983
+51.78985 14.74702 194.3828 5.801819 20.37056 40.25667 0.02308418 -0.02308396 53831.095473 236.8 2.78
 
 55.58318 8.186286 198.1165 -0.7514655 20.77028 33.97028 0.04616016 0.03656404 53831.097659 240 2.983
 46.27852 15.22647 188.8531 6.27853 20.69056 45.28028 0.02384568 -0.006210657 53831.101693 228 2.597
 27.87115 18.51438 170.4003 9.58447 21.30972 62.58556 0.04369169 0.03580769 53831.104263 219.2 3.087
-#108.9676 84.81641 250.8211 75.93314 14.74972 27.07417 0.1549873 0.2608619 53831.110027 208.1 3.532
+108.9676 84.81641 250.8211 75.93314 14.74972 27.07417 0.1549873 0.2608619 53831.110027 208.1 3.532
 
 109.9341 85.17252 251.8456 76.1598 14.74972 27.07417 0.02720343 0.167941 53831.110791 203.7 2.873
@@ -271,11 +270,7 @@
 #49 48 0 25.04.2006 20:45:57.428
 
-#15.20395 54.7878 157.8271 45.80993 11.06222 61.75083 0.01807188 -0.08889423 53850.865248 213.6 2.628
-
-#-178.1645 88.03382 324.849 79.01849 15.57806 26.71472 -0.1091864 -1.63953 53851.105044 196.7 2.757
-
-#-128.8073 33.3521 13.78008 24.49336 13.42 -11.16139 -0.01560177 -0.06686684 53851.130378 211.4 2.566
-
-#-102.4267 60.63057 40.22636 51.75929 14.26111 19.1825 -0.00426937 -0.1814624 53851.134447 215.5 2.558
-
-#60.27422 44.20201 202.9008 35.23321 20.37056 40.25667 0.01921815 -0.07259198 53851.152129 216.4 2.745
+15.20395 54.7878 157.8271 45.80993 11.06222 61.75083 0.01807188 -0.08889423 53850.865248 213.6 2.628
+##-178.1645 88.03382 324.849 79.01849 15.57806 26.71472 -0.1091864 -1.63953 53851.105044 196.7 2.757
+-128.8073 33.3521 13.78008 24.49336 13.42 -11.16139 -0.01560177 -0.06686684 53851.130378 211.4 2.566
+-102.4267 60.63057 40.22636 51.75929 14.26111 19.1825 -0.00426937 -0.1814624 53851.134447 215.5 2.558
+60.27422 44.20201 202.9008 35.23321 20.37056 40.25667 0.01921815 -0.07259198 53851.152129 216.4 2.745
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0607.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0607.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0607.txt	(revision 8570)
@@ -6,9 +6,9 @@
 -114.5083 74.39499 27.95033 65.54521 16.50361 21.48972 0.03571281 -0.06099614 53921.99144 226 2.907
 -4.898845 66.33226 137.6135 57.47836 17.50722 52.30139 0.02037746 -0.01503462 53921.999749 219.4 2.94
-1.695262 67.13222 144.2004 58.25633 17.94333 51.48889 0.1350897 -0.003336151 53922.006083 219.5 2.698
--1.092986 67.36229 141.446 58.39876 17.94333 51.48889 -0.08651794 -0.04342924 53922.010808 221.9 2.665
+##1.695262 67.13222 144.2004 58.25633 17.94333 51.48889 0.1350897 -0.003336151 53922.006083 219.5 2.698
+##-1.092986 67.36229 141.446 58.39876 17.94333 51.48889 -0.08651794 -0.04342924 53922.010808 221.9 2.665
 123.4238 58.20059 265.9804 49.22838 19.84639 8.868333 0.02903626 -0.04432821 53922.015044 224.9 2.567
 -85.33401 14.53542 57.20818 5.683289 13.03639 10.95917 -0.01530878 -0.02150499 53922.025122 230.6 3.079
--12.49278 66.62709 130.0433 57.64333 17.94333 51.48889 -0.1082455 -0.04261534 53922.030975 238.7 2.674
+##-12.49278 66.62709 130.0433 57.64333 17.94333 51.48889 -0.1082455 -0.04261534 53922.030975 238.7 2.674
 -83.21519 29.59222 59.34873 20.74755 14.26111 19.1825 -0.002148711 -0.04665637 53922.039195 219.4 2.561
 
@@ -24,5 +24,5 @@
 
 # 08.07.2006 00:35:01.162
-11.25926 79.77475 153.84 70.71949 18.61556 38.78361 -0.02664664 -0.1890818 53924.024319 240 2.568
+##11.25926 79.77475 153.84 70.71949 18.61556 38.78361 -0.02664664 -0.1890818 53924.024319 240 2.568
 -47.70395 33.32936 94.90227 24.46703 13.79222 49.31333 -0.02054358 -0.07731299 53924.028404 240 2.654
 
@@ -45,10 +45,10 @@
 -62.80504 51.07233 79.74582 42.20923 18.61556 38.78361 -0.007869166 -0.04503269 53928.147497 217.7 1.343
 -44.99628 42.26766 97.5381 33.41469 17.94333 51.48889 -0.005051654 -0.01015477 53928.151037 237.1 2.208
--51.30787 68.92046 91.16271 59.99296 20.37056 40.25667 -0.05520677 -0.007451962 53928.153501 144.7 2.13
+##-51.30787 68.92046 91.16271 59.99296 20.37056 40.25667 -0.05520677 -0.007451962 53928.153501 144.7 2.13
 -117.2444 54.10075 25.25232 45.23834 19.84639 8.868333 -0.0005431548 -0.01221636 53928.160061 233.7 1.645
 -98.50187 24.30442 44.01871 15.44667 17.72444 4.567222 -0.02237514 -0.008621322 53928.163076 219.9 4.116
--162.8194 70.48158 339.6164 61.50356 21.73639 9.875 -0.09808797 -0.01392911 53928.16636 221.6 2.131
+##-162.8194 70.48158 339.6164 61.50356 21.73639 9.875 -0.09808797 -0.01392911 53928.16636 221.6 2.131
 -174.7515 60.85385 327.7325 51.98679 22.09639 -0.3197222 0.001978712 -0.0117325 53928.172397 222.1 3.022
--153.5888 69.35026 348.8759 60.38326 21.73639 9.875 -0.08555919 -0.02770761 53928.175853 227.2 2.189
+##-153.5888 69.35026 348.8759 60.38326 21.73639 9.875 -0.08555919 -0.02770761 53928.175853 227.2 2.189
 143.4705 73.58618 285.9112 64.59444 23.07944 15.20528 0.03058917 -0.008841797 53928.178382 235 2.396
 92.90826 82.48469 235.2043 73.48938 23.06278 28.08278 0.03871052 -0.01416706 53928.181966 233.7 1.865
@@ -57,5 +57,5 @@
 -29.56841 88.36237 111.7448 79.37769 22.71667 30.22139 -0.08074063 -0.0171675 53928.193776 232.4 2.657
 106.2769 87.7279 247.7817 78.733 23.06278 28.08278 0.0492475 -0.02722019 53928.198741 219.6 1.899
-84.42359 74.75936 226.8676 65.84928 0.1397222 29.09056 0.1142629 -0.001146242 53928.202278 199.8 2.079
+##84.42359 74.75936 226.8676 65.84928 0.1397222 29.09056 0.1142629 -0.001146242 53928.202278 199.8 2.079
 84.41008 75.09166 226.9183 66.10608 0.1397222 29.09056 0.03913326 -0.06322873 53928.203095 214.3 2.086
 
@@ -67,8 +67,8 @@
 
 # 12.07.2006 23:49:18.324
-34.24938 77.56582 177.0856 68.41859 18.61556 38.78361 -0.1217685 -0.4144352 53928.992573 222.1 6.357
+##34.24938 77.56582 177.0856 68.41859 18.61556 38.78361 -0.1217685 -0.4144352 53928.992573 222.1 6.357
 -153.4348 72.12998 349.0096 63.25024 17.58222 12.56 0.003652054 -0.02035591 53928.997387 210.9 1.954
 -129.73 44.33233 12.77907 35.47399 16.23917 -3.694444 -0.007684504 -0.01174475 53929.011931 221.9 2.272
--152.2181 63.30009 350.2675 54.32059 17.72444 4.567222 -0.114385 -0.03590927 53929.014686 213.4 2.294
+##-152.2181 63.30009 350.2675 54.32059 17.72444 4.567222 -0.114385 -0.03590927 53929.014686 213.4 2.294
 -150.3161 62.78753 352.1523 53.91906 17.72444 4.567222 0.0005349575 -0.009019848 53929.017299 223.4 2.355
 -109.5851 42.8065 32.94817 33.95012 15.73778 6.425556 -0.007267436 -0.03756312 53929.020527 228.7 2.363
@@ -88,5 +88,5 @@
 
 # 14.07.2006 03:52:49.356
--179.991 14.27643 322.545 5.401298 22.13722 -46.96111 0.09489849 -0.01075885 53930.161682 240 2.271
+##-179.991 14.27643 322.545 5.401298 22.13722 -46.96111 0.09489849 -0.01075885 53930.161682 240 2.271
 137.1302 30.60738 279.667 21.64274 0.7263889 -17.98667 0.0122221 0.001236265 53930.163861 240 1.973
 137.2661 72.30543 279.7211 63.30588 23.07944 15.20528 0.01993321 -0.0119727 53930.166526 240 2.08
@@ -98,6 +98,6 @@
 # 14.07.2006 04:20:13.490
 57.40615 46.30243 199.9967 37.32279 2.065 42.32972 0.01103377 -0.03856185 53930.180712 240 1.806
-28.91007 54.88338 171.4587 45.96619 0.675 56.53722 0.08103471 -0.008122809 53930.18316 240 1.915
--16.11239 53.42236 126.4054 44.62638 21.30972 62.58556 0.06470211 0.007763926 53930.185355 240 2.059
+##28.91007 54.88338 171.4587 45.96619 0.675 56.53722 0.08103471 -0.008122809 53930.18316 240 1.915
+##-16.11239 53.42236 126.4054 44.62638 21.30972 62.58556 0.06470211 0.007763926 53930.185355 240 2.059
 -52.68832 50.78524 89.83966 41.93279 19.74944 45.13083 0.003928667 -0.01691673 53930.188206 240 2.439
 -61.35144 37.38268 81.21011 28.51742 18.61556 38.78361 -0.02086771 -0.04159965 53930.190976 240 1.272
@@ -113,5 +113,5 @@
 76.51591 45.53187 219.048 36.55035 0.1397222 29.09056 0.006714161 0.01701412 53930.102777 240 1.849
 64.77948 35.307 207.3412 26.33845 1.162222 35.62056 0.01399532 -0.001511302 53930.106286 240 1.664
-5.266191 55.81979 147.7819 46.907 21.30972 62.58556 0.08449984 0.01253303 53930.109288 240 2.079
+##5.266191 55.81979 147.7819 46.907 21.30972 62.58556 0.08449984 0.01253303 53930.109288 240 2.079
 -43.27974 45.2357 99.25782 36.38625 17.50722 52.30139 0.0008162767 -0.01514064 53930.113436 240 2.272
 
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0608.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0608.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0608.txt	(revision 8570)
@@ -84,5 +84,5 @@
 -38.53452 65.85814 103.9561 57.01386 17.65778 46.00639 0.03127491 -0.0089906 53958.955669 3305 3.549
 109.7227 49.30327 252.249 40.33157 21.73639 9.875 0.02353443 0.002643602 53958.958953 3802 1.812
-158.3389 46.25506 300.8054 37.23833 20.29417 -12.50833 -0.02803786 0.04736358 53958.9637 3456 2.422
+##158.3389 46.25506 300.8054 37.23833 20.29417 -12.50833 -0.02803786 0.04736358 53958.9637 3456 2.422
 -175.4888 39.40336 327.0297 30.54605 19.07806 -21.74167 -0.009579203 -0.01043967 53958.965708 3289 3.206
 137.1503 77.73064 279.5272 68.73645 19.97917 19.49222 0.03412135 -0.006631294 53958.968291 3523 2.716
@@ -133,6 +133,6 @@
 
 # 13.08.2006 01:17:28.408
--170.8067 13.17237 331.7485 4.258182 20.62611 -47.29139 -0.07865906 -0.03045465 53960.053801 3438 5.274
-168.0015 12.78202 310.5701 3.909294 22.71111 -46.88472 0.09778406 -0.04082779 53960.055936 3504 0.9785
+##-170.8067 13.17237 331.7485 4.258182 20.62611 -47.29139 -0.07865906 -0.03045465 53960.053801 3438 5.274
+##168.0015 12.78202 310.5701 3.909294 22.71111 -46.88472 0.09778406 -0.04082779 53960.055936 3504 0.9785
 
 # 13.08.2006 23:42:38.835
@@ -149,5 +149,5 @@
 36.76635 40.41357 179.3188 31.46784 0.8183333 57.81583 0.03899313 0.00900471 53961.025267 3376 2.79
 21.86645 56.18407 164.3987 47.2512 22.48611 58.41528 0.06601692 0.007880191 53961.026819 3322 2.953
--3.018363 56.91013 139.5094 47.96389 20.75472 61.83889 -0.08197691 -0.000689458 53961.029025 3201 2.746
+##-3.018363 56.91013 139.5094 47.96389 20.75472 61.83889 -0.08197691 -0.000689458 53961.029025 3201 2.746
 16.17439 49.02269 158.7082 40.0804 22.82806 66.20056 0.04979615 0.01042215 53961.030988 3485 2.944
 16.69147 58.28677 159.2268 49.35639 22.18083 58.20111 0.07075489 -0.01667912 53961.032514 3269 2.619
@@ -157,5 +157,5 @@
 
 # 14.08.2006 00:08:33.406
-44.38591 76.08638 186.8401 67.18043 21.24639 38.04556 0.1210477 -0.007248026 53961.005942 3257 5.052
+##44.38591 76.08638 186.8401 67.18043 21.24639 38.04556 0.1210477 -0.007248026 53961.005942 3257 5.052
 
 # 16.08.2006 01:25:52.244
@@ -164,6 +164,6 @@
 
 # 16.08.2006 00:11:04.425
-33.65885 36.90995 176.2092 27.89963 0.945 60.71667 -0.02903911 0.008521885 53963.00769 3305 2.239
-34.02998 43.37055 176.5727 34.3579 0.1530556 59.14972 -0.02610821 0.02787497 53963.009578 3524 2.348
+##33.65885 36.90995 176.2092 27.89963 0.945 60.71667 -0.02903911 0.008521885 53963.00769 3305 2.239
+##34.02998 43.37055 176.5727 34.3579 0.1530556 59.14972 -0.02610821 0.02787497 53963.009578 3524 2.348
 -14.01438 41.76413 128.5258 32.91632 18.35083 72.73278 0.001109679 0.0001890698 53963.017702 3460 3.868
 33.22159 39.14225 175.7841 30.1893 0.945 60.71667 0.03096758 0.001249165 53963.020839 3414 2.398
@@ -172,5 +172,5 @@
 37.86317 42.91187 180.4031 33.95266 0.675 56.53722 0.02836029 0.01535176 53963.025542 3390 2.38
 40.14338 22.75009 182.6948 13.80529 3.08 53.50639 0.02883903 0.01519225 53963.027485 3529 3.57
-49.67325 9.463452 191.813 0.5123742 3.964167 40.01028 0.02389424 0.4287752 53963.02946 3971 7.606
+##49.67325 9.463452 191.813 0.5123742 3.964167 40.01028 0.02389424 0.4287752 53963.02946 3971 7.606
 111.0854 60.42141 253.604 51.442 23.07944 15.20528 0.02599638 -0.006936358 53963.03165 3546 2.56
 157.203 69.75636 299.6651 60.7621 21.73639 9.875 0.02021931 -0.00896205 53963.033132 3341 2.262
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0609.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0609.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0609.txt	(revision 8570)
@@ -40,6 +40,6 @@
 # 10.09.2006 22:15:14.422
 11.38321 73.01351 153.8528 64.02985 20.69056 45.28028 0.03525503 -0.004387442 53988.92725 4371 1.327
-10.39945 54.97069 152.9289 46.11431 21.30972 62.58556 0.1426281 0.00429608 53988.930016 4275 2.174
-9.447343 55.14666 151.969 46.30781 21.30972 62.58556 0.1567546 0.01110421 53988.933505 4384 2.08
+##10.39945 54.97069 152.9289 46.11431 21.30972 62.58556 0.1426281 0.00429608 53988.930016 4275 2.174
+##9.447343 55.14666 151.969 46.30781 21.30972 62.58556 0.1567546 0.01110421 53988.933505 4384 2.08
 -89.0062 75.17325 53.39391 66.3174 19.51194 27.95972 0.02746787 -0.003412955 53988.937888 4185 2.464
 -42.75132 46.89488 99.77304 38.05213 17.50722 52.30139 0.009475473 -0.003927287 53988.94459 4114 3.042
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0610.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0610.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0610.txt	(revision 8570)
@@ -24,5 +24,5 @@
 # 04.10.2006 02:04:10.971
 -43.23649 80.10705 99.12011 71.30044 1.162222 35.62056 0.08876727 -0.02269734 54012.086238 3881 1.261
--164.3209 81.64787 337.1563 72.93082 1.910556 20.80806 0.1793105 0.7636045 54012.100686 3983 5.739
+##-164.3209 81.64787 337.1563 72.93082 1.910556 20.80806 0.1793105 0.7636045 54012.100686 3983 5.739
 
 # 03.10.2006 23:30:50.036
@@ -69,5 +69,5 @@
 175.4542 31.51356 317.978 22.54614 22.96083 -29.62222 0.009242302 -0.00575458 54017.943188 3006 1.354
 178.3941 31.65156 320.9179 22.68163 22.96083 -29.62222 0.00659737 -0.00685471 54017.951182 3021 1.372
--179.8533 31.80972 322.6707 22.83664 22.96083 -29.62222 -0.1326107 -0.01030173 54017.955944 2989 1.311
+##-179.8533 31.80972 322.6707 22.83664 22.96083 -29.62222 -0.1326107 -0.01030173 54017.955944 2989 1.311
 
 # 10.10.2006 00:33:39.932
@@ -93,10 +93,10 @@
 179.1773 14.58811 321.7123 5.639477 1.101389 -46.71861 0.02140904 -0.009357211 54019.038519 7254 3.431
 -179.9567 14.61791 322.5774 5.681476 1.101389 -46.71861 -0.001312156 -0.01371057 54019.041921 2912 3.444
--176.2273 14.5854 326.3115 5.625834 1.101389 -46.71861 -0.123422 -0.01709465 54019.05653 3755 3.324
+##-176.2273 14.5854 326.3115 5.625834 1.101389 -46.71861 -0.123422 -0.01709465 54019.05653 3755 3.324
 -172.7712 14.07966 329.7672 5.212713 1.101389 -46.71861 -0.03081941 -0.01602917 54019.07016 2831 3.33
 -172.2287 13.98787 330.3023 5.125502 1.101389 -46.71861 -0.02726928 -0.01239688 54019.072302 2840 3.484
 
 # 11.10.2006 03:00:37.672
--97.58133 2.768576 44.69722 -5.909089 21.52583 -5.571111 0.1543874 0.2383649 54019.125436 2951 5.766
+##-97.58133 2.768576 44.69722 -5.909089 21.52583 -5.571111 0.1543874 0.2383649 54019.125436 2951 5.766
 
 # 11.10.2006 04:06:28.380
@@ -107,15 +107,15 @@
 -131.2143 70.66999 11.22986 61.77789 0.2205556 15.18361 -0.02062332 -0.01505777 54020.043876 2964 2.34
 -106.4517 56.34906 36.0429 47.481 23.07944 15.20528 -0.00553647 -0.01225791 54020.047597 2990 2.063
--82.90097 60.24929 59.5861 51.30009 23.06278 28.08278 -0.08320395 -0.01047062 54020.048578 3037 1.589
+##-82.90097 60.24929 59.5861 51.30009 23.06278 28.08278 -0.08320395 -0.01047062 54020.048578 3037 1.589
 -98.61279 35.44525 43.92076 26.57769 21.73639 9.875 -0.0249937 -0.0287552 54020.051244 2919 1.79
 
 # 12.10.2006 01:57:16.560
--97.76736 45.95005 44.74583 37.02216 23.07944 15.20528 -0.07388231 -0.0123085 54020.081442 2770 2.1
+##-97.76736 45.95005 44.74583 37.02216 23.07944 15.20528 -0.07388231 -0.0123085 54020.081442 2770 2.1
 
 # 12.10.2006 03:06:55.083
 165.4773 46.61858 308.0004 37.64595 3.967222 -13.50861 0.01536565 -0.01054351 54020.129804 2675 2.328
-2.231219 12.98669 144.7759 4.11881 14.845 74.15556 0.1047708 0.005246971 54020.133173 2968 1.848
+##2.231219 12.98669 144.7759 4.11881 14.845 74.15556 0.1047708 0.005246971 54020.133173 2968 1.848
 26.44533 14.58339 169.0087 5.629874 11.06222 61.75083 0.0163905 0.003277504 54020.135566 2897 1.696
-31.3128 11.93825 173.8706 3.049363 11.03056 56.3825 0.08289331 0.0066955 54020.137257 2816 2.454
+##31.3128 11.93825 173.8706 3.049363 11.03056 56.3825 0.08289331 0.0066955 54020.137257 2816 2.454
 142.3052 84.18912 284.4836 75.1807 3.791389 24.105 0.02872401 -0.03444397 54020.140082 3091 2.287
 -159.4297 85.0684 342.6388 76.16545 3.791389 24.105 -0.002536299 -0.02326663 54020.156062 3205 2.334
@@ -128,5 +128,5 @@
 
 # 12.10.2006 00:49:50.963
--174.7276 43.25519 327.7838 34.29343 0.7263889 -17.98667 -0.1113298 -0.009497088 54020.034618 2772 1.676
+##-174.7276 43.25519 327.7838 34.29343 0.7263889 -17.98667 -0.1113298 -0.009497088 54020.034618 2772 1.676
 -172.5291 18.50308 330.0079 9.62854 0.4380556 -42.30611 -0.03766382 -0.01645462 54020.038064 2928 2.61
 
@@ -134,14 +134,14 @@
 -97.52332 45.53788 44.98659 36.67305 23.07944 15.20528 -0.01019114 -0.009224873 54020.082553 2673 2.249
 -81.43815 62.18264 61.08745 53.31372 0.1397222 29.09056 -0.0001588669 -0.05080622 54020.087378 2852 1.776
--60.05115 74.14105 82.4098 65.16187 1.162222 35.62056 -0.08338644 -0.02048421 54020.088721 2877 1.459
--123.46 80.9885 18.86298 72.00677 2.119444 23.4625 -0.09225508 -0.04985317 54020.104255 3266 1.555
+##-60.05115 74.14105 82.4098 65.16187 1.162222 35.62056 -0.08338644 -0.02048421 54020.088721 2877 1.459
+##-123.46 80.9885 18.86298 72.00677 2.119444 23.4625 -0.09225508 -0.04985317 54020.104255 3266 1.555
 -29.16001 73.95846 113.2991 65.09306 2.065 42.32972 0.02065991 -0.01952744 54020.108114 3006 1.67
 17.10618 77.07148 159.5604 68.09565 3.136111 40.95556 0.04905945 -0.02506352 54020.109773 3232 1.737
-175.8022 65.16433 318.2862 56.30113 3.038056 4.089722 0.1451631 -0.01984201 54020.114618 3144 1.763
+##175.8022 65.16433 318.2862 56.30113 3.038056 4.089722 0.1451631 -0.01984201 54020.114618 3144 1.763
 -31.42052 47.8339 111.1089 38.98566 0.1530556 59.14972 0.005919482 -0.003998032 54020.118982 2995 1.947
 -31.44664 47.80293 111.08 38.94794 0.1530556 59.14972 -0.001295864 -0.001380199 54020.119213 2885 1.938
--32.12395 52.41964 110.4022 43.47817 0.675 56.53722 -0.08392526 -0.005651051 54020.121449 3074 1.76
+##-32.12395 52.41964 110.4022 43.47817 0.675 56.53722 -0.08392526 -0.005651051 54020.121449 3074 1.76
 -24.80119 51.42386 117.7198 42.55928 0.945 60.71667 -0.01473543 -0.003441444 54020.122257 2940 1.819
--21.3094 54.244 121.1973 45.28151 1.430278 60.23528 -0.1011429 0.01569079 54020.123219 2899 2.204
+##-21.3094 54.244 121.1973 45.28151 1.430278 60.23528 -0.1011429 0.01569079 54020.123219 2899 2.204
 -30.85038 26.37739 111.6908 17.52248 21.30972 62.58556 -0.01949844 -0.004556111 54020.124216 3090 2.176
 
@@ -152,8 +152,8 @@
 -52.10853 31.67329 90.43408 22.80694 20.69056 45.28028 -0.02567097 -0.0149825 54020.057294 3019 1.381
 -56.67898 26.76455 85.85843 17.90136 20.37056 40.25667 -0.01862909 -0.006997054 54020.058537 2875 2.231
--64.94425 29.30557 77.6122 20.37042 20.77028 33.97028 -0.09674413 -0.0352504 54020.059795 2834 2.349
+##-64.94425 29.30557 77.6122 20.37042 20.77028 33.97028 -0.09674413 -0.0352504 54020.059795 2834 2.349
 -49.04978 21.08236 93.49212 12.21561 19.74944 45.13083 -0.03292848 -0.009627622 54020.061339 2838 3.34
--164.7668 16.80381 337.7703 7.853466 0.4380556 -42.30611 -0.1165482 -0.0199491 54020.066591 2817 2.676
--141.0574 18.67086 1.465868 9.71622 22.96083 -29.62222 -0.1197743 -0.01285764 54020.06996 2838 1.279
+##-164.7668 16.80381 337.7703 7.853466 0.4380556 -42.30611 -0.1165482 -0.0199491 54020.066591 2817 2.676
+##-141.0574 18.67086 1.465868 9.71622 22.96083 -29.62222 -0.1197743 -0.01285764 54020.06996 2838 1.279
 
 # 13.10.2006 02:32:28.317
@@ -162,7 +162,7 @@
 
 # 13.10.2006 02:35:33.088
--117.6649 40.30622 0 90 0 0 0.05765585 0.05794547 54021.108022 2722 1.705
+##-117.6649 40.30622 0 90 0 0 0.05765585 0.05794547 54021.108022 2722 1.705
 14.49516 67.91708 157.0089 58.93093 3.405278 49.86111 0.02587146 0.01880198 54021.108871 2809 1.614
-3.829738 65.02159 146.33 56.1541 3.08 53.50639 0.1345732 0.01206287 54021.1111 2717 2.406
+##3.829738 65.02159 146.33 56.1541 3.08 53.50639 0.1345732 0.01206287 54021.1111 2717 2.406
 -106.9445 74.97878 35.50471 66.10336 2.119444 23.4625 0.002776267 -0.05523037 54021.122047 2815 1.607
 -164.6544 64.59377 337.8307 55.72015 3.038056 4.089722 -0.0005237247 -0.02252011 54021.134871 2876 1.751
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0611.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0611.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0611.txt	(revision 8570)
@@ -84,5 +84,5 @@
 
 # 08.11.2006 03:31:24.995
--174.3766 52.92981 328.127 44.04846 5.242222 -8.201667 -0.01754652 -0.01168427 54047.146817 4805 0.8236
+##-174.3766 52.92981 328.127 44.04846 5.242222 -8.201667 -0.01754652 -0.01168427 54047.146817 4805 0.8236
 
 # 08.11.2006 04:40:34.954
@@ -110,5 +110,5 @@
 
 # 08.11.2006 03:26:42.938
--173.025 56.07106 329.4788 47.12626 5.130833 -5.086389 -0.1056357 -0.01291785 54047.143553 4966 2.507
+##-173.025 56.07106 329.4788 47.12626 5.130833 -5.086389 -0.1056357 -0.01291785 54047.143553 4966 2.507
 
 # 08.11.2006 03:39:25.503
@@ -134,5 +134,5 @@
 
 # 08.11.2006 02:37:18.127
-161.2537 41.26189 303.7833 32.3756 5.545556 -17.82222 0.06879349 -0.0119897 54047.109238 2640 2.485
+##161.2537 41.26189 303.7833 32.3756 5.545556 -17.82222 0.06879349 -0.0119897 54047.109238 2640 2.485
 
 # 08.11.2006 05:45:24.903
@@ -161,5 +161,5 @@
 
 # 09.11.2006 02:19:31.012
-157.1257 40.1786 299.6577 31.29508 5.545556 -17.82222 0.07130639 -0.01356714 54048.096887 5626 2.342
+##157.1257 40.1786 299.6577 31.29508 5.545556 -17.82222 0.07130639 -0.01356714 54048.096887 5626 2.342
 
 # 09.11.2006 05:27:32.793
@@ -167,5 +167,5 @@
 
 # 09.11.2006 02:31:16.973
-145.5725 22.43712 288.109 13.54171 6.976944 -28.97222 0.06275379 -0.008441237 54048.105058 5262 1.603
+##145.5725 22.43712 288.109 13.54171 6.976944 -28.97222 0.06275379 -0.008441237 54048.105058 5262 1.603
 
 # 09.11.2006 05:46:07.940
@@ -354,5 +354,5 @@
 
 # 11.11.2006 04:37:24.592
-173.2885 23.67746 315.8227 14.81849 7.285833 -37.0975 0.09698929 -0.008127411 54050.192646 5635 2.087
+##173.2885 23.67746 315.8227 14.81849 7.285833 -37.0975 0.09698929 -0.008127411 54050.192646 5635 2.087
 174.2184 23.86271 316.7546 14.92092 7.285833 -37.0975 0.01412337 -0.009918548 54050.195628 5895 2.017
 
@@ -361,5 +361,5 @@
 
 # 11.11.2006 00:51:02.118
-2.011423 65.11017 144.5206 56.23965 3.08 53.50639 0.1007113 -0.01422786 54050.035441 5615 2.505
+##2.011423 65.11017 144.5206 56.23965 3.08 53.50639 0.1007113 -0.01422786 54050.035441 5615 2.505
 
 # 11.11.2006 01:10:37.626
@@ -376,5 +376,5 @@
 
 # 11.11.2006 04:32:34.735
-175.5656 32.04872 318.09 23.18705 6.976944 -28.97222 0.09305463 -0.008750138 54050.189291 5801 1.451
+##175.5656 32.04872 318.09 23.18705 6.976944 -28.97222 0.09305463 -0.008750138 54050.189291 5801 1.451
 
 # 11.11.2006 02:47:18.483
@@ -428,5 +428,5 @@
 
 # 29.11.2006 19:55:16.154
-69.3972 5.830596 211.6001 -2.985784 5.6275 21.1425 0.1507109 0.3456049 54068.830048 4796 5.831
+##69.3972 5.830596 211.6001 -2.985784 5.6275 21.1425 0.1507109 0.3456049 54068.830048 4796 5.831
 
 # 29.11.2006 22:16:43.776
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0612.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0612.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0612.txt	(revision 8570)
@@ -242,5 +242,5 @@
 
 # 29.12.2006 01:16:01.749
--141.5685 4.800143 0.704412 -3.919526 2.971111 -40.30472 0.1503868 0.252398 54098.052798 3259 5.935
+##-141.5685 4.800143 0.704412 -3.919526 2.971111 -40.30472 0.1503868 0.252398 54098.052798 3259 5.935
 
 # 28.12.2006 23:38:00.888
@@ -312,5 +312,5 @@
 
 # 28.12.2006 23:28:27.055
--125.4655 42.61635 16.6089 33.86769 2.3225 -2.9775 0.1101212 0.4375296 54097.978091 2883 5.853
+##-125.4655 42.61635 16.6089 33.86769 2.3225 -2.9775 0.1101212 0.4375296 54097.978091 2883 5.853
 
 # 28.12.2006 22:38:17.121
@@ -342,5 +342,5 @@
 
 # 29.12.2006 01:00:23.335
--108.033 24.60411 34.04559 15.87793 2.3225 -2.9775 0.1317746 0.4476913 54098.041937 3262 5.904
+##-108.033 24.60411 34.04559 15.87793 2.3225 -2.9775 0.1317746 0.4476913 54098.041937 3262 5.904
 
 # 28.12.2006 22:45:26.866
@@ -406,5 +406,5 @@
 
 # 30.12.2006 02:16:58.682
--18.19473 56.79757 124.0188 48.02164 6.326944 59.01083 0.09009142 0.3008587 54099.095124 3511 5.935
+##-18.19473 56.79757 124.0188 48.02164 6.326944 59.01083 0.09009142 0.3008587 54099.095124 3511 5.935
 
 # 29.12.2006 23:42:29.064
@@ -424,8 +424,8 @@
 
 # 29.12.2006 23:05:34.454
--4.046654 4.811361 138.2641 -3.906712 17.14639 65.71472 0.153189 0.2388854 54098.962204 3365 5.855
+##-4.046654 4.811361 138.2641 -3.906712 17.14639 65.71472 0.153189 0.2388854 54098.962204 3365 5.855
 
 # 30.12.2006 01:51:56.074
-16.23395 18.23559 158.7958 9.341903 15.34556 71.83389 0.0646912 -0.01182471 54099.077732 3394 2.791
+##16.23395 18.23559 158.7958 9.341903 15.34556 71.83389 0.0646912 -0.01182471 54099.077732 3394 2.791
 
 # 29.12.2006 21:25:13.742
@@ -460,5 +460,5 @@
 
 # 30.12.2006 01:46:35.055
-15.33216 21.02686 157.89 12.14675 14.845 74.15556 0.07631375 -0.008520981 54099.074017 3383 1.632
+##15.33216 21.02686 157.89 12.14675 14.845 74.15556 0.07631375 -0.008520981 54099.074017 3383 1.632
 
 # 29.12.2006 21:07:16.079
@@ -469,11 +469,11 @@
 
 # 30.12.2006 01:59:24.860
-6.285041 35.73052 148.5694 26.89704 9.618056 81.32639 0.12145 0.2585308 54099.082927 3432 5.841
+##6.285041 35.73052 148.5694 26.89704 9.618056 81.32639 0.12145 0.2585308 54099.082927 3432 5.841
 
 # 30.12.2006 02:05:28.641
-11.11674 21.37945 153.4199 12.56057 15.73417 77.79444 0.1393184 0.2450556 54099.087137 3531 5.904
+##11.11674 21.37945 153.4199 12.56057 15.73417 77.79444 0.1393184 0.2450556 54099.087137 3531 5.904
 
 # 29.12.2006 23:12:35.959
--3.328887 4.709089 138.9826 -4.010102 17.14639 65.71472 0.1524416 0.2372941 54098.967083 3374 5.96
+##-3.328887 4.709089 138.9826 -4.010102 17.14639 65.71472 0.1524416 0.2372941 54098.967083 3374 5.96
 
 # 29.12.2006 22:16:34.842
@@ -525,5 +525,5 @@
 
 # 30.12.2006 00:50:43.221
-161.99 29.39587 304.5242 20.50979 7.401667 -29.30306 0.06842851 -0.008484257 54099.035222 3392 2
+##161.99 29.39587 304.5242 20.50979 7.401667 -29.30306 0.06842851 -0.008484257 54099.035222 3392 2
 
 # 29.12.2006 23:57:53.398
@@ -540,5 +540,5 @@
 
 # 29.12.2006 23:07:56.542
--3.806345 4.775042 138.5066 -3.954898 17.14639 65.71472 0.1526661 0.2370098 54098.963849 3375 5.972
+##-3.806345 4.775042 138.5066 -3.954898 17.14639 65.71472 0.1526661 0.2370098 54098.963849 3375 5.972
 
 # 29.12.2006 20:30:14.110
@@ -549,5 +549,5 @@
 
 # 30.12.2006 01:29:15.155
-23.8208 33.62482 166.1263 24.79092 11.52333 69.33111 0.1218493 0.2388895 54099.061981 3220 5.904
+##23.8208 33.62482 166.1263 24.79092 11.52333 69.33111 0.1218493 0.2388895 54099.061981 3220 5.904
 
 # 29.12.2006 22:36:16.111
@@ -555,5 +555,5 @@
 
 # 30.12.2006 01:35:15.336
-23.38863 28.73226 165.6983 19.90551 12.55806 69.78833 0.1291973 0.2365786 54099.06615 3253 5.967
+##23.38863 28.73226 165.6983 19.90551 12.55806 69.78833 0.1291973 0.2365786 54099.06615 3253 5.967
 
 # 29.12.2006 21:09:00.326
@@ -561,5 +561,5 @@
 
 # 30.12.2006 00:08:04.074
-44.99382 39.85836 187.5405 30.98464 9.5475 51.67722 0.08481177 -0.007322661 54099.005603 3381 2.785
+##44.99382 39.85836 187.5405 30.98464 9.5475 51.67722 0.08481177 -0.007322661 54099.005603 3381 2.785
 
 # 30.12.2006 02:44:54.539
@@ -576,5 +576,5 @@
 
 # 30.12.2006 01:48:59.864
-14.99782 23.16515 157.3051 14.3419 14.45861 75.69611 0.1349053 0.2408761 54099.075693 3383 5.963
+##14.99782 23.16515 157.3051 14.3419 14.45861 75.69611 0.1349053 0.2408761 54099.075693 3383 5.963
 
 # 29.12.2006 20:56:55.443
@@ -610,5 +610,5 @@
 
 # 30.12.2006 01:23:57.816
-26.20746 46.48483 168.5002 37.631 9.525556 63.06194 0.1034313 0.2401603 54099.058308 3398 5.83
+##26.20746 46.48483 168.5002 37.631 9.525556 63.06194 0.1034313 0.2401603 54099.058308 3398 5.83
 
 # 29.12.2006 22:56:15.061
@@ -635,5 +635,5 @@
 
 # 30.12.2006 02:08:55.373
-14.22599 8.288777 156.5394 -0.5280937 17.14639 65.71472 0.1492202 0.2378438 54099.08953 3454 5.918
+##14.22599 8.288777 156.5394 -0.5280937 17.14639 65.71472 0.1492202 0.2378438 54099.08953 3454 5.918
 
 # 29.12.2006 21:16:52.713
@@ -707,5 +707,5 @@
 
 # 31.12.2006 00:16:20.540
-84.03424 62.77611 226.5389 53.87166 7.755278 28.02611 0.06440748 -0.009608853 54100.011349 3865 1.227
+##84.03424 62.77611 226.5389 53.87166 7.755278 28.02611 0.06440748 -0.009608853 54100.011349 3865 1.227
 
 # 30.12.2006 21:29:33.029
@@ -737,5 +737,5 @@
 
 # 30.12.2006 21:10:36.366
-134.618 31.03618 277.159 22.16073 5.215556 -16.20556 0.08030475 -0.01345093 54099.882365 4039 3.245
+##134.618 31.03618 277.159 22.16073 5.215556 -16.20556 0.08030475 -0.01345093 54099.882365 4039 3.245
 
 # 31.12.2006 01:50:35.785
@@ -746,5 +746,5 @@
 
 # 30.12.2006 21:04:52.707
-116.4952 50.355 259.0236 41.46192 4.830556 6.961389 0.06866954 -0.01524895 54099.878388 3985 3.004
+##116.4952 50.355 259.0236 41.46192 4.830556 6.961389 0.06866954 -0.01524895 54099.878388 3985 3.004
 116.6109 50.51055 259.1432 41.56078 4.830556 6.961389 0.01279495 -0.02115717 54099.87874 4326 2.97
 
@@ -762,5 +762,5 @@
 
 # 31.12.2006 02:29:06.441
-28.42678 24.68175 170.9939 15.78397 14.07306 64.37583 0.05975852 -0.01923022 54100.103547 3390 3.805
+##28.42678 24.68175 170.9939 15.78397 14.07306 64.37583 0.05975852 -0.01923022 54100.103547 3390 3.805
 
 # 31.12.2006 03:25:16.118
@@ -813,5 +813,5 @@
 
 # 30.12.2006 23:49:23.684
-31.20196 11.101 173.7619 2.18497 12.90056 55.95972 0.04724415 -0.006270268 54099.992635 3525 2.136
+##31.20196 11.101 173.7619 2.18497 12.90056 55.95972 0.04724415 -0.006270268 54099.992635 3525 2.136
 
 # 30.12.2006 23:18:02.613
@@ -859,5 +859,5 @@
 
 # 30.12.2006 20:48:25.450
-80.94805 33.89582 223.5015 25.00744 6.382778 22.51361 0.06727998 -0.01578572 54099.866961 3997 2.107
+##80.94805 33.89582 223.5015 25.00744 6.382778 22.51361 0.06727998 -0.01578572 54099.866961 3997 2.107
 
 # 31.12.2006 02:43:06.372
@@ -901,5 +901,5 @@
 
 # 30.12.2006 23:44:56.548
-8.468631 12.36002 151.0249 3.472784 15.34556 71.83389 0.07479178 -0.004602198 54099.989543 3523 3.266
+##8.468631 12.36002 151.0249 3.472784 15.34556 71.83389 0.07479178 -0.004602198 54099.989543 3523 3.266
 
 # 30.12.2006 21:08:21.118
@@ -976,5 +976,5 @@
 
 # 31.12.2006 02:14:45.710
-30.34295 43.25212 172.8853 34.36352 11.06222 61.75083 0.06837406 -0.005220536 54100.093585 3406 1.621
+##30.34295 43.25212 172.8853 34.36352 11.06222 61.75083 0.06837406 -0.005220536 54100.093585 3406 1.621
 
 # 30.12.2006 20:31:54.912
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0701.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0701.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0701.txt	(revision 8570)
@@ -54,5 +54,5 @@
 
 # --- 01.01.2007 00:50:17.202
-##167.5942 22.76505 310.1273 13.84366 7.285833 -37.0975 0.03551422 -0.009211329 54101.034921 2994 2.389
+167.5942 22.76505 310.1273 13.84366 7.285833 -37.0975 0.03551422 -0.009211329 54101.034921 2994 2.389
 
 # --- 01.01.2007 00:54:50.419
@@ -78,5 +78,5 @@
 
 # --- 01.01.2007 01:26:56.216
-##-47.3051 27.80838 95.30335 18.95877 1.633333 48.62833 0.008312756 -0.07067296 54101.060373 3112 3.77
+-47.3051 27.80838 95.30335 18.95877 1.633333 48.62833 0.008312756 -0.07067296 54101.060373 3112 3.77
 
 # --- 01.01.2007 01:37:17.332
@@ -142,5 +142,5 @@
 
 # --- 06.01.2007 01:18:56.848
-##-59.11157 40.32392 83.557 31.48291 3.136111 40.95556 0.01675117 -0.1415749 54106.054825 3277 2.678
+-59.11157 40.32392 83.557 31.48291 3.136111 40.95556 0.01675117 -0.1415749 54106.054825 3277 2.678
 
 # --- 06.01.2007 23:00:38.400
@@ -154,5 +154,5 @@
 
 # --- 07.01.2007 23:19:51.622
-##0.206456 72.75831 142.6786 63.77756 5.278056 45.99806 -0.0009788277 -0.01248831 54107.972125 4001 0.687
+0.206456 72.75831 142.6786 63.77756 5.278056 45.99806 -0.0009788277 -0.01248831 54107.972125 4001 0.687
 
 # --- 08.01.2007 23:44:02.531
@@ -160,5 +160,5 @@
 
 # --- 08.01.2007 23:50:20.993
-##-34.23138 36.37099 108.2327 27.51493 1.430278 60.23528 0.000789433 0.07176416 54108.993299 3848 3.237
+-34.23138 36.37099 108.2327 27.51493 1.430278 60.23528 0.000789433 0.07176416 54108.993299 3848 3.237
 
 # --- 09.01.2007 00:02:09.394
@@ -212,8 +212,8 @@
 
 # --- 10.01.2007 01:19:27.388
-##-58.57691 37.28525 84.02584 28.43547 3.136111 40.95556 0.007065362 -0.07693561 54110.055178 2748 4.222
+-58.57691 37.28525 84.02584 28.43547 3.136111 40.95556 0.007065362 -0.07693561 54110.055178 2748 4.222
 
 # --- 10.01.2007 01:29:02.861
-##3.097726 86.87586 144.9261 77.88425 7.576667 31.88833 0.008394367 -0.009257146 54110.061839 2831 1.682
+3.097726 86.87586 144.9261 77.88425 7.576667 31.88833 0.008394367 -0.009257146 54110.061839 2831 1.682
 
 # --- 10.01.2007 01:42:02.348
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0702.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0702.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0702.txt	(revision 8570)
@@ -50,5 +50,5 @@
 -103.3244 68.56286 39.13038 59.70547 7.335278 21.98222 0.01568489 -0.00380764 54155.989177 2337 3
 -130.5029 60.92568 11.97998 52.06739 7.4525 8.289444 0.01063255 -0.007509153 54155.992317 2270 2.431
-##-10.0431 81.83463 132.0225 72.9515 9.314167 36.8025 0.01436499 0.2271345 54156.013997 2259 5.796
+-10.0431 81.83463 132.0225 72.9515 9.314167 36.8025 0.01436499 0.2271345 54156.013997 2259 5.796
 
 # --- 25.02.2007 --- 00:38:26.451
@@ -99,5 +99,5 @@
 ##159.1958 16.45626 301.7393 7.567911 9.511667 -40.46667 0.07154023 -0.01638471 54157.937959 4009 3.662
 174.3555 36.7085 316.8845 27.76439 8.125833 -24.30417 0.0103172 -0.00938683 54157.940308 4083 2.398
-##123.7013 23.43598 266.2941 14.49957 11.32222 -14.77861 0.02423779 -0.06333205 54157.942576 3916 3.187
+123.7013 23.43598 266.2941 14.49957 11.32222 -14.77861 0.02423779 -0.06333205 54157.942576 3916 3.187
 131.0516 28.26371 273.5919 19.31695 10.82694 -16.19361 0.01461552 -0.01433234 54157.945068 3955 2.646
 136.8538 31.80527 279.3977 22.86419 10.43472 -16.83639 0.01650034 -0.02226544 54157.946455 6944 3.24
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0703.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0703.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0703.txt	(revision 8570)
@@ -26,10 +26,10 @@
 38.51356 22.60578 181.0781 13.66301 13.39861 54.92528 0.01510497 -0.01616618 54159.915356 3066 2.161
 26.98454 10.697 169.5429 1.757794 15.41556 58.96611 0.02445987 -0.006108701 54159.918437 2973 3.684
-##-65.04293 16.82893 77.57611 7.970094 1.884722 29.57889 0.001663824 -0.08582479 54159.927996 3002 3.628
+-65.04293 16.82893 77.57611 7.970094 1.884722 29.57889 0.001663824 -0.08582479 54159.927996 3002 3.628
 -52.92389 22.86133 89.62444 14.00218 2.065 42.32972 -0.001550814 -0.01061366 54159.930497 2997 1.921
 -95.26046 18.01907 47.24982 9.16949 3.038056 4.089722 0.007579792 0.01820483 54159.935901 3039 2.149
 -93.3939 12.92871 49.15395 4.074136 2.721667 3.235833 0.005939187 -0.02742316 54159.937647 3053 4.244
 -110.7571 16.26369 31.77295 7.409129 3.548889 -9.458333 0.004934132 -0.001734982 54159.93995 3054 4.063
--136.3092 13.14994 6.230855 4.292403 4.5925 -30.56222 0.005241309 -0.01331503 54159.944101 2836 5.779
+##-136.3092 13.14994 6.230855 4.292403 4.5925 -30.56222 0.005241309 -0.01331503 54159.944101 2836 5.779
 
 # --- 05.03.2007 --- 23:26:00.143
@@ -61,5 +61,5 @@
 
 # --- 07.03.2007 --- 23:19:28.031
-##118.906 80.21115 261.2297 71.27833 9.764167 23.77417 0.06009143 -0.01160515 54166.971852 4086 2.555
+118.906 80.21115 261.2297 71.27833 9.764167 23.77417 0.06009143 -0.01160515 54166.971852 4086 2.555
 106.4362 74.39454 248.8649 65.43966 10.27806 23.41722 0.03142201 -0.01236073 54166.973824 4294 2.986
 140.8504 69.07371 283.3088 60.11257 10.13944 11.96722 0.01638128 -0.01122815 54166.976309 4483 1.311
@@ -131,4 +131,4 @@
 
 # --- 10.03.2007 --- 01:32:40.535
-##168.3119 37.6906 310.8399 28.77462 12.16861 -22.61972 0.01207721 -0.01483994 54169.064358 4838 2.857
+168.3119 37.6906 310.8399 28.77462 12.16861 -22.61972 0.01207721 -0.01483994 54169.064358 4838 2.857
 
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0705.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0705.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0705.txt	(revision 8570)
@@ -3,5 +3,5 @@
 
 # --- 05.05.2007 --- 00:08:51.266
-##144.0907 78.39571 286.4757 69.37566 14.26111 19.1825 -0.03261408 -0.02463028 54225.006149 3969 0.2131
+144.0907 78.39571 286.4757 69.37566 14.26111 19.1825 -0.03261408 -0.02463028 54225.006149 3969 0.2131
 -142.5909 68.2792 359.872 59.41303 13.03639 10.95917 0.01092337 -0.006646224 54225.011859 3738 2.221
 -108.1444 56.53534 34.35209 47.68139 11.81778 14.57194 0.01215936 -0.0007715871 54225.015346 3204 1.673
@@ -42,7 +42,7 @@
 73.70441 77.15844 216.1219 68.2019 16.68806 31.60306 0.03196628 0.005269007 54227.081329 4.757e+04 2.613
 -134.2286 37.363 8.291265 28.50203 13.42 -11.16139 -0.001810469 -0.0006075722 54227.08404 4300 1.081
-##-141.2101 26.66468 1.417832 17.80711 13.31528 -23.17167 -0.001462521 -0.1091652 54227.085627 4648 2.571
+-141.2101 26.66468 1.417832 17.80711 13.31528 -23.17167 -0.001462521 -0.1091652 54227.085627 4648 2.571
 -132.3752 19.40747 10.15627 10.54689 12.57306 -23.39667 -0.0004637375 -0.007361185 54227.087452 4301 2.283
-##-148.9155 15.1982 353.689 6.332108 13.34333 -36.71222 -0.002694494 -0.08431037 54227.089385 4421 2.594
+-148.9155 15.1982 353.689 6.332108 13.34333 -36.71222 -0.002694494 -0.08431037 54227.089385 4421 2.594
 
 
Index: trunk/MagicSoft/Cosy/tpoint/tpoint0706.txt
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/tpoint0706.txt	(revision 8569)
+++ trunk/MagicSoft/Cosy/tpoint/tpoint0706.txt	(revision 8570)
@@ -1,2 +1,5 @@
+Magic Model  TPOINT data file
+: ALTAZ
+
 # --- 02.06.2007 --- 23:12:38.195
 -143.5923 78.24477 358.6578 69.41951 14.26111 19.1825 0.06385434 0.09873544 54253.967109 3919 0.3942
