SA-MP Forums Archive
no save cars , help please !!!!!! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: no save cars , help please !!!!!! (/showthread.php?tid=442195)



no save cars , help please !!!!!! - morocco - 06.06.2013

Hi

i have server host and all is Ok and work , but today i use rester server after all save but cars no save

i have system save house(s) and biz(s) Like save car(s) with .ini but why this cars no save now ?




sorry english


Re: no save cars , help please !!!!!! - reckst4r - 06.06.2013

No one can help you if you don't show the script.


Re: no save cars , help please !!!!!! - scout322 - 06.06.2013

How can we help you, if you didnt send us the scripts ?


Re : no save cars , help please !!!!!! - morocco - 06.06.2013

i think no need


this is work , just today no save and 0 cars in server but all house's and biz's save


Re: no save cars , help please !!!!!! - reckst4r - 06.06.2013

It's obviously a problem with the script. How are we supposed to help you, if we have no idea what kind of a problem we're looking at?


Re : no save cars , help please !!!!!! - morocco - 06.06.2013

The server works well and the stores after restart . But today i restart the server and with regret he stores all the stuff but delete cars !!

pawn Код:
public LoadCar()
{
    new arrCoords[55][64];
    new strFromFile2[256];
    new File: file = fopen("Ownership/Veh.ini", io_read);
    if(file)
    {
        new idx;
        while (idx < sizeof(CarInfo))
        {
            fread(file, strFromFile2);
            split(strFromFile2, arrCoords, '|');
            CarInfo[idx][tModel] = strvalEx(arrCoords[0]);
            CarInfo[idx][tLocationx] = floatstr(arrCoords[1]);
            CarInfo[idx][tLocationy] = floatstr(arrCoords[2]);
            CarInfo[idx][tLocationz] = floatstr(arrCoords[3]);
            CarInfo[idx][tAngle] = floatstr(arrCoords[4]);
            CarInfo[idx][tColorOne] = strvalEx(arrCoords[5]);
            CarInfo[idx][tColorTwo] = strvalEx(arrCoords[6]);
            strmid(CarInfo[idx][tOwner], arrCoords[7], 0, strlen(arrCoords[7]), 255);
            CarInfo[idx][tOwned] = strvalEx(arrCoords[8]);
            CarInfo[idx][tLock] = strvalEx(arrCoords[9]);
            CarInfo[idx][tEngine] = strvalEx(arrCoords[10]);
            CarInfo[idx][tPaintjob] = strvalEx(arrCoords[11]);
            CarInfo[idx][tOwnable] = strvalEx(arrCoords[12]);
            CarInfo[idx][tFaction] = strvalEx(arrCoords[13]);
            CarInfo[idx][tVIP] = strvalEx(arrCoords[14]);
            CarInfo[idx][tAlarm] = strvalEx(arrCoords[15]);
            CarInfo[idx][tAlarmStarted] = strvalEx(arrCoords[16]);
            CarInfo[idx][tTrunkOpened] = strvalEx(arrCoords[17]);
            CarInfo[idx][tInsured] = strvalEx(arrCoords[18]);
            CarInfo[idx][tGun1] = strvalEx(arrCoords[19]);
            CarInfo[idx][tGun2] = strvalEx(arrCoords[20]);
            CarInfo[idx][tArmor] = floatstr(arrCoords[21]);
            CarInfo[idx][tCrack] = strvalEx(arrCoords[22]);
            CarInfo[idx][tPot] = strvalEx(arrCoords[23]);
            CarInfo[idx][tNOS] = strvalEx(arrCoords[24]);
            CarInfo[idx][tHoodOpened] = strvalEx(arrCoords[25]);
            CarInfo[idx][tPrice] = strvalEx(arrCoords[26]);
            strmid(CarInfo[idx][tLicensePlate], arrCoords[27], 0, strlen(arrCoords[27]), 255);
            CarInfo[idx][tDisabled] = strvalEx(arrCoords[28]);
            CarInfo[idx][tGang] = strvalEx(arrCoords[29]);
            CarInfo[idx][tJob] = strvalEx(arrCoords[29]);
            CarInfo[idx][tVehRemote] = strvalEx(arrCoords[30]);
            CarInfo[idx][tGPS] = strvalEx(arrCoords[31]);
            CarInfo[idx][tNeon] = strvalEx(arrCoords[32]);
            CarInfo[idx][tNeonON] = strvalEx(arrCoords[33]);
            CarInfo[idx][tComponent0] = strvalEx(arrCoords[34]);
            CarInfo[idx][tComponent1] = strvalEx(arrCoords[35]);
            CarInfo[idx][tComponent2] = strvalEx(arrCoords[36]);
            CarInfo[idx][tComponent3] = strvalEx(arrCoords[37]);
            CarInfo[idx][tComponent4] = strvalEx(arrCoords[38]);
            CarInfo[idx][tComponent5] = strvalEx(arrCoords[39]);
            CarInfo[idx][tComponent6] = strvalEx(arrCoords[40]);
            CarInfo[idx][tComponent7] = strvalEx(arrCoords[41]);
            CarInfo[idx][tComponent8] = strvalEx(arrCoords[42]);
            CarInfo[idx][tComponent9] = strvalEx(arrCoords[43]);
            CarInfo[idx][tComponent10] = strvalEx(arrCoords[44]);
            CarInfo[idx][tComponent11] = strvalEx(arrCoords[45]);
            CarInfo[idx][tComponent12] = strvalEx(arrCoords[46]);
            CarInfo[idx][tComponent13] = strvalEx(arrCoords[47]);
            CarInfo[idx][tDuplicateKeys] = strvalEx(arrCoords[48]);
            CarInfo[idx][tTowServices] = strvalEx(arrCoords[49]);
            CarInfo[idx][tImp] = strvalEx(arrCoords[50]);
            CarInfo[idx][tImpPrice] = strvalEx(arrCoords[51]);
            CarInfo[idx][tRentable] = strvalEx(arrCoords[52]);
            CarInfo[idx][Neon] = strvalEx(arrCoords[53]);
            CarInfo[idx][NeonObject] = strvalEx(arrCoords[54]);
            idx++;
        }
        fclose(file);
    }
    return 1;
}

