Projekt

Obecné

Profil

« Předchozí | Další » 

Revize b8ac4d66

Přidáno uživatelem Roman Kalivoda před více než 3 roky(ů)

Re #9009 Migrate to .NET 5.0

Zobrazit rozdíly:

Server/ServerApp.sln
3 3
# Visual Studio Version 16
4 4
VisualStudioVersion = 16.0.31105.61
5 5
MinimumVisualStudioVersion = 10.0.40219.1
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerApp", "ServerApp\ServerApp.csproj", "{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}"
6
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerApp", "ServerApp\ServerApp.csproj", "{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}"
7 7
EndProject
8 8
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProject", "TestProject\TestProject.csproj", "{8A09DB8E-64B1-4D55-991E-7F7B21996B45}"
9 9
EndProject
......
17 17
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
18 18
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19 19
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
20
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.ActiveCfg = Debug|x64
21
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.Build.0 = Debug|x64
20
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.ActiveCfg = Debug|Any CPU
21
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.Build.0 = Debug|Any CPU
22 22
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
23 23
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|Any CPU.Build.0 = Release|Any CPU
24 24
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|x64.ActiveCfg = Release|x64
Server/ServerApp/App.config
1
<?xml version="1.0" encoding="utf-8"?>
2
<configuration>
3
    <startup> 
4
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5
    </startup>
6
  <runtime>
7
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8
      <dependentAssembly>
9
        <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
10
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
11
      </dependentAssembly>
12
      <dependentAssembly>
13
        <assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
14
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
15
      </dependentAssembly>
16
    </assemblyBinding>
17
  </runtime>
18
</configuration>
Server/ServerApp/Predictor/PredictorConfiguration.cs
1
//
2
// Author: Roman Kalivoda
3
//
4

  
5
using System.Collections.Generic;
6
using System;
7
using System.IO;
8
using Newtonsoft.Json;
9

  
10
namespace ServerApp.Predictor
11
{
12
    class PredictorConfiguration
13
    {
14
        public static readonly string DEFAULT_CONFIG_PATH = Path.GetFullPath(Path.GetDirectoryName(Environment.CurrentDirectory) + @"\Predictor.config");
15

  
16
        public int TimeResolution { get; set; }
17

  
18
        public Dictionary<string, int> BuildingsToAreas { get; set; }
19

  
20
        public int PredictorCount { get; set; }
21

  
22
        public static PredictorConfiguration LoadConfig(string filename)
23
        {
24
            string json = System.IO.File.ReadAllText(filename);
25
            PredictorConfiguration configuration = JsonConvert.DeserializeObject<PredictorConfiguration>(json);
26
            return configuration;
27
        }
28

  
29
        public static void SaveConfig(string filename, PredictorConfiguration configuration)
30
        {
31
            string json = JsonConvert.SerializeObject(configuration);
32
            System.IO.File.WriteAllText(filename, json);
33
        }
34

  
35
        public static PredictorConfiguration GetDefaultConfig()
36
        {
37
            Dictionary<string, int> dict = new Dictionary<string, int>();
38
            var locationKeys = Parser.Parsers.TagInfo.buildings;
39
            foreach (string key in locationKeys)
40
            {
41
                dict.Add(key, 0);
42
            }
43

  
44
            return new PredictorConfiguration
45
            {
46
                TimeResolution = 3,
47
                PredictorCount = 3,
48
                BuildingsToAreas = new Dictionary<string, int>
49
                {
50
                    { "FST+FEK", 0 },
51
                    { "FDU", 0 },
52
                    { "FAV", 0 },
53
                    { "FEL", 0 },
54
                    { "REK", 0 },
55
                    { "MENZA", 0 },
56
                    { "LIB", 0 },
57
                    { "CIV", 0 },
58
                    { "UNI14", 0 },
59
                    { "DOM", 1 },
60
                    { "HUS", 1 },
61
                    { "CHOD", 1 },
62
                    { "JUNG", 1 },
63
                    { "KLAT", 1 },
64
                    { "KOLL", 1 },
65
                    { "RIEG", 1 },
66
                    { "SADY", 1 },
67
                    { "SED+VEL", 1 },
68
                    { "TES", 1 },
69
                    { "TYL", 1 },
70
                    { "KARMA", 2 },
71
                    { "KBORY", 2 },
72
                    { "KLOCH", 2 },
73
                    { "KKLAT", 2 }
74
                }
75
            };
76
        }
77
    }
78
}
Server/ServerApp/Properties/AssemblyInfo.cs
1
using System.Reflection;
2
using System.Runtime.CompilerServices;
3
using System.Runtime.InteropServices;
4

  
5
// General Information about an assembly is controlled through the following
6
// set of attributes. Change these attribute values to modify the information
7
// associated with an assembly.
8
[assembly: AssemblyTitle("ServerApp")]
9
[assembly: AssemblyDescription("")]
10
[assembly: AssemblyConfiguration("")]
11
[assembly: AssemblyCompany("")]
12
[assembly: AssemblyProduct("ServerApp")]
13
[assembly: AssemblyCopyright("Copyright ©  2021")]
14
[assembly: AssemblyTrademark("")]
15
[assembly: AssemblyCulture("")]
16

  
17
// Setting ComVisible to false makes the types in this assembly not visible
18
// to COM components.  If you need to access a type in this assembly from
19
// COM, set the ComVisible attribute to true on that type.
20
[assembly: ComVisible(false)]
21

  
22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
[assembly: Guid("18fcfb20-b860-4147-8e7c-8a0dd84c55d4")]
24

  
25
// Version information for an assembly consists of the following four values:
26
//
27
//      Major Version
28
//      Minor Version
29
//      Build Number
30
//      Revision
31
//
32
// You can specify all the values or you can default the Build and Revision Numbers
33
// by using the '*' as shown below:
34
// [assembly: AssemblyVersion("1.0.*")]
35
[assembly: AssemblyVersion("1.0.0.0")]
36
[assembly: AssemblyFileVersion("1.0.0.0")]
Server/ServerApp/Properties/launchSettings.json
1
{
2
  "profiles": {
3
    "ServerApp": {
4
      "commandName": "Project",
5
      "commandLineArgs": "C:\\Users\\kalivoda\\Temp\\serverAppNetCore\\ServerAppNETCore\\ServerApp\\server_config"
6
    }
7
  }
8
}
Server/ServerApp/ServerApp.csproj
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" />
4
  <Import Project="..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props" Condition="Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" />
5
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1
<Project Sdk="Microsoft.NET.Sdk">
2

  
6 3
  <PropertyGroup>
7
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9
    <ProjectGuid>{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}</ProjectGuid>
10 4
    <OutputType>Exe</OutputType>
11
    <RootNamespace>ServerApp</RootNamespace>
12
    <AssemblyName>ServerApp</AssemblyName>
13
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
14
    <FileAlignment>512</FileAlignment>
15
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16
    <Deterministic>true</Deterministic>
17
    <NuGetPackageImportStamp>
18
    </NuGetPackageImportStamp>
19
    <PublishUrl>publish\</PublishUrl>
20
    <Install>true</Install>
21
    <InstallFrom>Disk</InstallFrom>
22
    <UpdateEnabled>false</UpdateEnabled>
23
    <UpdateMode>Foreground</UpdateMode>
24
    <UpdateInterval>7</UpdateInterval>
25
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
26
    <UpdatePeriodically>false</UpdatePeriodically>
27
    <UpdateRequired>false</UpdateRequired>
28
    <MapFileExtensions>true</MapFileExtensions>
29
    <ApplicationRevision>0</ApplicationRevision>
30
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31
    <IsWebBootstrapper>false</IsWebBootstrapper>
32
    <UseApplicationTrust>false</UseApplicationTrust>
33
    <BootstrapperEnabled>true</BootstrapperEnabled>
5
    <TargetFramework>net5.0</TargetFramework>
34 6
  </PropertyGroup>
35
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36
    <PlatformTarget>AnyCPU</PlatformTarget>
37
    <DebugSymbols>true</DebugSymbols>
38
    <DebugType>full</DebugType>
39
    <Optimize>false</Optimize>
40
    <OutputPath>bin\Debug\</OutputPath>
41
    <DefineConstants>DEBUG;TRACE</DefineConstants>
42
    <ErrorReport>prompt</ErrorReport>
43
    <WarningLevel>4</WarningLevel>
44
  </PropertyGroup>
45
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
46
    <PlatformTarget>AnyCPU</PlatformTarget>
47
    <DebugType>pdbonly</DebugType>
48
    <Optimize>true</Optimize>
49
    <OutputPath>bin\Release\</OutputPath>
50
    <DefineConstants>TRACE</DefineConstants>
51
    <ErrorReport>prompt</ErrorReport>
52
    <WarningLevel>4</WarningLevel>
53
  </PropertyGroup>
54
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
55
    <DebugSymbols>true</DebugSymbols>
56
    <OutputPath>bin\x64\Debug\</OutputPath>
57
    <DefineConstants>DEBUG;TRACE</DefineConstants>
58
    <DebugType>full</DebugType>
59
    <PlatformTarget>x64</PlatformTarget>
60
    <LangVersion>7.3</LangVersion>
61
    <ErrorReport>prompt</ErrorReport>
62
    <Prefer32Bit>true</Prefer32Bit>
63
  </PropertyGroup>
64
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
65
    <OutputPath>bin\x64\Release\</OutputPath>
66
    <DefineConstants>TRACE</DefineConstants>
67
    <Optimize>true</Optimize>
68
    <DebugType>pdbonly</DebugType>
69
    <PlatformTarget>x64</PlatformTarget>
70
    <LangVersion>7.3</LangVersion>
71
    <ErrorReport>prompt</ErrorReport>
72
    <Prefer32Bit>true</Prefer32Bit>
73
  </PropertyGroup>
74
  <ItemGroup>
75
    <Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
76
      <HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.5.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
77
    </Reference>
78
    <Reference Include="Microsoft.ML, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
79
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.dll</HintPath>
80
    </Reference>
81
    <Reference Include="Microsoft.ML.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
82
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Core.dll</HintPath>
83
    </Reference>
