stesso meccanismo anche x macchina transizione stati
This commit is contained in:
@@ -329,9 +329,6 @@ namespace SMGen.Data.Services
|
||||
Nome = sz_tokens[2].Trim().ToUpper()
|
||||
};
|
||||
|
||||
|
||||
eventsAll.Add(newEvent);
|
||||
|
||||
break;
|
||||
|
||||
case "$RULES":
|
||||
@@ -452,6 +449,7 @@ namespace SMGen.Data.Services
|
||||
// recupero nome file x partire
|
||||
string filePath = currFile.tempFileName;
|
||||
string line = "";
|
||||
string errMsg = "";
|
||||
|
||||
try
|
||||
{
|
||||
@@ -496,14 +494,15 @@ namespace SMGen.Data.Services
|
||||
break;
|
||||
|
||||
case "$EVENT":
|
||||
Events_to_send.Add(sz_tokens[2].Trim().ToUpper(), int.Parse(sz_tokens[1].Trim().ToUpper()));
|
||||
if (!Events_to_send.ContainsValue(int.Parse(sz_tokens[1].Trim().ToUpper())))
|
||||
{
|
||||
Events_to_send.Add(sz_tokens[2].Trim().ToUpper(), int.Parse(sz_tokens[1].Trim().ToUpper()));
|
||||
}
|
||||
var newEvent = new AnagEventiModelTemp()
|
||||
{
|
||||
IdxTipo = int.Parse(sz_tokens[1].Trim().ToUpper()),
|
||||
Nome = sz_tokens[2].Trim().ToUpper()
|
||||
};
|
||||
|
||||
events2Add.Add(newEvent);
|
||||
break;
|
||||
|
||||
case "$RULES":
|
||||
@@ -550,9 +549,18 @@ namespace SMGen.Data.Services
|
||||
{
|
||||
Log.Error($"Eccezione durante la lettura del file {currFile.origFileName} alla riga {line}: {exc}{Environment.NewLine}");
|
||||
}
|
||||
|
||||
Events_to_send = Events_to_send.Select(a => a.Value).Intersect(Rules.Select(b => b.id_event_to_send)).ToDictionary(x => x.ToString());
|
||||
foreach (var item in Events_to_send)
|
||||
foreach (var ev in Events_to_send)
|
||||
{
|
||||
var rule2Ev = Rules.FirstOrDefault(x => x.event_to_send == ev.Key);
|
||||
if (rule2Ev != null)
|
||||
{
|
||||
if (!evOk.ContainsKey(ev.Key) && !evOk.ContainsValue(ev.Value))
|
||||
{
|
||||
evOk.Add(ev.Key, ev.Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach (var item in evOk)
|
||||
{
|
||||
var newEvent = new AnagEventiModelTemp()
|
||||
{
|
||||
@@ -563,8 +571,15 @@ namespace SMGen.Data.Services
|
||||
|
||||
if (listElement != null && listElement.Nome != newEvent.Nome)
|
||||
{
|
||||
Log.Error($"L'evento '{newEvent.IdxTipo}: {newEvent.Nome}' non può essere importato perchè diverso da '{listElement.IdxTipo}: {listElement.Nome}' nel file {currFile.origFileName}.{Environment.NewLine}");
|
||||
return null;
|
||||
errMsg = $"L'evento '{newEvent.IdxTipo}: {newEvent.Nome}' non può essere importato perchè diverso da '{listElement.IdxTipo}: {listElement.Nome}' nel file {currFile.origFileName}.{Environment.NewLine}";
|
||||
Log.Error(errMsg);
|
||||
currFile.errorMsg = errMsg;
|
||||
currFile.isOk = false;
|
||||
|
||||
currFile.calcRunning = false;
|
||||
|
||||
await FileUpdate(currFile.origFileName, currFile);
|
||||
//return null;
|
||||
}
|
||||
else if (listElement == null)
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<th scope="col">
|
||||
@if (Files != null && Files.Count > 0)
|
||||
{
|
||||
<button @onclick="()=>Read_rule_file_transitions()">Process</button>
|
||||
<button class="btn btn-sm btn-primary" @onclick="()=>Read_rule_file_transitions()">Process</button>
|
||||
}
|
||||
</th>
|
||||
<th scope="col"></th>
|
||||
|
||||
@@ -1,31 +1,28 @@
|
||||
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 SMGen.Data;
|
||||
using SMGen.Data.Data;
|
||||
using SMGen.Data.Services;
|
||||
using SMGen.Data.DbModels;
|
||||
|
||||
namespace SMGen.Components
|
||||
{
|
||||
public partial class FilesList
|
||||
{
|
||||
[Parameter]
|
||||
public bool calcEmptyState { get; set; } = false;
|
||||
|
||||
[Parameter]
|
||||
public bool calcItSelf { get; set; } = false;
|
||||
|
||||
[Parameter]
|
||||
public SelectSMIn2EvParams currFilter { get; set; } = null!;
|
||||
|
||||
//[Parameter]
|
||||
//public Dictionary<string, bool> FilesStatus { get; set; } = new Dictionary<string, bool>();
|
||||
public Dictionary<string, bool> FilesStatusTemp { get; set; } = new Dictionary<string, bool>();
|
||||
|
||||
[Parameter]
|
||||
public bool hasBit { get; set; } = false;
|
||||
|
||||
//[Parameter]
|
||||
//public Dictionary<string, string> Files2Download { get; set; } = new Dictionary<string, string>();
|
||||
[Parameter]
|
||||
@@ -33,29 +30,33 @@ namespace SMGen.Components
|
||||
|
||||
[Parameter]
|
||||
public EventCallback<int> updateRecordCount { get; set; }
|
||||
[Parameter]
|
||||
public SelectSMIn2EvParams currFilter { get; set; } = null!;
|
||||
[Parameter]
|
||||
public bool hasBit { get; set; } = false;
|
||||
[Parameter]
|
||||
public bool calcItSelf { get; set; } = false;
|
||||
[Parameter]
|
||||
public bool calcEmptyState { get; set; } = false;
|
||||
protected string currFileName { get; set; } = "";
|
||||
|
||||
protected string currMsg { get; set; } = "";
|
||||
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
|
||||
protected Dictionary<string, FilesClass> FilesTemp { get; set; } = new Dictionary<string, FilesClass>();
|
||||
|
||||
[Inject]
|
||||
protected SMGDataService SMGDService { get; set; } = null!;
|
||||
|
||||
[Parameter]
|
||||
public int succFiles { get; set; } = 0;
|
||||
|
||||
private int _totalCount { get; set; } = 0;
|
||||
|
||||
private int currPage
|
||||
{
|
||||
get => currFilter.CurrPage;
|
||||
set => currFilter.CurrPage = value;
|
||||
}
|
||||
|
||||
private int numRecord
|
||||
{
|
||||
get => currFilter.NumRec;
|
||||
set => currFilter.NumRec = value;
|
||||
}
|
||||
private int _totalCount { get; set; } = 0;
|
||||
private int totalCount
|
||||
{
|
||||
get => _totalCount;
|
||||
@@ -73,21 +74,6 @@ namespace SMGen.Components
|
||||
{
|
||||
await ReloadData();
|
||||
}
|
||||
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
protected Dictionary<string, FilesClass> FilesTemp { get; set; } = new Dictionary<string, FilesClass>();
|
||||
protected async Task ReloadData()
|
||||
{
|
||||
SMGDService.events2Add.Clear();
|
||||
await Task.Delay(1);
|
||||
FilesTemp = await SMGDService.FilesGetAll();
|
||||
totalCount = FilesTemp.Count;
|
||||
Files = FilesTemp.Skip(numRecord * (currPage - 1)).Take(numRecord).OrderBy(x => x.Value.origFileName).ToDictionary(x => x.Key, y => y.Value);
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
|
||||
protected int succFiles { get; set; } = 0;
|
||||
|
||||
protected async Task Read_rule_file_transitions()
|
||||
{
|
||||
SMGDService.events2Add.Clear();
|
||||
@@ -113,26 +99,20 @@ namespace SMGen.Components
|
||||
}
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
#if false
|
||||
foreach (var ev in SMGDService.events2Add)
|
||||
{
|
||||
var currEv = SMGDService.eventsFromDb[ev.IdxTipo];
|
||||
|
||||
if (currEv != ev.Nome)
|
||||
{
|
||||
ev.Nome = currEv;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
await Task.Delay(5);
|
||||
//await SMGDService.AnagEventinInsert(SMGDService.events2Add);
|
||||
//SMGDService.events2Add.Clear();
|
||||
|
||||
}
|
||||
|
||||
protected string currMsg { get; set; } = "";
|
||||
protected string currFileName { get; set; } = "";
|
||||
|
||||
protected async Task ReloadData()
|
||||
{
|
||||
SMGDService.events2Add.Clear();
|
||||
await Task.Delay(1);
|
||||
FilesTemp = await SMGDService.FilesGetAll();
|
||||
totalCount = FilesTemp.Count;
|
||||
Files = FilesTemp.Skip(numRecord * (currPage - 1)).Take(numRecord).OrderBy(x => x.Value.origFileName).ToDictionary(x => x.Key, y => y.Value);
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
protected async Task setCurrMsg(FilesClass currFile)
|
||||
{
|
||||
if (currFile.errorMsg != "")
|
||||
|
||||
@@ -54,7 +54,7 @@ namespace SMGen.Pages
|
||||
}
|
||||
|
||||
protected bool CalcItself { get; set; } = false;
|
||||
protected bool CalcEmptyState { get; set; } = false;
|
||||
protected bool CalcEmptyState { get; set; } = true;
|
||||
protected void ForceReload(int newNum)
|
||||
{
|
||||
numRecord = newNum;
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<InputFile OnChange="@LoadFiles" multiple />
|
||||
</div>
|
||||
</div>
|
||||
<FilesList PagerResetReq="pgResetReq" updateRecordCount="UpdateTotCount" currFilter="@currFilter" hasBit="true"></FilesList>
|
||||
<FilesList PagerResetReq="pgResetReq" updateRecordCount="UpdateTotCount" currFilter="@currFilter" hasBit="true" succFiles="@resetSucc"></FilesList>
|
||||
</div>
|
||||
|
||||
<div class="w-100 shadow-lg p-3 bg-body rounded mb-2">
|
||||
|
||||
@@ -56,6 +56,7 @@ namespace SMGen.Pages
|
||||
protected Dictionary<string, FilesClass> Files { get; set; } = new Dictionary<string, FilesClass>();
|
||||
|
||||
protected int maxAllowedFiles { get; set; } = 100;
|
||||
protected int resetSucc { get; set; } = 0;
|
||||
|
||||
protected string pathDir { get; set; } = "";
|
||||
|
||||
@@ -219,6 +220,7 @@ namespace SMGen.Pages
|
||||
{
|
||||
await SMGDService.FilesLoadRedis(Files);
|
||||
}
|
||||
resetSucc = 0;
|
||||
await InvokeAsync(() => StateHasChanged());
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,797 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
11;0;1;1
|
||||
11;0;2;2
|
||||
11;0;3;3
|
||||
11;0;4;4
|
||||
11;0;5;5
|
||||
11;0;6;6
|
||||
11;0;7;7
|
||||
11;0;8;8
|
||||
11;0;9;9
|
||||
11;0;10;10
|
||||
11;0;12;11
|
||||
11;0;19;30
|
||||
11;0;26;27
|
||||
11;0;31;31
|
||||
11;0;32;32
|
||||
11;0;37;33
|
||||
11;0;38;34
|
||||
11;0;39;35
|
||||
11;0;49;49
|
||||
11;0;50;50
|
||||
11;0;14;11
|
||||
11;1;2;2
|
||||
11;1;3;3
|
||||
11;1;4;4
|
||||
11;1;5;5
|
||||
11;1;6;6
|
||||
11;1;7;7
|
||||
11;1;8;8
|
||||
11;1;9;9
|
||||
11;1;10;10
|
||||
11;1;12;11
|
||||
11;1;19;30
|
||||
11;1;26;27
|
||||
11;1;31;31
|
||||
11;1;32;32
|
||||
11;1;37;33
|
||||
11;1;38;34
|
||||
11;1;39;35
|
||||
11;1;49;49
|
||||
11;1;50;50
|
||||
11;1;14;11
|
||||
11;1;15;12
|
||||
11;1;16;13
|
||||
11;1;17;14
|
||||
11;1;18;15
|
||||
11;1;20;14
|
||||
11;1;21;13
|
||||
11;1;22;14
|
||||
11;1;23;23
|
||||
11;1;24;24
|
||||
11;1;25;25
|
||||
11;1;28;26
|
||||
11;1;29;28
|
||||
11;1;30;29
|
||||
11;1;33;15
|
||||
11;1;35;13
|
||||
11;1;36;14
|
||||
11;2;1;1
|
||||
11;2;3;3
|
||||
11;2;4;4
|
||||
11;2;5;5
|
||||
11;2;6;6
|
||||
11;2;7;7
|
||||
11;2;8;8
|
||||
11;2;9;9
|
||||
11;2;10;10
|
||||
11;2;12;11
|
||||
11;2;19;30
|
||||
11;2;26;27
|
||||
11;2;31;31
|
||||
11;2;32;32
|
||||
11;2;37;33
|
||||
11;2;38;34
|
||||
11;2;39;35
|
||||
11;2;49;49
|
||||
11;2;50;50
|
||||
11;2;14;11
|
||||
11;2;28;26
|
||||
11;3;1;1
|
||||
11;3;2;2
|
||||
11;3;4;4
|
||||
11;3;5;5
|
||||
11;3;6;6
|
||||
11;3;7;7
|
||||
11;3;8;8
|
||||
11;3;9;9
|
||||
11;3;10;10
|
||||
11;3;12;11
|
||||
11;3;19;30
|
||||
11;3;26;27
|
||||
11;3;31;31
|
||||
11;3;32;32
|
||||
11;3;37;33
|
||||
11;3;38;34
|
||||
11;3;39;35
|
||||
11;3;49;49
|
||||
11;3;50;50
|
||||
11;3;14;11
|
||||
11;3;28;26
|
||||
11;4;1;1
|
||||
11;4;2;2
|
||||
11;4;3;3
|
||||
11;4;5;5
|
||||
11;4;6;6
|
||||
11;4;7;7
|
||||
11;4;8;8
|
||||
11;4;9;9
|
||||
11;4;10;10
|
||||
11;4;12;11
|
||||
11;4;19;30
|
||||
11;4;26;27
|
||||
11;4;31;31
|
||||
11;4;32;32
|
||||
11;4;37;33
|
||||
11;4;38;34
|
||||
11;4;39;35
|
||||
11;4;49;49
|
||||
11;4;50;50
|
||||
11;4;14;11
|
||||
11;4;28;26
|
||||
11;5;1;1
|
||||
11;5;2;2
|
||||
11;5;3;3
|
||||
11;5;4;4
|
||||
11;5;6;6
|
||||
11;5;7;7
|
||||
11;5;8;8
|
||||
11;5;9;9
|
||||
11;5;10;10
|
||||
11;5;12;11
|
||||
11;5;19;30
|
||||
11;5;26;27
|
||||
11;5;31;31
|
||||
11;5;32;32
|
||||
11;5;37;33
|
||||
11;5;38;34
|
||||
11;5;39;35
|
||||
11;5;49;49
|
||||
11;5;50;50
|
||||
11;5;14;11
|
||||
11;5;28;26
|
||||
11;6;1;1
|
||||
11;6;2;2
|
||||
11;6;3;3
|
||||
11;6;4;4
|
||||
11;6;5;5
|
||||
11;6;7;7
|
||||
11;6;8;8
|
||||
11;6;9;9
|
||||
11;6;10;10
|
||||
11;6;12;11
|
||||
11;6;19;30
|
||||
11;6;26;27
|
||||
11;6;31;31
|
||||
11;6;32;32
|
||||
11;6;37;33
|
||||
11;6;38;34
|
||||
11;6;39;35
|
||||
11;6;49;49
|
||||
11;6;50;50
|
||||
11;6;14;11
|
||||
11;6;28;26
|
||||
11;7;1;1
|
||||
11;7;2;2
|
||||
11;7;3;3
|
||||
11;7;4;4
|
||||
11;7;5;5
|
||||
11;7;6;6
|
||||
11;7;8;8
|
||||
11;7;9;9
|
||||
11;7;10;10
|
||||
11;7;12;11
|
||||
11;7;19;30
|
||||
11;7;26;27
|
||||
11;7;31;31
|
||||
11;7;32;32
|
||||
11;7;37;33
|
||||
11;7;38;34
|
||||
11;7;39;35
|
||||
11;7;49;49
|
||||
11;7;50;50
|
||||
11;7;14;11
|
||||
11;7;28;26
|
||||
11;8;1;1
|
||||
11;8;2;2
|
||||
11;8;3;3
|
||||
11;8;4;4
|
||||
11;8;5;5
|
||||
11;8;6;6
|
||||
11;8;7;7
|
||||
11;8;9;9
|
||||
11;8;10;10
|
||||
11;8;12;11
|
||||
11;8;19;30
|
||||
11;8;26;27
|
||||
11;8;31;31
|
||||
11;8;32;32
|
||||
11;8;37;33
|
||||
11;8;38;34
|
||||
11;8;39;35
|
||||
11;8;49;49
|
||||
11;8;50;50
|
||||
11;8;14;11
|
||||
11;8;28;26
|
||||
11;9;1;1
|
||||
11;9;2;2
|
||||
11;9;3;3
|
||||
11;9;4;4
|
||||
11;9;5;5
|
||||
11;9;6;6
|
||||
11;9;7;7
|
||||
11;9;8;8
|
||||
11;9;10;10
|
||||
11;9;12;11
|
||||
11;9;19;30
|
||||
11;9;26;27
|
||||
11;9;31;31
|
||||
11;9;32;32
|
||||
11;9;37;33
|
||||
11;9;38;34
|
||||
11;9;39;35
|
||||
11;9;49;49
|
||||
11;9;50;50
|
||||
11;9;14;11
|
||||
11;9;28;26
|
||||
11;10;1;1
|
||||
11;10;2;2
|
||||
11;10;3;3
|
||||
11;10;4;4
|
||||
11;10;5;5
|
||||
11;10;6;6
|
||||
11;10;7;7
|
||||
11;10;8;8
|
||||
11;10;9;9
|
||||
11;10;12;11
|
||||
11;10;19;30
|
||||
11;10;26;27
|
||||
11;10;31;31
|
||||
11;10;32;32
|
||||
11;10;37;33
|
||||
11;10;38;34
|
||||
11;10;39;35
|
||||
11;10;49;49
|
||||
11;10;50;50
|
||||
11;10;14;11
|
||||
11;10;28;26
|
||||
11;11;1;1
|
||||
11;11;2;2
|
||||
11;11;3;3
|
||||
11;11;4;4
|
||||
11;11;5;5
|
||||
11;11;6;6
|
||||
11;11;7;7
|
||||
11;11;8;8
|
||||
11;11;9;9
|
||||
11;11;10;10
|
||||
11;11;19;30
|
||||
11;11;26;27
|
||||
11;11;31;31
|
||||
11;11;32;32
|
||||
11;11;37;33
|
||||
11;11;38;34
|
||||
11;11;39;35
|
||||
11;11;49;49
|
||||
11;11;50;50
|
||||
11;11;15;12
|
||||
11;11;16;13
|
||||
11;11;17;14
|
||||
11;11;18;15
|
||||
11;11;20;14
|
||||
11;11;21;13
|
||||
11;11;22;14
|
||||
11;11;23;23
|
||||
11;11;24;24
|
||||
11;11;25;25
|
||||
11;11;29;28
|
||||
11;11;30;29
|
||||
11;11;33;15
|
||||
11;11;35;13
|
||||
11;11;36;14
|
||||
11;12;1;1
|
||||
11;12;2;2
|
||||
11;12;3;3
|
||||
11;12;4;4
|
||||
11;12;5;5
|
||||
11;12;6;6
|
||||
11;12;7;7
|
||||
11;12;8;8
|
||||
11;12;9;9
|
||||
11;12;10;10
|
||||
11;12;12;11
|
||||
11;12;19;30
|
||||
11;12;26;27
|
||||
11;12;31;31
|
||||
11;12;32;32
|
||||
11;12;37;33
|
||||
11;12;38;34
|
||||
11;12;39;35
|
||||
11;12;49;49
|
||||
11;12;50;50
|
||||
11;12;14;11
|
||||
11;12;16;13
|
||||
11;12;17;14
|
||||
11;12;18;15
|
||||
11;12;20;14
|
||||
11;12;21;13
|
||||
11;12;22;14
|
||||
11;12;23;23
|
||||
11;12;24;24
|
||||
11;12;25;25
|
||||
11;12;28;26
|
||||
11;12;29;28
|
||||
11;12;30;29
|
||||
11;12;33;15
|
||||
11;12;35;13
|
||||
11;12;36;14
|
||||
11;13;1;1
|
||||
11;13;2;2
|
||||
11;13;3;3
|
||||
11;13;4;4
|
||||
11;13;5;5
|
||||
11;13;6;6
|
||||
11;13;7;7
|
||||
11;13;8;8
|
||||
11;13;9;9
|
||||
11;13;10;10
|
||||
11;13;12;11
|
||||
11;13;19;30
|
||||
11;13;26;27
|
||||
11;13;31;31
|
||||
11;13;32;32
|
||||
11;13;37;33
|
||||
11;13;38;34
|
||||
11;13;39;35
|
||||
11;13;49;49
|
||||
11;13;50;50
|
||||
11;13;14;11
|
||||
11;13;15;12
|
||||
11;13;17;14
|
||||
11;13;18;15
|
||||
11;13;20;14
|
||||
11;13;22;14
|
||||
11;13;23;23
|
||||
11;13;24;24
|
||||
11;13;25;25
|
||||
11;13;27;12
|
||||
11;13;28;26
|
||||
11;13;29;28
|
||||
11;13;30;29
|
||||
11;13;33;15
|
||||
11;13;36;14
|
||||
11;14;1;1
|
||||
11;14;2;2
|
||||
11;14;3;3
|
||||
11;14;4;4
|
||||
11;14;5;5
|
||||
11;14;6;6
|
||||
11;14;7;7
|
||||
11;14;8;8
|
||||
11;14;9;9
|
||||
11;14;10;10
|
||||
11;14;12;11
|
||||
11;14;19;30
|
||||
11;14;26;27
|
||||
11;14;31;31
|
||||
11;14;32;32
|
||||
11;14;37;33
|
||||
11;14;38;34
|
||||
11;14;39;35
|
||||
11;14;49;49
|
||||
11;14;50;50
|
||||
11;14;14;11
|
||||
11;14;15;12
|
||||
11;14;16;13
|
||||
11;14;18;15
|
||||
11;14;21;13
|
||||
11;14;23;23
|
||||
11;14;24;24
|
||||
11;14;25;25
|
||||
11;14;28;26
|
||||
11;14;29;28
|
||||
11;14;30;29
|
||||
11;14;33;15
|
||||
11;14;35;13
|
||||
11;15;1;1
|
||||
11;15;2;2
|
||||
11;15;3;3
|
||||
11;15;4;4
|
||||
11;15;5;5
|
||||
11;15;6;6
|
||||
11;15;7;7
|
||||
11;15;8;8
|
||||
11;15;9;9
|
||||
11;15;10;10
|
||||
11;15;12;11
|
||||
11;15;19;30
|
||||
11;15;26;27
|
||||
11;15;31;31
|
||||
11;15;32;32
|
||||
11;15;37;33
|
||||
11;15;38;34
|
||||
11;15;39;35
|
||||
11;15;49;49
|
||||
11;15;50;50
|
||||
11;15;14;11
|
||||
11;15;15;12
|
||||
11;15;16;13
|
||||
11;15;17;14
|
||||
11;15;20;14
|
||||
11;15;21;13
|
||||
11;15;22;14
|
||||
11;15;23;23
|
||||
11;15;24;24
|
||||
11;15;25;25
|
||||
11;15;28;26
|
||||
11;15;29;28
|
||||
11;15;30;29
|
||||
11;15;35;13
|
||||
11;15;36;14
|
||||
11;23;1;1
|
||||
11;23;2;2
|
||||
11;23;3;3
|
||||
11;23;4;4
|
||||
11;23;5;5
|
||||
11;23;6;6
|
||||
11;23;7;7
|
||||
11;23;8;8
|
||||
11;23;9;9
|
||||
11;23;10;10
|
||||
11;23;12;11
|
||||
11;23;19;30
|
||||
11;23;26;27
|
||||
11;23;31;31
|
||||
11;23;32;32
|
||||
11;23;37;33
|
||||
11;23;38;34
|
||||
11;23;39;35
|
||||
11;23;49;49
|
||||
11;23;50;50
|
||||
11;23;14;11
|
||||
11;23;15;12
|
||||
11;23;16;13
|
||||
11;23;17;14
|
||||
11;23;18;15
|
||||
11;23;20;14
|
||||
11;23;21;13
|
||||
11;23;22;14
|
||||
11;23;24;24
|
||||
11;23;25;25
|
||||
11;23;28;26
|
||||
11;23;29;28
|
||||
11;23;30;29
|
||||
11;23;33;15
|
||||
11;23;35;13
|
||||
11;23;36;14
|
||||
11;24;1;1
|
||||
11;24;2;2
|
||||
11;24;3;3
|
||||
11;24;4;4
|
||||
11;24;5;5
|
||||
11;24;6;6
|
||||
11;24;7;7
|
||||
11;24;8;8
|
||||
11;24;9;9
|
||||
11;24;10;10
|
||||
11;24;12;11
|
||||
11;24;19;30
|
||||
11;24;26;27
|
||||
11;24;31;31
|
||||
11;24;32;32
|
||||
11;24;37;33
|
||||
11;24;38;34
|
||||
11;24;39;35
|
||||
11;24;49;49
|
||||
11;24;50;50
|
||||
11;24;14;11
|
||||
11;24;15;12
|
||||
11;24;16;13
|
||||
11;24;17;14
|
||||
11;24;18;15
|
||||
11;24;20;14
|
||||
11;24;21;13
|
||||
11;24;22;14
|
||||
11;24;23;23
|
||||
11;24;25;25
|
||||
11;24;28;26
|
||||
11;24;29;28
|
||||
11;24;30;29
|
||||
11;24;33;15
|
||||
11;24;35;13
|
||||
11;24;36;14
|
||||
11;25;1;1
|
||||
11;25;2;2
|
||||
11;25;3;3
|
||||
11;25;4;4
|
||||
11;25;5;5
|
||||
11;25;6;6
|
||||
11;25;7;7
|
||||
11;25;8;8
|
||||
11;25;9;9
|
||||
11;25;10;10
|
||||
11;25;12;11
|
||||
11;25;19;30
|
||||
11;25;26;27
|
||||
11;25;31;31
|
||||
11;25;32;32
|
||||
11;25;37;33
|
||||
11;25;38;34
|
||||
11;25;39;35
|
||||
11;25;49;49
|
||||
11;25;50;50
|
||||
11;25;14;11
|
||||
11;25;16;13
|
||||
11;25;17;14
|
||||
11;25;18;15
|
||||
11;25;20;14
|
||||
11;25;21;13
|
||||
11;25;22;14
|
||||
11;25;23;23
|
||||
11;25;24;24
|
||||
11;25;28;26
|
||||
11;25;29;28
|
||||
11;25;30;29
|
||||
11;25;33;15
|
||||
11;25;35;13
|
||||
11;25;36;14
|
||||
11;26;1;1
|
||||
11;26;2;2
|
||||
11;26;3;3
|
||||
11;26;4;4
|
||||
11;26;5;5
|
||||
11;26;6;6
|
||||
11;26;7;7
|
||||
11;26;8;8
|
||||
11;26;9;9
|
||||
11;26;10;10
|
||||
11;26;12;11
|
||||
11;26;19;30
|
||||
11;26;26;27
|
||||
11;26;31;31
|
||||
11;26;32;32
|
||||
11;26;37;33
|
||||
11;26;38;34
|
||||
11;26;39;35
|
||||
11;26;49;49
|
||||
11;26;50;50
|
||||
11;26;14;11
|
||||
11;26;15;12
|
||||
11;26;16;13
|
||||
11;26;17;14
|
||||
11;26;18;15
|
||||
11;26;20;14
|
||||
11;26;21;13
|
||||
11;26;22;14
|
||||
11;26;23;23
|
||||
11;26;24;24
|
||||
11;26;25;25
|
||||
11;26;29;28
|
||||
11;26;30;29
|
||||
11;26;33;15
|
||||
11;26;35;13
|
||||
11;26;36;14
|
||||
11;27;1;1
|
||||
11;27;2;2
|
||||
11;27;3;3
|
||||
11;27;4;4
|
||||
11;27;5;5
|
||||
11;27;6;6
|
||||
11;27;7;7
|
||||
11;27;8;8
|
||||
11;27;9;9
|
||||
11;27;10;10
|
||||
11;27;12;11
|
||||
11;27;19;30
|
||||
11;27;31;31
|
||||
11;27;32;32
|
||||
11;27;37;33
|
||||
11;27;38;34
|
||||
11;27;39;35
|
||||
11;27;49;49
|
||||
11;27;50;50
|
||||
11;27;14;11
|
||||
11;27;28;26
|
||||
11;28;1;1
|
||||
11;28;2;2
|
||||
11;28;3;3
|
||||
11;28;4;4
|
||||
11;28;5;5
|
||||
11;28;6;6
|
||||
11;28;7;7
|
||||
11;28;8;8
|
||||
11;28;9;9
|
||||
11;28;10;10
|
||||
11;28;12;11
|
||||
11;28;19;30
|
||||
11;28;26;27
|
||||
11;28;31;31
|
||||
11;28;32;32
|
||||
11;28;37;33
|
||||
11;28;38;34
|
||||
11;28;39;35
|
||||
11;28;49;49
|
||||
11;28;50;50
|
||||
11;28;14;11
|
||||
11;28;16;13
|
||||
11;29;1;1
|
||||
11;29;2;2
|
||||
11;29;3;3
|
||||
11;29;4;4
|
||||
11;29;5;5
|
||||
11;29;6;6
|
||||
11;29;7;7
|
||||
11;29;8;8
|
||||
11;29;9;9
|
||||
11;29;10;10
|
||||
11;29;12;11
|
||||
11;29;19;30
|
||||
11;29;26;27
|
||||
11;29;31;31
|
||||
11;29;32;32
|
||||
11;29;37;33
|
||||
11;29;38;34
|
||||
11;29;39;35
|
||||
11;29;49;49
|
||||
11;29;50;50
|
||||
11;29;14;11
|
||||
11;29;16;13
|
||||
11;29;24;24
|
||||
11;30;1;1
|
||||
11;30;2;2
|
||||
11;30;3;3
|
||||
11;30;4;4
|
||||
11;30;5;5
|
||||
11;30;6;6
|
||||
11;30;7;7
|
||||
11;30;8;8
|
||||
11;30;9;9
|
||||
11;30;10;10
|
||||
11;30;12;11
|
||||
11;30;26;27
|
||||
11;30;31;31
|
||||
11;30;32;32
|
||||
11;30;37;33
|
||||
11;30;38;34
|
||||
11;30;39;35
|
||||
11;30;49;49
|
||||
11;30;50;50
|
||||
11;30;14;11
|
||||
11;31;1;1
|
||||
11;31;2;2
|
||||
11;31;3;3
|
||||
11;31;4;4
|
||||
11;31;5;5
|
||||
11;31;6;6
|
||||
11;31;7;7
|
||||
11;31;8;8
|
||||
11;31;9;9
|
||||
11;31;10;10
|
||||
11;31;12;11
|
||||
11;31;19;30
|
||||
11;31;26;27
|
||||
11;31;32;32
|
||||
11;31;37;33
|
||||
11;31;38;34
|
||||
11;31;39;35
|
||||
11;31;49;49
|
||||
11;31;50;50
|
||||
11;31;14;11
|
||||
11;31;28;26
|
||||
11;32;1;1
|
||||
11;32;2;2
|
||||
11;32;3;3
|
||||
11;32;4;4
|
||||
11;32;5;5
|
||||
11;32;6;6
|
||||
11;32;7;7
|
||||
11;32;8;8
|
||||
11;32;9;9
|
||||
11;32;10;10
|
||||
11;32;12;11
|
||||
11;32;19;30
|
||||
11;32;26;27
|
||||
11;32;31;31
|
||||
11;32;37;33
|
||||
11;32;38;34
|
||||
11;32;39;35
|
||||
11;32;49;49
|
||||
11;32;50;50
|
||||
11;32;14;11
|
||||
11;32;28;26
|
||||
11;33;1;1
|
||||
11;33;2;2
|
||||
11;33;3;3
|
||||
11;33;4;4
|
||||
11;33;5;5
|
||||
11;33;6;6
|
||||
11;33;7;7
|
||||
11;33;8;8
|
||||
11;33;9;9
|
||||
11;33;10;10
|
||||
11;33;12;11
|
||||
11;33;19;30
|
||||
11;33;26;27
|
||||
11;33;31;31
|
||||
11;33;32;32
|
||||
11;33;38;34
|
||||
11;33;39;35
|
||||
11;33;49;49
|
||||
11;33;50;50
|
||||
11;33;14;11
|
||||
11;33;28;26
|
||||
11;34;1;1
|
||||
11;34;2;2
|
||||
11;34;3;3
|
||||
11;34;4;4
|
||||
11;34;5;5
|
||||
11;34;6;6
|
||||
11;34;7;7
|
||||
11;34;8;8
|
||||
11;34;9;9
|
||||
11;34;10;10
|
||||
11;34;12;11
|
||||
11;34;19;30
|
||||
11;34;26;27
|
||||
11;34;31;31
|
||||
11;34;32;32
|
||||
11;34;37;33
|
||||
11;34;39;35
|
||||
11;34;49;49
|
||||
11;34;50;50
|
||||
11;34;14;11
|
||||
11;34;15;12
|
||||
11;34;16;13
|
||||
11;34;28;26
|
||||
11;35;1;1
|
||||
11;35;2;2
|
||||
11;35;3;3
|
||||
11;35;4;4
|
||||
11;35;5;5
|
||||
11;35;6;6
|
||||
11;35;7;7
|
||||
11;35;8;8
|
||||
11;35;9;9
|
||||
11;35;10;10
|
||||
11;35;12;11
|
||||
11;35;19;30
|
||||
11;35;26;27
|
||||
11;35;31;31
|
||||
11;35;32;32
|
||||
11;35;37;33
|
||||
11;35;38;34
|
||||
11;35;49;49
|
||||
11;35;50;50
|
||||
11;35;14;11
|
||||
11;35;28;26
|
||||
11;49;1;1
|
||||
11;49;2;2
|
||||
11;49;3;3
|
||||
11;49;4;4
|
||||
11;49;5;5
|
||||
11;49;6;6
|
||||
11;49;7;7
|
||||
11;49;8;8
|
||||
11;49;9;9
|
||||
11;49;10;10
|
||||
11;49;12;11
|
||||
11;49;19;30
|
||||
11;49;26;27
|
||||
11;49;31;31
|
||||
11;49;32;32
|
||||
11;49;37;33
|
||||
11;49;38;34
|
||||
11;49;39;35
|
||||
11;49;50;50
|
||||
11;49;14;11
|
||||
11;49;28;26
|
||||
11;50;1;1
|
||||
11;50;2;2
|
||||
11;50;3;3
|
||||
11;50;4;4
|
||||
11;50;5;5
|
||||
11;50;6;6
|
||||
11;50;7;7
|
||||
11;50;8;8
|
||||
11;50;9;9
|
||||
11;50;10;10
|
||||
11;50;12;11
|
||||
11;50;19;30
|
||||
11;50;26;27
|
||||
11;50;31;31
|
||||
11;50;32;32
|
||||
11;50;37;33
|
||||
11;50;38;34
|
||||
11;50;39;35
|
||||
11;50;49;49
|
||||
11;50;14;11
|
||||
|
@@ -10,7 +10,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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
|
||||
@@ -18,10 +17,47 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;0;14;11
|
||||
12;0;40;34
|
||||
12;1;1;13
|
||||
12;1;2;2
|
||||
12;1;3;3
|
||||
12;1;4;4
|
||||
12;1;5;5
|
||||
12;1;6;6
|
||||
12;1;7;7
|
||||
12;1;8;8
|
||||
12;1;9;9
|
||||
12;1;10;10
|
||||
12;1;12;11
|
||||
12;1;19;30
|
||||
12;1;26;27
|
||||
12;1;31;31
|
||||
12;1;32;32
|
||||
12;1;37;33
|
||||
12;1;38;34
|
||||
12;1;39;35
|
||||
12;1;49;49
|
||||
12;1;50;50
|
||||
12;1;14;11
|
||||
12;1;15;12
|
||||
12;1;16;13
|
||||
12;1;17;14
|
||||
12;1;20;14
|
||||
12;1;21;13
|
||||
12;1;22;14
|
||||
12;1;23;23
|
||||
12;1;24;24
|
||||
12;1;25;25
|
||||
12;1;28;26
|
||||
12;1;29;28
|
||||
12;1;30;29
|
||||
12;1;33;15
|
||||
12;1;35;13
|
||||
12;1;36;14
|
||||
12;1;40;34
|
||||
12;2;1;13
|
||||
12;2;3;3
|
||||
12;2;4;4
|
||||
@@ -32,19 +68,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;2;14;11
|
||||
12;2;28;26
|
||||
12;2;40;34
|
||||
12;3;1;13
|
||||
12;3;2;2
|
||||
12;3;4;4
|
||||
@@ -55,19 +90,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;3;14;11
|
||||
12;3;28;26
|
||||
12;3;40;34
|
||||
12;4;1;13
|
||||
12;4;2;2
|
||||
12;4;3;3
|
||||
@@ -78,19 +112,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;4;14;11
|
||||
12;4;28;26
|
||||
12;4;40;34
|
||||
12;5;1;13
|
||||
12;5;2;2
|
||||
12;5;3;3
|
||||
@@ -101,19 +134,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;5;14;11
|
||||
12;5;28;26
|
||||
12;5;40;34
|
||||
12;6;1;13
|
||||
12;6;2;2
|
||||
12;6;3;3
|
||||
@@ -124,19 +156,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;6;14;11
|
||||
12;6;28;26
|
||||
12;6;40;34
|
||||
12;7;1;13
|
||||
12;7;2;2
|
||||
12;7;3;3
|
||||
@@ -147,19 +178,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;7;14;11
|
||||
12;7;28;26
|
||||
12;7;40;34
|
||||
12;8;1;13
|
||||
12;8;2;2
|
||||
12;8;3;3
|
||||
@@ -170,19 +200,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;8;14;11
|
||||
12;8;28;26
|
||||
12;8;40;34
|
||||
12;9;1;13
|
||||
12;9;2;2
|
||||
12;9;3;3
|
||||
@@ -193,19 +222,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;9;8;8
|
||||
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;9;14;11
|
||||
12;9;28;26
|
||||
12;9;40;34
|
||||
12;10;1;13
|
||||
12;10;2;2
|
||||
12;10;3;3
|
||||
@@ -216,19 +244,18 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;10;8;8
|
||||
12;10;9;9
|
||||
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;10;14;11
|
||||
12;10;28;26
|
||||
12;10;40;34
|
||||
12;11;1;13
|
||||
12;11;2;2
|
||||
12;11;3;3
|
||||
@@ -239,32 +266,31 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;11;8;8
|
||||
12;11;9;9
|
||||
12;11;10;10
|
||||
12;11;19;30
|
||||
12;11;26;27
|
||||
12;11;31;31
|
||||
12;11;32;32
|
||||
12;11;37;33
|
||||
12;11;38;34
|
||||
12;11;39;35
|
||||
12;11;49;49
|
||||
12;11;50;50
|
||||
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;35;13
|
||||
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
|
||||
@@ -276,29 +302,28 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;12;9;9
|
||||
12;12;10;10
|
||||
12;12;12;11
|
||||
12;12;19;30
|
||||
12;12;26;27
|
||||
12;12;31;31
|
||||
12;12;32;32
|
||||
12;12;37;33
|
||||
12;12;38;34
|
||||
12;12;39;35
|
||||
12;12;49;49
|
||||
12;12;50;50
|
||||
12;12;14;11
|
||||
12;12;16;13
|
||||
12;12;18;15
|
||||
12;12;19;30
|
||||
12;12;21;13
|
||||
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;35;13
|
||||
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;2;2
|
||||
12;13;3;3
|
||||
12;13;4;4
|
||||
@@ -309,28 +334,27 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;13;9;9
|
||||
12;13;10;10
|
||||
12;13;12;11
|
||||
12;13;19;30
|
||||
12;13;26;27
|
||||
12;13;31;31
|
||||
12;13;32;32
|
||||
12;13;37;33
|
||||
12;13;38;34
|
||||
12;13;39;35
|
||||
12;13;49;49
|
||||
12;13;50;50
|
||||
12;13;14;11
|
||||
12;13;15;12
|
||||
12;13;18;15
|
||||
12;13;19;30
|
||||
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;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
|
||||
@@ -342,30 +366,29 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;14;9;9
|
||||
12;14;10;10
|
||||
12;14;12;11
|
||||
12;14;19;30
|
||||
12;14;26;27
|
||||
12;14;31;31
|
||||
12;14;32;32
|
||||
12;14;37;33
|
||||
12;14;38;34
|
||||
12;14;39;35
|
||||
12;14;49;49
|
||||
12;14;50;50
|
||||
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;35;13
|
||||
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
|
||||
@@ -377,28 +400,27 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;15;9;9
|
||||
12;15;10;10
|
||||
12;15;12;11
|
||||
12;15;19;30
|
||||
12;15;26;27
|
||||
12;15;31;31
|
||||
12;15;32;32
|
||||
12;15;37;33
|
||||
12;15;38;34
|
||||
12;15;39;35
|
||||
12;15;49;49
|
||||
12;15;50;50
|
||||
12;15;14;11
|
||||
12;15;15;12
|
||||
12;15;16;13
|
||||
12;15;19;30
|
||||
12;15;21;13
|
||||
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;35;13
|
||||
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
|
||||
@@ -410,33 +432,32 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;23;9;9
|
||||
12;23;10;10
|
||||
12;23;12;11
|
||||
12;23;19;30
|
||||
12;23;26;27
|
||||
12;23;31;31
|
||||
12;23;32;32
|
||||
12;23;37;33
|
||||
12;23;38;34
|
||||
12;23;39;35
|
||||
12;23;49;49
|
||||
12;23;50;50
|
||||
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;35;13
|
||||
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
|
||||
@@ -448,29 +469,28 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;24;9;9
|
||||
12;24;10;10
|
||||
12;24;12;11
|
||||
12;24;19;30
|
||||
12;24;26;27
|
||||
12;24;31;31
|
||||
12;24;32;32
|
||||
12;24;37;33
|
||||
12;24;38;34
|
||||
12;24;39;35
|
||||
12;24;49;49
|
||||
12;24;50;50
|
||||
12;24;14;11
|
||||
12;24;15;12
|
||||
12;24;16;13
|
||||
12;24;18;15
|
||||
12;24;19;30
|
||||
12;24;21;13
|
||||
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;35;13
|
||||
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
|
||||
@@ -482,32 +502,31 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;25;9;9
|
||||
12;25;10;10
|
||||
12;25;12;11
|
||||
12;25;19;30
|
||||
12;25;26;27
|
||||
12;25;31;31
|
||||
12;25;32;32
|
||||
12;25;37;33
|
||||
12;25;38;34
|
||||
12;25;39;35
|
||||
12;25;49;49
|
||||
12;25;50;50
|
||||
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;35;13
|
||||
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
|
||||
@@ -519,33 +538,32 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;26;9;9
|
||||
12;26;10;10
|
||||
12;26;12;11
|
||||
12;26;19;30
|
||||
12;26;26;27
|
||||
12;26;31;31
|
||||
12;26;32;32
|
||||
12;26;37;33
|
||||
12;26;38;34
|
||||
12;26;39;35
|
||||
12;26;49;49
|
||||
12;26;50;50
|
||||
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;35;13
|
||||
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
|
||||
@@ -557,18 +575,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;27;9;9
|
||||
12;27;10;10
|
||||
12;27;12;11
|
||||
12;27;14;11
|
||||
12;27;19;30
|
||||
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;27;14;11
|
||||
12;27;28;26
|
||||
12;27;40;34
|
||||
12;28;1;13
|
||||
12;28;2;2
|
||||
12;28;3;3
|
||||
@@ -580,8 +597,6 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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
|
||||
@@ -589,10 +604,11 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;28;14;11
|
||||
12;28;16;13
|
||||
12;28;40;34
|
||||
12;29;1;13
|
||||
12;29;2;2
|
||||
12;29;3;3
|
||||
@@ -604,20 +620,19 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;29;14;11
|
||||
12;29;16;13
|
||||
12;29;24;24
|
||||
12;29;40;34
|
||||
12;30;1;13
|
||||
12;30;2;2
|
||||
12;30;3;3
|
||||
@@ -629,17 +644,16 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
12;30;9;9
|
||||
12;30;10;10
|
||||
12;30;12;11
|
||||
12;30;14;11
|
||||
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;30;14;11
|
||||
12;30;40;34
|
||||
12;31;1;13
|
||||
12;31;2;2
|
||||
12;31;3;3
|
||||
@@ -651,18 +665,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;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;31;14;11
|
||||
12;31;28;26
|
||||
12;31;40;34
|
||||
12;32;1;13
|
||||
12;32;2;2
|
||||
12;32;3;3
|
||||
@@ -674,18 +687,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;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;32;14;11
|
||||
12;32;28;26
|
||||
12;32;40;34
|
||||
12;33;1;13
|
||||
12;33;2;2
|
||||
12;33;3;3
|
||||
@@ -697,18 +709,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;38;34
|
||||
12;33;39;35
|
||||
12;33;40;34
|
||||
12;33;49;49
|
||||
12;33;50;50
|
||||
12;34;0;0
|
||||
12;33;14;11
|
||||
12;33;28;26
|
||||
12;33;40;34
|
||||
12;34;1;13
|
||||
12;34;2;2
|
||||
12;34;3;3
|
||||
@@ -720,20 +731,19 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;39;35
|
||||
12;34;49;49
|
||||
12;34;50;50
|
||||
12;35;0;0
|
||||
12;34;14;11
|
||||
12;34;15;12
|
||||
12;34;16;13
|
||||
12;34;24;24
|
||||
12;34;28;26
|
||||
12;35;1;13
|
||||
12;35;2;2
|
||||
12;35;3;3
|
||||
@@ -745,18 +755,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;40;34
|
||||
12;35;49;49
|
||||
12;35;50;50
|
||||
12;49;0;0
|
||||
12;35;14;11
|
||||
12;35;28;26
|
||||
12;35;40;34
|
||||
12;49;1;13
|
||||
12;49;2;2
|
||||
12;49;3;3
|
||||
@@ -768,18 +777,17 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;50;50
|
||||
12;50;0;0
|
||||
12;49;14;11
|
||||
12;49;28;26
|
||||
12;49;40;34
|
||||
12;50;1;13
|
||||
12;50;2;2
|
||||
12;50;3;3
|
||||
@@ -791,14 +799,14 @@ IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
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;14;11
|
||||
12;50;28;26
|
||||
12;50;40;34
|
||||
|
||||
|
@@ -0,0 +1,199 @@
|
||||
IdxFamiglia;IdxStato;IdxTipo;next_IdxStato
|
||||
15;0;14;11
|
||||
15;0;15;1
|
||||
15;0;18;15
|
||||
15;0;44;38
|
||||
15;0;45;39
|
||||
15;0;46;37
|
||||
15;1;14;11
|
||||
15;1;18;15
|
||||
15;1;44;38
|
||||
15;1;45;39
|
||||
15;1;46;37
|
||||
15;2;14;11
|
||||
15;2;15;1
|
||||
15;2;18;15
|
||||
15;2;44;38
|
||||
15;2;45;39
|
||||
15;2;46;37
|
||||
15;3;14;11
|
||||
15;3;15;1
|
||||
15;3;18;15
|
||||
15;3;44;38
|
||||
15;3;45;39
|
||||
15;3;46;37
|
||||
15;4;14;11
|
||||
15;4;15;1
|
||||
15;4;18;15
|
||||
15;4;44;38
|
||||
15;4;45;39
|
||||
15;4;46;37
|
||||
15;5;14;11
|
||||
15;5;15;1
|
||||
15;5;18;15
|
||||
15;5;44;38
|
||||
15;5;45;39
|
||||
15;5;46;37
|
||||
15;6;14;11
|
||||
15;6;15;1
|
||||
15;6;18;15
|
||||
15;6;44;38
|
||||
15;6;45;39
|
||||
15;6;46;37
|
||||
15;7;14;11
|
||||
15;7;15;1
|
||||
15;7;18;15
|
||||
15;7;44;38
|
||||
15;7;45;39
|
||||
15;7;46;37
|
||||
15;8;14;11
|
||||
15;8;15;1
|
||||
15;8;18;15
|
||||
15;8;44;38
|
||||
15;8;45;39
|
||||
15;8;46;37
|
||||
15;9;14;11
|
||||
15;9;15;1
|
||||
15;9;18;15
|
||||
15;9;44;38
|
||||
15;9;45;39
|
||||
15;9;46;37
|
||||
15;10;14;11
|
||||
15;10;15;1
|
||||
15;10;18;15
|
||||
15;10;44;38
|
||||
15;10;45;39
|
||||
15;10;46;37
|
||||
15;11;15;1
|
||||
15;11;18;15
|
||||
15;11;44;38
|
||||
15;11;45;39
|
||||
15;11;46;37
|
||||
15;12;14;11
|
||||
15;12;15;1
|
||||
15;12;18;15
|
||||
15;12;44;38
|
||||
15;12;45;39
|
||||
15;12;46;37
|
||||
15;13;14;11
|
||||
15;13;15;1
|
||||
15;13;18;15
|
||||
15;13;44;38
|
||||
15;13;45;39
|
||||
15;13;46;37
|
||||
15;14;14;11
|
||||
15;14;15;1
|
||||
15;14;18;15
|
||||
15;14;44;38
|
||||
15;14;45;39
|
||||
15;14;46;37
|
||||
15;15;14;11
|
||||
15;15;15;1
|
||||
15;15;44;38
|
||||
15;15;45;39
|
||||
15;15;46;37
|
||||
15;23;14;11
|
||||
15;23;15;1
|
||||
15;23;18;15
|
||||
15;23;44;38
|
||||
15;23;45;39
|
||||
15;23;46;37
|
||||
15;24;14;11
|
||||
15;24;15;1
|
||||
15;24;18;15
|
||||
15;24;44;38
|
||||
15;24;45;39
|
||||
15;24;46;37
|
||||
15;25;14;11
|
||||
15;25;15;1
|
||||
15;25;18;15
|
||||
15;25;44;38
|
||||
15;25;45;39
|
||||
15;25;46;37
|
||||
15;26;14;11
|
||||
15;26;15;1
|
||||
15;26;18;15
|
||||
15;26;44;38
|
||||
15;26;45;39
|
||||
15;26;46;37
|
||||
15;27;14;11
|
||||
15;27;15;1
|
||||
15;27;18;15
|
||||
15;27;44;38
|
||||
15;27;45;39
|
||||
15;27;46;37
|
||||
15;28;14;11
|
||||
15;28;15;1
|
||||
15;28;18;15
|
||||
15;28;44;38
|
||||
15;28;45;39
|
||||
15;28;46;37
|
||||
15;29;14;11
|
||||
15;29;15;1
|
||||
15;29;18;15
|
||||
15;29;44;38
|
||||
15;29;45;39
|
||||
15;29;46;37
|
||||
15;30;14;11
|
||||
15;30;15;1
|
||||
15;30;18;15
|
||||
15;30;44;38
|
||||
15;30;45;39
|
||||
15;30;46;37
|
||||
15;31;14;11
|
||||
15;31;15;1
|
||||
15;31;18;15
|
||||
15;31;44;38
|
||||
15;31;45;39
|
||||
15;31;46;37
|
||||
15;32;14;11
|
||||
15;32;15;1
|
||||
15;32;18;15
|
||||
15;32;44;38
|
||||
15;32;45;39
|
||||
15;32;46;37
|
||||
15;33;14;11
|
||||
15;33;15;1
|
||||
15;33;18;15
|
||||
15;33;44;38
|
||||
15;33;45;39
|
||||
15;33;46;37
|
||||
15;34;14;11
|
||||
15;34;15;1
|
||||
15;34;18;15
|
||||
15;34;44;38
|
||||
15;34;45;39
|
||||
15;34;46;37
|
||||
15;35;14;11
|
||||
15;35;15;1
|
||||
15;35;18;15
|
||||
15;35;44;38
|
||||
15;35;45;39
|
||||
15;35;46;37
|
||||
15;37;14;11
|
||||
15;37;15;1
|
||||
15;37;18;15
|
||||
15;37;44;38
|
||||
15;37;45;39
|
||||
15;38;14;11
|
||||
15;38;15;1
|
||||
15;38;18;15
|
||||
15;38;45;39
|
||||
15;38;46;37
|
||||
15;39;14;11
|
||||
15;39;15;1
|
||||
15;39;18;15
|
||||
15;39;44;38
|
||||
15;39;46;37
|
||||
15;49;14;11
|
||||
15;49;15;1
|
||||
15;49;18;15
|
||||
15;49;44;38
|
||||
15;49;45;39
|
||||
15;49;46;37
|
||||
15;50;14;11
|
||||
15;50;15;1
|
||||
15;50;18;15
|
||||
15;50;44;38
|
||||
15;50;45;39
|
||||
15;50;46;37
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -16,21 +16,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;0;14;14;1
|
||||
25;0;15;24;6
|
||||
25;0;16;14;1
|
||||
25;0;17;30;7
|
||||
25;0;17;30;9
|
||||
25;0;18;14;1
|
||||
25;0;19;30;7
|
||||
25;0;19;30;9
|
||||
25;0;20;14;1
|
||||
25;0;21;30;7
|
||||
25;0;21;30;9
|
||||
25;0;22;14;1
|
||||
25;0;23;30;7
|
||||
25;0;23;30;9
|
||||
25;0;24;14;1
|
||||
25;0;25;30;7
|
||||
25;0;25;30;9
|
||||
25;0;26;14;1
|
||||
25;0;27;30;7
|
||||
25;0;27;30;9
|
||||
25;0;28;14;1
|
||||
25;0;29;30;7
|
||||
25;0;29;30;9
|
||||
25;0;30;14;1
|
||||
25;0;31;30;7
|
||||
25;0;31;30;9
|
||||
25;0;32;14;1
|
||||
25;0;33;24;6
|
||||
25;0;34;14;1
|
||||
@@ -71,14 +71,14 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;1;11;24;6
|
||||
25;1;13;24;6
|
||||
25;1;15;24;6
|
||||
25;1;17;30;7
|
||||
25;1;19;30;7
|
||||
25;1;21;30;7
|
||||
25;1;23;30;7
|
||||
25;1;25;30;7
|
||||
25;1;27;30;7
|
||||
25;1;29;30;7
|
||||
25;1;31;30;7
|
||||
25;1;17;30;9
|
||||
25;1;19;30;9
|
||||
25;1;21;30;9
|
||||
25;1;23;30;9
|
||||
25;1;25;30;9
|
||||
25;1;27;30;9
|
||||
25;1;29;30;9
|
||||
25;1;31;30;9
|
||||
25;1;33;24;6
|
||||
25;1;35;24;6
|
||||
25;1;37;24;6
|
||||
@@ -112,21 +112,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;2;14;14;1
|
||||
25;2;15;24;6
|
||||
25;2;16;14;1
|
||||
25;2;17;30;7
|
||||
25;2;17;30;9
|
||||
25;2;18;14;1
|
||||
25;2;19;30;7
|
||||
25;2;19;30;9
|
||||
25;2;20;14;1
|
||||
25;2;21;30;7
|
||||
25;2;21;30;9
|
||||
25;2;22;14;1
|
||||
25;2;23;30;7
|
||||
25;2;23;30;9
|
||||
25;2;24;14;1
|
||||
25;2;25;30;7
|
||||
25;2;25;30;9
|
||||
25;2;26;14;1
|
||||
25;2;27;30;7
|
||||
25;2;27;30;9
|
||||
25;2;28;14;1
|
||||
25;2;29;30;7
|
||||
25;2;29;30;9
|
||||
25;2;30;14;1
|
||||
25;2;31;30;7
|
||||
25;2;31;30;9
|
||||
25;2;32;14;1
|
||||
25;2;33;24;6
|
||||
25;2;34;14;1
|
||||
@@ -175,21 +175,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;3;14;14;1
|
||||
25;3;15;24;6
|
||||
25;3;16;14;1
|
||||
25;3;17;30;7
|
||||
25;3;17;30;9
|
||||
25;3;18;14;1
|
||||
25;3;19;30;7
|
||||
25;3;19;30;9
|
||||
25;3;20;14;1
|
||||
25;3;21;30;7
|
||||
25;3;21;30;9
|
||||
25;3;22;14;1
|
||||
25;3;23;30;7
|
||||
25;3;23;30;9
|
||||
25;3;24;14;1
|
||||
25;3;25;30;7
|
||||
25;3;25;30;9
|
||||
25;3;26;14;1
|
||||
25;3;27;30;7
|
||||
25;3;27;30;9
|
||||
25;3;28;14;1
|
||||
25;3;29;30;7
|
||||
25;3;29;30;9
|
||||
25;3;30;14;1
|
||||
25;3;31;30;7
|
||||
25;3;31;30;9
|
||||
25;3;32;14;1
|
||||
25;3;33;24;6
|
||||
25;3;34;14;1
|
||||
@@ -238,21 +238,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;4;14;14;1
|
||||
25;4;15;24;6
|
||||
25;4;16;14;1
|
||||
25;4;17;30;7
|
||||
25;4;17;30;9
|
||||
25;4;18;14;1
|
||||
25;4;19;30;7
|
||||
25;4;19;30;9
|
||||
25;4;20;14;1
|
||||
25;4;21;30;7
|
||||
25;4;21;30;9
|
||||
25;4;22;14;1
|
||||
25;4;23;30;7
|
||||
25;4;23;30;9
|
||||
25;4;24;14;1
|
||||
25;4;25;30;7
|
||||
25;4;25;30;9
|
||||
25;4;26;14;1
|
||||
25;4;27;30;7
|
||||
25;4;27;30;9
|
||||
25;4;28;14;1
|
||||
25;4;29;30;7
|
||||
25;4;29;30;9
|
||||
25;4;30;14;1
|
||||
25;4;31;30;7
|
||||
25;4;31;30;9
|
||||
25;4;32;14;1
|
||||
25;4;33;24;6
|
||||
25;4;34;14;1
|
||||
@@ -298,21 +298,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;5;14;14;1
|
||||
25;5;15;24;6
|
||||
25;5;16;14;1
|
||||
25;5;17;30;7
|
||||
25;5;17;30;9
|
||||
25;5;18;14;1
|
||||
25;5;19;30;7
|
||||
25;5;19;30;9
|
||||
25;5;20;14;1
|
||||
25;5;21;30;7
|
||||
25;5;21;30;9
|
||||
25;5;22;14;1
|
||||
25;5;23;30;7
|
||||
25;5;23;30;9
|
||||
25;5;24;14;1
|
||||
25;5;25;30;7
|
||||
25;5;25;30;9
|
||||
25;5;26;14;1
|
||||
25;5;27;30;7
|
||||
25;5;27;30;9
|
||||
25;5;28;14;1
|
||||
25;5;29;30;7
|
||||
25;5;29;30;9
|
||||
25;5;30;14;1
|
||||
25;5;31;30;7
|
||||
25;5;31;30;9
|
||||
25;5;32;14;1
|
||||
25;5;33;24;6
|
||||
25;5;34;14;1
|
||||
@@ -352,21 +352,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;6;12;14;1
|
||||
25;6;14;14;1
|
||||
25;6;16;14;1
|
||||
25;6;17;30;7
|
||||
25;6;17;30;9
|
||||
25;6;18;14;1
|
||||
25;6;19;30;7
|
||||
25;6;19;30;9
|
||||
25;6;20;14;1
|
||||
25;6;21;30;7
|
||||
25;6;21;30;9
|
||||
25;6;22;14;1
|
||||
25;6;23;30;7
|
||||
25;6;23;30;9
|
||||
25;6;24;14;1
|
||||
25;6;25;30;7
|
||||
25;6;25;30;9
|
||||
25;6;26;14;1
|
||||
25;6;27;30;7
|
||||
25;6;27;30;9
|
||||
25;6;28;14;1
|
||||
25;6;29;30;7
|
||||
25;6;29;30;9
|
||||
25;6;30;14;1
|
||||
25;6;31;30;7
|
||||
25;6;31;30;9
|
||||
25;6;32;14;1
|
||||
25;6;34;14;1
|
||||
25;6;36;14;1
|
||||
@@ -408,13 +408,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
25;7;14;14;1
|
||||
25;7;15;24;6
|
||||
25;7;16;14;1
|
||||
25;7;17;30;9
|
||||
25;7;18;14;1
|
||||
25;7;19;30;9
|
||||
25;7;20;14;1
|
||||
25;7;21;30;9
|
||||
25;7;22;14;1
|
||||
25;7;23;30;9
|
||||
25;7;24;14;1
|
||||
25;7;25;30;9
|
||||
25;7;26;14;1
|
||||
25;7;27;30;9
|
||||
25;7;28;14;1
|
||||
25;7;29;30;9
|
||||
25;7;30;14;1
|
||||
25;7;31;30;9
|
||||
25;7;32;14;1
|
||||
25;7;33;24;6
|
||||
25;7;34;14;1
|
||||
|
||||
|
@@ -48,21 +48,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;0;46;14;1
|
||||
28;0;47;24;6
|
||||
28;0;48;14;1
|
||||
28;0;49;30;7
|
||||
28;0;49;30;9
|
||||
28;0;50;14;1
|
||||
28;0;51;30;7
|
||||
28;0;51;30;9
|
||||
28;0;52;14;1
|
||||
28;0;53;30;7
|
||||
28;0;53;30;9
|
||||
28;0;54;14;1
|
||||
28;0;55;30;7
|
||||
28;0;55;30;9
|
||||
28;0;56;14;1
|
||||
28;0;57;30;7
|
||||
28;0;57;30;9
|
||||
28;0;58;14;1
|
||||
28;0;59;30;7
|
||||
28;0;59;30;9
|
||||
28;0;60;14;1
|
||||
28;0;61;30;7
|
||||
28;0;61;30;9
|
||||
28;0;62;14;1
|
||||
28;0;63;30;7
|
||||
28;0;63;30;9
|
||||
28;1;1;24;6
|
||||
28;1;3;24;6
|
||||
28;1;5;24;6
|
||||
@@ -87,14 +87,14 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;1;43;24;6
|
||||
28;1;45;24;6
|
||||
28;1;47;24;6
|
||||
28;1;49;30;7
|
||||
28;1;51;30;7
|
||||
28;1;53;30;7
|
||||
28;1;55;30;7
|
||||
28;1;57;30;7
|
||||
28;1;59;30;7
|
||||
28;1;61;30;7
|
||||
28;1;63;30;7
|
||||
28;1;49;30;9
|
||||
28;1;51;30;9
|
||||
28;1;53;30;9
|
||||
28;1;55;30;9
|
||||
28;1;57;30;9
|
||||
28;1;59;30;9
|
||||
28;1;61;30;9
|
||||
28;1;63;30;9
|
||||
28;2;0;14;1
|
||||
28;2;1;24;6
|
||||
28;2;2;14;1
|
||||
@@ -143,21 +143,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;2;46;14;1
|
||||
28;2;47;24;6
|
||||
28;2;48;14;1
|
||||
28;2;49;30;7
|
||||
28;2;49;30;9
|
||||
28;2;50;14;1
|
||||
28;2;51;30;7
|
||||
28;2;51;30;9
|
||||
28;2;52;14;1
|
||||
28;2;53;30;7
|
||||
28;2;53;30;9
|
||||
28;2;54;14;1
|
||||
28;2;55;30;7
|
||||
28;2;55;30;9
|
||||
28;2;56;14;1
|
||||
28;2;57;30;7
|
||||
28;2;57;30;9
|
||||
28;2;58;14;1
|
||||
28;2;59;30;7
|
||||
28;2;59;30;9
|
||||
28;2;60;14;1
|
||||
28;2;61;30;7
|
||||
28;2;61;30;9
|
||||
28;2;62;14;1
|
||||
28;2;63;30;7
|
||||
28;2;63;30;9
|
||||
28;3;0;14;1
|
||||
28;3;1;24;6
|
||||
28;3;2;14;1
|
||||
@@ -206,21 +206,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;3;46;14;1
|
||||
28;3;47;24;6
|
||||
28;3;48;14;1
|
||||
28;3;49;30;7
|
||||
28;3;49;30;9
|
||||
28;3;50;14;1
|
||||
28;3;51;30;7
|
||||
28;3;51;30;9
|
||||
28;3;52;14;1
|
||||
28;3;53;30;7
|
||||
28;3;53;30;9
|
||||
28;3;54;14;1
|
||||
28;3;55;30;7
|
||||
28;3;55;30;9
|
||||
28;3;56;14;1
|
||||
28;3;57;30;7
|
||||
28;3;57;30;9
|
||||
28;3;58;14;1
|
||||
28;3;59;30;7
|
||||
28;3;59;30;9
|
||||
28;3;60;14;1
|
||||
28;3;61;30;7
|
||||
28;3;61;30;9
|
||||
28;3;62;14;1
|
||||
28;3;63;30;7
|
||||
28;3;63;30;9
|
||||
28;4;0;14;1
|
||||
28;4;1;24;6
|
||||
28;4;2;14;1
|
||||
@@ -266,21 +266,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;4;46;14;1
|
||||
28;4;47;24;6
|
||||
28;4;48;14;1
|
||||
28;4;49;30;7
|
||||
28;4;49;30;9
|
||||
28;4;50;14;1
|
||||
28;4;51;30;7
|
||||
28;4;51;30;9
|
||||
28;4;52;14;1
|
||||
28;4;53;30;7
|
||||
28;4;53;30;9
|
||||
28;4;54;14;1
|
||||
28;4;55;30;7
|
||||
28;4;55;30;9
|
||||
28;4;56;14;1
|
||||
28;4;57;30;7
|
||||
28;4;57;30;9
|
||||
28;4;58;14;1
|
||||
28;4;59;30;7
|
||||
28;4;59;30;9
|
||||
28;4;60;14;1
|
||||
28;4;61;30;7
|
||||
28;4;61;30;9
|
||||
28;4;62;14;1
|
||||
28;4;63;30;7
|
||||
28;4;63;30;9
|
||||
28;5;0;14;1
|
||||
28;5;1;24;6
|
||||
28;5;2;14;1
|
||||
@@ -328,21 +328,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;5;46;14;1
|
||||
28;5;47;24;6
|
||||
28;5;48;14;1
|
||||
28;5;49;30;7
|
||||
28;5;49;30;9
|
||||
28;5;50;14;1
|
||||
28;5;51;30;7
|
||||
28;5;51;30;9
|
||||
28;5;52;14;1
|
||||
28;5;53;30;7
|
||||
28;5;53;30;9
|
||||
28;5;54;14;1
|
||||
28;5;55;30;7
|
||||
28;5;55;30;9
|
||||
28;5;56;14;1
|
||||
28;5;57;30;7
|
||||
28;5;57;30;9
|
||||
28;5;58;14;1
|
||||
28;5;59;30;7
|
||||
28;5;59;30;9
|
||||
28;5;60;14;1
|
||||
28;5;61;30;7
|
||||
28;5;61;30;9
|
||||
28;5;62;14;1
|
||||
28;5;63;30;7
|
||||
28;5;63;30;9
|
||||
28;6;0;14;1
|
||||
28;6;2;14;1
|
||||
28;6;4;14;1
|
||||
@@ -376,21 +376,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;6;44;14;1
|
||||
28;6;46;14;1
|
||||
28;6;48;14;1
|
||||
28;6;49;30;7
|
||||
28;6;49;30;9
|
||||
28;6;50;14;1
|
||||
28;6;51;30;7
|
||||
28;6;51;30;9
|
||||
28;6;52;14;1
|
||||
28;6;53;30;7
|
||||
28;6;53;30;9
|
||||
28;6;54;14;1
|
||||
28;6;55;30;7
|
||||
28;6;55;30;9
|
||||
28;6;56;14;1
|
||||
28;6;57;30;7
|
||||
28;6;57;30;9
|
||||
28;6;58;14;1
|
||||
28;6;59;30;7
|
||||
28;6;59;30;9
|
||||
28;6;60;14;1
|
||||
28;6;61;30;7
|
||||
28;6;61;30;9
|
||||
28;6;62;14;1
|
||||
28;6;63;30;7
|
||||
28;6;63;30;9
|
||||
28;7;0;14;1
|
||||
28;7;1;24;6
|
||||
28;7;2;14;1
|
||||
@@ -440,10 +440,18 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
28;7;46;14;1
|
||||
28;7;47;24;6
|
||||
28;7;48;14;1
|
||||
28;7;49;30;9
|
||||
28;7;50;14;1
|
||||
28;7;51;30;9
|
||||
28;7;52;14;1
|
||||
28;7;53;30;9
|
||||
28;7;54;14;1
|
||||
28;7;55;30;9
|
||||
28;7;56;14;1
|
||||
28;7;57;30;9
|
||||
28;7;58;14;1
|
||||
28;7;59;30;9
|
||||
28;7;60;14;1
|
||||
28;7;61;30;9
|
||||
28;7;62;14;1
|
||||
28;7;63;30;9
|
||||
|
||||
|
@@ -32,17 +32,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;0;30;14;1
|
||||
54;0;31;22;4
|
||||
54;0;32;14;1
|
||||
54;0;33;30;7
|
||||
54;0;33;30;9
|
||||
54;0;34;14;1
|
||||
54;0;35;30;7
|
||||
54;0;35;30;9
|
||||
54;0;36;14;1
|
||||
54;0;37;22;4
|
||||
54;0;38;14;1
|
||||
54;0;39;22;4
|
||||
54;0;40;14;1
|
||||
54;0;41;30;7
|
||||
54;0;41;30;9
|
||||
54;0;42;14;1
|
||||
54;0;43;30;7
|
||||
54;0;43;30;9
|
||||
54;0;44;14;1
|
||||
54;0;45;22;4
|
||||
54;0;46;14;1
|
||||
@@ -79,12 +79,12 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;1;27;24;6
|
||||
54;1;29;22;4
|
||||
54;1;31;22;4
|
||||
54;1;33;30;7
|
||||
54;1;35;30;7
|
||||
54;1;33;30;9
|
||||
54;1;35;30;9
|
||||
54;1;37;22;4
|
||||
54;1;39;22;4
|
||||
54;1;41;30;7
|
||||
54;1;43;30;7
|
||||
54;1;41;30;9
|
||||
54;1;43;30;9
|
||||
54;1;45;22;4
|
||||
54;1;47;22;4
|
||||
54;1;49;24;6
|
||||
@@ -127,17 +127,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;2;30;14;1
|
||||
54;2;31;22;4
|
||||
54;2;32;14;1
|
||||
54;2;33;30;7
|
||||
54;2;33;30;9
|
||||
54;2;34;14;1
|
||||
54;2;35;30;7
|
||||
54;2;35;30;9
|
||||
54;2;36;14;1
|
||||
54;2;37;22;4
|
||||
54;2;38;14;1
|
||||
54;2;39;22;4
|
||||
54;2;40;14;1
|
||||
54;2;41;30;7
|
||||
54;2;41;30;9
|
||||
54;2;42;14;1
|
||||
54;2;43;30;7
|
||||
54;2;43;30;9
|
||||
54;2;44;14;1
|
||||
54;2;45;22;4
|
||||
54;2;46;14;1
|
||||
@@ -190,17 +190,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;3;30;14;1
|
||||
54;3;31;22;4
|
||||
54;3;32;14;1
|
||||
54;3;33;30;7
|
||||
54;3;33;30;9
|
||||
54;3;34;14;1
|
||||
54;3;35;30;7
|
||||
54;3;35;30;9
|
||||
54;3;36;14;1
|
||||
54;3;37;22;4
|
||||
54;3;38;14;1
|
||||
54;3;39;22;4
|
||||
54;3;40;14;1
|
||||
54;3;41;30;7
|
||||
54;3;41;30;9
|
||||
54;3;42;14;1
|
||||
54;3;43;30;7
|
||||
54;3;43;30;9
|
||||
54;3;44;14;1
|
||||
54;3;45;22;4
|
||||
54;3;46;14;1
|
||||
@@ -244,15 +244,15 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;4;28;14;1
|
||||
54;4;30;14;1
|
||||
54;4;32;14;1
|
||||
54;4;33;30;7
|
||||
54;4;33;30;9
|
||||
54;4;34;14;1
|
||||
54;4;35;30;7
|
||||
54;4;35;30;9
|
||||
54;4;36;14;1
|
||||
54;4;38;14;1
|
||||
54;4;40;14;1
|
||||
54;4;41;30;7
|
||||
54;4;41;30;9
|
||||
54;4;42;14;1
|
||||
54;4;43;30;7
|
||||
54;4;43;30;9
|
||||
54;4;44;14;1
|
||||
54;4;46;14;1
|
||||
54;4;48;14;1
|
||||
@@ -300,17 +300,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;5;30;14;1
|
||||
54;5;31;22;4
|
||||
54;5;32;14;1
|
||||
54;5;33;30;7
|
||||
54;5;33;30;9
|
||||
54;5;34;14;1
|
||||
54;5;35;30;7
|
||||
54;5;35;30;9
|
||||
54;5;36;14;1
|
||||
54;5;37;22;4
|
||||
54;5;38;14;1
|
||||
54;5;39;22;4
|
||||
54;5;40;14;1
|
||||
54;5;41;30;7
|
||||
54;5;41;30;9
|
||||
54;5;42;14;1
|
||||
54;5;43;30;7
|
||||
54;5;43;30;9
|
||||
54;5;44;14;1
|
||||
54;5;45;22;4
|
||||
54;5;46;14;1
|
||||
@@ -360,17 +360,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;6;30;14;1
|
||||
54;6;31;22;4
|
||||
54;6;32;14;1
|
||||
54;6;33;30;7
|
||||
54;6;33;30;9
|
||||
54;6;34;14;1
|
||||
54;6;35;30;7
|
||||
54;6;35;30;9
|
||||
54;6;36;14;1
|
||||
54;6;37;22;4
|
||||
54;6;38;14;1
|
||||
54;6;39;22;4
|
||||
54;6;40;14;1
|
||||
54;6;41;30;7
|
||||
54;6;41;30;9
|
||||
54;6;42;14;1
|
||||
54;6;43;30;7
|
||||
54;6;43;30;9
|
||||
54;6;44;14;1
|
||||
54;6;45;22;4
|
||||
54;6;46;14;1
|
||||
@@ -420,13 +420,17 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
54;7;30;14;1
|
||||
54;7;31;22;4
|
||||
54;7;32;14;1
|
||||
54;7;33;30;9
|
||||
54;7;34;14;1
|
||||
54;7;35;30;9
|
||||
54;7;36;14;1
|
||||
54;7;37;22;4
|
||||
54;7;38;14;1
|
||||
54;7;39;22;4
|
||||
54;7;40;14;1
|
||||
54;7;41;30;9
|
||||
54;7;42;14;1
|
||||
54;7;43;30;9
|
||||
54;7;44;14;1
|
||||
54;7;45;22;4
|
||||
54;7;46;14;1
|
||||
|
||||
|
@@ -1,20 +1,20 @@
|
||||
IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStato
|
||||
67;0;0;14;1
|
||||
67;0;1;30;7
|
||||
67;0;1;30;9
|
||||
67;0;2;14;1
|
||||
67;0;3;30;7
|
||||
67;0;3;30;9
|
||||
67;0;4;14;1
|
||||
67;0;5;30;7
|
||||
67;0;5;30;9
|
||||
67;0;6;14;1
|
||||
67;0;7;30;7
|
||||
67;0;7;30;9
|
||||
67;0;8;14;1
|
||||
67;0;9;30;7
|
||||
67;0;9;30;9
|
||||
67;0;10;14;1
|
||||
67;0;11;30;7
|
||||
67;0;11;30;9
|
||||
67;0;12;14;1
|
||||
67;0;13;30;7
|
||||
67;0;13;30;9
|
||||
67;0;14;14;1
|
||||
67;0;15;30;7
|
||||
67;0;15;30;9
|
||||
67;0;16;14;1
|
||||
67;0;17;15;2
|
||||
67;0;18;14;1
|
||||
@@ -31,14 +31,14 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;0;29;18;4
|
||||
67;0;30;14;1
|
||||
67;0;31;18;4
|
||||
67;1;1;30;7
|
||||
67;1;3;30;7
|
||||
67;1;5;30;7
|
||||
67;1;7;30;7
|
||||
67;1;9;30;7
|
||||
67;1;11;30;7
|
||||
67;1;13;30;7
|
||||
67;1;15;30;7
|
||||
67;1;1;30;9
|
||||
67;1;3;30;9
|
||||
67;1;5;30;9
|
||||
67;1;7;30;9
|
||||
67;1;9;30;9
|
||||
67;1;11;30;9
|
||||
67;1;13;30;9
|
||||
67;1;15;30;9
|
||||
67;1;17;15;2
|
||||
67;1;19;16;3
|
||||
67;1;21;15;2
|
||||
@@ -48,21 +48,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;1;29;18;4
|
||||
67;1;31;18;4
|
||||
67;2;0;14;1
|
||||
67;2;1;30;7
|
||||
67;2;1;30;9
|
||||
67;2;2;14;1
|
||||
67;2;3;30;7
|
||||
67;2;3;30;9
|
||||
67;2;4;14;1
|
||||
67;2;5;30;7
|
||||
67;2;5;30;9
|
||||
67;2;6;14;1
|
||||
67;2;7;30;7
|
||||
67;2;7;30;9
|
||||
67;2;8;14;1
|
||||
67;2;9;30;7
|
||||
67;2;9;30;9
|
||||
67;2;10;14;1
|
||||
67;2;11;30;7
|
||||
67;2;11;30;9
|
||||
67;2;12;14;1
|
||||
67;2;13;30;7
|
||||
67;2;13;30;9
|
||||
67;2;14;14;1
|
||||
67;2;15;30;7
|
||||
67;2;15;30;9
|
||||
67;2;16;14;1
|
||||
67;2;18;14;1
|
||||
67;2;19;16;3
|
||||
@@ -78,21 +78,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;2;30;14;1
|
||||
67;2;31;18;4
|
||||
67;3;0;14;1
|
||||
67;3;1;30;7
|
||||
67;3;1;30;9
|
||||
67;3;2;14;1
|
||||
67;3;3;30;7
|
||||
67;3;3;30;9
|
||||
67;3;4;14;1
|
||||
67;3;5;30;7
|
||||
67;3;5;30;9
|
||||
67;3;6;14;1
|
||||
67;3;7;30;7
|
||||
67;3;7;30;9
|
||||
67;3;8;14;1
|
||||
67;3;9;30;7
|
||||
67;3;9;30;9
|
||||
67;3;10;14;1
|
||||
67;3;11;30;7
|
||||
67;3;11;30;9
|
||||
67;3;12;14;1
|
||||
67;3;13;30;7
|
||||
67;3;13;30;9
|
||||
67;3;14;14;1
|
||||
67;3;15;30;7
|
||||
67;3;15;30;9
|
||||
67;3;16;14;1
|
||||
67;3;17;15;2
|
||||
67;3;18;14;1
|
||||
@@ -108,21 +108,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;3;30;14;1
|
||||
67;3;31;18;4
|
||||
67;4;0;14;1
|
||||
67;4;1;30;7
|
||||
67;4;1;30;9
|
||||
67;4;2;14;1
|
||||
67;4;3;30;7
|
||||
67;4;3;30;9
|
||||
67;4;4;14;1
|
||||
67;4;5;30;7
|
||||
67;4;5;30;9
|
||||
67;4;6;14;1
|
||||
67;4;7;30;7
|
||||
67;4;7;30;9
|
||||
67;4;8;14;1
|
||||
67;4;9;30;7
|
||||
67;4;9;30;9
|
||||
67;4;10;14;1
|
||||
67;4;11;30;7
|
||||
67;4;11;30;9
|
||||
67;4;12;14;1
|
||||
67;4;13;30;7
|
||||
67;4;13;30;9
|
||||
67;4;14;14;1
|
||||
67;4;15;30;7
|
||||
67;4;15;30;9
|
||||
67;4;16;14;1
|
||||
67;4;17;15;2
|
||||
67;4;18;14;1
|
||||
@@ -136,21 +136,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;4;28;14;1
|
||||
67;4;30;14;1
|
||||
67;5;0;14;1
|
||||
67;5;1;30;7
|
||||
67;5;1;30;9
|
||||
67;5;2;14;1
|
||||
67;5;3;30;7
|
||||
67;5;3;30;9
|
||||
67;5;4;14;1
|
||||
67;5;5;30;7
|
||||
67;5;5;30;9
|
||||
67;5;6;14;1
|
||||
67;5;7;30;7
|
||||
67;5;7;30;9
|
||||
67;5;8;14;1
|
||||
67;5;9;30;7
|
||||
67;5;9;30;9
|
||||
67;5;10;14;1
|
||||
67;5;11;30;7
|
||||
67;5;11;30;9
|
||||
67;5;12;14;1
|
||||
67;5;13;30;7
|
||||
67;5;13;30;9
|
||||
67;5;14;14;1
|
||||
67;5;15;30;7
|
||||
67;5;15;30;9
|
||||
67;5;16;14;1
|
||||
67;5;17;15;2
|
||||
67;5;18;14;1
|
||||
@@ -168,21 +168,21 @@ IdxFamigliaIngresso;IdxMicroStato;ValoreIngresso;IdxTipoEvento;next_IdxMicroStat
|
||||
67;5;30;14;1
|
||||
67;5;31;18;4
|
||||
67;6;0;14;1
|
||||
67;6;1;30;7
|
||||
67;6;1;30;9
|
||||
67;6;2;14;1
|
||||
67;6;3;30;7
|
||||
67;6;3;30;9
|
||||
67;6;4;14;1
|
||||
67;6;5;30;7
|
||||
67;6;5;30;9
|
||||
67;6;6;14;1
|
||||
67;6;7;30;7
|
||||
67;6;7;30;9
|
||||
67;6;8;14;1
|
||||
67;6;9;30;7
|
||||
67;6;9;30;9
|
||||
67;6;10;14;1
|
||||
67;6;11;30;7
|
||||
67;6;11;30;9
|
||||
67;6;12;14;1
|
||||
67;6;13;30;7
|
||||
67;6;13;30;9
|
||||
67;6;14;14;1
|
||||
67;6;15;30;7
|
||||
67;6;15;30;9
|
||||
67;6;16;14;1
|
||||
67;6;17;15;2
|
||||
67;6;18;14;1
|
||||
|
||||
|
Reference in New Issue
Block a user