public SaveCar()
{

    new File: file2;
    new idx;
    while (idx < sizeof(CarInfo))
    {
        new coordsstring[256];
        format(coordsstring, sizeof(coordsstring), "%d|%f|%f|%f|%f|%d|%d|%s|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%f|%d|%d|%d|%d|%d|%s|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d|%d\n",
        CarInfo[idx][tModel],
        CarInfo[idx][tLocationx],
        CarInfo[idx][tLocationy],
        CarInfo[idx][tLocationz],
        CarInfo[idx][tAngle],
        CarInfo[idx][tColorOne],
        CarInfo[idx][tColorTwo],
        CarInfo[idx][tOwner],
        CarInfo[idx][tOwned],
        CarInfo[idx][tLock],
        CarInfo[idx][tEngine],
        CarInfo[idx][tPaintjob],
        CarInfo[idx][tOwnable],
        CarInfo[idx][tFaction],
        CarInfo[idx][tVIP],
        CarInfo[idx][tAlarm],
        CarInfo[idx][tAlarmStarted],
        CarInfo[idx][tTrunkOpened],
        CarInfo[idx][tInsured],
        CarInfo[idx][tGun1],
        CarInfo[idx][tGun2],
        CarInfo[idx][tArmor],
        CarInfo[idx][tCrack],
        CarInfo[idx][tPot],
        CarInfo[idx][tNOS],
        CarInfo[idx][tHoodOpened],
        CarInfo[idx][tPrice],
        CarInfo[idx][tLicensePlate],
        CarInfo[idx][tDisabled],
        CarInfo[idx][tGang],
        CarInfo[idx][tJob],
        CarInfo[idx][tVehRemote],
        CarInfo[idx][tGPS],
        CarInfo[idx][tNeon],
        CarInfo[idx][tNeonON],
        CarInfo[idx][tComponent0],
        CarInfo[idx][tComponent1],
        CarInfo[idx][tComponent2],
        CarInfo[idx][tComponent3],
        CarInfo[idx][tComponent4],
        CarInfo[idx][tComponent5],
        CarInfo[idx][tComponent6],
        CarInfo[idx][tComponent7],
        CarInfo[idx][tComponent8],
        CarInfo[idx][tComponent9],
        CarInfo[idx][tComponent10],
        CarInfo[idx][tComponent11],
        CarInfo[idx][tComponent12],
        CarInfo[idx][tComponent13],
        CarInfo[idx][tDuplicateKeys],
        CarInfo[idx][tTowServices],
        CarInfo[idx][tImp],
        CarInfo[idx][tImpPrice],
        CarInfo[idx][tRentable],
        CarInfo[idx][Neon],
        CarInfo[idx][NeonObject]);
        if(idx == 0)
        {
            file2 = fopen("Ownership/Veh.ini", io_write);
        }
        else
        {
            file2 = fopen("Ownership/Veh.ini", io_append);
        }
        fwrite(file2, coordsstring);
        idx++;
        fclose(file2);
    }
    return 1;
}



Re: no save cars , help please !!!!!! - reckst4r - 06.06.2013

Nothing in the LoadCar function tells the function to spawn any vehicles.
Add CreateVehicle(CarInfo[idx][tModel], CarInfo[idx][tLocationx], CarInfo[idx][tLocationy], CarInfo[idx][tLocationz], CarInfo[idx][tAngle], CarInfo[idx][tColorOne], CarInfo[idx][tColorTwo]);
The rest of the car "specifications" should be easy for you to add.


Re : Re: no save cars , help please !!!!!! - morocco - 06.06.2013

Quote:
Originally Posted by reckst4r
Посмотреть сообщение
Nothing in the LoadCar function tells the function to spawn any vehicles.
Add CreateVehicle(CarInfo[idx][tModel], CarInfo[idx][tLocationx], CarInfo[idx][tLocationy], CarInfo[idx][tLocationz], CarInfo[idx][tAngle], CarInfo[idx][tColorOne], CarInfo[idx][tColorTwo]);
The rest of the car "specifications" should be easy for you to add.
How ? and what do you man ? o.O


Re : no save cars , help please !!!!!! - morocco - 06.06.2013

Look this veh.ini on Filezill

Код:
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
596|1535.734375|-1677.299072|13.104841|0.914725|0|1||0|0|0|0|0|1|0|0|0|1|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
596|1536.067993|-1669.405639|13.120038|1.526890|0|1||0|0|1|0|0|1|0|0|0|0|0|0|0|100.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
596|1602.115722|-1683.954467|6.077064|90.612609|0|1||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|POLICE|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
523|1574.414794|-1710.472290|5.890625|0.698854|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|POLICE|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
523|1570.414306|-1710.685424|5.890625|2.077353|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|POLICE|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
523|1564.994262|-1709.854370|5.890625|3.581295|0|0||0|0|1|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|POLICE|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
596|1602.030395|-1692.219604|5.890625|91.047782|0|1||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|POLICE|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
528|1538.730224|-1645.248168|5.890625|177.215393|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
427|1534.789550|-1644.016601|6.051280|179.180740|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
427|1530.914794|-1644.319213|5.890625|178.694473|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
601|1544.592773|-1650.942504|5.890625|91.199844|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
560|1545.101562|-1654.991333|5.595479|90.611778|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
560|1545.190673|-1658.819213|5.595674|89.122482|0|0||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|SWAT|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
497|1548.429565|-1708.196533|28.394809|90.614212|0|1||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
497|1548.055175|-1644.418945|28.402114|84.660835|0|1||0|0|0|0|0|1|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
551|944.323303|-1755.075683|13.338061|169.805404|1|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|DMV|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
551|951.314758|-1756.274780|13.347558|168.651153|1|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|DMV|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
551|931.882324|-1724.041259|13.323984|90.252075|1|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|DMV|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
551|931.832275|-1716.897827|13.320093|91.374694|1|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|DMV|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
542|1630.897460|-1906.481201|13.282402|185.190185|116|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
540|1748.865356|-1046.283813|23.827602|2.000580|21|4||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
421|1050.718017|-923.876770|42.586387|273.874420|32|4||0|0|1|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
458|585.947082|-1529.686401|15.170432|178.989746|3|5||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
604|1525.305419|-2271.220947|-3.073266|11.914915|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
509|1675.983764|-2313.856445|-3.150916|90.710594|0|0||0|0|1|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
481|1666.901000|-2328.218505|-3.181653|248.705413|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
509|1594.875244|-2325.765625|-3.186115|182.501403|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
605|1569.088134|-2240.661132|-2.865833|91.382362|25|4||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
490|1522.316406|-2161.414306|13.793951|181.465164|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
407|1503.298217|-2156.392333|13.903614|274.281585|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
407|1502.717285|-2166.495117|13.918125|266.117248|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
416|1503.321899|-2173.838867|13.816059|271.218414|3|0||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
490|1517.026000|-2161.843994|13.794662|179.139099|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
579|1567.033203|-2170.058349|13.597105|91.843727|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
416|1566.541015|-2182.539794|13.817049|179.297637|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
416|1566.259033|-2152.932861|13.817481|87.481704|3|3||0|0|0|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|LSFMD|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
496|1947.866455|-2123.953613|13.261992|90.261054|35|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
402|288.461944|-1522.645751|24.418878|235.352050|36|4||0|0|0|0|0|0|2|0|0|0|0|0|0|0.000000|0|0|0|0|0|VIP 2|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
560|291.601318|-1517.822021|24.298906|236.039443|124|1||0|0|0|0|0|0|3|0|0|0|0|0|0|0.000000|0|0|0|0|0|VIP 3|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
560|293.897705|-1513.222778|24.299064|238.778869|110|15||0|0|0|0|0|0|3|0|0|0|0|0|0|0.000000|0|0|0|0|0|VIP 3|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
402|284.847381|-1527.560791|24.423658|235.424957|0|0||0|0|0|0|0|0|2|0|0|0|0|0|0|0.000000|0|0|0|0|0|VIP 2|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
409|1404.445068|-1778.096801|13.546875|89.849700|1|1||0|0|0|0|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Mayor|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
579|1404.117553|-1785.889282|13.442248|88.088081|0|0||0|0|0|0|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Unknow|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
579|1404.286865|-1793.026489|13.447999|88.541297|0|0||0|0|0|0|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Unknow|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
426|1404.455322|-1798.650146|13.290287|90.349006|0|0||0|0|0|0|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Unknow|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
586|1401.037719|-1780.264526|13.066443|85.541145|0|0||0|0|0|0|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|F.14|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
586|1401.921752|-1775.540527|13.077363|90.899047|0|0||0|0|0|1|0|6|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|F.14|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
514|-159.849258|-302.020050|1.561642|93.880958|25|21||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|TruckJob|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
515|-182.902069|-295.234130|2.448353|90.854545|21|5||0|0|1|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|TruckJob|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
514|-159.149444|-310.487976|2.013097|90.135650|25|21||0|0|1|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
591|-187.200866|-275.023437|2.085638|93.012123|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
591|-188.170272|-282.344665|2.052119|89.985877|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
435|-198.084381|-195.971450|2.048650|83.919616|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
435|-175.604736|-200.936294|2.048861|78.468978|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
435|-179.308044|-209.202819|2.047791|89.289329|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
514|-160.696487|-240.710052|2.012387|91.737937|2|2||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
514|-161.020965|-248.463043|1.992748|86.879417|16|5||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
515|-185.073837|-252.206497|2.443550|0.442889|3|3||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|0|18|0|0|0|0|0|0|0|0|0
435|-190.472335|-250.315475|2.052062|354.386688|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
456|-1947.297363|-2442.498291|30.802137|129.617462|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|16|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
456|-1948.826538|-2427.708251|30.817558|46.934280|1|1||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|16|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
456|-1946.016357|-2423.101562|30.820461|49.779857|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|16|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
456|-1943.898437|-2451.305664|30.815973|42.672878|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|16|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
424|-2146.714111|-2443.355957|30.406515|139.506927|12|4||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
421|2376.589843|-1201.321166|27.308109|184.302490|25|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
416|1178.206542|-1338.695800|14.015352|266.169372|3|3||0|0|1|0|0|4|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
420|1764.705078|-1859.545043|13.260870|270.474121|6|6||0|0|0|0|0|10|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Taxi|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
420|1771.856079|-1859.969970|13.250343|272.172546|6|6||0|0|0|0|0|10|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Taxi|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
420|1748.784790|-1859.915893|13.273406|268.987304|6|6||0|0|0|0|0|10|0|0|0|0|0|0|0|0.000000|0|0|0|0|0|Taxi|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
488|744.535888|-1370.917846|25.885290|272.241241|2|1||0|0|0|0|0|9|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
582|749.826354|-1335.235351|13.597482|179.172882|60|25||0|0|0|0|0|9|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
582|756.243896|-1334.950317|13.595975|179.572708|60|25||0|0|0|0|0|9|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
582|763.600524|-1335.370971|13.622816|182.863693|60|25||0|0|0|0|0|9|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
582|768.905334|-1335.431030|13.593675|183.573562|60|25||0|0|0|0|0|9|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
542|2134.835205|-1147.394775|24.267377|34.669509|0|0||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|3600000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
542|2136.885498|-1144.041381|24.639711|30.905519|0|0||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|3600000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
543|2119.135498|-1147.670166|24.226297|312.948638|25|60||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|3000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
543|2118.299560|-1142.736206|24.627553|303.292724|60|60||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|3000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
529|2118.921386|-1135.595703|24.859035|289.933288|6|6||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|4500000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
529|2119.577148|-1130.458251|24.958171|270.499267|2|2||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|4500000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
496|2135.699462|-1131.838989|25.401540|82.381774|8|8||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|5300000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
496|2134.206787|-1136.948852|25.342765|90.532592|8|8||0|0|0|0|1|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|5300000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0
0|0.000000|0.000000|0.000000|0.000000|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0.000000|0|0|0|0|0||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0

But in game i don't see any car


Re : no save cars , help please !!!!!! - morocco - 06.06.2013

Guys please help me

New :


IF i open Server from my PC this cars Load , but if i open it from host this cars no load