ok fix files
This commit is contained in:
@@ -21,6 +21,7 @@ namespace SMGen.Core
|
||||
public const string redisBaseAddr = "SMGEN";
|
||||
public const string rKeyFiles = $"{redisBaseAddr}:Files";
|
||||
public const string rKeyEventi = $"{redisBaseAddr}:Eventi";
|
||||
public const string rKeyStati = $"{redisBaseAddr}:Stati";
|
||||
public const string rKeyFamIng = $"{redisBaseAddr}:FamIngressi";
|
||||
public const string rKeyFamStati = $"{redisBaseAddr}:FamStati";
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace SMGen.Data.Controllers
|
||||
{
|
||||
foreach (var rec in currRec)
|
||||
{
|
||||
events.Add(rec.IdxTipo, rec.Nome);
|
||||
events.Add(rec.IdxTipo, rec.KeyEvento);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -47,6 +47,33 @@ namespace SMGen.Data.Controllers
|
||||
}
|
||||
return events;
|
||||
}
|
||||
public Dictionary<int, string> AnagStatiGetAll()
|
||||
{
|
||||
Dictionary<int, string> states = new Dictionary<int, string>();
|
||||
using (SMGDataContext localDbCtx = new SMGDataContext(_configuration))
|
||||
{
|
||||
try
|
||||
{
|
||||
var currRec = localDbCtx
|
||||
.DbSetAnagStati
|
||||
.ToList();
|
||||
if (currRec != null)
|
||||
{
|
||||
foreach (var rec in currRec)
|
||||
{
|
||||
states.Add(rec.IdxStato, rec.KeyStato);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
Log.Error($"Eccezione durante AnagEventiGetAll: {Environment.NewLine}{exc}");
|
||||
}
|
||||
}
|
||||
return states;
|
||||
}
|
||||
|
||||
|
||||
public List<FamIngressiViewModel> FamIngressiGetAll()
|
||||
{
|
||||
List<FamIngressiViewModel> dbResult = new List<FamIngressiViewModel>();
|
||||
|
||||
@@ -19,5 +19,11 @@ namespace SMGen.Data.DbModels
|
||||
public string TabAzione { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string Azione { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string KeyEvento { get; set; } = "";
|
||||
|
||||
public bool EventoTablet { get; set; } = false;
|
||||
[MaxLength(50)]
|
||||
public string NoteEvento { get; set; } = "";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,5 +19,11 @@ namespace SMGen.Data.DbModels
|
||||
public string TabAzione { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string Azione { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string KeyEvento { get; set; } = "";
|
||||
|
||||
public bool EventoTablet { get; set; } = false;
|
||||
[MaxLength(50)]
|
||||
public string NoteEvento { get; set; } = "";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,5 +21,9 @@ namespace SMGen.Data.DbModels
|
||||
[MaxLength(50)]
|
||||
public string ClasseTempo { get; set; } = "";
|
||||
public bool ShowArticolo { get; set; } = true;
|
||||
[MaxLength(50)]
|
||||
public string KeyStato { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string NoteStato { get; set; } = "";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,5 +21,9 @@ namespace SMGen.Data.DbModels
|
||||
[MaxLength(50)]
|
||||
public string ClasseTempo { get; set; } = "";
|
||||
public bool ShowArticolo { get; set; } = true;
|
||||
[MaxLength(50)]
|
||||
public string KeyStato { get; set; } = "";
|
||||
[MaxLength(50)]
|
||||
public string NoteStato { get; set; } = "";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,6 +54,7 @@ namespace SMGen.Data
|
||||
public virtual DbSet<TransizioneIngressiModelTemp> DbSetTranIngTemp { get; set; } = null!;
|
||||
public virtual DbSet<AnagEventiModelTemp> DbSetAnagEventiTemp { get; set; } = null!;
|
||||
public virtual DbSet<AnagEventiModel> DbSetAnagEventi { get; set; } = null!;
|
||||
public virtual DbSet<AnagStatiModel> DbSetAnagStati { get; set; } = null!;
|
||||
public virtual DbSet<FamIngressiViewModel> DbSetFamIngressi { get; set; } = null!;
|
||||
public virtual DbSet<FamStatiViewModel> DbSetFamStati { get; set; } = null!;
|
||||
|
||||
|
||||
@@ -109,6 +109,50 @@ namespace SMGen.Data.Services
|
||||
}
|
||||
return dbResult;
|
||||
}
|
||||
public async Task<Dictionary<int, string>> AnagStatiGetAll()
|
||||
{
|
||||
string source = "DB";
|
||||
Dictionary<int, string> dbResult = new Dictionary<int, string>();
|
||||
try
|
||||
{
|
||||
// cerco da cache
|
||||
string currKey = $"{Constants.rKeyStati}";
|
||||
Stopwatch stopWatch = new Stopwatch();
|
||||
stopWatch.Start();
|
||||
string? rawData = await redisDb.StringGetAsync(currKey);
|
||||
if (!string.IsNullOrEmpty(rawData))
|
||||
{
|
||||
source = "REDIS";
|
||||
var tempResult = JsonConvert.DeserializeObject<Dictionary<int, string>>(rawData);
|
||||
if (tempResult == null)
|
||||
{
|
||||
dbResult = new Dictionary<int, string>();
|
||||
}
|
||||
else
|
||||
{
|
||||
dbResult = tempResult;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
dbResult = dbController.AnagStatiGetAll();
|
||||
rawData = JsonConvert.SerializeObject(dbResult, JSSettings);
|
||||
await redisDb.StringSetAsync(currKey, rawData, UltraLongCache);
|
||||
}
|
||||
if (dbResult == null)
|
||||
{
|
||||
dbResult = new Dictionary<int, string>();
|
||||
}
|
||||
stopWatch.Stop();
|
||||
TimeSpan ts = stopWatch.Elapsed;
|
||||
Log.Debug($"AnagStatiGetAll | {source} in: {ts.TotalMilliseconds} ms");
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
Log.Error($"Exception during AnagStatiGetAll: {exc}{Environment.NewLine}");
|
||||
}
|
||||
return dbResult;
|
||||
}
|
||||
|
||||
public async Task<bool> AnagEventinInsert(List<AnagEventiModelTemp> newEvList)
|
||||
{
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
@if (!hasBit)
|
||||
{
|
||||
<td>
|
||||
<i class="@showDanger(item.Value)"></i>
|
||||
<button class="btn btn-sm btn-info" @onclick="()=>doProc(item.Value)"><i class="fa-solid fa-code-compare"></i></button>
|
||||
</td>
|
||||
}
|
||||
@@ -64,7 +65,7 @@
|
||||
{ }
|
||||
}
|
||||
</tr>
|
||||
@if (k != null && k.statesOK.Count > 0 && k.eventsOK.Count > 0 && k.lines.Count > 0 && item.Value.tempFileName == k.file)
|
||||
@if (FileLines != null && FileLines.statesOK.Count > 0 && FileLines.eventsOK.Count > 0 && FileLines.lines.Count > 0 && item.Value.tempFileName == FileLines.file)
|
||||
{
|
||||
<div class="d-flex justify-content-between p-3">
|
||||
<div class="card shadow-lg rounded mb-2">
|
||||
@@ -72,21 +73,12 @@
|
||||
<h4>STATI</h4>
|
||||
</div>
|
||||
<div class="card-body overflow-auto" style="max-height: 50rem">
|
||||
@foreach (var line in k.lines)
|
||||
@foreach (var line in FileLines.lines)
|
||||
{
|
||||
@if (line.StartsWith("$STATE"))
|
||||
{
|
||||
|
||||
@if (k.statesOK.ContainsKey(line.Split(":")[2].ToUpper().Trim()))
|
||||
{
|
||||
<span class="text-success">@line</span>
|
||||
<br />
|
||||
}
|
||||
else
|
||||
{
|
||||
<span class="text-danger">@line</span>
|
||||
<br />
|
||||
}
|
||||
<span class="@lineCssState(line.Split(":")[2].ToUpper().Trim())">@line</span>
|
||||
<br />
|
||||
}
|
||||
}
|
||||
</div>
|
||||
@@ -96,20 +88,22 @@
|
||||
<h4>EVENTI</h4>
|
||||
</div>
|
||||
<div class="card-body overflow-auto" style="max-height: 50rem">
|
||||
@foreach (var line in k.lines)
|
||||
@foreach (var line in FileLines.lines)
|
||||
{
|
||||
@if (line.StartsWith("$EVENT"))
|
||||
{
|
||||
<div>
|
||||
|
||||
@if (k.eventsOK.ContainsKey(line.Split(":")[2].ToUpper().Trim()))
|
||||
<span class="@lineCssEvent(line.Split(":")[2].ToUpper().Trim())">@line</span>
|
||||
<br />
|
||||
@*@if (FileLines.eventsOK.ContainsKey(line.Split(":")[2].ToUpper().Trim()))
|
||||
{
|
||||
<span class="text-success">@line</span>
|
||||
<br />
|
||||
}
|
||||
else if (line.Contains("#"))
|
||||
{
|
||||
if (k.eventsOK.ContainsKey(line.Split(":")[2].Split("#")[0].ToUpper().Trim()))
|
||||
if (FileLines.eventsOK.ContainsKey(line.Split(":")[2].Split("#")[0].ToUpper().Trim()))
|
||||
{
|
||||
<span class="text-success">@line</span>
|
||||
<br />
|
||||
@@ -119,7 +113,7 @@
|
||||
{
|
||||
<span class="text-danger">@line</span>
|
||||
<br />
|
||||
}
|
||||
}*@
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace SMGen.Components
|
||||
{
|
||||
public partial class FilesList
|
||||
{
|
||||
protected FileLinesClass k = new FileLinesClass();
|
||||
protected FileLinesClass FileLines = new FileLinesClass();
|
||||
|
||||
[Parameter]
|
||||
public bool calcEmptyState { get; set; } = false;
|
||||
@@ -73,16 +73,52 @@ namespace SMGen.Components
|
||||
}
|
||||
}
|
||||
|
||||
protected async Task doProc(FilesClass currFile)
|
||||
|
||||
protected string lineCssState(string state)
|
||||
{
|
||||
await Task.Delay(1);
|
||||
if (k.statesOK.Count <= 0 && k.eventsOK.Count <= 0 && k.lines.Count <= 0)
|
||||
string answ = "";
|
||||
if (FileLines.statesOK.ContainsKey(state))
|
||||
{
|
||||
k = await SMGDService.DoCheckUnusedEvSt(currFile);
|
||||
answ = "text-success";
|
||||
}
|
||||
else
|
||||
{
|
||||
k = new FileLinesClass();
|
||||
answ = "text-danger";
|
||||
}
|
||||
|
||||
return answ;
|
||||
}
|
||||
protected string lineCssEvent(string currEvent)
|
||||
{
|
||||
string answ = "";
|
||||
if (FileLines.eventsOK.ContainsKey(currEvent))
|
||||
{
|
||||
answ = "text-success";
|
||||
}
|
||||
else
|
||||
{
|
||||
answ = "text-danger";
|
||||
}
|
||||
|
||||
return answ;
|
||||
}
|
||||
protected string showDanger(FilesClass currFile)
|
||||
{
|
||||
string answ = "";
|
||||
|
||||
answ = "fa-solid fa-triangle-exclamation";
|
||||
return answ;
|
||||
}
|
||||
protected async Task doProc(FilesClass currFile)
|
||||
{
|
||||
await Task.Delay(1);
|
||||
if (FileLines.statesOK.Count <= 0 && FileLines.eventsOK.Count <= 0 && FileLines.lines.Count <= 0)
|
||||
{
|
||||
FileLines = await SMGDService.DoCheckUnusedEvSt(currFile);
|
||||
}
|
||||
else
|
||||
{
|
||||
FileLines = new FileLinesClass();
|
||||
}
|
||||
}
|
||||
protected override async Task OnParametersSetAsync()
|
||||
@@ -131,7 +167,7 @@ namespace SMGen.Components
|
||||
protected async Task setCurrMsg(FilesClass currFile)
|
||||
{
|
||||
await Task.Delay(1);
|
||||
if (currFile.errorMsgs.Count > 0 )
|
||||
if (currFile.errorMsgs.Count > 0)
|
||||
{
|
||||
currMsgs = currFile.errorMsgs;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
@page "/FilesFix"
|
||||
|
||||
<h3>FilesFix</h3>
|
||||
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using System.Net.Http;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Components.Authorization;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using Microsoft.AspNetCore.Components.Routing;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.Web.Virtualization;
|
||||
using Microsoft.JSInterop;
|
||||
using SMGen;
|
||||
using SMGen.Shared;
|
||||
using SMGen.Components;
|
||||
using EgwCoreLib.Razor;
|
||||
using EgwCoreLib.Razor.Data;
|
||||
using SMGen.Data;
|
||||
using SMGen.Core;
|
||||
using SMGen.Data.DbModels;
|
||||
using SMGen.Data.Services;
|
||||
using Microsoft.VisualBasic;
|
||||
using System.Text;
|
||||
|
||||
namespace SMGen.Pages
|
||||
{
|
||||
public partial class FilesFix
|
||||
{
|
||||
protected Dictionary<int, string> eventsFromDb = new Dictionary<int, string>();
|
||||
protected Dictionary<int, string> statesFromDb = new Dictionary<int, string>();
|
||||
|
||||
[Inject]
|
||||
protected SMGDataService SMGDService { get; set; } = null!;
|
||||
|
||||
protected async Task modFile(string filePath)
|
||||
{
|
||||
var lines = File.ReadLines(filePath);
|
||||
var fileTxt = File.ReadAllText(filePath);
|
||||
foreach (var line in lines)
|
||||
{
|
||||
var txt = "";
|
||||
if (line != "" && line.Contains(":"))
|
||||
{
|
||||
if (!line.StartsWith("$EVENT") && !line.StartsWith("#") && line.StartsWith("$STATE"))
|
||||
{
|
||||
var lineSplit = line.Split(":");
|
||||
if (lineSplit.Count() >= 3)
|
||||
{
|
||||
if (statesFromDb[int.Parse(lineSplit[1].Trim())] != lineSplit[2].Trim())
|
||||
{
|
||||
fileTxt = fileTxt.Replace(lineSplit[2].Trim(), statesFromDb[int.Parse(lineSplit[1].Trim())]);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (line.StartsWith("$EVENT") && !line.StartsWith("#") && !line.StartsWith("$STATE"))
|
||||
{
|
||||
var lineSplit = line.Split(":");
|
||||
if (lineSplit.Count() >= 3)
|
||||
{
|
||||
if (eventsFromDb[int.Parse(lineSplit[1].Trim())] != lineSplit[2].Trim())
|
||||
{
|
||||
fileTxt = fileTxt.Replace(lineSplit[2].Trim(), eventsFromDb[int.Parse(lineSplit[1].Trim())]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
await Task.Delay(1);
|
||||
eventsFromDb = await SMGDService.AnagEventiGetAll();
|
||||
statesFromDb = await SMGDService.AnagStatiGetAll();
|
||||
await modFile("S:\\Zaccaria Majid\\File_RUL\\Jetco\\12_FAMIGLIA_JETCO_NEW.rul");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -34,6 +34,11 @@
|
||||
<span class="oi oi-plus" aria-hidden="true"></span> Gen. SM Stati
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link p-2" href="FilesFIx">
|
||||
<span class="oi oi-file" aria-hidden="true"></span> Fix files
|
||||
</NavLink>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
+40
@@ -721,3 +721,43 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;35;32;32
|
||||
10;35;37;33
|
||||
10;35;38;34
|
||||
10;49;0;0
|
||||
10;49;1;1
|
||||
10;49;2;2
|
||||
10;49;3;3
|
||||
10;49;4;4
|
||||
10;49;5;5
|
||||
10;49;6;6
|
||||
10;49;7;7
|
||||
10;49;8;8
|
||||
10;49;9;9
|
||||
10;49;10;10
|
||||
10;49;12;11
|
||||
10;49;14;11
|
||||
10;49;19;30
|
||||
10;49;26;27
|
||||
10;49;31;31
|
||||
10;49;32;32
|
||||
10;49;37;33
|
||||
10;49;38;34
|
||||
10;49;39;35
|
||||
10;50;0;0
|
||||
10;50;1;1
|
||||
10;50;2;2
|
||||
10;50;3;3
|
||||
10;50;4;4
|
||||
10;50;5;5
|
||||
10;50;6;6
|
||||
10;50;7;7
|
||||
10;50;8;8
|
||||
10;50;9;9
|
||||
10;50;10;10
|
||||
10;50;12;11
|
||||
10;50;14;11
|
||||
10;50;19;30
|
||||
10;50;26;27
|
||||
10;50;31;31
|
||||
10;50;32;32
|
||||
10;50;37;33
|
||||
10;50;38;34
|
||||
10;50;39;35
|
||||
|
||||
|
@@ -722,3 +722,43 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;35;32;32
|
||||
10;35;37;33
|
||||
10;35;38;34
|
||||
10;49;0;0
|
||||
10;49;1;1
|
||||
10;49;2;2
|
||||
10;49;3;3
|
||||
10;49;4;4
|
||||
10;49;5;5
|
||||
10;49;6;6
|
||||
10;49;7;7
|
||||
10;49;8;8
|
||||
10;49;9;9
|
||||
10;49;10;10
|
||||
10;49;12;11
|
||||
10;49;14;11
|
||||
10;49;19;30
|
||||
10;49;26;27
|
||||
10;49;31;31
|
||||
10;49;32;32
|
||||
10;49;37;33
|
||||
10;49;38;34
|
||||
10;49;39;35
|
||||
10;50;0;0
|
||||
10;50;1;1
|
||||
10;50;2;2
|
||||
10;50;3;3
|
||||
10;50;4;4
|
||||
10;50;5;5
|
||||
10;50;6;6
|
||||
10;50;7;7
|
||||
10;50;8;8
|
||||
10;50;9;9
|
||||
10;50;10;10
|
||||
10;50;12;11
|
||||
10;50;14;11
|
||||
10;50;19;30
|
||||
10;50;26;27
|
||||
10;50;31;31
|
||||
10;50;32;32
|
||||
10;50;37;33
|
||||
10;50;38;34
|
||||
10;50;39;35
|
||||
|
||||
|
@@ -20,7 +20,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;0;39;35
|
||||
10;0;49;49
|
||||
10;0;50;50
|
||||
10;1;0;0
|
||||
10;1;2;2
|
||||
10;1;3;3
|
||||
10;1;4;4
|
||||
@@ -57,7 +56,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;1;39;35
|
||||
10;1;49;49
|
||||
10;1;50;50
|
||||
10;2;0;0
|
||||
10;2;1;1
|
||||
10;2;3;3
|
||||
10;2;4;4
|
||||
@@ -79,7 +77,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;2;39;35
|
||||
10;2;49;49
|
||||
10;2;50;50
|
||||
10;3;0;0
|
||||
10;3;1;1
|
||||
10;3;2;2
|
||||
10;3;4;4
|
||||
@@ -101,7 +98,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;3;39;35
|
||||
10;3;49;49
|
||||
10;3;50;50
|
||||
10;4;0;0
|
||||
10;4;1;1
|
||||
10;4;2;2
|
||||
10;4;3;3
|
||||
@@ -123,7 +119,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;4;39;35
|
||||
10;4;49;49
|
||||
10;4;50;50
|
||||
10;5;0;0
|
||||
10;5;1;1
|
||||
10;5;2;2
|
||||
10;5;3;3
|
||||
@@ -145,7 +140,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;5;39;35
|
||||
10;5;49;49
|
||||
10;5;50;50
|
||||
10;6;0;0
|
||||
10;6;1;1
|
||||
10;6;2;2
|
||||
10;6;3;3
|
||||
@@ -167,7 +161,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;6;39;35
|
||||
10;6;49;49
|
||||
10;6;50;50
|
||||
10;7;0;0
|
||||
10;7;1;1
|
||||
10;7;2;2
|
||||
10;7;3;3
|
||||
@@ -189,7 +182,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;7;39;35
|
||||
10;7;49;49
|
||||
10;7;50;50
|
||||
10;8;0;0
|
||||
10;8;1;1
|
||||
10;8;2;2
|
||||
10;8;3;3
|
||||
@@ -211,7 +203,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;8;39;35
|
||||
10;8;49;49
|
||||
10;8;50;50
|
||||
10;9;0;0
|
||||
10;9;1;1
|
||||
10;9;2;2
|
||||
10;9;3;3
|
||||
@@ -233,7 +224,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;9;39;35
|
||||
10;9;49;49
|
||||
10;9;50;50
|
||||
10;10;0;0
|
||||
10;10;1;1
|
||||
10;10;2;2
|
||||
10;10;3;3
|
||||
@@ -255,7 +245,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;10;39;35
|
||||
10;10;49;49
|
||||
10;10;50;50
|
||||
10;11;0;0
|
||||
10;11;1;1
|
||||
10;11;2;2
|
||||
10;11;3;3
|
||||
@@ -290,7 +279,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;11;39;35
|
||||
10;11;49;49
|
||||
10;11;50;50
|
||||
10;12;0;0
|
||||
10;12;1;1
|
||||
10;12;2;2
|
||||
10;12;3;3
|
||||
@@ -327,7 +315,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;12;39;35
|
||||
10;12;49;49
|
||||
10;12;50;50
|
||||
10;13;0;0
|
||||
10;13;1;1
|
||||
10;13;2;2
|
||||
10;13;3;3
|
||||
@@ -363,7 +350,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;13;39;35
|
||||
10;13;49;49
|
||||
10;13;50;50
|
||||
10;14;0;0
|
||||
10;14;1;1
|
||||
10;14;2;2
|
||||
10;14;3;3
|
||||
@@ -397,7 +383,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;14;39;35
|
||||
10;14;49;49
|
||||
10;14;50;50
|
||||
10;15;0;0
|
||||
10;15;1;1
|
||||
10;15;2;2
|
||||
10;15;3;3
|
||||
@@ -433,7 +418,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;15;39;35
|
||||
10;15;49;49
|
||||
10;15;50;50
|
||||
10;23;0;0
|
||||
10;23;1;1
|
||||
10;23;2;2
|
||||
10;23;3;3
|
||||
@@ -470,7 +454,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;23;39;35
|
||||
10;23;49;49
|
||||
10;23;50;50
|
||||
10;24;0;0
|
||||
10;24;1;1
|
||||
10;24;2;2
|
||||
10;24;3;3
|
||||
@@ -507,7 +490,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;24;39;35
|
||||
10;24;49;49
|
||||
10;24;50;50
|
||||
10;25;0;0
|
||||
10;25;1;1
|
||||
10;25;2;2
|
||||
10;25;3;3
|
||||
@@ -543,7 +525,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;25;39;35
|
||||
10;25;49;49
|
||||
10;25;50;50
|
||||
10;26;0;0
|
||||
10;26;1;1
|
||||
10;26;2;2
|
||||
10;26;3;3
|
||||
@@ -580,7 +561,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;26;39;35
|
||||
10;26;49;49
|
||||
10;26;50;50
|
||||
10;27;0;0
|
||||
10;27;1;1
|
||||
10;27;2;2
|
||||
10;27;3;3
|
||||
@@ -602,7 +582,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;27;39;35
|
||||
10;27;49;49
|
||||
10;27;50;50
|
||||
10;28;0;0
|
||||
10;28;1;1
|
||||
10;28;2;2
|
||||
10;28;3;3
|
||||
@@ -625,7 +604,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;28;39;35
|
||||
10;28;49;49
|
||||
10;28;50;50
|
||||
10;29;0;0
|
||||
10;29;1;1
|
||||
10;29;2;2
|
||||
10;29;3;3
|
||||
@@ -648,7 +626,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;29;39;35
|
||||
10;29;49;49
|
||||
10;29;50;50
|
||||
10;30;0;0
|
||||
10;30;1;1
|
||||
10;30;2;2
|
||||
10;30;3;3
|
||||
@@ -669,7 +646,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;30;39;35
|
||||
10;30;49;49
|
||||
10;30;50;50
|
||||
10;31;0;0
|
||||
10;31;1;1
|
||||
10;31;2;2
|
||||
10;31;3;3
|
||||
@@ -691,7 +667,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;31;39;35
|
||||
10;31;49;49
|
||||
10;31;50;50
|
||||
10;32;0;0
|
||||
10;32;1;1
|
||||
10;32;2;2
|
||||
10;32;3;3
|
||||
@@ -713,7 +688,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;32;39;35
|
||||
10;32;49;49
|
||||
10;32;50;50
|
||||
10;33;0;0
|
||||
10;33;1;1
|
||||
10;33;2;2
|
||||
10;33;3;3
|
||||
@@ -735,7 +709,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;33;39;35
|
||||
10;33;49;49
|
||||
10;33;50;50
|
||||
10;34;0;0
|
||||
10;34;1;1
|
||||
10;34;2;2
|
||||
10;34;3;3
|
||||
@@ -757,7 +730,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;34;39;35
|
||||
10;34;49;49
|
||||
10;34;50;50
|
||||
10;35;0;0
|
||||
10;35;1;1
|
||||
10;35;2;2
|
||||
10;35;3;3
|
||||
@@ -779,7 +751,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;35;38;34
|
||||
10;35;49;49
|
||||
10;35;50;50
|
||||
10;49;0;0
|
||||
10;49;1;1
|
||||
10;49;2;2
|
||||
10;49;3;3
|
||||
@@ -800,7 +771,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;49;38;34
|
||||
10;49;39;35
|
||||
10;49;50;50
|
||||
10;50;0;0
|
||||
10;50;1;1
|
||||
10;50;2;2
|
||||
10;50;3;3
|
||||
|
||||
|
@@ -0,0 +1,763 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
10;0;1;1
|
||||
10;0;2;2
|
||||
10;0;3;3
|
||||
10;0;4;4
|
||||
10;0;5;5
|
||||
10;0;6;6
|
||||
10;0;7;7
|
||||
10;0;8;8
|
||||
10;0;9;9
|
||||
10;0;10;10
|
||||
10;0;12;11
|
||||
10;0;14;11
|
||||
10;0;19;30
|
||||
10;0;26;27
|
||||
10;0;31;31
|
||||
10;0;32;32
|
||||
10;0;37;33
|
||||
10;0;38;34
|
||||
10;0;39;35
|
||||
10;1;0;0
|
||||
10;1;2;2
|
||||
10;1;3;3
|
||||
10;1;4;4
|
||||
10;1;5;5
|
||||
10;1;6;6
|
||||
10;1;7;7
|
||||
10;1;8;8
|
||||
10;1;9;9
|
||||
10;1;10;10
|
||||
10;1;12;11
|
||||
10;1;14;11
|
||||
10;1;15;12
|
||||
10;1;16;13
|
||||
10;1;17;14
|
||||
10;1;18;15
|
||||
10;1;19;30
|
||||
10;1;20;14
|
||||
10;1;21;13
|
||||
10;1;22;14
|
||||
10;1;23;23
|
||||
10;1;24;24
|
||||
10;1;25;25
|
||||
10;1;26;27
|
||||
10;1;28;26
|
||||
10;1;29;28
|
||||
10;1;30;29
|
||||
10;1;31;31
|
||||
10;1;32;32
|
||||
10;1;33;15
|
||||
10;1;35;13
|
||||
10;1;36;14
|
||||
10;1;37;33
|
||||
10;1;38;34
|
||||
10;1;39;35
|
||||
10;2;0;0
|
||||
10;2;1;1
|
||||
10;2;3;3
|
||||
10;2;4;4
|
||||
10;2;5;5
|
||||
10;2;6;6
|
||||
10;2;7;7
|
||||
10;2;8;8
|
||||
10;2;9;9
|
||||
10;2;10;10
|
||||
10;2;12;11
|
||||
10;2;14;11
|
||||
10;2;19;30
|
||||
10;2;26;27
|
||||
10;2;28;26
|
||||
10;2;31;31
|
||||
10;2;32;32
|
||||
10;2;37;33
|
||||
10;2;38;34
|
||||
10;2;39;35
|
||||
10;3;0;0
|
||||
10;3;1;1
|
||||
10;3;2;2
|
||||
10;3;4;4
|
||||
10;3;5;5
|
||||
10;3;6;6
|
||||
10;3;7;7
|
||||
10;3;8;8
|
||||
10;3;9;9
|
||||
10;3;10;10
|
||||
10;3;12;11
|
||||
10;3;14;11
|
||||
10;3;19;30
|
||||
10;3;26;27
|
||||
10;3;28;26
|
||||
10;3;31;31
|
||||
10;3;32;32
|
||||
10;3;37;33
|
||||
10;3;38;34
|
||||
10;3;39;35
|
||||
10;4;0;0
|
||||
10;4;1;1
|
||||
10;4;2;2
|
||||
10;4;3;3
|
||||
10;4;5;5
|
||||
10;4;6;6
|
||||
10;4;7;7
|
||||
10;4;8;8
|
||||
10;4;9;9
|
||||
10;4;10;10
|
||||
10;4;12;11
|
||||
10;4;14;11
|
||||
10;4;19;30
|
||||
10;4;26;27
|
||||
10;4;28;26
|
||||
10;4;31;31
|
||||
10;4;32;32
|
||||
10;4;37;33
|
||||
10;4;38;34
|
||||
10;4;39;35
|
||||
10;5;0;0
|
||||
10;5;1;1
|
||||
10;5;2;2
|
||||
10;5;3;3
|
||||
10;5;4;4
|
||||
10;5;6;6
|
||||
10;5;7;7
|
||||
10;5;8;8
|
||||
10;5;9;9
|
||||
10;5;10;10
|
||||
10;5;12;11
|
||||
10;5;14;11
|
||||
10;5;19;30
|
||||
10;5;26;27
|
||||
10;5;28;26
|
||||
10;5;31;31
|
||||
10;5;32;32
|
||||
10;5;37;33
|
||||
10;5;38;34
|
||||
10;5;39;35
|
||||
10;6;0;0
|
||||
10;6;1;1
|
||||
10;6;2;2
|
||||
10;6;3;3
|
||||
10;6;4;4
|
||||
10;6;5;5
|
||||
10;6;7;7
|
||||
10;6;8;8
|
||||
10;6;9;9
|
||||
10;6;10;10
|
||||
10;6;12;11
|
||||
10;6;14;11
|
||||
10;6;19;30
|
||||
10;6;26;27
|
||||
10;6;28;26
|
||||
10;6;31;31
|
||||
10;6;32;32
|
||||
10;6;37;33
|
||||
10;6;38;34
|
||||
10;6;39;35
|
||||
10;7;0;0
|
||||
10;7;1;1
|
||||
10;7;2;2
|
||||
10;7;3;3
|
||||
10;7;4;4
|
||||
10;7;5;5
|
||||
10;7;6;6
|
||||
10;7;8;8
|
||||
10;7;9;9
|
||||
10;7;10;10
|
||||
10;7;12;11
|
||||
10;7;14;11
|
||||
10;7;19;30
|
||||
10;7;26;27
|
||||
10;7;28;26
|
||||
10;7;31;31
|
||||
10;7;32;32
|
||||
10;7;37;33
|
||||
10;7;38;34
|
||||
10;7;39;35
|
||||
10;8;0;0
|
||||
10;8;1;1
|
||||
10;8;2;2
|
||||
10;8;3;3
|
||||
10;8;4;4
|
||||
10;8;5;5
|
||||
10;8;6;6
|
||||
10;8;7;7
|
||||
10;8;9;9
|
||||
10;8;10;10
|
||||
10;8;12;11
|
||||
10;8;14;11
|
||||
10;8;19;30
|
||||
10;8;26;27
|
||||
10;8;28;26
|
||||
10;8;31;31
|
||||
10;8;32;32
|
||||
10;8;37;33
|
||||
10;8;38;34
|
||||
10;8;39;35
|
||||
10;9;0;0
|
||||
10;9;1;1
|
||||
10;9;2;2
|
||||
10;9;3;3
|
||||
10;9;4;4
|
||||
10;9;5;5
|
||||
10;9;6;6
|
||||
10;9;7;7
|
||||
10;9;8;8
|
||||
10;9;10;10
|
||||
10;9;12;11
|
||||
10;9;14;11
|
||||
10;9;19;30
|
||||
10;9;26;27
|
||||
10;9;28;26
|
||||
10;9;31;31
|
||||
10;9;32;32
|
||||
10;9;37;33
|
||||
10;9;38;34
|
||||
10;9;39;35
|
||||
10;10;0;0
|
||||
10;10;1;1
|
||||
10;10;2;2
|
||||
10;10;3;3
|
||||
10;10;4;4
|
||||
10;10;5;5
|
||||
10;10;6;6
|
||||
10;10;7;7
|
||||
10;10;8;8
|
||||
10;10;9;9
|
||||
10;10;12;11
|
||||
10;10;14;11
|
||||
10;10;19;30
|
||||
10;10;26;27
|
||||
10;10;28;26
|
||||
10;10;31;31
|
||||
10;10;32;32
|
||||
10;10;37;33
|
||||
10;10;38;34
|
||||
10;10;39;35
|
||||
10;11;0;0
|
||||
10;11;1;1
|
||||
10;11;2;2
|
||||
10;11;3;3
|
||||
10;11;4;4
|
||||
10;11;5;5
|
||||
10;11;6;6
|
||||
10;11;7;7
|
||||
10;11;8;8
|
||||
10;11;9;9
|
||||
10;11;10;10
|
||||
10;11;15;12
|
||||
10;11;16;13
|
||||
10;11;17;14
|
||||
10;11;18;15
|
||||
10;11;19;30
|
||||
10;11;20;14
|
||||
10;11;21;13
|
||||
10;11;22;14
|
||||
10;11;23;23
|
||||
10;11;24;24
|
||||
10;11;25;25
|
||||
10;11;26;27
|
||||
10;11;29;28
|
||||
10;11;30;29
|
||||
10;11;31;31
|
||||
10;11;32;32
|
||||
10;11;33;15
|
||||
10;11;35;13
|
||||
10;11;36;14
|
||||
10;11;37;33
|
||||
10;11;38;34
|
||||
10;11;39;35
|
||||
10;12;0;0
|
||||
10;12;1;1
|
||||
10;12;2;2
|
||||
10;12;3;3
|
||||
10;12;4;4
|
||||
10;12;5;5
|
||||
10;12;6;6
|
||||
10;12;7;7
|
||||
10;12;8;8
|
||||
10;12;9;9
|
||||
10;12;10;10
|
||||
10;12;12;11
|
||||
10;12;14;11
|
||||
10;12;16;13
|
||||
10;12;17;14
|
||||
10;12;18;15
|
||||
10;12;19;30
|
||||
10;12;20;14
|
||||
10;12;21;13
|
||||
10;12;22;14
|
||||
10;12;23;23
|
||||
10;12;24;24
|
||||
10;12;25;25
|
||||
10;12;26;27
|
||||
10;12;28;26
|
||||
10;12;29;28
|
||||
10;12;30;29
|
||||
10;12;31;31
|
||||
10;12;32;32
|
||||
10;12;33;15
|
||||
10;12;35;13
|
||||
10;12;36;14
|
||||
10;12;37;33
|
||||
10;12;38;34
|
||||
10;12;39;35
|
||||
10;13;0;0
|
||||
10;13;1;1
|
||||
10;13;2;2
|
||||
10;13;3;3
|
||||
10;13;4;4
|
||||
10;13;5;5
|
||||
10;13;6;6
|
||||
10;13;7;7
|
||||
10;13;8;8
|
||||
10;13;9;9
|
||||
10;13;10;10
|
||||
10;13;12;11
|
||||
10;13;14;11
|
||||
10;13;15;12
|
||||
10;13;17;14
|
||||
10;13;18;15
|
||||
10;13;19;30
|
||||
10;13;20;14
|
||||
10;13;22;14
|
||||
10;13;23;23
|
||||
10;13;24;24
|
||||
10;13;25;25
|
||||
10;13;26;27
|
||||
10;13;27;12
|
||||
10;13;28;26
|
||||
10;13;29;28
|
||||
10;13;30;29
|
||||
10;13;31;31
|
||||
10;13;32;32
|
||||
10;13;33;15
|
||||
10;13;36;14
|
||||
10;13;37;33
|
||||
10;13;38;34
|
||||
10;13;39;35
|
||||
10;14;0;0
|
||||
10;14;1;1
|
||||
10;14;2;2
|
||||
10;14;3;3
|
||||
10;14;4;4
|
||||
10;14;5;5
|
||||
10;14;6;6
|
||||
10;14;7;7
|
||||
10;14;8;8
|
||||
10;14;9;9
|
||||
10;14;10;10
|
||||
10;14;12;11
|
||||
10;14;14;11
|
||||
10;14;15;12
|
||||
10;14;16;13
|
||||
10;14;18;15
|
||||
10;14;19;30
|
||||
10;14;21;13
|
||||
10;14;23;23
|
||||
10;14;24;24
|
||||
10;14;25;25
|
||||
10;14;26;27
|
||||
10;14;28;26
|
||||
10;14;29;28
|
||||
10;14;30;29
|
||||
10;14;31;31
|
||||
10;14;32;32
|
||||
10;14;33;15
|
||||
10;14;35;13
|
||||
10;14;37;33
|
||||
10;14;38;34
|
||||
10;14;39;35
|
||||
10;15;0;0
|
||||
10;15;1;1
|
||||
10;15;2;2
|
||||
10;15;3;3
|
||||
10;15;4;4
|
||||
10;15;5;5
|
||||
10;15;6;6
|
||||
10;15;7;7
|
||||
10;15;8;8
|
||||
10;15;9;9
|
||||
10;15;10;10
|
||||
10;15;12;11
|
||||
10;15;14;11
|
||||
10;15;15;12
|
||||
10;15;16;13
|
||||
10;15;17;14
|
||||
10;15;19;30
|
||||
10;15;20;14
|
||||
10;15;21;13
|
||||
10;15;22;14
|
||||
10;15;23;23
|
||||
10;15;24;24
|
||||
10;15;25;25
|
||||
10;15;26;27
|
||||
10;15;28;26
|
||||
10;15;29;28
|
||||
10;15;30;29
|
||||
10;15;31;31
|
||||
10;15;32;32
|
||||
10;15;35;13
|
||||
10;15;36;14
|
||||
10;15;37;33
|
||||
10;15;38;34
|
||||
10;15;39;35
|
||||
10;23;0;0
|
||||
10;23;1;1
|
||||
10;23;2;2
|
||||
10;23;3;3
|
||||
10;23;4;4
|
||||
10;23;5;5
|
||||
10;23;6;6
|
||||
10;23;7;7
|
||||
10;23;8;8
|
||||
10;23;9;9
|
||||
10;23;10;10
|
||||
10;23;12;11
|
||||
10;23;14;11
|
||||
10;23;15;12
|
||||
10;23;16;13
|
||||
10;23;17;14
|
||||
10;23;18;15
|
||||
10;23;19;30
|
||||
10;23;20;14
|
||||
10;23;21;13
|
||||
10;23;22;14
|
||||
10;23;24;24
|
||||
10;23;25;25
|
||||
10;23;26;27
|
||||
10;23;28;26
|
||||
10;23;29;28
|
||||
10;23;30;29
|
||||
10;23;31;31
|
||||
10;23;32;32
|
||||
10;23;33;15
|
||||
10;23;35;13
|
||||
10;23;36;14
|
||||
10;23;37;33
|
||||
10;23;38;34
|
||||
10;23;39;35
|
||||
10;24;0;0
|
||||
10;24;1;1
|
||||
10;24;2;2
|
||||
10;24;3;3
|
||||
10;24;4;4
|
||||
10;24;5;5
|
||||
10;24;6;6
|
||||
10;24;7;7
|
||||
10;24;8;8
|
||||
10;24;9;9
|
||||
10;24;10;10
|
||||
10;24;12;11
|
||||
10;24;14;11
|
||||
10;24;15;12
|
||||
10;24;16;13
|
||||
10;24;17;14
|
||||
10;24;18;15
|
||||
10;24;19;30
|
||||
10;24;20;14
|
||||
10;24;21;13
|
||||
10;24;22;14
|
||||
10;24;23;23
|
||||
10;24;25;25
|
||||
10;24;26;27
|
||||
10;24;28;26
|
||||
10;24;29;28
|
||||
10;24;30;29
|
||||
10;24;31;31
|
||||
10;24;32;32
|
||||
10;24;33;15
|
||||
10;24;35;13
|
||||
10;24;36;14
|
||||
10;24;37;33
|
||||
10;24;38;34
|
||||
10;24;39;35
|
||||
10;25;0;0
|
||||
10;25;1;1
|
||||
10;25;2;2
|
||||
10;25;3;3
|
||||
10;25;4;4
|
||||
10;25;5;5
|
||||
10;25;6;6
|
||||
10;25;7;7
|
||||
10;25;8;8
|
||||
10;25;9;9
|
||||
10;25;10;10
|
||||
10;25;12;11
|
||||
10;25;14;11
|
||||
10;25;16;13
|
||||
10;25;17;14
|
||||
10;25;18;15
|
||||
10;25;19;30
|
||||
10;25;20;14
|
||||
10;25;21;13
|
||||
10;25;22;14
|
||||
10;25;23;23
|
||||
10;25;24;24
|
||||
10;25;26;27
|
||||
10;25;28;26
|
||||
10;25;29;28
|
||||
10;25;30;29
|
||||
10;25;31;31
|
||||
10;25;32;32
|
||||
10;25;33;15
|
||||
10;25;35;13
|
||||
10;25;36;14
|
||||
10;25;37;33
|
||||
10;25;38;34
|
||||
10;25;39;35
|
||||
10;26;0;0
|
||||
10;26;1;1
|
||||
10;26;2;2
|
||||
10;26;3;3
|
||||
10;26;4;4
|
||||
10;26;5;5
|
||||
10;26;6;6
|
||||
10;26;7;7
|
||||
10;26;8;8
|
||||
10;26;9;9
|
||||
10;26;10;10
|
||||
10;26;12;11
|
||||
10;26;14;11
|
||||
10;26;15;12
|
||||
10;26;16;13
|
||||
10;26;17;14
|
||||
10;26;18;15
|
||||
10;26;19;30
|
||||
10;26;20;14
|
||||
10;26;21;13
|
||||
10;26;22;14
|
||||
10;26;23;23
|
||||
10;26;24;24
|
||||
10;26;25;25
|
||||
10;26;26;27
|
||||
10;26;29;28
|
||||
10;26;30;29
|
||||
10;26;31;31
|
||||
10;26;32;32
|
||||
10;26;33;15
|
||||
10;26;35;13
|
||||
10;26;36;14
|
||||
10;26;37;33
|
||||
10;26;38;34
|
||||
10;26;39;35
|
||||
10;27;0;0
|
||||
10;27;1;1
|
||||
10;27;2;2
|
||||
10;27;3;3
|
||||
10;27;4;4
|
||||
10;27;5;5
|
||||
10;27;6;6
|
||||
10;27;7;7
|
||||
10;27;8;8
|
||||
10;27;9;9
|
||||
10;27;10;10
|
||||
10;27;12;11
|
||||
10;27;14;11
|
||||
10;27;19;30
|
||||
10;27;28;26
|
||||
10;27;31;31
|
||||
10;27;32;32
|
||||
10;27;37;33
|
||||
10;27;38;34
|
||||
10;27;39;35
|
||||
10;28;0;0
|
||||
10;28;1;1
|
||||
10;28;2;2
|
||||
10;28;3;3
|
||||
10;28;4;4
|
||||
10;28;5;5
|
||||
10;28;6;6
|
||||
10;28;7;7
|
||||
10;28;8;8
|
||||
10;28;9;9
|
||||
10;28;10;10
|
||||
10;28;12;11
|
||||
10;28;14;11
|
||||
10;28;16;13
|
||||
10;28;19;30
|
||||
10;28;26;27
|
||||
10;28;31;31
|
||||
10;28;32;32
|
||||
10;28;37;33
|
||||
10;28;38;34
|
||||
10;28;39;35
|
||||
10;29;0;0
|
||||
10;29;1;1
|
||||
10;29;2;2
|
||||
10;29;3;3
|
||||
10;29;4;4
|
||||
10;29;5;5
|
||||
10;29;6;6
|
||||
10;29;7;7
|
||||
10;29;8;8
|
||||
10;29;9;9
|
||||
10;29;10;10
|
||||
10;29;12;11
|
||||
10;29;14;11
|
||||
10;29;16;13
|
||||
10;29;19;30
|
||||
10;29;26;27
|
||||
10;29;31;31
|
||||
10;29;32;32
|
||||
10;29;37;33
|
||||
10;29;38;34
|
||||
10;29;39;35
|
||||
10;30;0;0
|
||||
10;30;1;1
|
||||
10;30;2;2
|
||||
10;30;3;3
|
||||
10;30;4;4
|
||||
10;30;5;5
|
||||
10;30;6;6
|
||||
10;30;7;7
|
||||
10;30;8;8
|
||||
10;30;9;9
|
||||
10;30;10;10
|
||||
10;30;12;11
|
||||
10;30;14;11
|
||||
10;30;26;27
|
||||
10;30;31;31
|
||||
10;30;32;32
|
||||
10;30;37;33
|
||||
10;30;38;34
|
||||
10;30;39;35
|
||||
10;31;0;0
|
||||
10;31;1;1
|
||||
10;31;2;2
|
||||
10;31;3;3
|
||||
10;31;4;4
|
||||
10;31;5;5
|
||||
10;31;6;6
|
||||
10;31;7;7
|
||||
10;31;8;8
|
||||
10;31;9;9
|
||||
10;31;10;10
|
||||
10;31;12;11
|
||||
10;31;14;11
|
||||
10;31;19;30
|
||||
10;31;26;27
|
||||
10;31;28;26
|
||||
10;31;32;32
|
||||
10;31;37;33
|
||||
10;31;38;34
|
||||
10;31;39;35
|
||||
10;32;0;0
|
||||
10;32;1;1
|
||||
10;32;2;2
|
||||
10;32;3;3
|
||||
10;32;4;4
|
||||
10;32;5;5
|
||||
10;32;6;6
|
||||
10;32;7;7
|
||||
10;32;8;8
|
||||
10;32;9;9
|
||||
10;32;10;10
|
||||
10;32;12;11
|
||||
10;32;14;11
|
||||
10;32;19;30
|
||||
10;32;26;27
|
||||
10;32;28;26
|
||||
10;32;31;31
|
||||
10;32;37;33
|
||||
10;32;38;34
|
||||
10;32;39;35
|
||||
10;33;0;0
|
||||
10;33;1;1
|
||||
10;33;2;2
|
||||
10;33;3;3
|
||||
10;33;4;4
|
||||
10;33;5;5
|
||||
10;33;6;6
|
||||
10;33;7;7
|
||||
10;33;8;8
|
||||
10;33;9;9
|
||||
10;33;10;10
|
||||
10;33;12;11
|
||||
10;33;14;11
|
||||
10;33;19;30
|
||||
10;33;26;27
|
||||
10;33;28;26
|
||||
10;33;31;31
|
||||
10;33;32;32
|
||||
10;33;38;34
|
||||
10;33;39;35
|
||||
10;34;0;0
|
||||
10;34;1;1
|
||||
10;34;2;2
|
||||
10;34;3;3
|
||||
10;34;4;4
|
||||
10;34;5;5
|
||||
10;34;6;6
|
||||
10;34;7;7
|
||||
10;34;8;8
|
||||
10;34;9;9
|
||||
10;34;10;10
|
||||
10;34;12;11
|
||||
10;34;14;11
|
||||
10;34;19;30
|
||||
10;34;26;27
|
||||
10;34;28;26
|
||||
10;34;31;31
|
||||
10;34;32;32
|
||||
10;34;37;33
|
||||
10;34;39;35
|
||||
10;35;0;0
|
||||
10;35;1;1
|
||||
10;35;2;2
|
||||
10;35;3;3
|
||||
10;35;4;4
|
||||
10;35;5;5
|
||||
10;35;6;6
|
||||
10;35;7;7
|
||||
10;35;8;8
|
||||
10;35;9;9
|
||||
10;35;10;10
|
||||
10;35;12;11
|
||||
10;35;14;11
|
||||
10;35;19;30
|
||||
10;35;26;27
|
||||
10;35;28;26
|
||||
10;35;31;31
|
||||
10;35;32;32
|
||||
10;35;37;33
|
||||
10;35;38;34
|
||||
10;49;0;0
|
||||
10;49;1;1
|
||||
10;49;2;2
|
||||
10;49;3;3
|
||||
10;49;4;4
|
||||
10;49;5;5
|
||||
10;49;6;6
|
||||
10;49;7;7
|
||||
10;49;8;8
|
||||
10;49;9;9
|
||||
10;49;10;10
|
||||
10;49;12;11
|
||||
10;49;14;11
|
||||
10;49;19;30
|
||||
10;49;26;27
|
||||
10;49;31;31
|
||||
10;49;32;32
|
||||
10;49;37;33
|
||||
10;49;38;34
|
||||
10;49;39;35
|
||||
10;50;0;0
|
||||
10;50;1;1
|
||||
10;50;2;2
|
||||
10;50;3;3
|
||||
10;50;4;4
|
||||
10;50;5;5
|
||||
10;50;6;6
|
||||
10;50;7;7
|
||||
10;50;8;8
|
||||
10;50;9;9
|
||||
10;50;10;10
|
||||
10;50;12;11
|
||||
10;50;14;11
|
||||
10;50;19;30
|
||||
10;50;26;27
|
||||
10;50;31;31
|
||||
10;50;32;32
|
||||
10;50;37;33
|
||||
10;50;38;34
|
||||
10;50;39;35
|
||||
|
@@ -0,0 +1,835 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;0;0;0
|
||||
12;0;1;13
|
||||
12;0;2;2
|
||||
12;0;3;3
|
||||
12;0;4;4
|
||||
12;0;5;5
|
||||
12;0;6;6
|
||||
12;0;7;7
|
||||
12;0;8;8
|
||||
12;0;9;9
|
||||
12;0;10;10
|
||||
12;0;12;11
|
||||
12;0;14;11
|
||||
12;0;19;30
|
||||
12;0;26;27
|
||||
12;0;31;31
|
||||
12;0;32;32
|
||||
12;0;37;33
|
||||
12;0;38;34
|
||||
12;0;39;35
|
||||
12;0;40;34
|
||||
12;0;49;49
|
||||
12;0;50;50
|
||||
12;2;0;0
|
||||
12;2;1;13
|
||||
12;2;2;2
|
||||
12;2;3;3
|
||||
12;2;4;4
|
||||
12;2;5;5
|
||||
12;2;6;6
|
||||
12;2;7;7
|
||||
12;2;8;8
|
||||
12;2;9;9
|
||||
12;2;10;10
|
||||
12;2;12;11
|
||||
12;2;14;11
|
||||
12;2;19;30
|
||||
12;2;26;27
|
||||
12;2;28;26
|
||||
12;2;31;31
|
||||
12;2;32;32
|
||||
12;2;37;33
|
||||
12;2;38;34
|
||||
12;2;39;35
|
||||
12;2;40;34
|
||||
12;2;49;49
|
||||
12;2;50;50
|
||||
12;3;0;0
|
||||
12;3;1;13
|
||||
12;3;2;2
|
||||
12;3;3;3
|
||||
12;3;4;4
|
||||
12;3;5;5
|
||||
12;3;6;6
|
||||
12;3;7;7
|
||||
12;3;8;8
|
||||
12;3;9;9
|
||||
12;3;10;10
|
||||
12;3;12;11
|
||||
12;3;14;11
|
||||
12;3;19;30
|
||||
12;3;26;27
|
||||
12;3;28;26
|
||||
12;3;31;31
|
||||
12;3;32;32
|
||||
12;3;37;33
|
||||
12;3;38;34
|
||||
12;3;39;35
|
||||
12;3;40;34
|
||||
12;3;49;49
|
||||
12;3;50;50
|
||||
12;4;0;0
|
||||
12;4;1;13
|
||||
12;4;2;2
|
||||
12;4;3;3
|
||||
12;4;4;4
|
||||
12;4;5;5
|
||||
12;4;6;6
|
||||
12;4;7;7
|
||||
12;4;8;8
|
||||
12;4;9;9
|
||||
12;4;10;10
|
||||
12;4;12;11
|
||||
12;4;14;11
|
||||
12;4;19;30
|
||||
12;4;26;27
|
||||
12;4;28;26
|
||||
12;4;31;31
|
||||
12;4;32;32
|
||||
12;4;37;33
|
||||
12;4;38;34
|
||||
12;4;39;35
|
||||
12;4;40;34
|
||||
12;4;49;49
|
||||
12;4;50;50
|
||||
12;5;0;0
|
||||
12;5;1;13
|
||||
12;5;2;2
|
||||
12;5;3;3
|
||||
12;5;4;4
|
||||
12;5;5;5
|
||||
12;5;6;6
|
||||
12;5;7;7
|
||||
12;5;8;8
|
||||
12;5;9;9
|
||||
12;5;10;10
|
||||
12;5;12;11
|
||||
12;5;14;11
|
||||
12;5;19;30
|
||||
12;5;26;27
|
||||
12;5;28;26
|
||||
12;5;31;31
|
||||
12;5;32;32
|
||||
12;5;37;33
|
||||
12;5;38;34
|
||||
12;5;39;35
|
||||
12;5;40;34
|
||||
12;5;49;49
|
||||
12;5;50;50
|
||||
12;6;0;0
|
||||
12;6;1;13
|
||||
12;6;2;2
|
||||
12;6;3;3
|
||||
12;6;4;4
|
||||
12;6;5;5
|
||||
12;6;6;6
|
||||
12;6;7;7
|
||||
12;6;8;8
|
||||
12;6;9;9
|
||||
12;6;10;10
|
||||
12;6;12;11
|
||||
12;6;14;11
|
||||
12;6;19;30
|
||||
12;6;26;27
|
||||
12;6;28;26
|
||||
12;6;31;31
|
||||
12;6;32;32
|
||||
12;6;37;33
|
||||
12;6;38;34
|
||||
12;6;39;35
|
||||
12;6;40;34
|
||||
12;6;49;49
|
||||
12;6;50;50
|
||||
12;7;0;0
|
||||
12;7;1;13
|
||||
12;7;2;2
|
||||
12;7;3;3
|
||||
12;7;4;4
|
||||
12;7;5;5
|
||||
12;7;6;6
|
||||
12;7;7;7
|
||||
12;7;8;8
|
||||
12;7;9;9
|
||||
12;7;10;10
|
||||
12;7;12;11
|
||||
12;7;14;11
|
||||
12;7;19;30
|
||||
12;7;26;27
|
||||
12;7;28;26
|
||||
12;7;31;31
|
||||
12;7;32;32
|
||||
12;7;37;33
|
||||
12;7;38;34
|
||||
12;7;39;35
|
||||
12;7;40;34
|
||||
12;7;49;49
|
||||
12;7;50;50
|
||||
12;8;0;0
|
||||
12;8;1;13
|
||||
12;8;2;2
|
||||
12;8;3;3
|
||||
12;8;4;4
|
||||
12;8;5;5
|
||||
12;8;6;6
|
||||
12;8;7;7
|
||||
12;8;8;8
|
||||
12;8;9;9
|
||||
12;8;10;10
|
||||
12;8;12;11
|
||||
12;8;14;11
|
||||
12;8;19;30
|
||||
12;8;26;27
|
||||
12;8;28;26
|
||||
12;8;31;31
|
||||
12;8;32;32
|
||||
12;8;37;33
|
||||
12;8;38;34
|
||||
12;8;39;35
|
||||
12;8;40;34
|
||||
12;8;49;49
|
||||
12;8;50;50
|
||||
12;9;0;0
|
||||
12;9;1;13
|
||||
12;9;2;2
|
||||
12;9;3;3
|
||||
12;9;4;4
|
||||
12;9;5;5
|
||||
12;9;6;6
|
||||
12;9;7;7
|
||||
12;9;8;8
|
||||
12;9;9;9
|
||||
12;9;10;10
|
||||
12;9;12;11
|
||||
12;9;14;11
|
||||
12;9;19;30
|
||||
12;9;26;27
|
||||
12;9;28;26
|
||||
12;9;31;31
|
||||
12;9;32;32
|
||||
12;9;37;33
|
||||
12;9;38;34
|
||||
12;9;39;35
|
||||
12;9;40;34
|
||||
12;9;49;49
|
||||
12;9;50;50
|
||||
12;10;0;0
|
||||
12;10;1;13
|
||||
12;10;2;2
|
||||
12;10;3;3
|
||||
12;10;4;4
|
||||
12;10;5;5
|
||||
12;10;6;6
|
||||
12;10;7;7
|
||||
12;10;8;8
|
||||
12;10;9;9
|
||||
12;10;10;10
|
||||
12;10;12;11
|
||||
12;10;14;11
|
||||
12;10;19;30
|
||||
12;10;26;27
|
||||
12;10;28;26
|
||||
12;10;31;31
|
||||
12;10;32;32
|
||||
12;10;37;33
|
||||
12;10;38;34
|
||||
12;10;39;35
|
||||
12;10;40;34
|
||||
12;10;49;49
|
||||
12;10;50;50
|
||||
12;11;0;0
|
||||
12;11;1;13
|
||||
12;11;2;2
|
||||
12;11;3;3
|
||||
12;11;4;4
|
||||
12;11;5;5
|
||||
12;11;6;6
|
||||
12;11;7;7
|
||||
12;11;8;8
|
||||
12;11;9;9
|
||||
12;11;10;10
|
||||
12;11;12;11
|
||||
12;11;14;11
|
||||
12;11;15;12
|
||||
12;11;16;13
|
||||
12;11;17;14
|
||||
12;11;18;15
|
||||
12;11;19;30
|
||||
12;11;20;14
|
||||
12;11;21;13
|
||||
12;11;22;14
|
||||
12;11;23;23
|
||||
12;11;24;24
|
||||
12;11;25;25
|
||||
12;11;26;27
|
||||
12;11;29;28
|
||||
12;11;30;29
|
||||
12;11;31;31
|
||||
12;11;32;32
|
||||
12;11;33;15
|
||||
12;11;36;14
|
||||
12;11;37;33
|
||||
12;11;38;34
|
||||
12;11;39;35
|
||||
12;11;40;34
|
||||
12;11;49;49
|
||||
12;11;50;50
|
||||
12;12;0;0
|
||||
12;12;1;13
|
||||
12;12;2;2
|
||||
12;12;3;3
|
||||
12;12;4;4
|
||||
12;12;5;5
|
||||
12;12;6;6
|
||||
12;12;7;7
|
||||
12;12;8;8
|
||||
12;12;9;9
|
||||
12;12;10;10
|
||||
12;12;12;11
|
||||
12;12;14;11
|
||||
12;12;16;13
|
||||
12;12;17;12
|
||||
12;12;18;15
|
||||
12;12;19;30
|
||||
12;12;20;12
|
||||
12;12;21;13
|
||||
12;12;22;12
|
||||
12;12;23;23
|
||||
12;12;24;24
|
||||
12;12;25;25
|
||||
12;12;26;27
|
||||
12;12;28;26
|
||||
12;12;29;28
|
||||
12;12;30;29
|
||||
12;12;31;31
|
||||
12;12;32;32
|
||||
12;12;33;15
|
||||
12;12;36;12
|
||||
12;12;37;33
|
||||
12;12;38;34
|
||||
12;12;39;35
|
||||
12;12;40;34
|
||||
12;12;49;49
|
||||
12;12;50;50
|
||||
12;13;0;0
|
||||
12;13;1;13
|
||||
12;13;2;2
|
||||
12;13;3;3
|
||||
12;13;4;4
|
||||
12;13;5;5
|
||||
12;13;6;6
|
||||
12;13;7;7
|
||||
12;13;8;8
|
||||
12;13;9;9
|
||||
12;13;10;10
|
||||
12;13;12;11
|
||||
12;13;14;11
|
||||
12;13;15;12
|
||||
12;13;17;13
|
||||
12;13;18;15
|
||||
12;13;19;30
|
||||
12;13;20;13
|
||||
12;13;22;13
|
||||
12;13;23;23
|
||||
12;13;24;24
|
||||
12;13;25;25
|
||||
12;13;26;27
|
||||
12;13;27;12
|
||||
12;13;28;26
|
||||
12;13;29;28
|
||||
12;13;30;29
|
||||
12;13;31;31
|
||||
12;13;32;32
|
||||
12;13;33;15
|
||||
12;13;36;13
|
||||
12;13;37;33
|
||||
12;13;38;34
|
||||
12;13;39;35
|
||||
12;13;40;34
|
||||
12;13;49;49
|
||||
12;13;50;50
|
||||
12;14;0;0
|
||||
12;14;1;13
|
||||
12;14;2;2
|
||||
12;14;3;3
|
||||
12;14;4;4
|
||||
12;14;5;5
|
||||
12;14;6;6
|
||||
12;14;7;7
|
||||
12;14;8;8
|
||||
12;14;9;9
|
||||
12;14;10;10
|
||||
12;14;12;11
|
||||
12;14;14;11
|
||||
12;14;15;12
|
||||
12;14;16;13
|
||||
12;14;18;15
|
||||
12;14;19;30
|
||||
12;14;21;13
|
||||
12;14;23;23
|
||||
12;14;24;24
|
||||
12;14;25;25
|
||||
12;14;26;27
|
||||
12;14;28;26
|
||||
12;14;29;28
|
||||
12;14;30;29
|
||||
12;14;31;31
|
||||
12;14;32;32
|
||||
12;14;33;15
|
||||
12;14;37;33
|
||||
12;14;38;34
|
||||
12;14;39;35
|
||||
12;14;40;34
|
||||
12;14;49;49
|
||||
12;14;50;50
|
||||
12;15;0;0
|
||||
12;15;1;13
|
||||
12;15;2;2
|
||||
12;15;3;3
|
||||
12;15;4;4
|
||||
12;15;5;5
|
||||
12;15;6;6
|
||||
12;15;7;7
|
||||
12;15;8;8
|
||||
12;15;9;9
|
||||
12;15;10;10
|
||||
12;15;12;11
|
||||
12;15;14;11
|
||||
12;15;15;12
|
||||
12;15;16;13
|
||||
12;15;17;15
|
||||
12;15;19;30
|
||||
12;15;20;15
|
||||
12;15;21;13
|
||||
12;15;22;15
|
||||
12;15;23;23
|
||||
12;15;24;24
|
||||
12;15;25;25
|
||||
12;15;26;27
|
||||
12;15;28;26
|
||||
12;15;29;28
|
||||
12;15;30;29
|
||||
12;15;31;31
|
||||
12;15;32;32
|
||||
12;15;36;15
|
||||
12;15;37;33
|
||||
12;15;38;34
|
||||
12;15;39;35
|
||||
12;15;40;34
|
||||
12;15;49;49
|
||||
12;15;50;50
|
||||
12;23;0;0
|
||||
12;23;1;13
|
||||
12;23;2;2
|
||||
12;23;3;3
|
||||
12;23;4;4
|
||||
12;23;5;5
|
||||
12;23;6;6
|
||||
12;23;7;7
|
||||
12;23;8;8
|
||||
12;23;9;9
|
||||
12;23;10;10
|
||||
12;23;12;11
|
||||
12;23;14;11
|
||||
12;23;15;12
|
||||
12;23;16;13
|
||||
12;23;17;14
|
||||
12;23;18;15
|
||||
12;23;19;30
|
||||
12;23;20;14
|
||||
12;23;21;13
|
||||
12;23;22;14
|
||||
12;23;24;24
|
||||
12;23;25;25
|
||||
12;23;26;27
|
||||
12;23;28;26
|
||||
12;23;29;28
|
||||
12;23;30;29
|
||||
12;23;31;31
|
||||
12;23;32;32
|
||||
12;23;33;15
|
||||
12;23;36;14
|
||||
12;23;37;33
|
||||
12;23;38;34
|
||||
12;23;39;35
|
||||
12;23;40;34
|
||||
12;23;49;49
|
||||
12;23;50;50
|
||||
12;24;0;0
|
||||
12;24;1;13
|
||||
12;24;2;2
|
||||
12;24;3;3
|
||||
12;24;4;4
|
||||
12;24;5;5
|
||||
12;24;6;6
|
||||
12;24;7;7
|
||||
12;24;8;8
|
||||
12;24;9;9
|
||||
12;24;10;10
|
||||
12;24;12;11
|
||||
12;24;14;11
|
||||
12;24;15;12
|
||||
12;24;16;13
|
||||
12;24;17;24
|
||||
12;24;18;15
|
||||
12;24;19;30
|
||||
12;24;20;24
|
||||
12;24;21;13
|
||||
12;24;22;24
|
||||
12;24;23;23
|
||||
12;24;25;25
|
||||
12;24;26;27
|
||||
12;24;28;26
|
||||
12;24;29;28
|
||||
12;24;30;29
|
||||
12;24;31;31
|
||||
12;24;32;32
|
||||
12;24;33;15
|
||||
12;24;36;24
|
||||
12;24;37;33
|
||||
12;24;38;34
|
||||
12;24;39;35
|
||||
12;24;40;34
|
||||
12;24;49;49
|
||||
12;24;50;50
|
||||
12;25;0;0
|
||||
12;25;1;13
|
||||
12;25;2;2
|
||||
12;25;3;3
|
||||
12;25;4;4
|
||||
12;25;5;5
|
||||
12;25;6;6
|
||||
12;25;7;7
|
||||
12;25;8;8
|
||||
12;25;9;9
|
||||
12;25;10;10
|
||||
12;25;12;11
|
||||
12;25;14;11
|
||||
12;25;16;13
|
||||
12;25;17;14
|
||||
12;25;18;15
|
||||
12;25;19;30
|
||||
12;25;20;14
|
||||
12;25;21;13
|
||||
12;25;22;14
|
||||
12;25;23;23
|
||||
12;25;24;24
|
||||
12;25;26;27
|
||||
12;25;28;26
|
||||
12;25;29;28
|
||||
12;25;30;29
|
||||
12;25;31;31
|
||||
12;25;32;32
|
||||
12;25;33;15
|
||||
12;25;36;14
|
||||
12;25;37;33
|
||||
12;25;38;34
|
||||
12;25;39;35
|
||||
12;25;40;34
|
||||
12;25;49;49
|
||||
12;25;50;50
|
||||
12;26;0;0
|
||||
12;26;1;13
|
||||
12;26;2;2
|
||||
12;26;3;3
|
||||
12;26;4;4
|
||||
12;26;5;5
|
||||
12;26;6;6
|
||||
12;26;7;7
|
||||
12;26;8;8
|
||||
12;26;9;9
|
||||
12;26;10;10
|
||||
12;26;12;11
|
||||
12;26;14;11
|
||||
12;26;15;12
|
||||
12;26;16;13
|
||||
12;26;17;14
|
||||
12;26;18;15
|
||||
12;26;19;30
|
||||
12;26;20;14
|
||||
12;26;21;13
|
||||
12;26;22;14
|
||||
12;26;23;23
|
||||
12;26;24;24
|
||||
12;26;25;25
|
||||
12;26;26;27
|
||||
12;26;29;28
|
||||
12;26;30;29
|
||||
12;26;31;31
|
||||
12;26;32;32
|
||||
12;26;33;15
|
||||
12;26;36;14
|
||||
12;26;37;33
|
||||
12;26;38;34
|
||||
12;26;39;35
|
||||
12;26;40;34
|
||||
12;26;49;49
|
||||
12;26;50;50
|
||||
12;27;0;0
|
||||
12;27;1;13
|
||||
12;27;2;2
|
||||
12;27;3;3
|
||||
12;27;4;4
|
||||
12;27;5;5
|
||||
12;27;6;6
|
||||
12;27;7;7
|
||||
12;27;8;8
|
||||
12;27;9;9
|
||||
12;27;10;10
|
||||
12;27;12;11
|
||||
12;27;14;11
|
||||
12;27;19;30
|
||||
12;27;26;27
|
||||
12;27;28;26
|
||||
12;27;31;31
|
||||
12;27;32;32
|
||||
12;27;37;33
|
||||
12;27;38;34
|
||||
12;27;39;35
|
||||
12;27;40;34
|
||||
12;27;49;49
|
||||
12;27;50;50
|
||||
12;28;0;0
|
||||
12;28;1;13
|
||||
12;28;2;2
|
||||
12;28;3;3
|
||||
12;28;4;4
|
||||
12;28;5;5
|
||||
12;28;6;6
|
||||
12;28;7;7
|
||||
12;28;8;8
|
||||
12;28;9;9
|
||||
12;28;10;10
|
||||
12;28;12;11
|
||||
12;28;14;11
|
||||
12;28;16;13
|
||||
12;28;19;30
|
||||
12;28;26;27
|
||||
12;28;31;31
|
||||
12;28;32;32
|
||||
12;28;37;33
|
||||
12;28;38;34
|
||||
12;28;39;35
|
||||
12;28;40;34
|
||||
12;28;49;49
|
||||
12;28;50;50
|
||||
12;29;0;0
|
||||
12;29;1;13
|
||||
12;29;2;2
|
||||
12;29;3;3
|
||||
12;29;4;4
|
||||
12;29;5;5
|
||||
12;29;6;6
|
||||
12;29;7;7
|
||||
12;29;8;8
|
||||
12;29;9;9
|
||||
12;29;10;10
|
||||
12;29;12;11
|
||||
12;29;14;11
|
||||
12;29;16;13
|
||||
12;29;19;30
|
||||
12;29;24;24
|
||||
12;29;26;27
|
||||
12;29;31;31
|
||||
12;29;32;32
|
||||
12;29;37;33
|
||||
12;29;38;34
|
||||
12;29;39;35
|
||||
12;29;40;34
|
||||
12;29;49;49
|
||||
12;29;50;50
|
||||
12;30;0;0
|
||||
12;30;1;13
|
||||
12;30;2;2
|
||||
12;30;3;3
|
||||
12;30;4;4
|
||||
12;30;5;5
|
||||
12;30;6;6
|
||||
12;30;7;7
|
||||
12;30;8;8
|
||||
12;30;9;9
|
||||
12;30;10;10
|
||||
12;30;12;11
|
||||
12;30;14;11
|
||||
12;30;19;30
|
||||
12;30;26;27
|
||||
12;30;31;31
|
||||
12;30;32;32
|
||||
12;30;37;33
|
||||
12;30;38;34
|
||||
12;30;39;35
|
||||
12;30;40;34
|
||||
12;30;49;49
|
||||
12;30;50;50
|
||||
12;31;0;0
|
||||
12;31;1;13
|
||||
12;31;2;2
|
||||
12;31;3;3
|
||||
12;31;4;4
|
||||
12;31;5;5
|
||||
12;31;6;6
|
||||
12;31;7;7
|
||||
12;31;8;8
|
||||
12;31;9;9
|
||||
12;31;10;10
|
||||
12;31;12;11
|
||||
12;31;14;11
|
||||
12;31;19;30
|
||||
12;31;26;27
|
||||
12;31;28;26
|
||||
12;31;31;31
|
||||
12;31;32;32
|
||||
12;31;37;33
|
||||
12;31;38;34
|
||||
12;31;39;35
|
||||
12;31;40;34
|
||||
12;31;49;49
|
||||
12;31;50;50
|
||||
12;32;0;0
|
||||
12;32;1;13
|
||||
12;32;2;2
|
||||
12;32;3;3
|
||||
12;32;4;4
|
||||
12;32;5;5
|
||||
12;32;6;6
|
||||
12;32;7;7
|
||||
12;32;8;8
|
||||
12;32;9;9
|
||||
12;32;10;10
|
||||
12;32;12;11
|
||||
12;32;14;11
|
||||
12;32;19;30
|
||||
12;32;26;27
|
||||
12;32;28;26
|
||||
12;32;31;31
|
||||
12;32;32;32
|
||||
12;32;37;33
|
||||
12;32;38;34
|
||||
12;32;39;35
|
||||
12;32;40;34
|
||||
12;32;49;49
|
||||
12;32;50;50
|
||||
12;33;0;0
|
||||
12;33;1;13
|
||||
12;33;2;2
|
||||
12;33;3;3
|
||||
12;33;4;4
|
||||
12;33;5;5
|
||||
12;33;6;6
|
||||
12;33;7;7
|
||||
12;33;8;8
|
||||
12;33;9;9
|
||||
12;33;10;10
|
||||
12;33;12;11
|
||||
12;33;14;11
|
||||
12;33;19;30
|
||||
12;33;26;27
|
||||
12;33;28;26
|
||||
12;33;31;31
|
||||
12;33;32;32
|
||||
12;33;37;33
|
||||
12;33;38;34
|
||||
12;33;39;35
|
||||
12;33;40;34
|
||||
12;33;49;49
|
||||
12;33;50;50
|
||||
12;34;0;0
|
||||
12;34;1;13
|
||||
12;34;2;2
|
||||
12;34;3;3
|
||||
12;34;4;4
|
||||
12;34;5;5
|
||||
12;34;6;6
|
||||
12;34;7;7
|
||||
12;34;8;8
|
||||
12;34;9;9
|
||||
12;34;10;10
|
||||
12;34;12;11
|
||||
12;34;14;11
|
||||
12;34;15;12
|
||||
12;34;16;13
|
||||
12;34;19;30
|
||||
12;34;24;24
|
||||
12;34;26;27
|
||||
12;34;28;26
|
||||
12;34;31;31
|
||||
12;34;32;32
|
||||
12;34;37;33
|
||||
12;34;38;34
|
||||
12;34;39;35
|
||||
12;34;40;34
|
||||
12;34;49;49
|
||||
12;34;50;50
|
||||
12;35;0;0
|
||||
12;35;1;13
|
||||
12;35;2;2
|
||||
12;35;3;3
|
||||
12;35;4;4
|
||||
12;35;5;5
|
||||
12;35;6;6
|
||||
12;35;7;7
|
||||
12;35;8;8
|
||||
12;35;9;9
|
||||
12;35;10;10
|
||||
12;35;12;11
|
||||
12;35;14;11
|
||||
12;35;19;30
|
||||
12;35;26;27
|
||||
12;35;28;26
|
||||
12;35;31;31
|
||||
12;35;32;32
|
||||
12;35;37;33
|
||||
12;35;38;34
|
||||
12;35;39;35
|
||||
12;35;40;34
|
||||
12;35;49;49
|
||||
12;35;50;50
|
||||
12;49;0;0
|
||||
12;49;1;13
|
||||
12;49;2;2
|
||||
12;49;3;3
|
||||
12;49;4;4
|
||||
12;49;5;5
|
||||
12;49;6;6
|
||||
12;49;7;7
|
||||
12;49;8;8
|
||||
12;49;9;9
|
||||
12;49;10;10
|
||||
12;49;12;11
|
||||
12;49;14;11
|
||||
12;49;19;30
|
||||
12;49;26;27
|
||||
12;49;28;26
|
||||
12;49;31;31
|
||||
12;49;32;32
|
||||
12;49;37;33
|
||||
12;49;38;34
|
||||
12;49;39;35
|
||||
12;49;40;34
|
||||
12;49;49;49
|
||||
12;49;50;50
|
||||
12;50;0;0
|
||||
12;50;1;13
|
||||
12;50;2;2
|
||||
12;50;3;3
|
||||
12;50;4;4
|
||||
12;50;5;5
|
||||
12;50;6;6
|
||||
12;50;7;7
|
||||
12;50;8;8
|
||||
12;50;9;9
|
||||
12;50;10;10
|
||||
12;50;12;11
|
||||
12;50;14;11
|
||||
12;50;19;30
|
||||
12;50;26;27
|
||||
12;50;28;26
|
||||
12;50;31;31
|
||||
12;50;32;32
|
||||
12;50;37;33
|
||||
12;50;38;34
|
||||
12;50;39;35
|
||||
12;50;40;34
|
||||
12;50;49;49
|
||||
12;50;50;50
|
||||
|
Reference in New Issue
Block a user