84
    <Reference Include="Microsoft.ML.CpuMath, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
85
      <HintPath>..\packages\Microsoft.ML.CpuMath.1.5.5\lib\netstandard2.0\Microsoft.ML.CpuMath.dll</HintPath>
86
    </Reference>
87
    <Reference Include="Microsoft.ML.Data, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
88
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Data.dll</HintPath>
89
    </Reference>
90
    <Reference Include="Microsoft.ML.DataView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
91
      <HintPath>..\packages\Microsoft.ML.DataView.1.5.5\lib\netstandard2.0\Microsoft.ML.DataView.dll</HintPath>
92
    </Reference>
93
    <Reference Include="Microsoft.ML.KMeansClustering, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
94
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.KMeansClustering.dll</HintPath>
95
    </Reference>
96
    <Reference Include="Microsoft.ML.PCA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
97
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.PCA.dll</HintPath>
98
    </Reference>
99
    <Reference Include="Microsoft.ML.StandardTrainers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
100
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.StandardTrainers.dll</HintPath>
101
    </Reference>
102
    <Reference Include="Microsoft.ML.Transforms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
103
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Transforms.dll</HintPath>
104
    </Reference>
105
    <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
106
      <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
107
    </Reference>
108
    <Reference Include="System" />
109
    <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
110
      <HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
111
    </Reference>
112
    <Reference Include="System.CodeDom, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
113
      <HintPath>..\packages\System.CodeDom.4.4.0\lib\net461\System.CodeDom.dll</HintPath>
114
    </Reference>
115
    <Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
116
      <HintPath>..\packages\System.Collections.Immutable.1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll</HintPath>
117
    </Reference>
118
    <Reference Include="System.Core" />
119
    <Reference Include="System.IO.Compression" />
120
    <Reference Include="System.IO.Compression.FileSystem" />
121
    <Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
122
      <HintPath>..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
123
      <Private>True</Private>
124
      <Private>True</Private>
125
    </Reference>
126
    <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
127
      <HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
128
    </Reference>
129
    <Reference Include="System.Numerics" />
130
    <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
131
      <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
132
    </Reference>
133
    <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
134
      <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
135
    </Reference>
136
    <Reference Include="System.Text.Encodings.Web, Version=5.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
137
      <HintPath>..\packages\System.Text.Encodings.Web.5.0.1\lib\net461\System.Text.Encodings.Web.dll</HintPath>
138
    </Reference>
139
    <Reference Include="System.Text.Json, Version=5.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
140
      <HintPath>..\packages\System.Text.Json.5.0.2\lib\net461\System.Text.Json.dll</HintPath>
141
    </Reference>
142
    <Reference Include="System.Threading.Channels, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
143
      <HintPath>..\packages\System.Threading.Channels.4.7.1\lib\net461\System.Threading.Channels.dll</HintPath>
144
    </Reference>
145
    <Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
146
      <HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
147
    </Reference>
148
    <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
149
      <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
150
    </Reference>
151
    <Reference Include="System.Web" />
152
    <Reference Include="System.Xml.Linq" />
153
    <Reference Include="System.Data.DataSetExtensions" />
154
    <Reference Include="Microsoft.CSharp" />
155
    <Reference Include="System.Data" />
156
    <Reference Include="System.Net.Http" />
157
    <Reference Include="System.Xml" />
158
  </ItemGroup>
159
  <ItemGroup>
160
    <Compile Include="Connection\ConnectionListener.cs" />
161
    <Compile Include="Connection\XMLProtocolHandler\Buildings.cs" />
162
    <Compile Include="Connection\XMLProtocolHandler\Date.cs" />
163
    <Compile Include="Connection\XMLProtocolHandler\Prediction.cs" />
164
    <Compile Include="Connection\XMLProtocolHandler\Request.cs" />
165
    <Compile Include="Connection\XMLProtocolHandler\Response.cs" />
166
    <Compile Include="Connection\XMLProtocolHandler\WeatherCondition.cs" />
167
    <Compile Include="Connection\XMLProtocolHandler\XmlCommunication.cs" />
168
    <Compile Include="DataDownload\DataDownloader.cs" />
169
    <Compile Include="DataDownload\Date.cs" />
170
    <Compile Include="Parser\InputData\CsvDataLoader.cs" />
171
    <Compile Include="Parser\InputData\IDataLoader.cs" />
172
    <Compile Include="Parser\InputData\JisInstance.cs" />
173
    <Compile Include="Parser\InputData\LogInInstance.cs" />
174
    <Compile Include="Parser\InputData\WeatherInstance.cs" />
175
    <Compile Include="Parser\OutputInfo\ActivityInfo.cs" />
176
    <Compile Include="Parser\OutputInfo\ValueToConditions.cs" />
177
    <Compile Include="Parser\OutputInfo\WeatherConditions.cs" />
178
    <Compile Include="Parser\OutputInfo\WeatherInfo.cs" />
179
    <Compile Include="Parser\Parsers\DataParser.cs" />
180
    <Compile Include="Parser\Parsers\IDataParser.cs" />
181
    <Compile Include="Parser\Parsers\JisParser.cs" />
182
    <Compile Include="Predictor\FeatureExtractor.cs" />
183
    <Compile Include="Predictor\IPredictionController.cs" />
184
    <Compile Include="Predictor\PredictionController.cs" />
185
    <Compile Include="WeatherPredictionParser\IJsonParser.cs" />
186
    <Compile Include="WeatherPredictionParser\JsonParser.cs" />
187
    <Compile Include="Parser\Parsers\LogInParser.cs" />
188
    <Compile Include="Parser\Parsers\TagInfo.cs" />
189
    <Compile Include="Parser\Parsers\WeatherParser.cs" />
190
    <Compile Include="Predictor\IPredictor.cs" />
191
    <Compile Include="Predictor\ModelInput.cs" />
192
    <Compile Include="Predictor\ModelOutput.cs" />
193
    <Compile Include="Predictor\NaiveBayesClassifier.cs" />
194
    <Compile Include="Program.cs" />
195
    <Compile Include="Properties\AssemblyInfo.cs" />
196
    <Compile Include="User\Command.cs" />
197
    <Compile Include="User\CommandsAcceptor.cs" />
198
  </ItemGroup>
199
  <ItemGroup>
200
    <None Include="App.config" />
201
    <None Include="data\jis\OD_ZCU_JIS_06_2019.CSV" />
202
    <None Include="data\jis\OD_ZCU_JIS_09_2019.CSV" />
203
    <None Include="data\jis\OD_ZCU_JIS_10_2019.CSV" />
204
    <None Include="data\jis\OD_ZCU_JIS_11_2019.CSV" />
205
    <None Include="data\jis\OD_ZCU_JIS_12_2019.CSV" />
206
    <None Include="data\jis\OD_ZCU_JIS_13_2019.CSV">
207
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
208
    </None>
209
    <None Include="data\login\OD_ZCU_STROJE_06_2019.CSV" />
210
    <None Include="data\login\OD_ZCU_STROJE_09_2019.CSV" />
211
    <None Include="data\login\OD_ZCU_STROJE_10_2019.CSV" />
212
    <None Include="data\login\OD_ZCU_STROJE_11_2019.CSV" />
213
    <None Include="data\login\OD_ZCU_STROJE_12_2019.CSV" />
214
    <None Include="data\login\OD_ZCU_STROJE_13_2019.CSV">
215
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
216
    </None>
217
    <None Include="data\weather\OD_ZCU_POCASI_06_2019.CSV">
218
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
219
    </None>
220
    <None Include="data\weather\OD_ZCU_POCASI_09_2019.CSV">
221
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
222
    </None>
223
    <None Include="data\weather\OD_ZCU_POCASI_10_2019.CSV">
224
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
225
    </None>
226
    <None Include="data\weather\OD_ZCU_POCASI_11_2019.CSV">
227
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
228
    </None>
229
    <None Include="data\weather\OD_ZCU_POCASI_12_2019.CSV">
230
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
231
    </None>
232
    <None Include="data\weather\OD_ZCU_POCASI_13_2019.CSV">
233
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
234
    </None>
235
    <None Include="packages.config" />
236
  </ItemGroup>
237
  <ItemGroup>
238
    <Folder Include="data\auto\" />
239
  </ItemGroup>
7

  
240 8
  <ItemGroup>
241
    <BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
242
      <Visible>False</Visible>
243
      <ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
244
      <Install>true</Install>
245
    </BootstrapperPackage>
246
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
247
      <Visible>False</Visible>
248
      <ProductName>.NET Framework 3.5 SP1</ProductName>
249
      <Install>false</Install>
250
    </BootstrapperPackage>
9
    <PackageReference Include="Microsoft.ML" Version="1.5.5" />
251 10
  </ItemGroup>
252
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
253
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
254
    <PropertyGroup>
255
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
256
    </PropertyGroup>
257
    <Error Condition="!Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props'))" />
258
    <Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props'))" />
259
    <Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets'))" />
260
  </Target>
261
  <Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" />
262
</Project>
11

  
12
</Project>
Server/ServerApp/data/jis/OD_ZCU_JIS_06_2019.CSV
1
"Zavora-FEL";"01.06.2019 00:02:45";1
2
"L1";"01.06.2019 00:05:08";1
3
"A2-Hlavni vchod";"01.06.2019 00:05:53";1
4
"B3-LEVY";"01.06.2019 00:06:41";1
5
"A2-Hlavni vchod";"01.06.2019 00:15:29";1
6
"L2";"01.06.2019 00:16:36";1
7
"A1";"01.06.2019 00:23:08";1
8
"A1";"01.06.2019 00:23:11";1
9
"A1";"01.06.2019 00:26:17";1
10
"M14";"01.06.2019 00:28:38";1
11
"M14";"01.06.2019 00:32:12";1
12
"L2";"01.06.2019 00:34:40";1
13
"A1";"01.06.2019 00:35:09";1
14
"A2-Hlavni vchod";"01.06.2019 00:35:19";1
15
"A1";"01.06.2019 00:38:01";1
16
"A1";"01.06.2019 00:38:59";1
17
"L1";"01.06.2019 00:46:16";1
18
"L1";"01.06.2019 00:58:04";1
19
"L1L2-vchod";"01.06.2019 01:01:21";1
20
"L1";"01.06.2019 01:01:44";1
21
"M14";"01.06.2019 01:02:43";1
22
"A1";"01.06.2019 01:03:11";1
23
"M16";"01.06.2019 01:07:47";1
24
"M16";"01.06.2019 01:08:02";1
25
"B3-LEVY";"01.06.2019 01:12:16";1
26
"L2";"01.06.2019 01:22:15";1
27
"M14";"01.06.2019 01:34:43";1
28
"L1";"01.06.2019 01:40:04";1
29
"A2-Hlavni vchod";"01.06.2019 01:47:51";1
30
"A3";"01.06.2019 01:48:32";1
31
"B3-LEVY";"01.06.2019 01:54:05";1
32
"M14";"01.06.2019 02:01:08";1
33
"L1";"01.06.2019 02:03:39";1
34
"L1L2-vchod";"01.06.2019 02:10:47";1
35
"L1";"01.06.2019 02:11:12";1
36
"M14";"01.06.2019 02:25:21";1
37
"L1L2-vchod";"01.06.2019 02:37:43";1
38
"L1";"01.06.2019 02:38:03";1
39
"M14";"01.06.2019 02:40:46";1
40
"L1L2-vchod";"01.06.2019 02:53:44";1
41
"L1";"01.06.2019 02:54:05";1
42
"A2-Hlavni vchod";"01.06.2019 02:55:23";1
43
"L1L2-vchod";"01.06.2019 03:25:18";1
44
"L2";"01.06.2019 03:25:33";1
45
"A2-Hlavni vchod";"01.06.2019 03:35:18";1
46
"M16";"01.06.2019 03:43:20";1
47
"M16";"01.06.2019 04:36:30";1
48
"L2";"01.06.2019 05:36:25";1
49
"L2";"01.06.2019 05:38:03";1
50
"M14";"01.06.2019 05:53:24";1
51
"A1";"01.06.2019 06:06:38";1
52
"A1";"01.06.2019 06:09:35";1
53
"A1";"01.06.2019 06:18:53";1
54
"M14";"01.06.2019 06:19:26";1
55
"M14";"01.06.2019 06:23:58";1
56
"M16";"01.06.2019 06:29:46";1
57
"M14";"01.06.2019 06:44:17";1
58
"M16";"01.06.2019 06:54:17";1
59
"A1";"01.06.2019 07:09:15";1
60
"A2-Hlavni vchod";"01.06.2019 07:30:19";1
61
"A3";"01.06.2019 07:30:57";1
62
"A1";"01.06.2019 07:40:14";1
63
"A3";"01.06.2019 07:49:44";1
64
"B3-LEVY";"01.06.2019 07:53:03";1
65
"Zavora-FEL";"01.06.2019 08:00:50";1
66
"L2";"01.06.2019 08:07:34";1
67
"Zavora-FEL";"01.06.2019 08:18:49";1
68
"Zavora-Kaplirova";"01.06.2019 08:19:23";1
69
"M14";"01.06.2019 08:27:46";1
70
"M14";"01.06.2019 08:27:50";1
71
"Zavora-FEL";"01.06.2019 08:32:59";1
72
"Zavora-Kaplirova";"01.06.2019 08:37:56";1
73
"Zavora-FEL";"01.06.2019 08:40:43";1
74
"L1";"01.06.2019 08:46:42";1
75
"M14";"01.06.2019 08:50:09";1
76
"B3-LEVY";"01.06.2019 08:52:13";1
77
"Zavora-FDU";"01.06.2019 08:52:27";1
78
"L2";"01.06.2019 08:56:52";1
79
"A2-Hlavni vchod";"01.06.2019 09:03:14";1
80
"M14";"01.06.2019 09:08:19";1
81
"Parkoviste-vjezd";"01.06.2019 09:11:10";1
82
"L2";"01.06.2019 09:11:19";1
83
"Parkoviste-vyjezd";"01.06.2019 09:14:02";1
84
"Parkoviste-vyjezd";"01.06.2019 09:14:03";1
85
"Zavora-Kaplirova";"01.06.2019 09:23:03";1
86
"A1";"01.06.2019 09:28:20";1
87
"Zavora-FEL";"01.06.2019 09:31:01";1
88
"A1";"01.06.2019 09:35:04";1
89
"M14";"01.06.2019 09:44:33";1
90
"B3-kolarna";"01.06.2019 09:45:09";1
91
"L1";"01.06.2019 09:45:48";1
92
"M16";"01.06.2019 09:47:26";1
93
"M14";"01.06.2019 09:47:36";1
94
"A2-Hlavni vchod";"01.06.2019 09:47:37";1
95
"A1";"01.06.2019 09:47:42";1
96
"A3";"01.06.2019 09:48:19";1
97
"M16";"01.06.2019 09:51:07";1
98
"L1";"01.06.2019 09:51:19";1
99
"A3";"01.06.2019 09:52:42";1
100
"L2";"01.06.2019 10:00:05";1
101
"L2";"01.06.2019 10:01:45";1
102
"Zavora-NTIS-vjezd";"01.06.2019 10:03:02";1
103
"M14";"01.06.2019 10:03:22";1
104
"L1";"01.06.2019 10:04:02";1
105
"Zavora-FEL";"01.06.2019 10:04:10";1
106
"A1";"01.06.2019 10:04:57";1
107
"L2";"01.06.2019 10:06:10";1
108
"B3-kolarna";"01.06.2019 10:06:50";1
109
"L2";"01.06.2019 10:08:23";1
110
"M14";"01.06.2019 10:18:32";1
111
"A3";"01.06.2019 10:18:47";1
112
"M16";"01.06.2019 10:19:10";1
113
"M16";"01.06.2019 10:29:27";1
114
"L2";"01.06.2019 10:31:00";1
115
"M14";"01.06.2019 10:32:56";1
116
"B3-LEVY";"01.06.2019 10:37:26";1
117
"L2";"01.06.2019 10:41:17";1
118
"A1";"01.06.2019 10:42:38";1
119
"M14";"01.06.2019 10:51:44";1
120
"L1";"01.06.2019 10:52:18";1
121
"Zavora-FDU";"01.06.2019 10:52:55";1
122
"Zavora-FDU";"01.06.2019 10:55:59";1
123
"M14";"01.06.2019 10:56:24";1
124
"A2-Hlavni vchod";"01.06.2019 10:57:34";1
125
"A3";"01.06.2019 10:58:10";1
126
"M14";"01.06.2019 10:59:08";1
127
"A1";"01.06.2019 11:01:57";1
128
"Zavora-FEL";"01.06.2019 11:02:58";1
129
"A2-Hlavni vchod";"01.06.2019 11:03:24";1
130
"A3";"01.06.2019 11:04:25";1
131
"M14";"01.06.2019 11:04:41";1
132
"Zavora-FEL";"01.06.2019 11:05:03";1
133
"A1";"01.06.2019 11:05:17";1
134
"L1";"01.06.2019 11:05:46";1
135
"Zavora-FEL";"01.06.2019 11:06:19";1
136
"A3";"01.06.2019 11:08:39";1
137
"M16";"01.06.2019 11:08:40";1
138
"Zavora-FDU";"01.06.2019 11:08:54";1
139
"M14";"01.06.2019 11:12:20";1
140
"Zavora-NTIS-vjezd";"01.06.2019 11:13:40";1
141
"A1";"01.06.2019 11:13:45";1
142
"M14";"01.06.2019 11:18:46";1
143
"B3-LEVY";"01.06.2019 11:20:23";1
144
"A1";"01.06.2019 11:24:47";1
145
"Zavora-Kaplirova";"01.06.2019 11:24:53";1
146
"Zavora-FEL";"01.06.2019 11:27:03";1
147
"B3-LEVY";"01.06.2019 11:29:16";1
148
"M14";"01.06.2019 11:29:42";1
149
"M14";"01.06.2019 11:35:14";1
150
"L1L2-vchod";"01.06.2019 11:37:56";1
151
"L1";"01.06.2019 11:38:16";1
152
"A1";"01.06.2019 11:38:50";1
153
"L2";"01.06.2019 11:39:21";1
154
"A1";"01.06.2019 11:42:00";1
155
"M16";"01.06.2019 11:42:44";1
156
"A2-Hlavni vchod";"01.06.2019 11:42:55";1
157
"A2-Hlavni vchod";"01.06.2019 11:43:13";1
158
"A3";"01.06.2019 11:45:23";1
159
"B3-kolarna";"01.06.2019 11:45:48";1
160
"A2-Hlavni vchod";"01.06.2019 11:46:22";1
161
"M16";"01.06.2019 11:48:32";1
162
"A1";"01.06.2019 11:49:53";1
163
"M16";"01.06.2019 11:52:51";1
164
"A2-Hlavni vchod";"01.06.2019 11:57:01";1
165
"A3";"01.06.2019 11:57:44";1
166
"A1";"01.06.2019 12:10:06";1
167
"M14";"01.06.2019 12:12:28";1
168
"L1";"01.06.2019 12:13:23";1
169
"L1";"01.06.2019 12:16:35";1
170
"M16";"01.06.2019 12:18:02";1
171
"L1";"01.06.2019 12:21:48";1
172
"Zavora-FDU";"01.06.2019 12:23:26";1
173
"B3-LEVY";"01.06.2019 12:28:23";1
174
"A2-Hlavni vchod";"01.06.2019 12:35:48";1
175
"A3";"01.06.2019 12:36:25";1
176
"L2";"01.06.2019 12:38:02";1
177
"M14";"01.06.2019 12:38:04";1
178
"A1";"01.06.2019 12:44:09";1
179
"M14";"01.06.2019 12:46:36";1
180
"L1";"01.06.2019 12:48:08";1
181
"A3";"01.06.2019 12:50:36";1
182
"A2-Hlavni vchod";"01.06.2019 12:55:09";1
183
"A3";"01.06.2019 12:55:46";1
184
"L2";"01.06.2019 12:55:51";1
185
"L2";"01.06.2019 12:58:02";1
186
"M14";"01.06.2019 12:58:22";1
187
"A1";"01.06.2019 12:59:09";1
188
"L1";"01.06.2019 13:01:17";1
189
"A2-Hlavni vchod";"01.06.2019 13:03:37";1
190
"M14";"01.06.2019 13:08:09";1
191
"M14";"01.06.2019 13:12:17";1
192
"A1";"01.06.2019 13:13:13";1
193
"Zavora-FDU";"01.06.2019 13:13:30";1
194
"A1";"01.06.2019 13:17:53";1
195
"M16";"01.06.2019 13:20:49";1
196
"A2-Hlavni vchod";"01.06.2019 13:21:16";1
197
"L1";"01.06.2019 13:21:21";1
198
"A1";"01.06.2019 13:21:44";1
199
"A3";"01.06.2019 13:22:04";1
200
"Zavora-NTIS-vyjezd";"01.06.2019 13:22:10";1
201
"A2-Hlavni vchod";"01.06.2019 13:23:28";1
202
"A2-Hlavni vchod";"01.06.2019 13:25:48";1
203
"A3";"01.06.2019 13:25:56";1
204
"B3-LEVY";"01.06.2019 13:29:46";1
205
"A1";"01.06.2019 13:31:14";1
206
"L1";"01.06.2019 13:32:25";1
207
"A2-Hlavni vchod";"01.06.2019 13:32:27";1
208
"A3";"01.06.2019 13:33:07";1
209
"L1";"01.06.2019 13:33:56";1
210
"A2-Hlavni vchod";"01.06.2019 13:35:03";1
211
"A1";"01.06.2019 13:35:12";1
212
"A3";"01.06.2019 13:35:47";1
213
"A1";"01.06.2019 13:40:13";1
214
"L2";"01.06.2019 13:41:57";1
215
"M16";"01.06.2019 13:45:45";1
216
"M14";"01.06.2019 13:50:31";1
217
"B3-LEVY";"01.06.2019 13:53:51";1
218
"A3";"01.06.2019 13:54:53";1
219
"M16";"01.06.2019 13:57:09";1
220
"A1";"01.06.2019 13:58:47";1
221
"M16";"01.06.2019 13:59:16";1
222
"L1";"01.06.2019 14:00:51";1
223
"M16";"01.06.2019 14:02:22";1
224
"US 005 - závora vjezd";"01.06.2019 14:02:37";1
225
"M14";"01.06.2019 14:06:19";1
226
"M16";"01.06.2019 14:06:25";1
227
"M16";"01.06.2019 14:12:26";1
228
"A1";"01.06.2019 14:13:20";1
229
"A2-Hlavni vchod";"01.06.2019 14:14:03";1
230
"M16";"01.06.2019 14:17:09";1
231
"M16";"01.06.2019 14:23:07";1
232
"M16";"01.06.2019 14:28:46";1
233
"M14";"01.06.2019 14:35:04";1
234
"A1";"01.06.2019 14:36:26";1
235
"M14";"01.06.2019 14:36:36";1
236
"M16";"01.06.2019 14:37:03";1
237
"A2-Hlavni vchod";"01.06.2019 14:38:00";1
238
"M14";"01.06.2019 14:39:47";1
239
"L2";"01.06.2019 14:40:19";1
240
"Zavora-Kaplirova";"01.06.2019 14:48:02";1
241
"A1";"01.06.2019 14:49:21";1
242
"A3";"01.06.2019 14:49:33";1
243
"M14";"01.06.2019 14:52:51";1
244
"Zavora-NTIS-vyjezd";"01.06.2019 14:52:56";1
245
"A3";"01.06.2019 14:54:56";1
246
"A3";"01.06.2019 14:55:03";1
247
"M16";"01.06.2019 14:57:47";1
248
"M16";"01.06.2019 14:58:03";1
249
"A2-Hlavni vchod";"01.06.2019 14:59:26";1
250
"A3";"01.06.2019 15:00:12";1
251
"M16";"01.06.2019 15:00:54";1
252
"M14";"01.06.2019 15:06:29";1
253
"M16";"01.06.2019 15:09:58";1
254
"M16";"01.06.2019 15:18:20";1
255
"A2-Hlavni vchod";"01.06.2019 15:23:32";1
256
"A2-Hlavni vchod";"01.06.2019 15:24:05";1
257
"A3";"01.06.2019 15:24:17";1
258
"A3";"01.06.2019 15:24:45";1
259
"A2-Hlavni vchod";"01.06.2019 15:29:52";1
260
"L1";"01.06.2019 15:32:14";1
261
"B3-LEVY";"01.06.2019 15:35:57";1
262
"A2-Hlavni vchod";"01.06.2019 15:36:38";1
263
"A2-Hlavni vchod";"01.06.2019 15:37:26";1
264
"A3";"01.06.2019 15:38:03";1
265
"A2-Hlavni vchod";"01.06.2019 15:38:10";1
266
"M14";"01.06.2019 15:38:34";1
267
"A3";"01.06.2019 15:39:06";1
268
"A2-Hlavni vchod";"01.06.2019 15:41:33";1
269
"A3";"01.06.2019 15:42:20";1
270
"M14";"01.06.2019 15:43:29";1
271
"M16";"01.06.2019 15:43:50";1
272
"M14";"01.06.2019 15:49:09";1
273
"M16";"01.06.2019 15:50:15";1
274
"M16";"01.06.2019 15:52:11";1
275
"A1";"01.06.2019 15:54:36";1
276
"L2";"01.06.2019 15:57:54";1
277
"M16";"01.06.2019 15:59:04";1
278
"B3-LEVY";"01.06.2019 15:59:26";1
279
"A2-Hlavni vchod";"01.06.2019 16:01:13";1
280
"A3";"01.06.2019 16:01:58";1
281
"Zavora-FDU";"01.06.2019 16:02:05";1
282
"M16";"01.06.2019 16:03:20";1
283
"L1";"01.06.2019 16:08:34";1
284
"A1";"01.06.2019 16:14:16";1
285
"A2-Hlavni vchod";"01.06.2019 16:14:59";1
286
"A1";"01.06.2019 16:17:22";1
287
"B3-LEVY";"01.06.2019 16:18:22";1
288
"M16";"01.06.2019 16:24:25";1
289
"A2-Hlavni vchod";"01.06.2019 16:25:22";1
290
"M16";"01.06.2019 16:27:43";1
291
"L1";"01.06.2019 16:27:51";1
292
"A1";"01.06.2019 16:29:04";1
293
"B3-LEVY";"01.06.2019 16:30:21";1
294
"M14";"01.06.2019 16:33:41";1
295
"M14";"01.06.2019 16:37:59";1
296
"M14";"01.06.2019 16:38:21";1
297
"A1";"01.06.2019 16:39:38";1
298
"M14";"01.06.2019 16:42:59";1
299
"A1";"01.06.2019 16:43:13";1
300
"M14";"01.06.2019 16:44:12";1
301
"M14";"01.06.2019 16:45:16";1
302
"A1";"01.06.2019 16:52:14";1
303
"M14";"01.06.2019 16:54:12";1
304
"L2";"01.06.2019 16:54:54";1
305
"A2-Hlavni vchod";"01.06.2019 16:56:33";1
306
"M14";"01.06.2019 16:59:04";1
307
"L2";"01.06.2019 16:59:17";1
308
"A2-Hlavni vchod";"01.06.2019 17:03:54";1
309
"M16";"01.06.2019 17:05:04";1
310
"Zavora-FEL";"01.06.2019 17:08:10";1
311
"B3-LEVY";"01.06.2019 17:10:42";1
312
"A2-Hlavni vchod";"01.06.2019 17:14:38";1
313
"L2";"01.06.2019 17:19:15";1
314
"Zavora-FEL";"01.06.2019 17:20:39";1
315
"A2-Hlavni vchod";"01.06.2019 17:20:39";1
316
"L1";"01.06.2019 17:23:58";1
317
"M16";"01.06.2019 17:24:17";1
318
"Zavora-NTIS-vjezd";"01.06.2019 17:24:29";1
319
"M14";"01.06.2019 17:25:21";1
320
"L1";"01.06.2019 17:29:41";1
321
"A2-Hlavni vchod";"01.06.2019 17:30:23";1
322
"M16";"01.06.2019 17:36:45";1
323
"M16";"01.06.2019 17:41:23";1
324
"A2-Hlavni vchod";"01.06.2019 17:41:39";1
325
"A2-Hlavni vchod";"01.06.2019 17:43:16";1
326
"M14";"01.06.2019 17:44:02";1
327
"A2-Hlavni vchod";"01.06.2019 17:44:22";1
328
"L2";"01.06.2019 17:46:21";1
329
"L1";"01.06.2019 17:49:21";1
330
"Zavora-Kaplirova";"01.06.2019 17:49:46";1
331
"A2-Hlavni vchod";"01.06.2019 17:52:46";1
332
"A2-Hlavni vchod";"01.06.2019 17:53:03";1
333
"A3";"01.06.2019 17:53:46";1
334
"L2";"01.06.2019 17:56:39";1
335
"A1";"01.06.2019 17:57:20";1
336
"Zavora-Kaplirova";"01.06.2019 17:57:27";1
337
"US 005 - závora vjezd";"01.06.2019 17:59:15";1
338
"A3";"01.06.2019 18:01:18";1
339
"A1";"01.06.2019 18:01:40";1
340
"L2";"01.06.2019 18:02:56";2
341
"L2";"01.06.2019 18:04:08";1
342
"L2";"01.06.2019 18:04:21";1
343
"M16";"01.06.2019 18:07:31";1
344
"L2";"01.06.2019 18:16:03";1
345
"L2";"01.06.2019 18:16:47";1
346
"A1";"01.06.2019 18:18:56";1
347
"M14";"01.06.2019 18:19:17";1
348
"L1";"01.06.2019 18:22:23";1
349
"A2-Hlavni vchod";"01.06.2019 18:23:38";1
350
"L1";"01.06.2019 18:26:34";1
351
"L1";"01.06.2019 18:26:57";1
352
"A2-Hlavni vchod";"01.06.2019 18:28:19";1
353
"M16";"01.06.2019 18:28:34";1
354
"L2";"01.06.2019 18:28:58";1
355
"A3";"01.06.2019 18:29:03";1
356
"L1";"01.06.2019 18:29:23";1
357
"A1";"01.06.2019 18:30:11";1
358
"L1";"01.06.2019 18:31:38";1
359
"B3-LEVY";"01.06.2019 18:32:06";1
360
"L2";"01.06.2019 18:33:01";1
361
"L2";"01.06.2019 18:37:07";1
362
"L-Posilovna";"01.06.2019 18:38:22";1
363
"M14";"01.06.2019 18:39:29";1
364
"B3-LEVY";"01.06.2019 18:40:09";1
365
"L1";"01.06.2019 18:43:00";1
366
"L1";"01.06.2019 18:43:08";1
367
"A2-Hlavni vchod";"01.06.2019 18:43:13";1
368
"L1";"01.06.2019 18:45:26";1
369
"B3-LEVY";"01.06.2019 18:49:16";1
370
"Zavora-FEL";"01.06.2019 18:49:28";1
371
"M14";"01.06.2019 18:52:12";1
372
"A1";"01.06.2019 18:53:52";1
373
"M14";"01.06.2019 18:54:53";1
374
"M16";"01.06.2019 18:57:02";1
375
"L-Posilovna";"01.06.2019 18:57:18";1
376
"L-Posilovna";"01.06.2019 18:57:20";1
377
"M14";"01.06.2019 19:00:36";1
378
"Zavora-FEL";"01.06.2019 19:02:31";1
379
"Zavora-FDU";"01.06.2019 19:03:20";1
380
"M14";"01.06.2019 19:05:48";1
381
"L1";"01.06.2019 19:06:06";1
382
"Parkoviste-vjezd";"01.06.2019 19:08:58";1
383
"M16";"01.06.2019 19:11:35";1
384
"Parkoviste-vyjezd";"01.06.2019 19:12:23";1
385
"M16";"01.06.2019 19:19:32";1
386
"M14";"01.06.2019 19:19:55";1
387
"A1";"01.06.2019 19:19:56";1
388
"M16";"01.06.2019 19:20:14";1
389
"A2-Hlavni vchod";"01.06.2019 19:21:55";1
390
"A2-Hlavni vchod";"01.06.2019 19:22:33";1
391
"A3";"01.06.2019 19:23:23";1
392
"A2-Hlavni vchod";"01.06.2019 19:23:36";1
393
"M16";"01.06.2019 19:24:48";1
394
"M16";"01.06.2019 19:30:46";1
395
"Zavora-FDU";"01.06.2019 19:30:49";1
396
"Zavora-FDU";"01.06.2019 19:30:58";1
397
"Zavora-FDU";"01.06.2019 19:31:13";1
398
"Zavora-FDU";"01.06.2019 19:31:17";1
399
"Zavora-FDU";"01.06.2019 19:31:19";1
400
"A2-Hlavni vchod";"01.06.2019 19:31:54";1
401
"A2-Hlavni vchod";"01.06.2019 19:32:04";1
402
"A2-Hlavni vchod";"01.06.2019 19:32:15";1
403
"A3";"01.06.2019 19:32:35";1
404
"L2";"01.06.2019 19:33:11";1
405
"A2-Hlavni vchod";"01.06.2019 19:35:33";1
406
"A3";"01.06.2019 19:36:21";1
407
"Zavora-FDU";"01.06.2019 19:36:57";1
408
"M16";"01.06.2019 19:38:53";1
409
"M14";"01.06.2019 19:41:03";1
410
"A2-Hlavni vchod";"01.06.2019 19:41:05";1
411
"M14";"01.06.2019 19:41:52";1
412
"A3";"01.06.2019 19:41:58";1
413
"L2";"01.06.2019 19:42:05";1
414
"L2";"01.06.2019 19:42:42";1
415
"M16";"01.06.2019 19:43:04";1
416
"M14";"01.06.2019 19:43:25";1
417
"L1";"01.06.2019 19:44:48";1
418
"Zavora-FDU";"01.06.2019 19:48:01";1
419
"M14";"01.06.2019 19:50:30";1
420
"L2";"01.06.2019 19:50:52";1
421
"M16";"01.06.2019 19:51:31";1
422
"L1";"01.06.2019 19:56:06";1
423
"L1";"01.06.2019 19:58:19";1
424
"M14";"01.06.2019 19:59:27";1
425
"M16";"01.06.2019 20:04:04";1
426
"L1";"01.06.2019 20:07:34";1
427
"A2-Hlavni vchod";"01.06.2019 20:09:39";1
428
"A3";"01.06.2019 20:10:20";1
429
"L1";"01.06.2019 20:11:02";1
430
"A2-Hlavni vchod";"01.06.2019 20:12:09";1
431
"L2";"01.06.2019 20:12:56";1
432
"A3";"01.06.2019 20:12:58";1
433
"A2-Hlavni vchod";"01.06.2019 20:13:46";1
434
"L2";"01.06.2019 20:14:11";1
435
"A2-Hlavni vchod";"01.06.2019 20:15:04";1
436
"L1";"01.06.2019 20:15:09";1
437
"A3";"01.06.2019 20:15:44";1
438
"M14";"01.06.2019 20:16:08";1
439
"L1";"01.06.2019 20:20:03";1
440
"L2";"01.06.2019 20:23:18";1
441
"B3-LEVY";"01.06.2019 20:24:42";1
442
"L2";"01.06.2019 20:26:49";1
443
"L1";"01.06.2019 20:26:52";1
444
"M16";"01.06.2019 20:29:41";1
445
"A2-Hlavni vchod";"01.06.2019 20:32:08";1
446
"A2-Hlavni vchod";"01.06.2019 20:33:04";1
447
"L2";"01.06.2019 20:34:12";1
448
"Zavora-Kaplirova";"01.06.2019 20:36:15";1
449
"M14";"01.06.2019 20:36:16";1
450
"B3-LEVY";"01.06.2019 20:41:24";1
451
"M14";"01.06.2019 20:41:40";1
452
"M14";"01.06.2019 20:42:14";1
453
"L2";"01.06.2019 20:42:40";1
454
"L1";"01.06.2019 20:43:17";1
455
"B3-LEVY";"01.06.2019 20:44:10";1
456
"L2";"01.06.2019 20:44:53";1
457
"L2";"01.06.2019 20:45:48";1
458
"L2";"01.06.2019 20:46:34";1
459
"L1";"01.06.2019 20:47:50";1
460
"L1";"01.06.2019 20:49:31";1
461
"L2";"01.06.2019 20:49:36";1
462
"A2-Hlavni vchod";"01.06.2019 20:53:30";1
463
"A3";"01.06.2019 20:54:11";1
464
"L2";"01.06.2019 20:56:52";1
465
"M14";"01.06.2019 21:04:06";1
466
"Zavora-FEL";"01.06.2019 21:04:38";1
467
"L2";"01.06.2019 21:04:42";1
468
"M16";"01.06.2019 21:04:54";1
469
"L1";"01.06.2019 21:05:27";1
470
"L2";"01.06.2019 21:05:54";1
471
"A2-Hlavni vchod";"01.06.2019 21:06:16";1
472
"M16";"01.06.2019 21:06:59";1
473
"M14";"01.06.2019 21:10:24";1
474
"M16";"01.06.2019 21:10:30";1
475
"M14";"01.06.2019 21:13:32";1
476
"A2-Hlavni vchod";"01.06.2019 21:13:34";1
477
"A3";"01.06.2019 21:14:21";1
478
"M14";"01.06.2019 21:18:25";1
479
"A2-Hlavni vchod";"01.06.2019 21:21:24";1
480
"L1";"01.06.2019 21:22:53";1
481
"L2";"01.06.2019 21:24:11";1
482
"L2";"01.06.2019 21:24:37";1
483
"A2-Hlavni vchod";"01.06.2019 21:25:03";1
484
"M16";"01.06.2019 21:26:20";1
485
"M14";"01.06.2019 21:26:22";1
486
"B3-LEVY";"01.06.2019 21:26:25";1
487
"L2";"01.06.2019 21:27:23";1
488
"A2-Hlavni vchod";"01.06.2019 21:28:25";1
489
"L1";"01.06.2019 21:34:36";1
490
"M14";"01.06.2019 21:36:37";1
491
"A2-Hlavni vchod";"01.06.2019 21:38:55";1
492
"A3";"01.06.2019 21:39:32";1
493
"L1";"01.06.2019 21:41:15";1
494
"L1";"01.06.2019 21:43:10";1
495
"A2-Hlavni vchod";"01.06.2019 21:43:13";1
496
"L1";"01.06.2019 21:43:40";1
497
"B3-LEVY";"01.06.2019 21:43:45";1
498
"A3";"01.06.2019 21:43:51";1
499
"A2-Hlavni vchod";"01.06.2019 21:44:14";1
500
"L2";"01.06.2019 21:46:06";1
501
"A2-Hlavni vchod";"01.06.2019 21:48:58";1
502
"A2-Hlavni vchod";"01.06.2019 21:50:53";1
503
"A3";"01.06.2019 21:51:59";1
504
"L2";"01.06.2019 21:52:03";1
505
"L2";"01.06.2019 21:53:10";1
506
"A2-Hlavni vchod";"01.06.2019 21:53:13";1
507
"L1";"01.06.2019 21:53:23";1
508
"L2";"01.06.2019 21:56:29";1
509
"L2";"01.06.2019 21:59:39";1
510
"M14";"01.06.2019 22:01:04";1
511
"L2";"01.06.2019 22:04:02";1
512
"M16";"01.06.2019 22:05:20";1
513
"M14";"01.06.2019 22:07:09";1
514
"M16";"01.06.2019 22:07:19";1
515
"M14";"01.06.2019 22:08:02";1
516
"L1";"01.06.2019 22:09:27";1
517
"M14";"01.06.2019 22:10:12";1
518
"A1";"01.06.2019 22:11:31";1
519
"L1";"01.06.2019 22:11:50";1
520
"A1";"01.06.2019 22:16:04";1
521
"L1";"01.06.2019 22:16:22";1
522
"M16";"01.06.2019 22:18:37";1
523
"M16";"01.06.2019 22:20:26";1
524
"A1";"01.06.2019 22:20:43";1
525
"A1";"01.06.2019 22:21:39";1
526
"A2-Hlavni vchod";"01.06.2019 22:22:13";1
527
"A3";"01.06.2019 22:22:56";1
528
"L1";"01.06.2019 22:27:33";1
529
"A1";"01.06.2019 22:28:27";1
530
"L1";"01.06.2019 22:29:06";1
531
"M14";"01.06.2019 22:31:34";1
532
"L2";"01.06.2019 22:31:59";1
533
"A2-Hlavni vchod";"01.06.2019 22:32:19";1
534
"A3";"01.06.2019 22:34:12";1
535
"A2-Hlavni vchod";"01.06.2019 22:35:29";1
536
"M14";"01.06.2019 22:37:01";1
537
"M16";"01.06.2019 22:37:07";1
538
"M16";"01.06.2019 22:37:19";1
539
"A2-Hlavni vchod";"01.06.2019 22:39:37";1
540
"A1";"01.06.2019 22:40:00";1
541
"L1";"01.06.2019 22:43:18";1
542
"M14";"01.06.2019 22:59:26";1
543
"L2";"01.06.2019 23:00:48";1
544
"M14";"01.06.2019 23:01:42";1
545
"M16";"01.06.2019 23:02:05";1
546
"M14";"01.06.2019 23:02:28";1
547
"M16";"01.06.2019 23:03:43";1
548
"M14";"01.06.2019 23:03:58";1
549
"M14";"01.06.2019 23:04:23";1
550
"A2-Hlavni vchod";"01.06.2019 23:05:07";1
551
"A3";"01.06.2019 23:05:44";1
552
"A2-Hlavni vchod";"01.06.2019 23:05:54";1
553
"A3";"01.06.2019 23:06:38";1
554
"A2-Hlavni vchod";"01.06.2019 23:08:01";1
555
"A1";"01.06.2019 23:09:39";1
556
"L2";"01.06.2019 23:10:55";1
557
"L2";"01.06.2019 23:12:13";1
558
"M16";"01.06.2019 23:17:17";1
559
"M14";"01.06.2019 23:19:09";1
560
"A2-Hlavni vchod";"01.06.2019 23:21:03";1
561
"A1";"01.06.2019 23:22:18";1
562
"L2";"01.06.2019 23:27:10";1
563
"M14";"01.06.2019 23:27:49";1
564
"L1";"01.06.2019 23:32:28";1
565
"B3-LEVY";"01.06.2019 23:32:44";1
566
"M14";"01.06.2019 23:33:50";1
567
"M14";"01.06.2019 23:34:59";1
568
"L2";"01.06.2019 23:36:18";1
569
"M16";"01.06.2019 23:41:38";1
570
"L2";"01.06.2019 23:43:13";1
571
"L1";"01.06.2019 23:43:31";1
572
"M16";"01.06.2019 23:49:28";1
573
"M14";"01.06.2019 23:50:12";1
574
"M14";"01.06.2019 23:50:39";1
575
"M14";"01.06.2019 23:51:18";1
576
"M14";"01.06.2019 23:51:23";1
577
"A1";"01.06.2019 23:52:05";1
578
"A1";"01.06.2019 23:54:38";1
579
"M14";"01.06.2019 23:56:18";1
580
"L2";"01.06.2019 23:57:59";1
581
"L1";"01.06.2019 23:58:25";1
582
"L1";"02.06.2019 00:00:19";1
583
"B3-LEVY";"02.06.2019 00:00:50";1
584
"A3";"02.06.2019 00:03:32";1
585
"L1";"02.06.2019 00:08:04";1
586
"L2";"02.06.2019 00:11:47";1
587
"M14";"02.06.2019 00:15:16";1
588
"M14";"02.06.2019 00:17:17";1
589
"A1";"02.06.2019 00:20:57";1
590
"M14";"02.06.2019 00:21:13";1
591
"A1";"02.06.2019 00:24:43";1
592
"M16";"02.06.2019 00:27:32";1
593
"A3";"02.06.2019 00:28:03";1
594
"M16";"02.06.2019 00:31:34";1
595
"L1L2-vchod";"02.06.2019 00:34:21";1
596
"L2";"02.06.2019 00:34:38";1
597
"L1L2-vchod";"02.06.2019 00:37:18";1
598
"L1";"02.06.2019 00:37:38";1
599
"A1";"02.06.2019 00:40:43";1
600
"M14";"02.06.2019 00:42:05";1
601
"M14";"02.06.2019 01:00:48";1
602
"A1";"02.06.2019 01:04:29";1
603
"L1L2-vchod";"02.06.2019 01:09:28";1
604
"L1";"02.06.2019 01:09:52";1
605
"M14";"02.06.2019 01:11:37";1
606
"A1";"02.06.2019 01:17:23";1
607
"A1";"02.06.2019 01:20:31";1
608
"A3";"02.06.2019 01:23:32";1
609
"L1L2-vchod";"02.06.2019 01:26:01";1
610
"L2";"02.06.2019 01:26:18";1
611
"L1L2-vchod";"02.06.2019 01:34:06";1
612
"L1L2-vchod";"02.06.2019 01:37:50";1
613
"L2";"02.06.2019 01:38:01";1
614
"L1L2-vchod";"02.06.2019 01:42:20";1
615
"L2";"02.06.2019 01:42:36";1
616
"A3";"02.06.2019 01:43:15";1
617
"A2-Hlavni vchod";"02.06.2019 01:44:26";1
618
"L1L2-vchod";"02.06.2019 01:45:37";1
619
"L1";"02.06.2019 01:45:54";1
620
"A2-Hlavni vchod";"02.06.2019 01:46:53";1
621
"L1";"02.06.2019 01:53:11";1
622
"M14";"02.06.2019 01:54:51";1
623
"A1";"02.06.2019 01:55:38";1
624
"L1L2-vchod";"02.06.2019 01:56:43";1
625
"L2";"02.06.2019 01:56:57";1
626
"M14";"02.06.2019 01:57:22";1
627
"L1L2-vchod";"02.06.2019 02:02:26";1
628
"L2";"02.06.2019 02:02:42";1
629
"A2-Hlavni vchod";"02.06.2019 02:03:20";1
630
"A3";"02.06.2019 02:04:52";1
631
"Zavora-Kaplirova";"02.06.2019 02:13:15";1
632
"L1L2-vchod";"02.06.2019 02:27:35";1
633
"L1";"02.06.2019 02:28:00";1
634
"L2";"02.06.2019 02:28:02";1
635
"M14";"02.06.2019 02:44:56";1
636
"A2-Hlavni vchod";"02.06.2019 02:46:56";1
637
"M14";"02.06.2019 02:55:04";1
638
"A2-Hlavni vchod";"02.06.2019 02:57:46";1
639
"M16";"02.06.2019 03:00:05";1
640
"M14";"02.06.2019 03:08:01";1
641
"B3-LEVY";"02.06.2019 03:16:01";1
642
"M14";"02.06.2019 03:17:41";1
643
"B3-LEVY";"02.06.2019 03:29:44";1
644
"A1";"02.06.2019 03:42:55";1
645
"M16";"02.06.2019 03:44:34";1
646
"A1";"02.06.2019 03:46:23";1
647
"L1L2-vchod";"02.06.2019 03:54:32";1
648
"L1";"02.06.2019 03:54:52";1
649
"L1L2-vchod";"02.06.2019 04:00:43";1
650
"L1";"02.06.2019 04:03:17";1
651
"M14";"02.06.2019 04:03:45";1
652
"M16";"02.06.2019 04:08:05";1
653
"M14";"02.06.2019 04:22:30";1
654
"M16";"02.06.2019 04:23:28";1
655
"L1L2-vchod";"02.06.2019 04:47:18";1
656
"L1L2-vchod";"02.06.2019 04:47:24";1
657
"L1";"02.06.2019 04:48:16";1
658
"L1L2-vchod";"02.06.2019 04:52:01";1
659
"L1L2-vchod";"02.06.2019 04:53:06";1
660
"M14";"02.06.2019 04:53:09";1
661
"L1";"02.06.2019 04:53:27";1
662
"L2";"02.06.2019 04:58:22";1
663
"L1";"02.06.2019 04:59:21";1
664
"L2";"02.06.2019 05:16:28";1
665
"L1";"02.06.2019 05:17:59";1
666
"M14";"02.06.2019 05:22:22";1
667
"Zavora-NTIS-vyjezd";"02.06.2019 05:39:06";1
668
"L1";"02.06.2019 05:46:23";1
669
"A1";"02.06.2019 06:03:19";1
670
"M14";"02.06.2019 06:05:04";1
671
"A3";"02.06.2019 06:13:11";1
672
"M14";"02.06.2019 06:14:01";1
673
"A1";"02.06.2019 06:34:07";1
674
"L1";"02.06.2019 06:44:04";1
675
"M16";"02.06.2019 06:46:59";1
676
"A1";"02.06.2019 06:53:44";1
677
"L2";"02.06.2019 07:26:23";1
678
"A2-Hlavni vchod";"02.06.2019 07:39:36";1
679
"A3";"02.06.2019 07:40:21";1
680
"M16";"02.06.2019 07:42:12";1
681
"L1";"02.06.2019 07:52:50";1
682
"A1";"02.06.2019 07:55:16";1
683
"L1";"02.06.2019 07:59:23";1
684
"L1";"02.06.2019 08:06:24";1
685
"A1";"02.06.2019 08:11:18";1
686
"Zavora-Kaplirova";"02.06.2019 08:16:15";1
687
"A1";"02.06.2019 08:17:54";1
688
"L2";"02.06.2019 08:20:20";1
689
"M14";"02.06.2019 08:28:21";1
690
"L1";"02.06.2019 08:31:14";1
691
"L2";"02.06.2019 08:31:15";1
692
"A1";"02.06.2019 08:35:51";1
693
"L2";"02.06.2019 08:36:00";1
694
"Zavora-FEL";"02.06.2019 09:02:30";1
695
"A2-Hlavni vchod";"02.06.2019 09:06:41";1
696
"A1";"02.06.2019 09:09:14";1
697
"M14";"02.06.2019 09:13:45";1
698
"Zavora-FEL";"02.06.2019 09:14:52";1
699
"A2-Hlavni vchod";"02.06.2019 09:19:26";1
700
"A3";"02.06.2019 09:20:08";1
701
"L1";"02.06.2019 09:29:04";1
702
"A2-Hlavni vchod";"02.06.2019 09:38:28";1
703
"A3";"02.06.2019 09:39:10";1
704
"A1";"02.06.2019 09:43:15";1
705
"A2-Hlavni vchod";"02.06.2019 09:45:27";1
706
"A1";"02.06.2019 09:45:40";1
707
"A1";"02.06.2019 09:54:32";1
708
"A2-Hlavni vchod";"02.06.2019 10:00:15";1
709
"Zavora-FDU";"02.06.2019 10:00:33";1
710
"A1";"02.06.2019 10:01:53";1
711
"A2-Hlavni vchod";"02.06.2019 10:06:38";1
712
"L2";"02.06.2019 10:07:18";1
713
"A1";"02.06.2019 10:09:54";1
714
"L1";"02.06.2019 10:32:15";1
715
"M14";"02.06.2019 10:33:03";1
716
"A1";"02.06.2019 10:37:15";1
717
"Zavora-Kaplirova";"02.06.2019 10:50:50";1
718
"A1";"02.06.2019 10:54:00";1
719
"A2-Hlavni vchod";"02.06.2019 10:57:00";1
720
"A3";"02.06.2019 10:57:41";1
721
"B3-kolarna";"02.06.2019 11:00:49";1
722
"Zavora-FEL";"02.06.2019 11:01:55";1
723
"Zavora-FDU";"02.06.2019 11:03:05";1
724
"A2-Hlavni vchod";"02.06.2019 11:03:45";1
725
"A3";"02.06.2019 11:04:22";1
726
"A1";"02.06.2019 11:09:02";1
727
"L1";"02.06.2019 11:12:35";1
728
"L1";"02.06.2019 11:12:55";1
729
"L2";"02.06.2019 11:12:55";1
730
"A1";"02.06.2019 11:15:57";1
731
"L1";"02.06.2019 11:18:59";1
732
"Zavora-FEL";"02.06.2019 11:21:51";1
733
"A1";"02.06.2019 11:28:28";1
734
"A1";"02.06.2019 11:32:10";1
735
"L1";"02.06.2019 11:39:50";1
736
"A1";"02.06.2019 11:42:58";1
737
"L1";"02.06.2019 11:48:03";1
738
"A1";"02.06.2019 11:51:25";1
739
"A3";"02.06.2019 11:52:25";1
740
"B3-LEVY";"02.06.2019 11:52:38";1
741
"L1";"02.06.2019 11:53:19";1
742
"L2";"02.06.2019 11:59:01";1
743
"L1";"02.06.2019 12:00:13";1
744
"L2";"02.06.2019 12:03:48";1
745
"L2";"02.06.2019 12:05:28";1
746
"M14";"02.06.2019 12:07:27";1
747
"A1";"02.06.2019 12:11:46";1
748
"A2-Hlavni vchod";"02.06.2019 12:13:35";1
749
"A3";"02.06.2019 12:14:15";1
750
"L1";"02.06.2019 12:14:16";1
751
"L1";"02.06.2019 12:18:40";1
752
"L1";"02.06.2019 12:19:29";1
753
"A1";"02.06.2019 12:19:30";1
754
"M14";"02.06.2019 12:20:07";1
755
"A2-Hlavni vchod";"02.06.2019 12:20:52";1
756
"B3-LEVY";"02.06.2019 12:21:29";1
757
"B3-LEVY";"02.06.2019 12:21:32";1
758
"L1";"02.06.2019 12:23:29";1
759
"M14";"02.06.2019 12:24:29";1
760
"L1";"02.06.2019 12:25:56";1
761
"L2";"02.06.2019 12:31:29";1
762
"A1";"02.06.2019 12:31:39";1
763
"Zavora-FEL";"02.06.2019 12:32:25";1
764
"A2-Hlavni vchod";"02.06.2019 12:37:10";1
765
"A2-Hlavni vchod";"02.06.2019 12:37:22";1
766
"Zavora-FDU";"02.06.2019 12:38:31";1
767
"L1";"02.06.2019 12:39:01";1
768
"A3";"02.06.2019 12:40:14";1
769
"L1";"02.06.2019 12:51:01";1
770
"B3-LEVY";"02.06.2019 12:55:16";1
771
"A1";"02.06.2019 12:57:08";1
772
"Zavora-FDU";"02.06.2019 12:58:46";1
773
"A1";"02.06.2019 12:58:48";1
774
"M14";"02.06.2019 13:01:11";1
775
"M14";"02.06.2019 13:02:09";1
776
"L2";"02.06.2019 13:02:18";1
777
"A1";"02.06.2019 13:06:10";1
778
"L2";"02.06.2019 13:11:29";1
779
"A1";"02.06.2019 13:11:41";1
780
"B3-LEVY";"02.06.2019 13:12:01";1
781
"A1";"02.06.2019 13:13:42";1
782
"B3-LEVY";"02.06.2019 13:15:10";1
783
"L1";"02.06.2019 13:15:58";1
784
"L1";"02.06.2019 13:24:08";1
785
"B3-LEVY";"02.06.2019 13:25:07";1
786
"Zavora-FDU";"02.06.2019 13:26:12";1
787
"A1";"02.06.2019 13:26:28";1
788
"B3-LEVY";"02.06.2019 13:26:49";1
789
"M14";"02.06.2019 13:26:54";1
790
"Zavora-FDU";"02.06.2019 13:27:04";1
791
"A2-Hlavni vchod";"02.06.2019 13:28:01";1
792
"A3";"02.06.2019 13:28:54";1
793
"Zavora-FEL";"02.06.2019 13:34:07";1
794
"M14";"02.06.2019 13:36:35";1
795
"L2";"02.06.2019 13:37:53";1
796
"L1";"02.06.2019 13:38:28";1
797
"L2";"02.06.2019 13:41:28";1
798
"L2";"02.06.2019 13:46:02";1
799
"A2-Hlavni vchod";"02.06.2019 13:46:04";1
800
"A3";"02.06.2019 13:46:52";1
801
"L1";"02.06.2019 13:47:41";1
802
"A1";"02.06.2019 13:48:25";1
803
"A2-Hlavni vchod";"02.06.2019 13:51:04";1
804
"Zavora-FDU";"02.06.2019 13:51:23";1
805
"M14";"02.06.2019 13:52:02";1
806
"L1";"02.06.2019 13:53:00";1
807
"L2";"02.06.2019 13:53:02";1
808
"L2";"02.06.2019 13:59:10";1
809
"B3-LEVY";"02.06.2019 14:00:33";1
810
"A2-Hlavni vchod";"02.06.2019 14:02:39";1
811
"L1";"02.06.2019 14:03:34";1
812
"L-Posilovna";"02.06.2019 14:05:32";1
813
"M14";"02.06.2019 14:08:55";1
814
"L1";"02.06.2019 14:11:56";1
815
"M14";"02.06.2019 14:13:12";1
816
"L1";"02.06.2019 14:15:39";1
817
"L1";"02.06.2019 14:16:17";1
818
"A2-Hlavni vchod";"02.06.2019 14:17:39";1
819
"A2-Hlavni vchod";"02.06.2019 14:18:27";1
820
"Zavora-NTIS-vjezd";"02.06.2019 14:18:46";1
821
"M14";"02.06.2019 14:21:36";1
822
"L2";"02.06.2019 14:21:56";1
823
"Zavora-Kaplirova";"02.06.2019 14:22:02";1
824
"A2-Hlavni vchod";"02.06.2019 14:24:51";1
825
"L-Posilovna";"02.06.2019 14:25:19";1
826
"L1";"02.06.2019 14:25:20";1
827
"A2-Hlavni vchod";"02.06.2019 14:27:04";1
828
"A3";"02.06.2019 14:27:53";1
829
"A1";"02.06.2019 14:32:08";1
830
"L1";"02.06.2019 14:35:29";1
831
"M14";"02.06.2019 14:37:36";1
832
"L1";"02.06.2019 14:38:23";1
833
"M14";"02.06.2019 14:38:37";1
834
"M14";"02.06.2019 14:38:58";1
835
"L1";"02.06.2019 14:40:48";1
836
"A2-Hlavni vchod";"02.06.2019 14:43:11";1
837
"M14";"02.06.2019 14:43:11";1
838
"Zavora-NTIS-vyjezd";"02.06.2019 14:43:17";1
839
"A3";"02.06.2019 14:43:54";1
840
"A1";"02.06.2019 14:44:50";1
841
"L2";"02.06.2019 14:46:14";1
842
"M14";"02.06.2019 14:53:19";1
843
"A2-Hlavni vchod";"02.06.2019 14:57:11";1
844
"L1";"02.06.2019 14:57:26";1
845
"L-Posilovna";"02.06.2019 14:57:57";1
846
"Zavora-FEL";"02.06.2019 14:57:59";1
847
"L-Posilovna";"02.06.2019 14:59:13";1
848
"A1";"02.06.2019 14:59:54";1
849
"M14";"02.06.2019 15:04:17";1
850
"L1";"02.06.2019 15:04:59";1
851
"B3-LEVY";"02.06.2019 15:06:37";1
852
"Zavora-FEL";"02.06.2019 15:07:42";1
853
"B3-LEVY";"02.06.2019 15:13:42";1
854
"L1";"02.06.2019 15:14:21";1
855
"L2";"02.06.2019 15:16:14";1
856
"L1";"02.06.2019 15:17:15";1
857
"A2-Hlavni vchod";"02.06.2019 15:17:35";1
858
"A2-Hlavni vchod";"02.06.2019 15:21:06";1
859
"L2";"02.06.2019 15:21:13";1
860
"Zavora-FDU";"02.06.2019 15:21:52";1
861
"L2";"02.06.2019 15:22:09";1
862
"L2";"02.06.2019 15:22:28";1
863
"A1";"02.06.2019 15:23:20";1
864
"B3-LEVY";"02.06.2019 15:23:33";1
865
"L2";"02.06.2019 15:25:08";1
866
"L1";"02.06.2019 15:25:47";1
867
"L2";"02.06.2019 15:25:53";1
868
"A3";"02.06.2019 15:26:57";1
869
"L1";"02.06.2019 15:27:22";1
870
"L2";"02.06.2019 15:27:33";1
871
"A1";"02.06.2019 15:28:32";1
872
"M14";"02.06.2019 15:29:54";1
873
"M14";"02.06.2019 15:30:39";1
874
"A2-Hlavni vchod";"02.06.2019 15:30:44";1
875
"A1";"02.06.2019 15:31:27";1
876
"L1";"02.06.2019 15:31:40";1
877
"L2";"02.06.2019 15:32:19";1
878
"A2-Hlavni vchod";"02.06.2019 15:35:03";1
879
"L1";"02.06.2019 15:35:14";1
880
"A3";"02.06.2019 15:35:41";1
881
"Zavora-FDU";"02.06.2019 15:36:15";1
882
"Zavora-FDU";"02.06.2019 15:36:19";1
883
"Zavora-FDU";"02.06.2019 15:36:36";1
884
"B3-LEVY";"02.06.2019 15:36:54";1
885
"Zavora-FDU";"02.06.2019 15:36:58";1
886
"L1";"02.06.2019 15:37:57";1
887
"M14";"02.06.2019 15:41:22";1
888
"L1";"02.06.2019 15:41:43";1
889
"B3-LEVY";"02.06.2019 15:45:05";1
890
"A1";"02.06.2019 15:45:10";1
891
"A1";"02.06.2019 15:46:37";1
892
"L1";"02.06.2019 15:47:07";1
893
"A2-Hlavni vchod";"02.06.2019 15:47:50";1
894
"L1";"02.06.2019 15:50:44";1
895
"L1";"02.06.2019 15:52:29";1
896
"L2";"02.06.2019 15:54:59";1
897
"A2-Hlavni vchod";"02.06.2019 15:55:26";1
898
"M14";"02.06.2019 15:56:39";1
899
"L1";"02.06.2019 15:57:39";1
900
"A2-Hlavni vchod";"02.06.2019 15:58:49";1
901
"L1";"02.06.2019 15:59:06";1
902
"M14";"02.06.2019 16:00:53";1
903
"A2-Hlavni vchod";"02.06.2019 16:01:47";1
904
"A3";"02.06.2019 16:02:37";1
905
"M14";"02.06.2019 16:03:43";1
906
"L1";"02.06.2019 16:08:50";1
907
"B3-LEVY";"02.06.2019 16:11:29";1
908
"L-Posilovna";"02.06.2019 16:14:52";1
909
"A2-Hlavni vchod";"02.06.2019 16:15:07";1
910
"B3-LEVY";"02.06.2019 16:16:28";1
911
"L2";"02.06.2019 16:21:23";1
912
"A2-Hlavni vchod";"02.06.2019 16:22:14";1
913
"A3";"02.06.2019 16:23:09";1
914
"L2";"02.06.2019 16:23:22";1
915
"M14";"02.06.2019 16:27:51";1
916
"A1";"02.06.2019 16:27:56";1
917
"L2";"02.06.2019 16:29:24";1
918
"A1";"02.06.2019 16:29:38";1
919
"L1";"02.06.2019 16:29:47";1
920
"B3-LEVY";"02.06.2019 16:39:45";1
921
"M14";"02.06.2019 16:40:12";1
922
"L1";"02.06.2019 16:41:09";1
923
"L1";"02.06.2019 16:41:59";1
924
"L1";"02.06.2019 16:42:13";1
925
"Zavora-FEL";"02.06.2019 16:42:42";1
926
"L1";"02.06.2019 16:43:14";1
927
"L1";"02.06.2019 16:43:15";1
928
"A1";"02.06.2019 16:43:55";1
929
"B3-LEVY";"02.06.2019 16:45:04";1
930
"A1";"02.06.2019 16:45:05";1
931
"A2-Hlavni vchod";"02.06.2019 16:45:55";1
932
"M14";"02.06.2019 16:47:20";1
933
"L1";"02.06.2019 16:48:43";1
934
"M14";"02.06.2019 16:52:28";1
935
"L2";"02.06.2019 16:55:16";1
936
"B3-LEVY";"02.06.2019 16:56:25";1
937
"A1";"02.06.2019 16:56:52";1
938
"Zavora-FDU";"02.06.2019 16:57:23";1
939
"A1";"02.06.2019 16:58:32";1
940
"M14";"02.06.2019 17:00:48";1
941
"L2";"02.06.2019 17:02:35";1
942
"L2";"02.06.2019 17:02:55";1
943
"M14";"02.06.2019 17:03:22";1
944
"L2";"02.06.2019 17:04:05";1
945
"L1";"02.06.2019 17:04:07";1
946
"M14";"02.06.2019 17:04:12";1
947
"M14";"02.06.2019 17:06:20";1
948
"A2-Hlavni vchod";"02.06.2019 17:06:26";1
949
"L2";"02.06.2019 17:07:19";1
950
"L1";"02.06.2019 17:07:36";1
951
"L2";"02.06.2019 17:07:59";1
952
"M14";"02.06.2019 17:09:22";1
953
"L1";"02.06.2019 17:09:36";1
954
"M14";"02.06.2019 17:10:01";1
955
"L2";"02.06.2019 17:14:01";1
956
"M14";"02.06.2019 17:15:29";1
957
"L2";"02.06.2019 17:15:37";1
958
"A2-Hlavni vchod";"02.06.2019 17:15:56";1
959
"A3";"02.06.2019 17:16:34";1
960
"M14";"02.06.2019 17:16:46";1
961
"L1";"02.06.2019 17:16:55";1
962
"Zavora-NTIS-vjezd";"02.06.2019 17:17:10";1
963
"A2-Hlavni vchod";"02.06.2019 17:19:30";1
964
"L2";"02.06.2019 17:19:44";1
965
"A3";"02.06.2019 17:20:11";1
966
"M14";"02.06.2019 17:21:34";1
967
"M14";"02.06.2019 17:21:35";1
968
"L2";"02.06.2019 17:22:15";1
969
"M14";"02.06.2019 17:22:18";1
970
"A2-Hlavni vchod";"02.06.2019 17:23:10";1
971
"L2";"02.06.2019 17:24:11";1
972
"A2-Hlavni vchod";"02.06.2019 17:24:59";1
973
"A3";"02.06.2019 17:25:54";1
974
"L1";"02.06.2019 17:26:25";1
975
"A3";"02.06.2019 17:29:57";1
976
"L2";"02.06.2019 17:31:15";1
977
"M14";"02.06.2019 17:37:41";1
978
"A2-Hlavni vchod";"02.06.2019 17:38:33";1
979
"L2";"02.06.2019 17:38:45";1
980
"A3";"02.06.2019 17:39:21";1
981
"L2";"02.06.2019 17:39:34";1
982
"M14";"02.06.2019 17:40:25";1
983
"A1";"02.06.2019 17:40:47";1
984
"A1";"02.06.2019 17:41:25";1
985
"A1";"02.06.2019 17:41:27";1
986
"L2";"02.06.2019 17:42:16";1
987
"Zavora-FEL";"02.06.2019 17:45:51";1
988
"L2";"02.06.2019 17:46:42";1
989
"L1";"02.06.2019 17:46:58";1
990
"A1";"02.06.2019 17:47:35";1
991
"Zavora-Kaplirova";"02.06.2019 17:48:18";1
992
"A2-Hlavni vchod";"02.06.2019 17:50:23";1
993
"L1";"02.06.2019 17:50:41";1
994
"L2";"02.06.2019 17:51:05";1
995
"A2-Hlavni vchod";"02.06.2019 17:51:08";1
996
"A2-Hlavni vchod";"02.06.2019 17:51:47";1
997
"A3";"02.06.2019 17:51:48";1
998
"A2-Hlavni vchod";"02.06.2019 17:52:13";1
999
"A1";"02.06.2019 17:52:30";1
1000
"A3";"02.06.2019 17:52:54";1
1001
"B3-LEVY";"02.06.2019 17:53:06";1
1002
"A1";"02.06.2019 17:53:18";1
1003
"M14";"02.06.2019 17:53:19";1
1004
"Zavora-FEL";"02.06.2019 17:53:23";1
1005
"A1";"02.06.2019 17:53:58";1
1006
"M14";"02.06.2019 17:54:10";1
1007
"A2-Hlavni vchod";"02.06.2019 17:55:15";1
1008
"L1";"02.06.2019 17:56:58";1
1009
"Zavora-FDU";"02.06.2019 17:58:49";1
1010
"M14";"02.06.2019 17:59:21";1
1011
"B3-LEVY";"02.06.2019 18:00:20";1
1012
"L2";"02.06.2019 18:00:43";1
1013
"A1";"02.06.2019 18:01:45";1
1014
"L1";"02.06.2019 18:02:34";1
1015
"A2-Hlavni vchod";"02.06.2019 18:04:02";1
1016
"L1";"02.06.2019 18:04:54";1
1017
"A3";"02.06.2019 18:05:02";1
1018
"B3-LEVY";"02.06.2019 18:05:39";1
1019
"M14";"02.06.2019 18:06:14";1
1020
"B3-LEVY";"02.06.2019 18:06:29";1
1021
"L-Posilovna";"02.06.2019 18:07:40";1
1022
"M16";"02.06.2019 18:08:31";1
1023
"M14";"02.06.2019 18:10:24";1
1024
"A1";"02.06.2019 18:11:52";1
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff