Data format#
In PRIMAP2, data is handled in xarray datasets with defined coordinates and metadata. If you are not familiar with xarray data structures, we recommend reading xarray’s own primer first.
Let’s start with two examples, one minimal example showing only what is required for a PRIMAP2 data set, and one opulent example showing the flexibility of the format.
# import all the used libraries
import datetime
import numpy as np
import pandas as pd
import xarray as xr
import primap2
from primap2 import ureg
Minimal example#
This example contains only the required metadata, which are the time, the area, and the source. It also shows how multiple gases and global warming potentials stemming from the gases are included in a single dataset and the use of units.
The example is created with dummy data; note that in real usage, you would read data from a file or API instead.
time = pd.date_range("2000-01-01", "2020-01-01", freq="YS")
area_iso3 = np.array(["COL", "ARG", "MEX", "BOL"])
minimal = xr.Dataset(
{
ent: xr.DataArray(
data=np.random.default_rng().random((len(time), len(area_iso3), 1)),
coords={
"time": time,
"area (ISO3)": area_iso3,
"source": ["RAND2020"],
},
dims=["time", "area (ISO3)", "source"],
attrs={"units": f"{ent} Gg / year", "entity": ent},
)
for ent in ("CO2", "SF6", "CH4")
},
attrs={"area": "area (ISO3)"},
).pr.quantify()
with ureg.context("SARGWP100"):
minimal["SF6 (SARGWP100)"] = minimal["SF6"].pint.to("CO2 Gg / year")
minimal["SF6 (SARGWP100)"].attrs["gwp_context"] = "SARGWP100"
minimal
<xarray.Dataset> Size: 3kB
Dimensions: (time: 21, area (ISO3): 4, source: 1)
Coordinates:
* time (time) datetime64[us] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 48B 'COL' 'ARG' 'MEX' 'BOL'
* source (source) <U8 32B 'RAND2020'
Data variables:
CO2 (time, area (ISO3), source) float64 672B [CO2·Gg/a] 0.85...
SF6 (time, area (ISO3), source) float64 672B [SF6·Gg/a] 0.31...
CH4 (time, area (ISO3), source) float64 672B [CH4·Gg/a] 0.04...
SF6 (SARGWP100) (time, area (ISO3), source) float64 672B [CO2·Gg/a] 7.61...
Attributes:
area: area (ISO3)- time: 21
- area (ISO3): 4
- source: 1
- time(time)datetime64[us]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000', '2001-01-01T00:00:00.000000', '2002-01-01T00:00:00.000000', '2003-01-01T00:00:00.000000', '2004-01-01T00:00:00.000000', '2005-01-01T00:00:00.000000', '2006-01-01T00:00:00.000000', '2007-01-01T00:00:00.000000', '2008-01-01T00:00:00.000000', '2009-01-01T00:00:00.000000', '2010-01-01T00:00:00.000000', '2011-01-01T00:00:00.000000', '2012-01-01T00:00:00.000000', '2013-01-01T00:00:00.000000', '2014-01-01T00:00:00.000000', '2015-01-01T00:00:00.000000', '2016-01-01T00:00:00.000000', '2017-01-01T00:00:00.000000', '2018-01-01T00:00:00.000000', '2019-01-01T00:00:00.000000', '2020-01-01T00:00:00.000000'], dtype='datetime64[us]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG' 'MEX' 'BOL'
array(['COL', 'ARG', 'MEX', 'BOL'], dtype='<U3')
- source(source)<U8'RAND2020'
array(['RAND2020'], dtype='<U8')
- CO2(time, area (ISO3), source)float64[CO2·Gg/a] 0.8559 0.1289 ... 0.139
- entity :
- CO2
Magnitude [[[0.855907604870768] [0.128923813957612] [0.35028811515762825] [0.447747058009362]] [[0.7059790059346879] [0.7499985563077513] [0.6648387580523981] [0.19564528747504828]] [[0.5997372643610785] [0.7013487532833764] [0.13230895706284163] [0.3774459901128593]] [[0.2583441999383047] [0.9144912681445414] [0.907430397788659] [0.30727140629975247]] [[0.9818193912309979] [0.559981643490426] [0.9568919489313673] [0.6187950841855759]] [[0.33431836248963787] [0.03756571048289814] [0.49719225563386016] [0.28088522365132407]] [[0.9944753762950124] [0.959991080505952] [0.4100072328589017] [0.6679424516773487]] [[0.8414928564054646] [0.291495791035987] [0.934809700783486] [0.8298820849773415]] [[0.9793328443696039] [0.09983457589914024] [0.4783726989305832] [0.50790376081638]] [[0.4687100018115422] [0.4500690081044447] [0.15106886174075296] [0.3512053687153408]] [[0.03932325591261876] [0.42318108823608447] [0.23273452499641023] [0.4878739754703212]] [[0.5982324966683213] [0.15434950116163126] [0.6999737668187368] [0.8646848231174653]] [[0.6370973741257739] [0.22997921950624223] [0.3093672400110683] [0.22418539600068732]] [[0.8170148612077218] [0.4979054807602391] [0.15293551269896877] [0.6908546196735607]] [[0.6416128884062156] [0.9831081872546136] [0.5700553543387972] [0.582497553258496]] [[0.658558175783964] [0.12617849983658858] [0.4151627954574566] [0.4294339034247091]] [[0.524049647768158] [0.3347418391422131] [0.3373228242915822] [0.7710514362642198]] [[0.7203656179885652] [0.9299875097115576] [0.11238457258453449] [0.5675573895613011]] [[0.35779420290218367] [0.4928242230947888] [0.8092918700938758] [0.9313253282095768]] [[0.012906520050224413] [0.08071027313288315] [0.1830898737750999] [0.4919607195501523]] [[0.9340342580760578] [0.12608161592788336] [0.42216944011391144] [0.13902434756484527]]]
Units CO2 gigagram/year - SF6(time, area (ISO3), source)float64[SF6·Gg/a] 0.3188 0.636 ... 0.8674
- entity :
- SF6
Magnitude [[[0.3187986897344133] [0.6359935937239736] [0.706511973156631] [0.07526370348474731]] [[0.5526827508580984] [0.5715186201198686] [0.8373568546305281] [0.845515055332083]] [[0.7682059222395837] [0.053985969096092545] [0.12517988273193115] [0.32609267440303846]] [[0.22551542331584717] [0.3341912390911368] [0.7611333297295546] [0.9106687417038205]] [[0.016821292915655373] [0.9141355212045296] [0.018817566232771088] [0.26416288041294267]] [[0.7462223275561432] [0.738566943767324] [0.8015472394045363] [0.8320395979209396]] [[0.5376048327351688] [0.061317968572967674] [0.5873694096086359] [0.19145818839169104]] [[0.2762796164145829] [0.5273039616340135] [0.4819155491613146] [0.7407924872203383]] [[0.41380427409962217] [0.24670602291477728] [0.18442512823308355] [0.18641927737589647]] [[0.25704329439436513] [0.07799764823138489] [0.7359649288196342] [0.4247746395470702]] [[0.5499633690399806] [0.7352931314137657] [0.5393811527160983] [0.6651300143504526]] [[0.8029641872394976] [0.6970232520534448] [0.46754047324188996] [0.29358356700430543]] [[0.8551669951376318] [0.4831493652959371] [0.36017478291668004] [0.4732885074533659]] [[0.7753337375204025] [0.11553836349223823] [0.5756238374629918] [0.9553914642115695]] [[0.5689989969361796] [0.4335353985756677] [0.5081008003463238] [0.5873984163818255]] [[0.16234315442754188] [0.16930396857020424] [0.45467053826084947] [0.19829128662477458]] [[0.6452788750764402] [0.5954401568915042] [0.5483038859483843] [0.20141466934980334]] [[0.7856468307074648] [0.42333259943259915] [0.013174158597251795] [0.6599298331413279]] [[0.738222881467334] [0.9021589905420015] [0.8034112324349368] [0.44275260051548093]] [[0.48845879271134796] [0.23327322401941608] [0.13470566097714687] [0.5900855431639042]] [[0.448279888324461] [0.26680103615224815] [0.1335319265966063] [0.8674451676501448]]]
Units SF6 gigagram/year - CH4(time, area (ISO3), source)float64[CH4·Gg/a] 0.04363 ... 0.1972
- entity :
- CH4
Magnitude [[[0.043625666918205575] [0.1457492311159011] [0.9595836358232211] [0.5444473810124575]] [[0.0714253949098449] [0.5758485471387499] [0.8565379896225204] [0.7265373797539096]] [[0.09887232940008539] [0.2670156292620418] [0.11593371067139824] [0.31153084402604325]] [[0.40430063479757883] [0.6504312657321851] [0.6457171039487053] [0.7405715441763564]] [[0.9939295759200967] [0.6110929291816555] [0.17082684379062774] [0.08308812585344827]] [[0.7948701056012413] [0.2786717652679903] [0.8798167355476438] [0.0823417524811294]] [[0.10358112072758507] [0.4859392770049342] [0.6848420213382851] [0.6289797797765728]] [[0.7163125044231862] [0.8803204012615385] [0.8164950490108371] [0.9697090790620253]] [[0.862902039656297] [0.11057975275888876] [0.7881333514785772] [0.42377525888686396]] [[0.7649996580575873] [0.843590253953127] [0.04019610744829971] [0.3422764102264382]] [[0.1798451136589585] [0.3441261341963924] [0.925447939733232] [0.6296283361581481]] [[0.8865084459190563] [0.10457125598442929] [0.8650200815878698] [0.143789814440773]] [[0.13784772672667323] [0.8892735876165109] [0.8575417474624794] [0.7014866196829261]] [[0.6387453144442492] [0.6028067932592521] [0.14474207181059306] [0.5319014316532137]] [[0.2611771745899648] [0.0424422433214483] [0.6899422478014322] [0.09070058043652551]] [[0.20707737613880162] [0.48275906479958386] [0.06748430052737553] [0.8749913447037738]] [[0.2597436547694747] [0.4653799532477606] [0.6398135042443726] [0.41098399828428667]] [[0.139892282698166] [0.5458376304676298] [0.4861502070896002] [0.6253934947294583]] [[0.7328625462057045] [0.9247690910749626] [0.724375233236184] [0.20491263815944616]] [[0.06728977674290726] [0.10801101999542717] [0.27934040417003647] [0.3150564055040235]] [[0.9715417859121772] [0.7381548148401152] [0.038606682075047916] [0.1971861966562718]]]
Units CH4 gigagram/year - SF6 (SARGWP100)(time, area (ISO3), source)float64[CO2·Gg/a] 7.619e+03 ... 2.073e+04
- entity :
- SF6
- gwp_context :
- SARGWP100
Magnitude [[[7619.288684652477] [15200.24689000297] [16885.63615844348] [1798.8025132854607]] [[13209.117745508553] [13659.295020864862] [20012.828825669625] [20207.809822436786]] [[18360.121541526052] [1290.264661396612] [2991.7991972931545] [7793.614918232619]] [[5389.8186172487485] [7987.1706142781695] [18191.086580536357] [21764.98292672131]] [[402.02890068416343] [21847.83895678826] [449.73983296322905] [6313.49284186933]] [[17834.713628591824] [17651.749956039046] [19156.979021768417] [19885.746390310458]] [[12848.755502370535] [1465.4994488939276] [14038.1288896464] [4575.850702561416]] [[6603.082832308532] [12602.564683052922] [11517.78162495542] [17704.940444566088]] [[9889.92215098097] [5896.273947663177] [4407.760564770697] [4455.420729283926]] [[6143.334736025327] [1864.143792730099] [17589.56179878926] [10152.113885174977]] [[13144.124520055535] [17573.505840789003] [12891.20954991475] [15896.60734297582]] [[19190.844075023993] [16658.855724077333] [11174.21731048117] [7016.6472514029]] [[20438.4911837894] [11547.269830572897] [8608.177311708654] [11311.595328135447]] [[18530.47632673762] [2761.366887464494] [13757.409715365506] [22833.855994656515]] [[13599.076026774694] [10361.496025958459] [12143.60912827714] [14038.822151525632]] [[3880.0013908182514] [4046.3648488278814] [10866.625864434303] [4739.161750332113]] [[15422.165114326923] [14231.019749706951] [13104.462874166386] [4813.8105974602995]] [[18776.959253908408] [10117.64912643912] [314.8623904743179] [15772.323012077739]] [[17643.526867069282] [21561.599873953837] [19201.52845519499] [10581.787152319996]] [[11674.165145801217] [5575.230054064044] [3219.46529735381] [14103.04448161731]] [[10713.889330954618] [6376.544764038731] [3191.4130456588905] [20731.939506838462]]]
Units CO2 gigagram/year
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[us]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG', 'MEX', 'BOL'], dtype='str', name='area (ISO3)'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020'], dtype='str', name='source'))
- area :
- area (ISO3)
Explore the dataset by clicking on the icons at the end of the rows, which will
show you the metadata attrs and the actual data for each coordinate or variable.
Notice:
For the time coordinate, python datetime objects are used, and the meaning of each data point is therefore directly obvious.
For the area coordinate, three-letter country abbreviations are used, and their meaning is not necessarily obvious. Therefore, the key or name for the area coordinate also contains (in parentheses) the used set of categories, here ISO-3166 three-letter country abbreviations. To be able to identify the area coordinate without parsing strings, the data set
attrscontain the key-value pair'area': 'area (ISO3)', which translates from the simple name to the coordinate key including the identifier for the category set.The variables all carry an associated
openscm_unitsunit. It is the same unit for all data points in a variable, but differs between variables because it includes the gas.The
attrsof each variable specify theentityof the variable. For simple gases like the CO2 emissions, this is the same as the variable name, but for example for the global warming potential associated with the SF6 emissions, it is different.When a global warming potential is given, the used conversion factors have to be specified explicitly using openscm_units context names, for example
SARGWP100for the global warming potential equivalent factors for a 100-year time horizon specified in the second assessment report.
Opulent example#
The opulent example contains every standard metadata and also shows that the variables in the data set can have a different number of dimensions. Because it aims to show everything, creating it takes some effort, skip to the result unless you are interested in the details.
# create with dummy data
coords = {
"time": pd.date_range("2000-01-01", "2020-01-01", freq="YS"),
"area (ISO3)": np.array(["COL", "ARG", "MEX", "BOL"]),
"category (IPCC 2006)": np.array(["0", "1", "2", "3", "4", "5", "1.A", "1.B"]),
"animal (FAOSTAT)": np.array(["cow", "swine", "goat"]),
"product (FAOSTAT)": np.array(["milk", "meat"]),
"scenario (FAOSTAT)": np.array(["highpop", "lowpop"]),
"provenance": np.array(["projected"]),
"model": np.array(["FANCYFAO"]),
"source": np.array(["RAND2020", "RAND2021"]),
}
opulent = xr.Dataset(
{
ent: xr.DataArray(
data=np.random.default_rng().random(tuple(len(x) for x in coords.values())),
coords=coords,
dims=list(coords.keys()),
attrs={"units": f"{ent} Gg / year", "entity": ent},
)
for ent in ("CO2", "SF6", "CH4")
},
attrs={
"entity_terminology": "primap2",
"area": "area (ISO3)",
"cat": "category (IPCC 2006)",
"scen": "scenario (FAOSTAT)",
"references": "doi:10.1012",
"rights": "Use however you want.",
"contact": "lol_no_one_will_answer@example.com",
"title": "Completely invented GHG inventory data",
"comment": "GHG inventory data ...",
"institution": "PIK",
"publication_date": datetime.date(2099, 12, 31),
},
)
pop_coords = {
x: coords[x]
for x in (
"time",
"area (ISO3)",
"provenance",
"model",
"source",
)
}
opulent["population"] = xr.DataArray(
data=np.random.default_rng().random(tuple(len(x) for x in pop_coords.values())),
coords=pop_coords,
dims=list(pop_coords.keys()),
attrs={"entity": "population", "units": ""},
)
opulent = opulent.assign_coords(
{
"category_names": xr.DataArray(
data=np.array(
[
"total",
"industry",
"energy",
"transportation",
"residential",
"land use",
"heavy industry",
"light industry",
]
),
coords={"category (IPCC 2006)": coords["category (IPCC 2006)"]},
dims=["category (IPCC 2006)"],
)
}
)
opulent = opulent.pr.quantify()
with ureg.context("SARGWP100"):
opulent["SF6 (SARGWP100)"] = opulent["SF6"].pint.to("CO2 Gg / year")
opulent["SF6 (SARGWP100)"].attrs["gwp_context"] = "SARGWP100"
opulent
<xarray.Dataset> Size: 518kB
Dimensions: (time: 21, area (ISO3): 4, category (IPCC 2006): 8,
animal (FAOSTAT): 3, product (FAOSTAT): 2,
scenario (FAOSTAT): 2, provenance: 1, model: 1,
source: 2)
Coordinates:
* time (time) datetime64[us] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 48B 'COL' 'ARG' 'MEX' 'BOL'
* category (IPCC 2006) (category (IPCC 2006)) <U3 96B '0' '1' ... '1.A' '1.B'
* animal (FAOSTAT) (animal (FAOSTAT)) <U5 60B 'cow' 'swine' 'goat'
* product (FAOSTAT) (product (FAOSTAT)) <U4 32B 'milk' 'meat'
* scenario (FAOSTAT) (scenario (FAOSTAT)) <U7 56B 'highpop' 'lowpop'
* provenance (provenance) <U9 36B 'projected'
* model (model) <U8 32B 'FANCYFAO'
* source (source) <U8 64B 'RAND2020' 'RAND2021'
category_names (category (IPCC 2006)) <U14 448B 'total' ... 'light...
Data variables:
CO2 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CO2·Gg/a] ...
SF6 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [SF6·Gg/a] ...
CH4 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CH4·Gg/a] ...
population (time, area (ISO3), provenance, model, source) float64 1kB [] ...
SF6 (SARGWP100) (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CO2·Gg/a] ...
Attributes:
entity_terminology: primap2
area: area (ISO3)
cat: category (IPCC 2006)
scen: scenario (FAOSTAT)
references: doi:10.1012
rights: Use however you want.
contact: lol_no_one_will_answer@example.com
title: Completely invented GHG inventory data
comment: GHG inventory data ...
institution: PIK
publication_date: 2099-12-31- time: 21
- area (ISO3): 4
- category (IPCC 2006): 8
- animal (FAOSTAT): 3
- product (FAOSTAT): 2
- scenario (FAOSTAT): 2
- provenance: 1
- model: 1
- source: 2
- time(time)datetime64[us]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000', '2001-01-01T00:00:00.000000', '2002-01-01T00:00:00.000000', '2003-01-01T00:00:00.000000', '2004-01-01T00:00:00.000000', '2005-01-01T00:00:00.000000', '2006-01-01T00:00:00.000000', '2007-01-01T00:00:00.000000', '2008-01-01T00:00:00.000000', '2009-01-01T00:00:00.000000', '2010-01-01T00:00:00.000000', '2011-01-01T00:00:00.000000', '2012-01-01T00:00:00.000000', '2013-01-01T00:00:00.000000', '2014-01-01T00:00:00.000000', '2015-01-01T00:00:00.000000', '2016-01-01T00:00:00.000000', '2017-01-01T00:00:00.000000', '2018-01-01T00:00:00.000000', '2019-01-01T00:00:00.000000', '2020-01-01T00:00:00.000000'], dtype='datetime64[us]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG' 'MEX' 'BOL'
array(['COL', 'ARG', 'MEX', 'BOL'], dtype='<U3')
- category (IPCC 2006)(category (IPCC 2006))<U3'0' '1' '2' '3' '4' '5' '1.A' '1.B'
array(['0', '1', '2', '3', '4', '5', '1.A', '1.B'], dtype='<U3')
- animal (FAOSTAT)(animal (FAOSTAT))<U5'cow' 'swine' 'goat'
array(['cow', 'swine', 'goat'], dtype='<U5')
- product (FAOSTAT)(product (FAOSTAT))<U4'milk' 'meat'
array(['milk', 'meat'], dtype='<U4')
- scenario (FAOSTAT)(scenario (FAOSTAT))<U7'highpop' 'lowpop'
array(['highpop', 'lowpop'], dtype='<U7')
- provenance(provenance)<U9'projected'
array(['projected'], dtype='<U9')
- model(model)<U8'FANCYFAO'
array(['FANCYFAO'], dtype='<U8')
- source(source)<U8'RAND2020' 'RAND2021'
array(['RAND2020', 'RAND2021'], dtype='<U8')
- category_names(category (IPCC 2006))<U14'total' ... 'light industry'
array(['total', 'industry', 'energy', 'transportation', 'residential', 'land use', 'heavy industry', 'light industry'], dtype='<U14')
- CO2(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CO2·Gg/a] 0.445 0.3335 ... 0.7083
- entity :
- CO2
Magnitude [[[[[[[[[0.44504875143934697 0.333540178953198]]] [[[0.005072606925010881 0.7059607554445653]]]] [[[[0.9042698777730483 0.4569682813493524]]] [[[0.4784595396476733 0.20832840729403668]]]]] [[[[[0.1907153548427789 0.7644479804956359]]] [[[0.9785093704130919 0.34194771189339646]]]] [[[[0.36112336186606164 0.9529692112071322]]] [[[0.009690430167906383 0.5473549861686724]]]]] [[[[[0.9575161724590464 0.11202887813024365]]] [[[0.6796894276616664 0.6466721256112578]]]] [[[[0.7955631898020465 0.22708144606500524]]] [[[0.019533941817353684 0.8692736820294501]]]]]] [[[[[[0.7312278528284932 0.7463781288900692]]] [[[0.4780524366510094 0.08922050335296305]]]] [[[[0.3815407822699014 0.7951784510746259]]] [[[0.2391580020210855 0.002001885062572706]]]]] [[[[[0.17430240147809883 0.43673506704372944]]] [[[0.41091659059870145 0.01926565199012198]]]] [[[[0.1283667292231453 0.05845239133226576]]] [[[0.49598275809632764 0.10087031155788306]]]]] [[[[[0.5765882809380833 0.2070601789398524]]] [[[0.5578691055969466 0.7869756214983172]]]] [[[[0.4122169146939485 0.6626457806959952]]] [[[0.5787828435573645 0.5021286130672279]]]]]] [[[[[[0.7216536183688632 0.5540183542864424]]] [[[0.09322178798839376 0.2884263918960095]]]] [[[[0.8288616831273949 0.028674956855732514]]] [[[0.14370923329647878 0.09970042652911726]]]]] [[[[[0.3093126008415076 0.4486881074306597]]] [[[0.0013270038961502584 0.11971485554948669]]]] [[[[0.8314534329333466 0.1099724994199055]]] [[[0.30793960984947166 0.39711130851708853]]]]] [[[[[0.9244873416191859 0.33736387678967994]]] [[[0.20298440509315463 0.5820140415446051]]]] [[[[0.78385466321326 0.35694994863216856]]] [[[0.24220130044293242 0.9937268104235872]]]]]] ... [[[[[[0.029376386424455392 0.7665231985855279]]] [[[0.9735869696168857 0.21666515690082033]]]] [[[[0.9476454170745902 0.42546065095673524]]] [[[0.7734459362932605 0.1929508338137127]]]]] [[[[[0.8077460298398415 0.22705373923770567]]] [[[0.9078457206586203 0.8337517707885899]]]] [[[[0.5761616101621229 0.11860788156976443]]] [[[0.7284707734259307 0.7442490999232362]]]]] [[[[[0.4081275686409277 0.6587249508300071]]] [[[0.20080523642659476 0.2580242664424869]]]] [[[[0.8337863780038829 0.2729853943943066]]] [[[0.027509119222383638 0.1013857227713898]]]]]] [[[[[[0.8803680558500004 0.4133506173720678]]] [[[0.538482961951429 0.9086223249872675]]]] [[[[0.42776503763967677 0.7620170069791573]]] [[[0.7096197384604084 0.4788709098998456]]]]] [[[[[0.017541392095411834 0.7882557624804597]]] [[[0.800341822964441 0.3686927312246673]]]] [[[[0.7086120671924806 0.007284776557241579]]] [[[0.540688342696467 0.6671607204372378]]]]] [[[[[0.9734210514980532 0.029912686327560944]]] [[[0.14466250177597217 0.2871286135707163]]]] [[[[0.4000945302701272 0.4202881570248771]]] [[[0.6504521089916128 0.9420729018079096]]]]]] [[[[[[0.4028149318679024 0.4309896694341382]]] [[[0.7310195148820549 0.7123262099711386]]]] [[[[0.9687982331782539 0.1480978009116074]]] [[[0.29316873626375817 0.842255015593569]]]]] [[[[[0.9669353059701615 0.8847479931169675]]] [[[0.12245954123106373 0.8336166454072674]]]] [[[[0.15254815207946582 0.08215204221397687]]] [[[0.5834820218777689 0.8866545424423508]]]]] [[[[[0.26099345504172744 0.046520726833395365]]] [[[0.2548610622921047 0.7531835285328071]]]] [[[[0.6104893374329662 0.1952453625927607]]] [[[0.7427280343257215 0.14743867743203987]]]]]]] [[[[[[[0.5425223571583476 0.13302123969730506]]] [[[0.5205280878733298 0.8484536460331401]]]] [[[[0.3566181962046584 0.11111023424903632]]] [[[0.46772713163447843 0.8401157897494355]]]]] [[[[[0.7888294569916208 0.23607954947678933]]] [[[0.24408659399694965 0.2989887605322975]]]] [[[[0.6469255497244835 0.18097176395770442]]] [[[0.896931551035344 0.29502276537176597]]]]] [[[[[0.20357517308231887 0.3113510773659709]]] [[[0.4380348531165279 0.21737201708217357]]]] [[[[0.11782878360065119 0.9506697387107197]]] [[[0.48481893166890033 0.9908393074192063]]]]]] [[[[[[0.9928222335158042 0.142169275191378]]] [[[0.1912572020087543 0.688715099225434]]]] [[[[0.8154565119749919 0.558354645110639]]] [[[0.046838214097759345 0.5769587058626636]]]]] [[[[[0.4734079727404982 0.34489849855099697]]] [[[0.7227218621609708 0.14789043230494814]]]] [[[[0.6804117416232786 0.8283720537255471]]] [[[0.09066311673596517 0.22181372673513633]]]]] [[[[[0.2660949338934959 0.15443113203359937]]] [[[0.9040593167781803 0.2857619405022561]]]] [[[[0.3795814845940345 0.042841574569155716]]] [[[0.1517981426160353 0.6180625997119044]]]]]] [[[[[[0.3381037636953852 0.09131196037907274]]] [[[0.26854681824673965 0.8003788958953245]]]] [[[[0.6268228223374999 0.07045290548455163]]] [[[0.9695614665281296 0.7332663010025547]]]]] [[[[[0.13904260022512327 0.19037214065169838]]] [[[0.5239642877176978 0.5391359009249792]]]] [[[[0.8130833352253536 0.12190173466029508]]] [[[0.4841523841851386 0.4819137617623501]]]]] [[[[[0.8787254232737638 0.8692167784635888]]] [[[0.10962079744853803 0.15454340793807486]]]] [[[[0.09318767590498866 0.8917130825362201]]] [[[0.6707421730181798 0.6637798622554832]]]]]] ... [[[[[[0.5394833505092751 0.5471115135551071]]] [[[0.23461690774850252 0.08884772767223525]]]] [[[[0.43470172373400817 0.4258942383273775]]] [[[0.2575972645122788 0.4297069258445704]]]]] [[[[[0.4630897436347974 0.8327844068452166]]] [[[0.7819091292621311 0.9227296446167752]]]] [[[[0.9689843811935271 0.6398757188580032]]] [[[0.7488639810298762 0.8925444607433057]]]]] [[[[[0.6700397556020514 0.917576098548159]]] [[[0.5144987393050434 0.28647121918840324]]]] [[[[0.013122582745010991 0.4125692949187134]]] [[[0.9512646732549612 0.4180408892402184]]]]]] [[[[[[0.30081381313920674 0.38024233463464996]]] [[[0.21980539503433671 0.9241002452552821]]]] [[[[0.8040195050462298 0.22153551528639748]]] [[[0.4616270827992126 0.9217604904710821]]]]] [[[[[0.7698204445462786 0.4602698903678112]]] [[[0.17959538428130728 0.802739224785614]]]] [[[[0.956225129356795 0.4710171318272469]]] [[[0.7456138468379312 0.3507337213771813]]]]] [[[[[0.8017484434289661 0.23542005225647844]]] [[[0.43424694914323414 0.40271597389953384]]]] [[[[0.19198353673538626 0.6516458122207353]]] [[[0.43841339455548145 0.9735293104038816]]]]]] [[[[[[0.3708789054840219 0.22092260006737774]]] [[[0.6273547870386652 0.01571406115669427]]]] [[[[0.2712496778820238 0.3599347365042146]]] [[[0.3460036530578138 0.013850633832738213]]]]] [[[[[0.29444054167006906 0.5846013281398358]]] [[[0.7381572085833604 0.10007990589727189]]]] [[[[0.16638304260243342 0.6287659367863679]]] [[[0.5387018183512545 0.5740013288091228]]]]] [[[[[0.5996637089941771 0.6341803758089638]]] [[[0.049266365333626494 0.8622816670000719]]]] [[[[0.28172176038299834 0.5192943257280626]]] [[[0.05123088687200983 0.14761511275800843]]]]]]] [[[[[[[0.4204170863132942 0.17778559218500223]]] [[[0.643149112708713 0.1781153453512948]]]] [[[[0.9681062414165948 0.3472159690746852]]] [[[0.5809388621274889 0.49855804079474886]]]]] [[[[[0.8675504137974459 0.9050019394107003]]] [[[0.45910223426324603 0.7954921464110007]]]] [[[[0.8203997614884022 0.4381140566665581]]] [[[0.32768113209364524 0.11792991977381195]]]]] [[[[[0.06437614366024103 0.19344711657415858]]] [[[0.6625530112008241 0.10444709357631343]]]] [[[[0.8472680982208824 0.353959640490795]]] [[[0.35060703505013135 0.5066259090413741]]]]]] [[[[[[0.4180117436554245 0.794303042145785]]] [[[0.6222543320851639 0.11604256577642214]]]] [[[[0.7928886882119345 0.18175794760189812]]] [[[0.6999866344775166 0.4312990424698271]]]]] [[[[[0.8308153441339022 0.8706188908274257]]] [[[0.4222690899310044 0.43154938943581866]]]] [[[[0.6429987325735256 0.1720854635275092]]] [[[0.8166851917483157 0.44526651404476003]]]]] [[[[[0.8439038851534265 0.7800605380591977]]] [[[0.17817054836868595 0.5752603441053521]]]] [[[[0.011204158280766485 0.28538559375017514]]] [[[0.6270664502728182 0.02448564379888718]]]]]] [[[[[[0.7233952662264024 0.5420236208099879]]] [[[0.6662785735773117 0.5203346049324689]]]] [[[[0.5558965786938546 0.850667978199835]]] [[[0.6455115558076122 0.0736132359315177]]]]] [[[[[0.5769724028023404 0.13815483525640748]]] [[[0.7199694108445612 0.7591483810958494]]]] [[[[0.4164919653891296 0.10510719842642924]]] [[[0.5470904417085969 0.7060407137324265]]]]] [[[[[0.9013263592679996 0.4554963143939279]]] [[[0.9162060740950113 0.137030401529593]]]] [[[[0.038630558288507144 0.014294798828370814]]] [[[0.9045838155318777 0.36569600513662803]]]]]] ... [[[[[[0.7904925173362911 0.09561077637955473]]] [[[0.7337406031323485 0.8709988731951855]]]] [[[[0.8271523816272558 0.10169827386568975]]] [[[0.41045345264986366 0.7632762003893049]]]]] [[[[[0.7993221124937486 0.9599226558761657]]] [[[0.05943932160026599 0.4352757199586623]]]] [[[[0.8898304045872668 0.02469572161681799]]] [[[0.49574464998930434 0.1922071164172373]]]]] [[[[[0.545125705869719 0.4577749625283104]]] [[[0.31846970042327494 0.4759213278715472]]]] [[[[0.8423701349471958 0.493811104382031]]] [[[0.9730615435480638 0.0010512608098148801]]]]]] [[[[[[0.4345450051442771 0.6768136872927549]]] [[[0.5137312909926882 0.28655127112628687]]]] [[[[0.7278748959242185 0.9426647056262433]]] [[[0.2253674478875699 0.8596101219757719]]]]] [[[[[0.7219065257423988 0.3262766784936527]]] [[[0.5087388546040983 0.8165262908979947]]]] [[[[0.9117219041427501 0.5712179294584052]]] [[[0.00945660060941067 0.09254040505663796]]]]] [[[[[0.8464993191761443 0.10928739160123113]]] [[[0.2327471422268147 0.09230851562328435]]]] [[[[0.9555235230335631 0.6799827025118328]]] [[[0.7089506329317393 0.10091145229487597]]]]]] [[[[[[0.9728858629498601 0.30702061359448807]]] [[[0.2319285659649143 0.10622973439620165]]]] [[[[0.4227467907360427 0.5860372746150526]]] [[[0.05564504557951677 0.593808051854444]]]]] [[[[[0.9869043665400217 0.08778878323662787]]] [[[0.33614634344811845 0.8148089814803025]]]] [[[[0.4200134071051771 0.7500868060887211]]] [[[0.6559693902191388 0.9075742402845971]]]]] [[[[[0.9026358798315022 0.30217744395029567]]] [[[0.1621957129320537 0.4221739265567732]]]] [[[[0.3876357796481552 0.5397777361688795]]] [[[0.3049309176210484 0.1619246507442198]]]]]]] [[[[[[[0.40014289065440556 0.5344023710037419]]] [[[0.25491659622160157 0.20131435318865742]]]] [[[[0.250066194801987 0.864719355022242]]] [[[0.6430038995570032 0.41919542603882853]]]]] [[[[[0.9789759243181513 0.6937927421374948]]] [[[0.507082976606615 0.036417756808589385]]]] [[[[0.17175449781661034 0.18424994170615727]]] [[[0.8224675253103623 0.41704556444337815]]]]] [[[[[0.10140827570209554 0.03243688006125445]]] [[[0.735269093264375 0.5573753738946401]]]] [[[[0.021922526875631454 0.7604110948775825]]] [[[0.25784739952409974 0.6409818886175033]]]]]] [[[[[[0.11405467612864761 0.3782719714827256]]] [[[0.24331834643202865 0.38326052532826294]]]] [[[[0.2338673950101784 0.13670910667296265]]] [[[0.49930631821873717 0.7570527784057247]]]]] [[[[[0.6151116145468354 0.3599545912922548]]] [[[0.7925418431096831 0.40817608105493675]]]] [[[[0.05282950791085039 0.2693421041412486]]] [[[0.815870544387135 0.40933476901976285]]]]] [[[[[0.8540410797873403 0.405048202181049]]] [[[0.42278537584587317 0.7000506764629167]]]] [[[[0.42760890745648283 0.1221647460328873]]] [[[0.23289164106261084 0.3288104401237938]]]]]] [[[[[[0.14170382732926323 0.4473863307392919]]] [[[0.8475422227982123 0.003920946269711401]]]] [[[[0.8339221618597895 0.3112317337572138]]] [[[0.021202956608530887 0.9153915092023622]]]]] [[[[[0.024842332772098907 0.46106052578187884]]] [[[0.5180125114656946 0.003562074437441498]]]] [[[[0.9974476995188357 0.5595683017610323]]] [[[0.24575990604845488 0.5449822346483171]]]]] [[[[[0.2713264121027442 0.6761143015951547]]] [[[0.11052385133024545 0.9988238822158344]]]] [[[[0.8560911724674497 0.4302465019293731]]] [[[0.6174067640853423 0.4588816120856706]]]]]] ... [[[[[[0.3996900538886887 0.7639283500866348]]] [[[0.45874808806001 0.18153976273611794]]]] [[[[0.8306088565096688 0.8872787742529004]]] [[[0.931888811684267 0.35825805659621945]]]]] [[[[[0.9507639364074897 0.10056644100795009]]] [[[0.5113146018411142 0.8425453724830362]]]] [[[[0.5503112842178882 0.01871103444720701]]] [[[0.04621741003068103 0.2678105153039122]]]]] [[[[[0.04125095479014074 0.8887222444500504]]] [[[0.13886390616617028 0.8899690063240036]]]] [[[[0.1032037048637674 0.16151955323912448]]] [[[0.5184772101822147 0.4386376959594327]]]]]] [[[[[[0.6612600783908826 0.29512598324457706]]] [[[0.8231286547014666 0.32699849880167653]]]] [[[[0.28854732992082377 0.1294372723605115]]] [[[0.7040697494114814 0.9509217584965208]]]]] [[[[[0.9905708028917412 0.06135269333389115]]] [[[0.9944634807682228 0.7549897097064174]]]] [[[[0.06046922458495674 0.2822002692668465]]] [[[0.10505224255940093 0.9573357258234542]]]]] [[[[[0.9577890900153327 0.0768559131786577]]] [[[0.4007925689639671 0.3943591136934609]]]] [[[[0.03421928684948372 0.6729764640567084]]] [[[0.8558763409102335 0.4380326206614348]]]]]] [[[[[[0.23286234142969808 0.9240459965805421]]] [[[0.2742012372215705 0.8851796740757498]]]] [[[[0.4947718507200495 0.018482106927064756]]] [[[0.8209506326576677 0.6410269503811993]]]]] [[[[[0.5388184152812793 0.8556229517899063]]] [[[0.5298102899632053 0.7043493566370002]]]] [[[[0.38870559807148275 0.5395483980613973]]] [[[0.0249429291426031 0.7145058778125613]]]]] [[[[[0.9731916732562529 0.2542263713339896]]] [[[0.8422229414917083 0.05099002856561197]]]] [[[[0.4458654947980073 0.5043208064081385]]] [[[0.42959528066851216 0.16581308818663387]]]]]]]] [[[[[[[[0.39760897512788973 0.3415164338847311]]] [[[0.4104716461067067 0.16213253337152345]]]] [[[[0.07476848730515995 0.72145526908439]]] [[[0.2857428053307943 0.6455160102356057]]]]] [[[[[0.6092551532690778 0.15005307848188398]]] [[[0.5733336811340454 0.810921077552464]]]] [[[[0.08160150574025848 0.06320919695306226]]] [[[0.13198321511862365 0.696938710417626]]]]] [[[[[0.24338408932845068 0.4758558848153871]]] [[[0.93100257299541 0.8847122452298265]]]] [[[[0.11955234884984367 0.6857489762253443]]] [[[0.44824455746256286 0.5424854751210456]]]]]] [[[[[[0.14439465360193948 0.7525399178067703]]] [[[0.6960820707173871 0.534100877104394]]]] [[[[0.7166813431137012 0.5866737679685697]]] [[[0.3358197336924058 0.6860286379244896]]]]] [[[[[0.4665344763012148 0.4827621840189319]]] [[[0.19028138227027447 0.009131087653506231]]]] [[[[0.3171709065025966 0.34293390832243087]]] [[[0.22555989455775594 0.056524242957378346]]]]] [[[[[0.6599735400952238 0.691629460427506]]] [[[0.00394332113077267 0.9306612471722099]]]] [[[[0.46089017892974893 0.18371622986867198]]] [[[0.44970449564404213 0.07777894537302477]]]]]] [[[[[[0.21633966721946396 0.13029886165546878]]] [[[0.20658908844395885 0.26542179142507105]]]] [[[[0.03357776821485914 0.8649963966969543]]] [[[0.7043452707695766 0.17105488239163902]]]]] [[[[[0.7635516343147742 0.5065469957195792]]] [[[0.38642029912818177 0.32661337476131236]]]] [[[[0.004314894555736082 0.9426285276821172]]] [[[0.8543034561328164 0.4980155452238635]]]]] [[[[[0.4242966722309911 0.2224537592135274]]] [[[0.1879419702616576 0.714899635308838]]]] [[[[0.09815692055001735 0.009875446934659027]]] [[[0.3563696991796388 0.8204315174000409]]]]]] ... [[[[[[0.42640021326305655 0.6350071369601005]]] [[[0.8792648640902613 0.06589166890946851]]]] [[[[0.440691079359696 0.16849133188654886]]] [[[0.1104417580397764 0.4003305281860464]]]]] [[[[[0.8271503632894088 0.18777580535812044]]] [[[0.04543513192263593 0.8484135208286016]]]] [[[[0.027275234259478753 0.872399655380287]]] [[[0.33010659552662436 0.961614109362863]]]]] [[[[[0.008449896864552997 0.06360334129944789]]] [[[0.1534286655787067 0.5034273697967199]]]] [[[[0.04772939849032787 0.8377432481954727]]] [[[0.9552612131170879 0.7584302001257187]]]]]] [[[[[[0.5438168188710932 0.39033281958552823]]] [[[0.0888428315186558 0.14324436268377605]]]] [[[[0.2617441306088567 0.3244897778683058]]] [[[0.08165847188432307 0.5325503861223732]]]]] [[[[[0.31807617669646826 0.950096478878541]]] [[[0.1797040000828264 0.4122196147739463]]]] [[[[0.3529762747954962 0.8382631788434222]]] [[[0.6353084064194828 0.37345139465640986]]]]] [[[[[0.9330752144891992 0.0606170088814979]]] [[[0.5058852516870503 0.8259326025862185]]]] [[[[0.24707871845913953 0.9457163424813843]]] [[[0.06096700903078156 0.24857924600391457]]]]]] [[[[[[0.25473385674850446 0.05798225363547149]]] [[[0.032421850593130186 0.591400435807321]]]] [[[[0.45633889736878563 0.9936862846963684]]] [[[0.44177586213511644 0.33196145215222916]]]]] [[[[[0.3979327772241127 0.1672014423782131]]] [[[0.3852442575981484 0.08556037581148113]]]] [[[[0.5943982899685591 0.4593226732225649]]] [[[0.6483186862630556 0.5166698243303315]]]]] [[[[[0.5484206342178887 0.2459648498779735]]] [[[0.38809516354753004 0.30307812343143503]]]] [[[[0.31644568878357304 0.007565948415663937]]] [[[0.4149338076010666 0.20802536472183608]]]]]]] [[[[[[[0.6972218379235409 0.11966290526493073]]] [[[0.5520407338696893 0.8937293412046605]]]] [[[[0.46011288397320105 0.7855908693173501]]] [[[0.8711520614818566 0.351264654021899]]]]] [[[[[0.37718474182571315 0.6260016701500605]]] [[[0.6068862896566669 0.03547108295026702]]]] [[[[0.010899274226916389 0.03474312764211196]]] [[[0.11558720317051885 0.8290227287441755]]]]] [[[[[0.18778358257335404 0.12112015751007266]]] [[[0.3046358874187489 0.5591702993682829]]]] [[[[0.49923805473163474 0.2474250285541063]]] [[[0.09419522008997994 0.24678211299816888]]]]]] [[[[[[0.5766554018440999 0.044333269266579545]]] [[[0.21603354221647242 0.850998165598617]]]] [[[[0.30751624856402915 0.8269372207659399]]] [[[0.19384188806974223 0.7572201984764294]]]]] [[[[[0.23039001680216564 0.28250912381201954]]] [[[0.40743107559868963 0.13169516618906718]]]] [[[[0.9578708589330406 0.9085148918801329]]] [[[0.15389769554050325 0.5334570630330183]]]]] [[[[[0.8486959558183192 0.2977277018301926]]] [[[0.7151433041224108 0.8539255363123529]]]] [[[[0.22386496535170686 0.027540147156277395]]] [[[0.9824609620877144 0.8055769523169337]]]]]] [[[[[[0.9317708147745797 0.7125944643447951]]] [[[0.14158308102648642 0.015354051370857436]]]] [[[[0.9416012189006855 0.3366365830945317]]] [[[0.9149306438196393 0.4543711513715366]]]]] [[[[[0.7296160159644903 0.6619436104560265]]] [[[0.5763157789605969 0.5258158176062957]]]] [[[[0.13708160796590707 0.9740815470034818]]] [[[0.6524353654703021 0.9876382294285324]]]]] [[[[[0.4661990006500054 0.6938579348536572]]] [[[0.31079763552198414 0.3063118128223762]]]] [[[[0.48178532480327185 0.9853185669468906]]] [[[0.29192184456926906 0.37820521279411146]]]]]] ... [[[[[[0.4227291721053055 0.041329819617686114]]] [[[0.9937270845139542 0.28932004881957185]]]] [[[[0.18599266084358124 0.5179427460534607]]] [[[0.12818600772420374 0.7292172871428717]]]]] [[[[[0.3857450970844323 0.22613022620359036]]] [[[0.6165047636327191 0.604558442723319]]]] [[[[0.9067579535788092 0.3991967192841125]]] [[[0.8229082964864647 0.3834734372189441]]]]] [[[[[0.34038279463063414 0.4048044887538489]]] [[[0.45581509493995165 0.03245152981740684]]]] [[[[0.8016920042251806 0.06874752635860715]]] [[[0.5168337537815036 0.6147470614068429]]]]]] [[[[[[0.566171570635086 0.03253840941126207]]] [[[0.36161086961100675 0.8434723086114673]]]] [[[[0.5411125190180944 0.6039846030777888]]] [[[0.5497470042831947 0.8691477369480142]]]]] [[[[[0.39174687800279107 0.8354926118987415]]] [[[0.34911919316785534 0.552816914311343]]]] [[[[0.19767397675596843 0.41630721843040175]]] [[[0.342579739091717 0.801126243040373]]]]] [[[[[0.5223568545556896 0.042251307328293075]]] [[[0.0798682441863372 0.5131285777847692]]]] [[[[0.3714362881290362 0.04080608939747077]]] [[[0.6620891622850137 0.09551989122195059]]]]]] [[[[[[0.14545733220317658 0.47468179450228976]]] [[[0.5762352308354356 0.8907337178630964]]]] [[[[0.3554687828426468 0.27688614011416657]]] [[[0.5284634414297904 0.1534277561745273]]]]] [[[[[0.4084986557541408 0.2563344478687082]]] [[[0.8989640630191443 0.8676413217075941]]]] [[[[0.5174055234232989 0.1867291818429957]]] [[[0.5479476319483233 0.4427444924436579]]]]] [[[[[0.6857543904731617 0.829762453945094]]] [[[0.7563637268914597 0.7038118026491791]]]] [[[[0.8065351736026422 0.6952041539522047]]] [[[0.829978908372511 0.6635835711159359]]]]]]] [[[[[[[0.0524524813185121 0.06307444842062515]]] [[[0.5173413510699884 0.8748811204614402]]]] [[[[0.13352905036752616 0.4597101810694302]]] [[[0.8390316337547928 0.6742553308625726]]]]] [[[[[0.6358376470235291 0.6227036409594721]]] [[[0.4074022864731215 0.15809087656548293]]]] [[[[0.9914501260594626 0.2571392333590563]]] [[[0.5984503507129436 0.23500111551856706]]]]] [[[[[0.26734019289760524 0.12489286143296274]]] [[[0.929323279124646 0.06621708321939135]]]] [[[[0.6598645914786829 0.4910310809099645]]] [[[0.7743184529461191 0.005241633344395535]]]]]] [[[[[[0.8833376785244395 0.5973456076632577]]] [[[0.6114731481797882 0.212374695967247]]]] [[[[0.7623020411371179 0.6338398239177845]]] [[[0.5895054685531261 0.8719635074168313]]]]] [[[[[0.1183063178176913 0.9597607597949901]]] [[[0.9145872696613803 0.9231986507123403]]]] [[[[0.7579382287520787 0.8946921646307749]]] [[[0.972017823003229 0.6605059794246056]]]]] [[[[[0.033454778900112725 0.19174762376292465]]] [[[0.8437221709235756 0.6559654191733011]]]] [[[[0.20208991589819758 0.021435545564181813]]] [[[0.49516075883182853 0.5900035262245796]]]]]] [[[[[[0.9736659044269811 0.9270714727081955]]] [[[0.8714271826241311 0.4828966250246801]]]] [[[[0.1878689714178129 0.9387794896104594]]] [[[0.5039767190893879 0.09135367968948427]]]]] [[[[[0.9000623725945541 0.04577058005710444]]] [[[0.6395873924722224 0.42769413823112934]]]] [[[[0.6184256951792483 0.9607045432803718]]] [[[0.9051827470984892 0.566543034820115]]]]] [[[[[0.6651446912179784 0.18587489226874987]]] [[[0.9168984508449947 0.20761934581246566]]]] [[[[0.06532342622227372 0.8494266552005628]]] [[[0.27802917961594387 0.20380191950841375]]]]]] ... [[[[[[0.8913727710806287 0.6475501990024404]]] [[[0.37759080782870813 0.42666926350108014]]]] [[[[0.6549306896279947 0.5370823115856512]]] [[[0.8320701881772693 0.6571109364106283]]]]] [[[[[0.24073130881336524 0.33615147042630955]]] [[[0.5153622930785194 0.4294673388061324]]]] [[[[0.4302655588006762 0.2196724772936619]]] [[[0.7742980794688267 0.5452352633742991]]]]] [[[[[0.14696046984888433 0.7355396627258506]]] [[[0.5137299015964588 0.45081814508297]]]] [[[[0.27478652087776756 0.34135787318984556]]] [[[0.5591260182820207 0.07070629471175716]]]]]] [[[[[[0.13963826072911867 0.6403110840837969]]] [[[0.11566073322548498 0.10609276174551563]]]] [[[[0.9011845622020642 0.1453281148365304]]] [[[0.13905844663301425 0.2467876720884853]]]]] [[[[[0.24882607781871358 0.7003985970331095]]] [[[0.010483759022697048 0.5289281402404403]]]] [[[[0.8830550325151011 0.8529650650088569]]] [[[0.6424878155614187 0.5536486751789658]]]]] [[[[[0.6506059698065638 0.4094928451636498]]] [[[0.3466164070624589 0.8239694778717942]]]] [[[[0.48549126110150287 0.8493456365123971]]] [[[0.7023226546179422 0.523684006835944]]]]]] [[[[[[0.6286932462598267 0.1415637610781223]]] [[[0.6452158251132122 0.2733212075300955]]]] [[[[0.8828099096620287 0.8744365677478192]]] [[[0.18207781914764953 0.5029713014507682]]]]] [[[[[0.18683118587965686 0.108027157727699]]] [[[0.8671526838447544 0.6894123544251998]]]] [[[[0.7917219251673789 0.24080936464587865]]] [[[0.9136051284134319 0.7238682867764]]]]] [[[[[0.8668003930447804 0.6393900005222061]]] [[[0.36137169288776305 0.7119113171101271]]]] [[[[0.3092299642193156 0.21187417498900996]]] [[[0.024320119409581897 0.23644342346324398]]]]]]] [[[[[[[0.6370386378968573 0.770248111098756]]] [[[0.7612413154757556 0.7355637662733333]]]] [[[[0.08956843822014016 0.7403389261863611]]] [[[0.9554731830792178 0.2128952432100455]]]]] [[[[[0.487809828722344 0.735407101379587]]] [[[0.15162638322525812 0.07212791917640371]]]] [[[[0.052493746283429954 0.2775695957481732]]] [[[0.5403456743283532 0.6258134825529451]]]]] [[[[[0.7397483827090496 0.6446107954279069]]] [[[0.07543010820358109 0.3961357226114913]]]] [[[[0.6824928791312814 0.5592844463967248]]] [[[0.3629686482392773 0.1036410352832483]]]]]] [[[[[[0.3303868713508419 0.16866211042402612]]] [[[0.5377637843616656 0.6394819452790935]]]] [[[[0.41537925488829164 0.3077303478509096]]] [[[0.47163088683589727 0.48846187848557965]]]]] [[[[[0.6339063356178145 0.19170396857432137]]] [[[0.2704755346518073 0.8327908839121194]]]] [[[[0.9407942786661317 0.9455301844289592]]] [[[0.18011804881361482 0.4162155935547568]]]]] [[[[[0.7838407299968322 0.6072220780641154]]] [[[0.4152379607798852 0.2896392806082859]]]] [[[[0.8140167649628934 0.08347675366349583]]] [[[0.41401795450422185 0.839729209989889]]]]]] [[[[[[0.17286361241552928 0.6914363180403168]]] [[[0.6016010803623179 0.04170385308631441]]]] [[[[0.447432026473792 0.7571473976794484]]] [[[0.6205318524098019 0.19795495883885195]]]]] [[[[[0.30093297943321096 0.7253705632854152]]] [[[0.6365427747125196 0.6179990386015508]]]] [[[[0.23605351225293902 0.0001339744167427881]]] [[[0.01672841458987373 0.32883821313934114]]]]] [[[[[0.6508333863064503 0.9343477862636458]]] [[[0.19834911663086086 0.4026403838528654]]]] [[[[0.008211526732847307 0.5394549470229468]]] [[[0.10519988742955244 0.65288505364177]]]]]] ... [[[[[[0.5322668981906664 0.6871331682330608]]] [[[0.9701910306091831 0.7605702444456999]]]] [[[[0.38512883006657816 0.5473967006916424]]] [[[0.2696438649970987 0.6119437982669191]]]]] [[[[[0.7487831132755065 0.9683147312895393]]] [[[0.8508982262009451 0.8798369179599916]]]] [[[[0.11554355264165161 0.7364494515670266]]] [[[0.26584434163350434 0.5594291852348982]]]]] [[[[[0.48313341527991605 0.3271380776410546]]] [[[0.7673152721609813 0.6087504969021724]]]] [[[[0.5140253530070199 0.9199382233651278]]] [[[0.17458924946781362 0.40172321907970066]]]]]] [[[[[[0.5381493057811866 0.7559255708939269]]] [[[0.12355774100120931 0.016975852833549188]]]] [[[[0.2531616233769164 0.864744111032113]]] [[[0.834827444599669 0.810804801725626]]]]] [[[[[0.9871018910673399 0.4958219233435477]]] [[[0.613328734292876 0.6698295624955471]]]] [[[[0.6805151417438416 0.15160449022944777]]] [[[0.9091738659889969 0.45925067702882916]]]]] [[[[[0.4054193145486801 0.4424327757044726]]] [[[0.3230411963086467 0.17042262265175423]]]] [[[[0.09207729249955343 0.23937469530253874]]] [[[0.5076510808404412 0.07676049294534915]]]]]] [[[[[[0.52975337133147 0.03618001359094902]]] [[[0.8420353278491134 0.7555681744025287]]]] [[[[0.4259998328250133 0.618086341047245]]] [[[0.5179247535097987 0.7893437937095872]]]]] [[[[[0.9075488785657502 0.2620043480482285]]] [[[0.49744971166550933 0.693139114635611]]]] [[[[0.47191393890873257 0.24996151275118872]]] [[[0.3749126508838807 0.9764410321295931]]]]] [[[[[0.9333290768365659 0.24313836267367972]]] [[[0.16806093869682714 0.09243564450664266]]]] [[[[0.5994764270159914 0.7131510973978853]]] [[[0.2075743635264372 0.8130416031131156]]]]]]]] [[[[[[[[0.01018393829958708 0.017655515726461735]]] [[[0.7793416234157842 0.20624938314711816]]]] [[[[0.838123365752663 0.2729677039988979]]] [[[0.6898123457024847 0.2299110038870522]]]]] [[[[[0.8434777855009491 0.0025296070962743666]]] [[[0.2960020933967399 0.8162103512357087]]]] [[[[0.3879280984825987 0.8364184149965146]]] [[[0.5305853824958404 0.4130123999106714]]]]] [[[[[0.45930958712341496 0.541810688927782]]] [[[0.6064605875405497 0.06841670199157313]]]] [[[[0.9209814923312052 0.8727249168163316]]] [[[0.04933206052359329 0.38550917136387264]]]]]] [[[[[[0.09375596971124123 0.17483927065196236]]] [[[0.17565151056092587 0.7592915638522626]]]] [[[[0.40421852706329986 0.2956216020518032]]] [[[0.848686928746066 0.8371240105116382]]]]] [[[[[0.6503560765431843 0.912236538775058]]] [[[0.7215513294827443 0.08453393702469625]]]] [[[[0.5261286495633628 0.06788234836168094]]] [[[0.12515975028501058 0.5543241419751046]]]]] [[[[[0.6510410895428578 0.35179453300032915]]] [[[0.056668862566086275 0.41418217223982834]]]] [[[[0.3976358262741513 0.8223034958838181]]] [[[0.6406100747689011 0.09924339330396492]]]]]] [[[[[[0.9514372361505475 0.4337583976411745]]] [[[0.8854418839785867 0.29683833206129473]]]] [[[[0.31734276646365056 0.9325061391230655]]] [[[0.7091987854986692 0.20792448311706602]]]]] [[[[[0.8014105537100992 0.3002972195161918]]] [[[0.3775405642871398 0.9229618417735371]]]] [[[[0.4571889477310308 0.9086136714288986]]] [[[0.4014816674783219 0.29841899304401776]]]]] [[[[[0.6821951517452796 0.4462509798894263]]] [[[0.3312816096218376 0.7498492892447168]]]] [[[[0.42246416120210384 0.25689066241964753]]] [[[0.6601678936452342 0.02244483248800322]]]]]] ... [[[[[[0.8678894056568286 0.874315356861041]]] [[[0.49409073507913315 0.017431794918517984]]]] [[[[0.671658801116374 0.31259189416127053]]] [[[0.9196098451173916 0.9498965444647205]]]]] [[[[[0.7000424094674839 0.30251309065332754]]] [[[0.3127288854617297 0.24642171636968047]]]] [[[[0.16097702272701653 0.18613558381426187]]] [[[0.992636698918257 0.6578455458339533]]]]] [[[[[0.25227690833455174 0.6708382408253422]]] [[[0.8169540127775299 0.814598435332203]]]] [[[[0.864119764791928 0.9141234343595007]]] [[[0.05369011193448281 0.719433803967256]]]]]] [[[[[[0.3092857410561277 0.2201166103069978]]] [[[0.44334677467755745 0.19911456037973652]]]] [[[[0.5114462622422888 0.7100595286387529]]] [[[0.16414267132096094 0.32312081714003493]]]]] [[[[[0.7475136778902405 0.8717348935919973]]] [[[0.871795879781135 0.9099162617808747]]]] [[[[0.847110151766464 0.5194140491280572]]] [[[0.48780003928097304 0.21611725216587752]]]]] [[[[[0.19505850943913228 0.7192514942015644]]] [[[0.5463506284167399 0.055991352992312726]]]] [[[[0.37785046986535775 0.5944038245517924]]] [[[0.3248638517519643 0.2400123416144938]]]]]] [[[[[[0.6104073943296235 0.5532530167110543]]] [[[0.9483658315456251 0.24087035804072643]]]] [[[[0.11096993731073979 0.673403081211732]]] [[[0.520787308634051 0.3673354391174437]]]]] [[[[[0.2325116743110256 0.48336534325971237]]] [[[0.258765883200332 0.8694184317301512]]]] [[[[0.03647433585732307 0.14199897166277675]]] [[[0.1418703577903465 0.3476845100658662]]]]] [[[[[0.8115211543469939 0.3187435208202414]]] [[[0.4036323074699021 0.3907400581930345]]]] [[[[0.07941634262563302 0.1405868554031806]]] [[[0.7392389373522337 0.9901974896009132]]]]]]] [[[[[[[0.6690276791503047 0.05313392201269951]]] [[[0.09588291196608856 0.684589042079056]]]] [[[[0.48055371816719483 0.14813754230790555]]] [[[0.44257914230450346 0.6797125846939127]]]]] [[[[[0.9824390242800831 0.5514816071351352]]] [[[0.9189743611982709 0.7649894568591227]]]] [[[[0.042314334787518115 0.3175469169190459]]] [[[0.9296566743907315 0.10655960160001132]]]]] [[[[[0.8726128617394955 0.47042519367237423]]] [[[0.18576617440729304 0.3846684146983885]]]] [[[[0.8570578395912832 0.14815304074626634]]] [[[0.07198480862993573 0.8263777369220973]]]]]] [[[[[[0.41984451991419314 0.11688086440860157]]] [[[0.6500104228022474 0.07239663018542897]]]] [[[[0.358793176844046 0.26132639850817796]]] [[[0.6757274910978294 0.9885335090310963]]]]] [[[[[0.2514042832072152 0.326337631011251]]] [[[0.5951284942281266 0.6757751633913245]]]] [[[[0.49799920766237293 0.7531418459191301]]] [[[0.9455269505197359 0.9647322434692511]]]]] [[[[[0.22340259098607906 0.5448673003281993]]] [[[0.2019384805022565 0.8706544566898372]]]] [[[[0.7589641799229009 0.9978987124798492]]] [[[0.5267842877182012 0.6838705713773376]]]]]] [[[[[[0.03056275272313036 0.016618662743897894]]] [[[0.759296474187797 0.9282525370595294]]]] [[[[0.10893684683099114 0.9204603551121661]]] [[[0.6498209882211883 0.6407017068517467]]]]] [[[[[0.4901776449487667 0.04838749075795812]]] [[[0.2635227090594925 0.3777178185710003]]]] [[[[0.3279492692915955 0.7655670871175142]]] [[[0.1637066852852218 0.1292730039842308]]]]] [[[[[0.7851354567558249 0.48000241817281963]]] [[[0.10174999444063992 0.5497077790168242]]]] [[[[0.18867609749615366 0.8555160161539869]]] [[[0.25773680766718354 0.2720204399614513]]]]]] ... [[[[[[0.7807827251545256 0.6839554852812235]]] [[[0.7027211216474621 0.7120234382478008]]]] [[[[0.9444966448173712 0.04478692415749608]]] [[[0.4069927251774914 0.19054409731130917]]]]] [[[[[0.7158526185474406 0.3359473067065346]]] [[[0.8095871325849219 0.04371587926805742]]]] [[[[0.6146760733369282 0.05979295559649722]]] [[[0.5780228981066805 0.5566953793449074]]]]] [[[[[0.46194509806163153 0.9599334176194133]]] [[[0.44478922500445994 0.8847442181283065]]]] [[[[0.7993306082206043 0.3106769749486794]]] [[[0.26572311376794744 0.3586640747369404]]]]]] [[[[[[0.8665940611147672 0.20794989619523618]]] [[[0.4788432012658872 0.5792050189558033]]]] [[[[0.9448954585547505 0.36637971016167326]]] [[[0.07685088409541241 0.08055883680191056]]]]] [[[[[0.5374707651294767 0.25479472838021655]]] [[[0.7429666314141904 0.7637431196978163]]]] [[[[0.9508584509179346 0.829962200066155]]] [[[0.9665609853274999 0.3993052566680798]]]]] [[[[[0.10935277793211695 0.8972041049437343]]] [[[0.4509760134447033 0.5746399405568168]]]] [[[[0.35297608429717064 0.883700530523694]]] [[[0.8640236936099693 0.3606156865535548]]]]]] [[[[[[0.37313896996916784 0.41291916631131687]]] [[[0.9679478501021647 0.22863817620143112]]]] [[[[0.8426282085430442 0.1278019253175775]]] [[[0.2797898358203089 0.6390923446459453]]]]] [[[[[0.16923176684757402 0.9423705928602915]]] [[[0.898270893247305 0.756318777534975]]]] [[[[0.030357062463094775 0.7174139223097631]]] [[[0.1785609965471886 0.37368939740893325]]]]] [[[[[0.32771532405507187 0.27024944067545364]]] [[[0.02937778300970617 0.20582932110513819]]]] [[[[0.4239419364887268 0.7099406228674715]]] [[[0.6150899238544235 0.8681139455361097]]]]]]] [[[[[[[0.6999204043786759 0.42937842368489254]]] [[[0.31968038355674455 0.1200127003444652]]]] [[[[0.7356323550302996 0.22145996643966204]]] [[[0.45796422407900783 0.22794139019241666]]]]] [[[[[0.23300431788764253 0.3364816398845528]]] [[[0.9713151081278453 0.3443983566357167]]]] [[[[0.8679402300803912 0.0338673147655123]]] [[[0.49565357783690145 0.9775581840953842]]]]] [[[[[0.9731869788545036 0.11542372662867395]]] [[[0.9116645193524113 0.9925783360809547]]]] [[[[0.5432787370046162 0.38276938283274153]]] [[[0.48439428757095604 0.4295459777205827]]]]]] [[[[[[0.44628988349145293 0.8670642585229559]]] [[[0.8361784915576668 0.3723506173531078]]]] [[[[0.6334016675499118 0.8935637879606014]]] [[[0.5156758104408046 0.9130444073132941]]]]] [[[[[0.72999309192222 0.451998880389726]]] [[[0.6994272646990468 0.008691504558209107]]]] [[[[0.22464418049233514 0.026124601730464825]]] [[[0.029857547706544918 0.027900366023963397]]]]] [[[[[0.49360092242073794 0.9706683340653224]]] [[[0.4851445112731253 0.25046131298429375]]]] [[[[0.4719826311408952 0.29610347335591447]]] [[[0.32938995426743545 0.26103269379554805]]]]]] [[[[[[0.6092595139511142 0.20745412388763773]]] [[[0.8485414099873294 0.42484468087175775]]]] [[[[0.5670382297563779 0.5032951805244894]]] [[[0.8668922299371493 0.46547334109504024]]]]] [[[[[0.03397260492592358 0.2792681421809421]]] [[[0.19738142127316216 0.9335349871145089]]]] [[[[0.8802232123363546 0.5697833063364469]]] [[[0.17037296682153213 0.3245475891967958]]]]] [[[[[0.9133147412188716 0.9561626031329462]]] [[[0.9326731095917696 0.407318478229004]]]] [[[[0.7096261982252535 0.2660909523295749]]] [[[0.6651274829959388 0.938862663590572]]]]]] ... [[[[[[0.27620243610640705 0.4591291968812723]]] [[[0.6954489226113925 0.9473268782849158]]]] [[[[0.248671317807989 0.19085718685587627]]] [[[0.4310616139888599 0.24401570684586327]]]]] [[[[[0.48677006587620897 0.3661142084942155]]] [[[0.5618792963364948 0.8107818018514189]]]] [[[[0.2959424371207039 0.35815180480158815]]] [[[0.06632908369729718 0.22737992674833973]]]]] [[[[[0.18517057171658646 0.8067327686795848]]] [[[0.7975069058376444 0.859305861259886]]]] [[[[0.09451565980589494 0.9245110581033853]]] [[[0.9110073483608013 0.5977876803652387]]]]]] [[[[[[0.18932733337290297 0.6246397460933555]]] [[[0.48722469465148155 0.323574105263728]]]] [[[[0.7147255170179367 0.1076958048976916]]] [[[0.9001381307343571 0.5454585981198775]]]]] [[[[[0.009506316915856239 0.3931239243773824]]] [[[0.19831951778547774 0.4651168993086445]]]] [[[[0.5125936534515154 0.33644667163560105]]] [[[0.041519427353943206 0.6845597567904124]]]]] [[[[[0.6639784882178194 0.25762478204311323]]] [[[0.7691372808561069 0.3115221184841628]]]] [[[[0.22548341819055273 0.5611036340338584]]] [[[0.004444889239238803 0.5160145151984505]]]]]] [[[[[[0.9469284692413764 0.8639728223356821]]] [[[0.9917500923070384 0.17755850079233704]]]] [[[[0.5316975431245965 0.4228175594066754]]] [[[0.6207560566439948 0.35953775031736135]]]]] [[[[[0.49449515507007025 0.14373113782724456]]] [[[0.025670955205791768 0.14486678139512044]]]] [[[[0.1339877438744782 0.036202651822096255]]] [[[0.16944812286548483 0.4948226297055288]]]]] [[[[[0.24238217844116083 0.8140891243831836]]] [[[0.5039455380219889 0.16703337324337542]]]] [[[[0.34847623033286357 0.6115412223742266]]] [[[0.2582716965704345 0.7294817941178009]]]]]]] [[[[[[[0.6028004906567465 0.028720337877504165]]] [[[0.6857737456449228 0.915781349063375]]]] [[[[0.9063823574980692 0.8980620727104539]]] [[[0.9946919488855126 0.43075675313846673]]]]] [[[[[0.11879882311726686 0.39332315780490046]]] [[[0.23866636790050022 0.7266663663310503]]]] [[[[0.9136671633372677 0.48363421739232104]]] [[[0.9582276220583036 0.4687888850815598]]]]] [[[[[0.4818171785337274 0.4178815057394628]]] [[[0.4512710924687672 0.9485176989800311]]]] [[[[0.9722621311532501 0.7383238261194749]]] [[[0.9580060810289243 0.25166190752069517]]]]]] [[[[[[0.1613362012817936 0.10175699663574023]]] [[[0.9396915224448672 0.5692808076016803]]]] [[[[0.6799331823826453 0.40911698529387386]]] [[[0.6777625669388773 0.9906486487895889]]]]] [[[[[0.3585402693883071 0.9255158174153463]]] [[[0.5053038115458937 0.7750233248925387]]]] [[[[0.1426555601586318 0.9287435603362788]]] [[[0.7866523149552311 0.24318981649079696]]]]] [[[[[0.4816464792403671 0.9462447838837286]]] [[[0.7403435291123316 0.49118482134264563]]]] [[[[0.40497282110822264 0.15001068099168458]]] [[[0.33078682674287396 0.9076862185101259]]]]]] [[[[[[0.1016778060895287 0.2586921796997288]]] [[[0.48149891739282913 0.45057019403391496]]]] [[[[0.9528618846417879 0.8173281789392687]]] [[[0.3924231983062859 0.3629931516592314]]]]] [[[[[0.3409901125655759 0.3520423268854669]]] [[[0.7467263946985983 0.9655646347198275]]]] [[[[0.5073535154513882 0.6095625347696949]]] [[[0.8309187757028916 0.46360167202899827]]]]] [[[[[0.5943472233412687 0.25915453270052335]]] [[[0.5831103952105319 0.430281532758227]]]] [[[[0.8831236546407797 0.7378724464083682]]] [[[0.5534807800983991 0.37862195805520604]]]]]] ... [[[[[[0.5485790590341164 0.22212003760642163]]] [[[0.5454547736460441 0.5676420024583824]]]] [[[[0.06756378755515413 0.8046465582814138]]] [[[0.3078272660567448 0.15075888713983354]]]]] [[[[[0.7042294900481882 0.18772479489556515]]] [[[0.6872045278471888 0.03856170948853277]]]] [[[[0.6230878487103608 0.1792733827350862]]] [[[0.21634915347800487 0.014170411927123094]]]]] [[[[[0.19570566802799372 0.27033138804900214]]] [[[0.6877149156174069 0.21538165918412033]]]] [[[[0.05999662152782481 0.5834591804045866]]] [[[0.07860133460758323 0.5093352818859542]]]]]] [[[[[[0.7958476844010441 0.4471128371044406]]] [[[0.20540135847196106 0.05244263990005271]]]] [[[[0.8986045439207199 0.9526913684290621]]] [[[0.3868765918914645 0.48052814556787016]]]]] [[[[[0.13371943377835616 0.2560961564351588]]] [[[0.1340370404638649 0.24906368833468784]]]] [[[[0.7020005513086355 0.6912386647568269]]] [[[0.25222097116348685 0.7246254378307986]]]]] [[[[[0.9723286364591867 0.7828422349965789]]] [[[0.05621683905499375 0.8793865900367328]]]] [[[[0.6465212579865779 0.2270848285070376]]] [[[0.5611929598555618 0.16078422119078795]]]]]] [[[[[[0.6352347402703643 0.5443828222496122]]] [[[0.5703756530136971 0.8713228375052122]]]] [[[[0.5267039806872668 0.7223665001762798]]] [[[0.5739049577009903 0.7049967596438442]]]]] [[[[[0.3592104126183373 0.06527347934470928]]] [[[0.7905927759335715 0.49359580385503177]]]] [[[[0.1953895134711009 0.13479071476598303]]] [[[0.7090830148962157 0.20389604993707455]]]]] [[[[[0.18977784289629118 0.8920895839025947]]] [[[0.24193136147894778 0.8133390646671997]]]] [[[[0.6340820373647122 0.14320462154634317]]] [[[0.027748573965219125 0.07960328249186588]]]]]]]] ... [[[[[[[[0.8785118527881632 0.7328113857532432]]] [[[0.16802054914778453 0.15114452632234587]]]] [[[[0.7334971365031348 0.8123762589545588]]] [[[0.30001650080800835 0.106912993641469]]]]] [[[[[0.03453671715798723 0.8026597353384096]]] [[[0.8871683631361187 0.1871299740216591]]]] [[[[0.8147076637947319 0.34799727815052783]]] [[[0.8159056033998351 0.7652092183912551]]]]] [[[[[0.3120099359202847 0.9370378673578096]]] [[[0.7274749590288319 0.15407871211830326]]]] [[[[0.7696228699711046 0.6145033674495559]]] [[[0.03346311578309247 0.5355409993980746]]]]]] [[[[[[0.14839851729852882 0.10022779757170752]]] [[[0.01953900572000078 0.7797921083991938]]]] [[[[0.27638923184906505 0.7839597559990943]]] [[[0.9474664664145404 0.2965553377108461]]]]] [[[[[0.5953291421480859 0.6546108978269903]]] [[[0.8483757649321575 0.9456250385488756]]]] [[[[0.7624163684532927 0.692622564003109]]] [[[0.28988343591808474 0.8601227550395072]]]]] [[[[[0.8543631776845229 0.6808630271379631]]] [[[0.828075756365483 0.44305781624628016]]]] [[[[0.4632525380872259 0.2612993321495717]]] [[[0.036116869601222734 0.6313317753224091]]]]]] [[[[[[0.7428031848157165 0.1813302179807753]]] [[[0.014293478201122256 0.9667356709349492]]]] [[[[0.5000168470308537 0.16497578821479775]]] [[[0.4364708719887226 0.2478276539776475]]]]] [[[[[0.9715351450930207 0.14952567708127473]]] [[[0.4471444529394336 0.3989462249662561]]]] [[[[0.8896161100490971 0.4693825000269183]]] [[[0.2075749178688825 0.5472703099461595]]]]] [[[[[0.9368895559637795 0.8066751436830667]]] [[[0.9238964631014518 0.7646646818847677]]]] [[[[0.6066747782862706 0.5989433744075779]]] [[[0.8613806936186056 0.8899162642788653]]]]]] ... [[[[[[0.2599672533765157 0.7342550033542877]]] [[[0.23091624661446508 0.6437438422890707]]]] [[[[0.4801161640875111 0.7756895222731849]]] [[[0.18998897280475158 0.8646597514984811]]]]] [[[[[0.42667531926779867 0.5597660230649825]]] [[[0.17892623076602876 0.5546555504781475]]]] [[[[0.015504518369985898 0.7830221061246398]]] [[[0.5405342301351184 0.02164813621128525]]]]] [[[[[0.4490531028194331 0.538711118716778]]] [[[0.5201655385805719 0.8515442816280747]]]] [[[[0.750051918830464 0.6580180481965103]]] [[[0.37495082488419806 0.9491295004015328]]]]]] [[[[[[0.29222346422781786 0.9165284054785322]]] [[[0.8391798712034026 0.19666380336879152]]]] [[[[0.8779287762759225 0.5390883016944261]]] [[[0.7533863095094816 0.38514098561832244]]]]] [[[[[0.6165327239052701 0.8269823885433681]]] [[[0.9672532558867855 0.6877046969199722]]]] [[[[0.038274270959745116 0.9041544860359971]]] [[[0.916058825262184 0.893570449654851]]]]] [[[[[0.1475852796434275 0.28407811591856513]]] [[[0.7043526437086709 0.742146474217131]]]] [[[[0.7011916918724842 0.016203791364771458]]] [[[0.3206391702212684 0.9055043705564225]]]]]] [[[[[[0.3601514276506994 0.6241242105208648]]] [[[0.4208482192177072 0.38431757628823304]]]] [[[[0.7214242995815432 0.26159398961585434]]] [[[0.06824691068242283 0.7489919829852228]]]]] [[[[[0.42842761008106334 0.39114954112912026]]] [[[0.4311737554200995 0.1391511080330079]]]] [[[[0.6935355033536778 0.8322571890620365]]] [[[0.2545649414489559 0.03786150832204671]]]]] [[[[[0.3436416174788499 0.4362978552116836]]] [[[0.8968229548705497 0.22259574990008812]]]] [[[[0.6527650273122613 0.5063147993811408]]] [[[0.3353642906215202 0.5352334108718677]]]]]]] [[[[[[[0.5996848317229773 0.05170237823946011]]] [[[0.6744092039633522 0.20207196988117537]]]] [[[[0.00015333931220629093 0.6536965559532444]]] [[[0.08872756287066508 0.27661084904328115]]]]] [[[[[0.5493457661663963 0.2385193976727472]]] [[[0.06698179819584105 0.90130365956428]]]] [[[[0.4424801433840895 0.5685994538506348]]] [[[0.5896682472313822 0.6281467951095178]]]]] [[[[[0.0401097624707043 0.08786688224613026]]] [[[0.710995660866881 0.31426134389871563]]]] [[[[0.07936779173754427 0.03407822422136342]]] [[[0.93458458811013 0.4856539424905113]]]]]] [[[[[[0.5700621514096612 0.6824702341041787]]] [[[0.8910260941551499 0.8094330005489934]]]] [[[[0.06485224886976482 0.03660007937770593]]] [[[0.2979466542755266 0.35484455270336235]]]]] [[[[[0.1642281012303607 0.6984408335182271]]] [[[0.917758502200038 0.09002512439776034]]]] [[[[0.3334348293331386 0.4223758911809108]]] [[[0.5751883239887084 0.7568803329761278]]]]] [[[[[0.25053527410670895 0.6750664120777565]]] [[[0.67494979573905 0.13609168322602294]]]] [[[[0.07568115707523104 0.13681164777130705]]] [[[0.39019635666163754 0.756164888982189]]]]]] [[[[[[0.8784858783587731 0.9308303351072603]]] [[[0.13812635296016562 0.284001170585392]]]] [[[[0.3254923373749514 0.05894513980559479]]] [[[0.04050776946274193 0.09726255125438588]]]]] [[[[[0.040802703223666636 0.5347283691849045]]] [[[0.37622385346972387 0.007434522296845714]]]] [[[[0.294330229115381 0.8573336413581617]]] [[[0.13894272910631944 0.03169245322106762]]]]] [[[[[0.6281920614832037 0.09214593517184255]]] [[[0.5771685434412581 0.564675273339719]]]] [[[[0.6777844407721729 0.3715342914223332]]] [[[0.46120397723362283 0.7974331680235088]]]]]] ... [[[[[[0.19034654598135614 0.8683617178754992]]] [[[0.9117505939563121 0.7691392467149076]]]] [[[[0.2289517765381418 0.597132055760544]]] [[[0.18979061943002673 0.3550315981483648]]]]] [[[[[0.40912784527764745 0.5363178510407053]]] [[[0.8519011001177333 0.7229874434692433]]]] [[[[0.3826401357124841 0.10176515676741815]]] [[[0.5340340659446265 0.6321669257173853]]]]] [[[[[0.055489909483972144 0.4597324180891539]]] [[[0.7315455331108887 0.7388388783234199]]]] [[[[0.5153560322289662 0.7116815788251666]]] [[[0.12913586813597633 0.9296986061265118]]]]]] [[[[[[0.02449255714576415 0.7221293179600113]]] [[[0.4568338514957906 0.538714594100797]]]] [[[[0.6840960690946452 0.030098107711029942]]] [[[0.7160890600102215 0.21138332057648512]]]]] [[[[[0.3102385257833806 0.8981713862499032]]] [[[0.3658633660869923 0.05107715592869677]]]] [[[[0.6370610664593831 0.15716905331726005]]] [[[0.469110236473547 0.05055235180421214]]]]] [[[[[0.1553166067602465 0.7203687877447775]]] [[[0.6224474841510433 0.1526885567009808]]]] [[[[0.9613998487387536 0.1277616960847784]]] [[[0.19325090295046354 0.9005737391275326]]]]]] [[[[[[0.8704317612026075 0.3422022156000234]]] [[[0.8507497776286143 0.886436567556043]]]] [[[[0.3033568379584374 0.7533640421353727]]] [[[0.8645551138658727 0.5172912990466665]]]]] [[[[[0.6990116799845817 0.8967997720173086]]] [[[0.8391076328709429 0.20551484471782622]]]] [[[[0.6472315670897638 0.6557848952235554]]] [[[0.9572442180312831 0.9812585802031321]]]]] [[[[[0.22012845332155018 0.07085827064569428]]] [[[0.765847998002754 0.22461373481856917]]]] [[[[0.6307179232257042 0.3116783403249531]]] [[[0.1277949545185949 0.8583524410612309]]]]]]] [[[[[[[0.6190825181560219 0.6558671246435636]]] [[[0.9211552695053613 0.029732548756947086]]]] [[[[0.4098399510270653 0.5264466035838001]]] [[[0.4343296575774286 0.946405564596308]]]]] [[[[[0.3010152846602173 0.5883948096245138]]] [[[0.7643341639426184 0.4484426472066956]]]] [[[[0.4617798530268089 0.10832658491340597]]] [[[0.087238003260242 0.1712327723269681]]]]] [[[[[0.24454112660064153 0.9636444322502652]]] [[[0.010611519107182388 0.06976486529265125]]]] [[[[0.3809292074355297 0.9593181038377189]]] [[[0.6907078287348362 0.5856653995323776]]]]]] [[[[[[0.847435117181065 0.5125337062266473]]] [[[0.7553836468500436 0.17237454677438913]]]] [[[[0.2922161758632369 0.9994490419955299]]] [[[0.6204445141095675 0.9648114161673224]]]]] [[[[[0.8987387773006188 0.7756170698634317]]] [[[0.3533188752121269 0.2864794109687494]]]] [[[[0.4167498980268397 0.697342411267858]]] [[[0.8147224088772416 0.979771417487265]]]]] [[[[[0.425756973585974 0.11738549586555214]]] [[[0.9079781226266919 0.945364349822248]]]] [[[[0.8846900067931902 0.40999691049868114]]] [[[0.637608928299272 0.30953016857789684]]]]]] [[[[[[0.6574921630933424 0.5238682983159006]]] [[[0.562749865375047 0.7653917523196404]]]] [[[[0.3038768428569255 0.3228073701906675]]] [[[0.869101373676934 0.8703680962902812]]]]] [[[[[0.11512526962449032 0.00343116974610147]]] [[[0.21289035180544236 0.10523054074676974]]]] [[[[0.18866734635823157 0.6297796120530583]]] [[[0.3908434674657909 0.8104615189465362]]]]] [[[[[0.1956411606303644 0.27163197310185627]]] [[[0.48761337560198237 0.31228882813061043]]]] [[[[0.22855658238321885 0.6822997518481883]]] [[[0.605177627813604 0.6837390382493131]]]]]] ... [[[[[[0.19312391081357239 0.18825435288365788]]] [[[0.36737336213781613 0.24790686411422758]]]] [[[[0.6888820737842754 0.5124102806734675]]] [[[0.07554046603940812 0.1473896943620281]]]]] [[[[[0.8716198837196112 0.9651976606623228]]] [[[0.16039794567525356 0.6106965728766416]]]] [[[[0.7597203831187642 0.9448114238378172]]] [[[0.18311916348518786 0.5576894455026806]]]]] [[[[[0.9208073458368684 0.9056470980862892]]] [[[0.31440305760261356 0.011441900797716786]]]] [[[[0.7755528875705221 0.4398744513416577]]] [[[0.9662528682333279 0.7061867013800153]]]]]] [[[[[[0.351874775668681 0.1849672877569154]]] [[[0.26638525152995507 0.15783579428683958]]]] [[[[0.27824148355981393 0.1230214550045925]]] [[[0.6510967934527245 0.5592427541497936]]]]] [[[[[0.48524226202651133 0.5864757746046779]]] [[[0.8776341531049313 0.3940788660478852]]]] [[[[0.591979277950618 0.38582461348112074]]] [[[0.009714368221597991 0.2813772243615186]]]]] [[[[[0.3882513963336759 0.09783238381774595]]] [[[0.09262498544591735 0.6606947078371899]]]] [[[[0.3886831548631372 0.10413743508192641]]] [[[0.38197117930067237 0.43866662101040577]]]]]] [[[[[[0.46052023409975074 0.44284641622264964]]] [[[0.052775971561293766 0.125018741842857]]]] [[[[0.8154874592146918 0.8930128406030867]]] [[[0.3989804555503035 0.39751259867325683]]]]] [[[[[0.5801558447004629 0.48196565550136694]]] [[[0.2576481336497036 0.6410731726344866]]]] [[[[0.959814155524258 0.09071198983453066]]] [[[0.036427236982454536 0.5850108048415784]]]]] [[[[[0.31282611770645397 0.0437528334651085]]] [[[0.6126613757028775 0.7108800824733069]]]] [[[[0.12351392169950803 0.4971684602618639]]] [[[0.4644056638861994 0.7753316672600168]]]]]]] [[[[[[[0.2830941469297925 0.22780518820556128]]] [[[0.9400816200454303 0.48297517436780124]]]] [[[[0.4139254729197177 0.8651611638034509]]] [[[0.15747258421190102 0.5805899166393098]]]]] [[[[[0.3386350888241021 0.10157742632963496]]] [[[0.9025002340755348 0.08376201897422342]]]] [[[[0.46817043986071216 0.5544063175576711]]] [[[0.17142222872445623 0.637064287575898]]]]] [[[[[0.43682055071455306 0.9145008279665161]]] [[[0.7361773771811004 0.6285696156694528]]]] [[[[0.32666186363372995 0.6572604229876479]]] [[[0.3337079532837024 0.1340098974302517]]]]]] [[[[[[0.020261439984712193 0.8991663648323769]]] [[[0.9727190114621285 0.5467001641245327]]]] [[[[0.01413476980655981 0.13431462401718364]]] [[[0.8906457868956129 0.3391707078716667]]]]] [[[[[0.0017465742387887673 0.45546735562097596]]] [[[0.7709796738859863 0.21686082194411116]]]] [[[[0.1520924791396373 0.36839647515861484]]] [[[0.1212686145433608 0.2940712505559512]]]]] [[[[[0.0626540928690078 0.37709684533637366]]] [[[0.04651022992416032 0.6173345162148574]]]] [[[[0.5276389621378831 0.8232476329568332]]] [[[0.2600548106113415 0.983824875495017]]]]]] [[[[[[0.797436767890187 0.610889806512037]]] [[[0.07101415058376792 0.05606310490756106]]]] [[[[0.18326127679558846 0.7268328276584707]]] [[[0.7904294208171885 0.7150512461145482]]]]] [[[[[0.08023970520591517 0.30130865575832433]]] [[[0.3663626710044987 0.6001129016122357]]]] [[[[0.8473201404357836 0.9016893228858193]]] [[[0.5573250538818214 0.1400968248972858]]]]] [[[[[0.7592504810599691 0.18689546725835304]]] [[[0.7172949425911758 0.593479072434656]]]] [[[[0.5409283084742806 0.40983844942349024]]] [[[0.1823720076411829 0.5338413796440393]]]]]] ... [[[[[[0.9730564168143842 0.7747349427564607]]] [[[0.20147941352278342 0.6664360115215624]]]] [[[[0.001284856861038186 0.638790756746918]]] [[[0.08134705612660587 0.82085243594936]]]]] [[[[[0.3481137860511515 0.9351382929766558]]] [[[0.5114540677730445 0.4344725258998542]]]] [[[[0.45227455625256785 0.8870124599104275]]] [[[0.7952881606289721 0.3041142082966387]]]]] [[[[[0.659655712403253 0.50322175335422]]] [[[0.3288050998528447 0.7396222982622727]]]] [[[[0.3598178092836598 0.9096682169098468]]] [[[0.35350598859236915 0.6286730780373887]]]]]] [[[[[[0.5394878249780451 0.9764201625321088]]] [[[0.672881500829892 0.35325662857682394]]]] [[[[0.017688740323404728 0.6295066805860334]]] [[[0.6119346293042456 0.1881672812058246]]]]] [[[[[0.8884210332550427 0.2788365303425404]]] [[[0.9119448321223264 0.6066988732698908]]]] [[[[0.01632120269938475 0.6365266281300281]]] [[[0.6382461128143451 0.6316149816619524]]]]] [[[[[0.4267950986084862 0.4746155012412697]]] [[[0.30912465309566883 0.23374784709696406]]]] [[[[0.6438204269589102 0.9903699172832028]]] [[[0.2688810998441964 0.6874050623897412]]]]]] [[[[[[0.0654530935437917 0.8337593491314199]]] [[[0.2698971842549788 0.36479348875227]]]] [[[[0.2995956817855795 0.5718430942748371]]] [[[0.09808168581077481 0.1943695413395391]]]]] [[[[[0.0268687953920278 0.5781346047223581]]] [[[0.9115332632497256 0.7355445481926774]]]] [[[[0.1496513147729538 0.302131167497109]]] [[[0.029273793448978958 0.5786055218307921]]]]] [[[[[0.9747575074435609 0.0863774754952148]]] [[[0.6606995430789641 0.21540231571881485]]]] [[[[0.7879270224447877 0.6192465119060252]]] [[[0.910678043836725 0.7851792119251908]]]]]]]] [[[[[[[[0.7141985761192174 0.8117458022064196]]] [[[0.4916438478613828 0.4082070329502726]]]] [[[[0.23786789662333452 0.9620527337294799]]] [[[0.9141197219501436 0.8866732893315531]]]]] [[[[[0.09286587048658812 0.3424724594190506]]] [[[0.19628096539104822 0.9522737653010845]]]] [[[[0.4214796048026469 0.05844755728480522]]] [[[0.9889531616932289 0.11333795666990176]]]]] [[[[[0.29371092300797863 0.30877897320239167]]] [[[0.9416907555834853 0.4513417728659608]]]] [[[[0.18769289710267556 0.08940307816799975]]] [[[0.27949433157331627 0.15514231944986645]]]]]] [[[[[[0.25049106592060244 0.8403879403733311]]] [[[0.09679469020135634 0.20019454062694308]]]] [[[[0.040856538145982446 0.34075160402849347]]] [[[0.5431359861975377 0.5763640971765255]]]]] [[[[[0.25748186299588993 0.17911125306558973]]] [[[0.8299467829206123 0.18411515237772658]]]] [[[[0.7295726465925052 0.4263101657467502]]] [[[0.8566258155952696 0.9717650369701382]]]]] [[[[[0.013628800495537385 0.17091559655523703]]] [[[0.9119552251494989 0.7965466944107527]]]] [[[[0.7714053041788348 0.7021943744059284]]] [[[0.11861373125959018 0.9438530281641209]]]]]] [[[[[[0.174010355483582 0.042672853090109264]]] [[[0.169354936151222 0.8181137433206572]]]] [[[[0.5965307667837219 0.3578607632409391]]] [[[0.2810005839609834 0.4404466565768602]]]]] [[[[[0.43226261124327003 0.38563399051026725]]] [[[0.26986568854388926 0.7577787065075102]]]] [[[[0.14508289058733337 0.3886670168037576]]] [[[0.8597371291635747 0.5636852522462762]]]]] [[[[[0.018668233003639068 0.6518820435392451]]] [[[0.5426227202259994 0.8777719455760462]]]] [[[[0.49797149464599033 0.12651312848907414]]] [[[0.27312541596252515 0.5577824033506241]]]]]] ... [[[[[[0.6789139661204762 0.7107165280262226]]] [[[0.5890714083933629 0.36157524712038946]]]] [[[[0.49157172916754965 0.5968610972103319]]] [[[0.26019000784494195 0.8200911332403593]]]]] [[[[[9.51205002237554e-05 0.5861652667273379]]] [[[0.8344222028016124 0.057639112047433216]]]] [[[[0.08123814938772811 0.6424784696105218]]] [[[0.6279363768285613 0.1447540334692745]]]]] [[[[[0.020808154903385057 0.3240881064076443]]] [[[0.32455001007091955 0.3538854861710383]]]] [[[[0.890850434628899 0.7003163671039414]]] [[[0.028008842304435788 0.5636572232431686]]]]]] [[[[[[0.5183831197511313 0.39526277452809144]]] [[[0.6457856388704574 0.2756549985018736]]]] [[[[0.29038012244537736 0.700398732367565]]] [[[0.656997384993127 0.9544009062428186]]]]] [[[[[0.9153973190002218 0.5612292451889141]]] [[[0.7818192156513624 0.4725743450833072]]]] [[[[0.6169649260268932 0.08959969942883883]]] [[[0.002796188651257747 0.2952876950494763]]]]] [[[[[0.014571261611552977 0.1534875211738399]]] [[[0.8864218494341564 0.8051693971669717]]]] [[[[0.7841133529554629 0.9926056035392665]]] [[[0.685206552199368 0.04159623887358477]]]]]] [[[[[[0.5569579832184983 0.28582663027337185]]] [[[0.8562234769125849 0.13262271657716784]]]] [[[[0.6274382995769818 0.8360585041562614]]] [[[0.8840922463015326 0.42414752163033675]]]]] [[[[[0.6923579085985515 0.5254237797585714]]] [[[0.5453084247784479 0.7769532474350995]]]] [[[[0.0942741255234878 0.9519392816578107]]] [[[0.8972148306436369 0.5219053556861393]]]]] [[[[[0.22782600292244726 0.8742748793921084]]] [[[0.7838451288986483 0.9845108730257024]]]] [[[[0.5979838520366502 0.8781647262715659]]] [[[0.9653804104405725 0.8062953979697036]]]]]]] [[[[[[[0.3432374644659064 0.4418013430134504]]] [[[0.8638414565250006 0.593105989734644]]]] [[[[0.6796328584780059 0.24823846568977914]]] [[[0.8699965456023706 0.2453116135423672]]]]] [[[[[0.06807341859868565 0.5689658986432773]]] [[[0.14383300425769785 0.94817458261797]]]] [[[[0.9195367182900498 0.21674056370827532]]] [[[0.6995147448442318 0.5766272779885094]]]]] [[[[[0.9927415920737842 0.36506858391247743]]] [[[0.8943606071908891 0.5208421866592677]]]] [[[[0.6993449043643257 0.8764506080935051]]] [[[0.6606476450300492 0.8190257406561536]]]]]] [[[[[[0.4349494371639899 0.5938077106860389]]] [[[0.9113844173990604 0.5971560210772849]]]] [[[[0.05319748190874307 0.6052370160485205]]] [[[0.04886764460474391 0.1097873426970063]]]]] [[[[[0.7938769688277633 0.9602915303392812]]] [[[0.31962145657973917 0.8150788941692189]]]] [[[[0.9107047935650757 0.42202167506048416]]] [[[0.9336588303290763 0.331564343191745]]]]] [[[[[0.642278765120426 0.05536248754206652]]] [[[0.053906011172996315 0.21275919205667304]]]] [[[[0.839629468951361 0.7150343889055086]]] [[[0.8201253444759057 0.2749255340138812]]]]]] [[[[[[0.5626230525037845 0.5551997061269057]]] [[[0.31846086812498764 0.6931660007597076]]]] [[[[0.608868982477039 0.29869639877980203]]] [[[0.3377942645669624 0.31814500950040436]]]]] [[[[[0.9519981223300782 0.8533160304548633]]] [[[0.8859934459850672 0.0458046302056907]]]] [[[[0.6470942398719615 0.31224775798367177]]] [[[0.19996518384985262 0.458639713921853]]]]] [[[[[0.20664473916301018 0.9233038153087468]]] [[[0.3248789392035677 0.6559287979844588]]]] [[[[0.49826874604442606 0.3556701208116465]]] [[[0.14117891661242465 0.32960790249005223]]]]]] ... [[[[[[0.9792173681400538 0.6892484014706163]]] [[[0.3762452755401863 0.4888364168632392]]]] [[[[0.788467640604192 0.24997702575480663]]] [[[0.22787015661210974 0.8877728915492248]]]]] [[[[[0.45929699569941185 0.3510960367439553]]] [[[0.5571499325470778 0.6018894438828442]]]] [[[[0.6108342553646349 0.8504389115998294]]] [[[0.6218086187343013 0.3399893261023976]]]]] [[[[[0.690331943836517 0.2703775522853269]]] [[[0.23932945177833664 0.48875453980079253]]]] [[[[0.4142442466247058 0.5847749738368053]]] [[[0.383154920305269 0.1871299284458684]]]]]] [[[[[[0.4985179731014232 0.7597356848291705]]] [[[0.9082510973088374 0.8824388839563612]]]] [[[[0.012465202853883306 0.7441856676827527]]] [[[0.4657178203525918 0.44667521867255466]]]]] [[[[[0.31184806460045733 0.8976152358966385]]] [[[0.45811907242380734 0.3561222735251388]]]] [[[[0.0072058656774924845 0.39289376444201907]]] [[[0.7442681701006933 0.3707736932041089]]]]] [[[[[0.0061937426292096864 0.19446175979489844]]] [[[0.3716464204360068 0.40791353753076043]]]] [[[[0.27899961162729714 0.111778543733694]]] [[[0.31453954632072467 0.4291444630679926]]]]]] [[[[[[0.35347303311223943 0.8957962964067194]]] [[[0.705664125643098 0.1254050006280517]]]] [[[[0.6446896075271579 0.9964352061168205]]] [[[0.658817468454369 0.012349110931634044]]]]] [[[[[0.5056841400990908 0.037622484151814795]]] [[[0.05983728908221719 0.06097770968163774]]]] [[[[0.13017179733994988 0.9150937886217307]]] [[[0.5862139253662101 0.1707736460571163]]]]] [[[[[0.29246213633459106 0.6825933414709833]]] [[[0.5441398923548862 0.8321891337508664]]]] [[[[0.6749010417034504 0.8094585412871882]]] [[[0.13854610848104276 0.6116880049096504]]]]]]] [[[[[[[0.5935299824833112 0.44329595668332145]]] [[[0.21981050983940797 0.9949594980230441]]]] [[[[0.16127788557179012 0.718414441933292]]] [[[0.08438317768550174 0.32278542875992666]]]]] [[[[[0.8458389102384589 0.46314131192702457]]] [[[0.5798696072753262 0.9443485288729541]]]] [[[[0.7714604920710755 0.4984554363982694]]] [[[0.8793935706201442 0.636318402068891]]]]] [[[[[0.8401218858299632 0.6494298268926989]]] [[[0.7410944992033729 0.4590387905178115]]]] [[[[0.07486679578038091 0.8060295419463882]]] [[[0.8852173583491457 0.12477931535901621]]]]]] [[[[[[0.10565976622107642 0.8651057425323603]]] [[[0.9763987872236893 0.19722763499269325]]]] [[[[0.7005123958825562 0.162124961650423]]] [[[0.9979054457634414 0.3268588671596603]]]]] [[[[[0.16006437728630452 0.9288570151676487]]] [[[0.5277998201821748 0.26798032655155224]]]] [[[[0.6949826166770248 0.9365162689033418]]] [[[0.29224434848430814 0.6939568879945962]]]]] [[[[[0.011887024126136403 0.9014596448594304]]] [[[0.8497932172394442 0.629633852945822]]]] [[[[0.34440895784260106 0.8857346631993283]]] [[[0.4359556224049633 0.8398454698540198]]]]]] [[[[[[0.8552923410144041 0.5596878081725046]]] [[[0.6428726315069779 0.7721836395490078]]]] [[[[0.3428477925729596 0.45967851153968264]]] [[[0.10653311018162492 0.6784740856070827]]]]] [[[[[0.26624322253304455 0.28647245117572606]]] [[[0.41446862469179 0.4330695170252711]]]] [[[[0.6149190223897291 0.8071982206116968]]] [[[0.5564313962380248 0.5720429445109433]]]]] [[[[[0.8441395282841567 0.03563197629971615]]] [[[0.12343059950683066 0.5434481816140666]]]] [[[[0.9449234403136741 0.5339239301520949]]] [[[0.25681169870166276 0.08297046022553667]]]]]] ... [[[[[[0.42680904073264203 0.8448871649186088]]] [[[0.9147621944649137 0.013971860855216178]]]] [[[[0.45653434589245556 0.4423885614432804]]] [[[0.3756425828672416 0.494954340928612]]]]] [[[[[0.2112633536776637 0.20979195971105435]]] [[[0.8854415358500057 0.8625299716021704]]]] [[[[0.9209826124566088 0.5150934980443739]]] [[[0.5821843104644554 0.8350799711563935]]]]] [[[[[0.809394256060194 0.19525433443441798]]] [[[0.960090987082438 0.2128869393929801]]]] [[[[0.10950702777136023 0.8028531090772925]]] [[[0.010966805923873113 0.7633204976571002]]]]]] [[[[[[0.5683585331273667 0.29746671368606714]]] [[[0.7202988084205985 0.7409456379701017]]]] [[[[0.5907982202352733 0.9092020042793324]]] [[[0.21158426925846407 0.9687061888035656]]]]] [[[[[0.49289680832774185 0.003277662350749555]]] [[[0.5915790164202179 0.40549215864888843]]]] [[[[0.1332988982112676 0.6337134623102538]]] [[[0.587246674072981 0.09766801047236728]]]]] [[[[[0.40525945619095316 0.43286572394863576]]] [[[0.12422345881771557 0.07704491379145206]]]] [[[[0.07006905211949543 0.8429747908935505]]] [[[0.3862573716911303 0.32176588336811907]]]]]] [[[[[[0.14214627484552733 0.011234803457814801]]] [[[0.5708027977131896 0.156851532086265]]]] [[[[0.6422195571155798 0.7938995296486827]]] [[[0.8134167076771658 0.875188777132935]]]]] [[[[[0.6800292866894042 0.7273481240834844]]] [[[0.43774748165382105 0.3419051447054263]]]] [[[[0.31565714767355124 0.7537596799290498]]] [[[0.6584656521082649 0.5295645035171072]]]]] [[[[[0.25684649215199074 0.13680286720488766]]] [[[0.004058062222240699 0.5821769874691338]]]] [[[[0.6199457018136468 0.9794157977326398]]] [[[0.19552731891840602 0.865490213932674]]]]]]] [[[[[[[0.018505459990773132 0.8432214915517894]]] [[[0.751325734134042 0.7780206028671031]]]] [[[[0.5072900243462861 0.10845527596356075]]] [[[0.5868925928839923 0.33751377573998753]]]]] [[[[[0.037256028831107346 0.045041312286553836]]] [[[0.24642760298876154 0.6149896643447859]]]] [[[[0.10161455916203055 0.2489856658696682]]] [[[0.535524279087394 0.5457671539000052]]]]] [[[[[0.9467522799031629 0.25045566370455397]]] [[[0.07522888336590439 0.3096710948492257]]]] [[[[0.6486855944307499 0.42269002458613003]]] [[[0.19354082599861466 0.6421432058238598]]]]]] [[[[[[0.7412467382423762 0.7705072633830836]]] [[[0.35283802418848476 0.321886325637867]]]] [[[[0.5037150933959949 0.3688618225117476]]] [[[0.9218073051248628 0.29797110306759655]]]]] [[[[[0.3393496544862038 0.626018233414309]]] [[[0.07895367034901735 0.596776846169906]]]] [[[[0.27226819141093006 0.12950564206300885]]] [[[0.03793780922323009 0.9022062623745263]]]]] [[[[[0.579256689668345 0.5671833964098502]]] [[[0.07214863213208778 0.34250476401134333]]]] [[[[0.4476712953229942 0.31187329932197905]]] [[[0.8440318415198569 0.20387688865367715]]]]]] [[[[[[0.4119163223030289 0.22308177396460882]]] [[[0.7370825540653868 0.08638019195476465]]]] [[[[0.2084810842141741 0.5834106040625079]]] [[[0.9824598281611164 0.0164081966117402]]]]] [[[[[0.9622550259272646 0.6601950101771782]]] [[[0.03845180651915503 0.3709778857347451]]]] [[[[0.2775921240415471 0.276649648056851]]] [[[0.7545467301061666 0.7009195451568078]]]]] [[[[[0.170527633409155 0.773011226248451]]] [[[0.9029878613024114 0.4453636980986465]]]] [[[[0.03952116630785929 0.5164271240065322]]] [[[0.6068829345616157 0.05317278374078305]]]]]] ... [[[[[[0.7629515154997678 0.43045264730861554]]] [[[0.9337977605428813 0.6134045157788707]]]] [[[[0.15846984073053516 0.933191791239459]]] [[[0.7244888581038184 0.8259932644771694]]]]] [[[[[0.1609023177213359 0.5294844067178643]]] [[[0.5158059780808617 0.050398916581847586]]]] [[[[0.6980525419934002 0.10114108625517326]]] [[[0.8773271958327807 0.028255698365732496]]]]] [[[[[0.27595966609792044 0.8718007028607612]]] [[[0.5251625030551188 0.6303656520491112]]]] [[[[0.48359327675038655 0.18309730577200023]]] [[[0.6637264204934357 0.9085991369486919]]]]]] [[[[[[0.5881835038951116 0.9264008975857423]]] [[[0.2794941617011286 0.7463139790908059]]]] [[[[0.900631119599602 0.8020774124437648]]] [[[0.1180925288848097 0.4864561061736524]]]]] [[[[[0.4025912102846906 0.18962149193785904]]] [[[0.39787402788929427 0.1368171123905345]]]] [[[[0.05837930011675574 0.4452685683689228]]] [[[0.13479014818169965 0.37338684673628186]]]]] [[[[[0.16631251795469293 0.394932823890877]]] [[[0.9640492591426281 0.7575836436676922]]]] [[[[0.29196566389855205 0.31924823084830156]]] [[[0.6558951537139993 0.9145755379839858]]]]]] [[[[[[0.5956330450315725 0.5800640582816864]]] [[[0.7184767924335831 0.1982352040145191]]]] [[[[0.8110343076739969 0.5023236350588364]]] [[[0.44084251345605385 0.2534278491728571]]]]] [[[[[0.738352707288399 0.6337558484368965]]] [[[0.21737279693981582 0.930653460871144]]]] [[[[0.187309257561998 0.4260936224509623]]] [[[0.5667977947507804 0.9769867956387553]]]]] [[[[[0.780917361789541 0.47130546196379475]]] [[[0.014589754576786462 0.2377944715626925]]]] [[[[0.8690956793845142 0.67234405239624]]] [[[0.2392811541779134 0.6096510288904683]]]]]]]] [[[[[[[[0.8112502915910164 0.1677287021737377]]] [[[0.5663070702537656 0.6843749065840352]]]] [[[[0.39886407174485705 0.725642734499928]]] [[[0.9504462985748033 0.3349192635233018]]]]] [[[[[0.8276868964673862 0.6783964121664156]]] [[[0.6053310912176043 0.13438941750648814]]]] [[[[0.32450726923708817 0.2967521089385299]]] [[[0.8006192469996485 0.8585846152043368]]]]] [[[[[0.20803478623096372 0.20515433816476925]]] [[[0.39507245632585575 0.6075177531786581]]]] [[[[0.5189302423067701 0.7389530796310158]]] [[[0.5940989926286985 0.3527794893455831]]]]]] [[[[[[0.9464766838113723 0.3621703207504797]]] [[[0.4547154963535376 0.02069091169122339]]]] [[[[0.8650092814457895 0.7586860104277412]]] [[[0.10902071775448674 0.6325597502710093]]]]] [[[[[0.31842940502737893 0.40882658115282144]]] [[[0.5351745337518908 0.06052792824742215]]]] [[[[0.8525388225421586 0.2882239024000628]]] [[[0.7075182004562196 0.8165807324784665]]]]] [[[[[0.884053193435047 0.6209887150092872]]] [[[0.22388223885589764 0.5804565409194447]]]] [[[[0.4388543190870233 0.15882481660211345]]] [[[0.4876195352213093 0.777070306328596]]]]]] [[[[[[0.04265861622254641 0.21111888706403137]]] [[[0.03198487228068336 0.7791618783334143]]]] [[[[0.45073427973550784 0.5243442251518683]]] [[[0.1391742331943424 0.2373444323403756]]]]] [[[[[0.041847407236867196 0.8682271869882165]]] [[[0.17086692720053387 0.7878407592805039]]]] [[[[0.8339862530879177 0.42912653775044185]]] [[[0.27310232760838327 0.5738054210564252]]]]] [[[[[0.17145352236023814 0.1926876277594206]]] [[[0.782398517072772 0.11566694480844908]]]] [[[[0.6439137151432003 0.23076199465312552]]] [[[0.7477361483201982 0.6699506002778389]]]]]] ... [[[[[[0.3509284831811279 0.7888557284043434]]] [[[0.5628940239184748 0.027571584108479263]]]] [[[[0.22063809383389454 0.0959017056773589]]] [[[0.767083359555799 0.3544583322821645]]]]] [[[[[0.14488016581288765 0.08151028818243877]]] [[[0.5425645650046693 0.9945172734745636]]]] [[[[0.9321857519527803 0.6380151120173672]]] [[[0.7208433124762712 0.07431644939298998]]]]] [[[[[0.8208736427370589 0.1915984447260225]]] [[[0.3952401603622121 0.18262063531700623]]]] [[[[0.808836927899672 0.48094675633596584]]] [[[0.7851062820244364 0.9902739975986645]]]]]] [[[[[[0.8774101752521675 0.4533274033180211]]] [[[0.8223498483801339 0.2657798299960328]]]] [[[[0.35400391217275784 0.7719222695669665]]] [[[0.8145304814120805 0.04210625719716499]]]]] [[[[[0.5302313166583322 0.43057266781704884]]] [[[0.1863994923002864 0.953767688420312]]]] [[[[0.961017251599721 0.8757690896198567]]] [[[0.5153905970732453 0.5979476581792124]]]]] [[[[[0.5964476710135999 0.518523614506115]]] [[[0.8916073670901637 0.6104968297383955]]]] [[[[0.9520041163621713 0.8918535785771277]]] [[[0.7416903464407655 0.7535696097469615]]]]]] [[[[[[0.062345894489805986 0.13108106686408494]]] [[[0.2311240929391074 0.07317832248069245]]]] [[[[0.05336936929835523 0.5832939549935865]]] [[[0.41664988254806734 0.5479268502475224]]]]] [[[[[0.4051566867226766 0.3769959209314646]]] [[[0.2624634672456101 0.9367425501161937]]]] [[[[0.40564806337340364 0.031015804555499016]]] [[[0.27500471748812083 0.3477691747049988]]]]] [[[[[0.8998049185331204 0.200749796959363]]] [[[0.704562744691081 0.024832813131209885]]]] [[[[0.9781723024682689 0.40470422633602177]]] [[[0.25206557883831404 0.7642150423758]]]]]]] [[[[[[[0.5442208620537065 0.3782004176142991]]] [[[0.03157659281869307 0.6026534264766177]]]] [[[[0.015732109999839095 0.3740603845567836]]] [[[0.3354813822902595 0.9597998508853905]]]]] [[[[[0.45928423311043287 0.8951692642887485]]] [[[0.18940093043484663 0.48757466579924635]]]] [[[[0.9566364431948481 0.8585443805183156]]] [[[0.42019234904967706 0.4023466334747632]]]]] [[[[[0.04238127610896614 0.1253198116772446]]] [[[0.602605766686644 0.577246315183472]]]] [[[[0.22411782310853579 0.22144258714657028]]] [[[0.8306842132118989 0.6706525074728009]]]]]] [[[[[[0.7809081104531831 0.7892327850104056]]] [[[0.643085492163433 0.9035662870159795]]]] [[[[0.21038870934602716 0.24261834784774117]]] [[[0.9086657249664465 0.2524062106895928]]]]] [[[[[0.023149068459945243 0.19107928956320985]]] [[[0.03541438841584521 0.10372347225069622]]]] [[[[0.5102644841660586 0.15966171853270172]]] [[[0.5727601540604221 0.2730456949458987]]]]] [[[[[0.8154656400493582 0.2005015725200182]]] [[[0.6241370996315785 0.0017408777977743206]]]] [[[[0.19455283743051066 0.9042658045285873]]] [[[0.21993713635548773 0.936413929291543]]]]]] [[[[[[0.7609073535780826 0.18546966428705725]]] [[[0.3951388477679122 0.3002907479774405]]]] [[[[0.17899584823339076 0.4143581234172028]]] [[[0.9417785128404603 0.5552649699620748]]]]] [[[[[0.958950103101546 0.7928267872669552]]] [[[0.0007887467687357486 0.4436856070466799]]]] [[[[0.1744073548580407 0.3691703629547294]]] [[[0.28661424781884226 0.621427321195047]]]]] [[[[[0.2827689980540963 0.6665473872843025]]] [[[0.05318114770021076 0.022093776499756412]]]] [[[[0.6015709747761971 0.9527339669172751]]] [[[0.46971660367068824 0.03951808806352486]]]]]] ... [[[[[[0.16937153985197262 0.6054886632611507]]] [[[0.6481206694880013 0.9577026076835998]]]] [[[[0.14081747704242176 0.9742632139029818]]] [[[0.8566246840913854 0.8921848894662681]]]]] [[[[[0.8433858738730459 0.4621988227817133]]] [[[0.04176448492661988 0.19608758672595017]]]] [[[[0.9183887548757416 0.23104912806033606]]] [[[0.41818581470589233 0.7542807350167992]]]]] [[[[[0.8404026717054438 0.08948672043960548]]] [[[0.991976462302591 0.27717668796947403]]]] [[[[0.9060142582411178 0.38414087717492373]]] [[[0.009892954389191022 0.14055455130436534]]]]]] [[[[[[0.80276427359047 0.8301814397037885]]] [[[0.8251870051181822 0.9439525886591446]]]] [[[[0.3019294487373988 0.18423897497290254]]] [[[0.5653356086689083 0.9445054122726586]]]]] [[[[[0.773155060432806 0.09537279821669997]]] [[[0.012901314308253586 0.6687603708219717]]]] [[[[0.09951836979728257 0.9535124688142598]]] [[[0.22230134770477816 0.11967545030037174]]]]] [[[[[0.8146268110687879 0.4928975466343989]]] [[[0.7237824607466145 0.46274714047580456]]]] [[[[0.8317839278365591 0.8188801646266278]]] [[[0.4575758580608398 0.7413203901667728]]]]]] [[[[[[0.6948728968241425 0.046830206813195385]]] [[[0.9986113713894852 0.804189798651065]]]] [[[[0.6502546608540728 0.6237964255780956]]] [[[0.27173695383504315 0.00248768482273809]]]]] [[[[[0.6185922163408815 0.9403342736806481]]] [[[0.5674033222530879 0.656804199640592]]]] [[[[0.8763939580184933 0.9564204920826942]]] [[[0.04925770883299896 0.01557792555955062]]]]] [[[[[0.8223937722237751 0.05370933352844598]]] [[[0.4163040073598021 0.07002660121551696]]]] [[[[0.2043714652975438 0.7949956187095282]]] [[[0.10932692613484785 0.5476902722750111]]]]]]] [[[[[[[0.2238715737266711 0.7483344015747381]]] [[[0.10392715504665329 0.8816283668383197]]]] [[[[0.9476700191375904 0.8482837337898408]]] [[[0.49764970438056266 0.9681602231124625]]]]] [[[[[0.17929915003819652 0.8117781674493316]]] [[[0.7291122328941505 0.2863245177227449]]]] [[[[0.8193494726506882 0.2297943500466585]]] [[[0.33511994844899684 0.20327085051713012]]]]] [[[[[0.09689391995059515 0.5551633585262925]]] [[[0.29748459038843655 0.4332535831169164]]]] [[[[0.8003954561858702 0.5706428079920437]]] [[[0.6844540126833127 0.35596390407351775]]]]]] [[[[[[0.6437453686440976 0.25220203494647186]]] [[[0.47375744907900774 0.1954272183392588]]]] [[[[0.6953940265560283 0.1794191395494148]]] [[[0.9141557868496726 0.7361495873667517]]]]] [[[[[0.7227904083728337 0.5644604787455445]]] [[[0.03333634856786738 0.8006853784631721]]]] [[[[0.060155755340679073 0.5900190164424719]]] [[[0.8597251545502724 0.9025448039616893]]]]] [[[[[0.014814272235224912 0.5633976536080622]]] [[[0.7929344916396374 0.34625762967364226]]]] [[[[0.38870156096199593 0.7910045154090735]]] [[[0.5711076711730233 0.2509733207556215]]]]]] [[[[[[0.27996956591113065 0.2809650734915282]]] [[[0.2745486384788566 0.4144963022233559]]]] [[[[0.06489568565257597 0.1150491818435333]]] [[[0.4626343350939318 0.43293776540511164]]]]] [[[[[0.01784966149351086 0.015221897998420997]]] [[[0.15409737642618726 0.8577515886845828]]]] [[[[0.46903958707374405 0.01947671834957554]]] [[[0.7868581434014364 0.9881816790609353]]]]] [[[[[0.4307001016651095 0.6314738697511545]]] [[[0.8645529304445843 0.9248640415692402]]]] [[[[0.20409649903479032 0.536910737013212]]] [[[0.1682267239911267 0.36324422729412587]]]]]] ... [[[[[[0.5079913777076757 0.8862246987351304]]] [[[0.06460568618248907 0.08883002575207544]]]] [[[[0.6487035773344947 0.5852645538756257]]] [[[0.8311764126730055 0.11134635156066885]]]]] [[[[[0.3689460365735301 0.7885073914158669]]] [[[0.4791094485662848 0.13387148983846853]]]] [[[[0.12754622465376486 0.23718668311266966]]] [[[0.057695771499263415 0.338890161288782]]]]] [[[[[0.38099425074405846 0.490435580784886]]] [[[0.02398529133519678 0.2316241199604051]]]] [[[[0.5333665342574451 0.4707394405545977]]] [[[0.03172281536598831 0.27521093504012617]]]]]] [[[[[[0.15789198212744682 0.11985754695800899]]] [[[0.5734997715590453 0.6817013917819846]]]] [[[[0.6803497382915977 0.5130314493718976]]] [[[0.3849597139994173 0.6237458947810249]]]]] [[[[[0.2637315496384939 0.813649414527692]]] [[[0.042440802983474746 0.7655169950642315]]]] [[[[0.9431858957211656 0.044920079593316564]]] [[[0.07123998320744596 0.34294086082783004]]]]] [[[[[0.17120607985137049 0.0660590577053548]]] [[[0.8831219404502655 0.541096549389455]]]] [[[[0.29341811071536006 0.8215811176748937]]] [[[0.9487210479290396 0.1390236139965545]]]]]] [[[[[[0.5140124212912934 0.9269664695672497]]] [[[0.7383211784339002 0.47777888008919345]]]] [[[[0.43762006481953697 0.6715075161275337]]] [[[0.8578252545458771 0.16526811033663558]]]]] [[[[[0.5284768490531189 0.5528133646217828]]] [[[0.47353782575080083 0.8456626492480234]]]] [[[[0.3800158511228252 0.9120695061104112]]] [[[0.9884771653420639 0.7281257124849135]]]]] [[[[[0.37168149420207985 0.3647198192440514]]] [[[0.8957174412680639 0.01284272690319943]]]] [[[[0.33579061150053324 0.6174004485795297]]] [[[0.8220608095523028 0.9394746101130715]]]]]]] [[[[[[[0.8129153819169266 0.7516038244449333]]] [[[0.5547522755019807 0.07644359898034325]]]] [[[[0.5601873873921416 0.5360155012611043]]] [[[0.37290017839822587 0.46166352814707723]]]]] [[[[[0.7688563547139076 0.5638219353747503]]] [[[0.08878557661723185 0.15501028194189492]]]] [[[[0.683162613586375 0.24716983229793632]]] [[[0.8655093873913461 0.09468044191542146]]]]] [[[[[0.8708881656262234 0.6083990819510579]]] [[[0.7308662192870615 0.16531611346099473]]]] [[[[0.2241335794604703 0.37069490986433484]]] [[[0.3975770205598027 0.6030602102333447]]]]]] [[[[[[0.8520834837550868 0.5147256708199003]]] [[[0.2080161824985166 0.8563098271778704]]]] [[[[0.04661232385101122 0.5210253243409563]]] [[[0.8433700576025752 0.5723304862735002]]]]] [[[[[0.5921007233238762 0.9226239367428496]]] [[[0.5582215477391219 0.06408434477263958]]]] [[[[0.8919199548380806 0.38036065881434533]]] [[[0.5460736913029066 0.5828914478979904]]]]] [[[[[0.18821819310592225 0.31281555183827936]]] [[[0.039996713408012585 0.25589453334671763]]]] [[[[0.2664439292140929 0.23129928678351064]]] [[[0.5640292729697804 0.8768609376180106]]]]]] [[[[[[0.08035510497410114 0.6758063195672301]]] [[[0.1291193410782131 0.7501878931300751]]]] [[[[0.1490992012761504 0.707716691814277]]] [[[0.31145147279468555 0.28523060482471696]]]]] [[[[[0.831092715186676 0.5265759834455489]]] [[[0.022347955460389923 0.20399563180453606]]]] [[[[0.3379416219617085 0.3149256343995115]]] [[[0.8003811932362234 0.20213101439393566]]]]] [[[[[0.8077351742870634 0.5163116559320851]]] [[[0.5869344174174017 0.33093631484497]]]] [[[[0.2316257210939322 0.7988497911994253]]] [[[0.3285846883188249 0.47095317891285826]]]]]] ... [[[[[[0.014472121460054499 0.9968603294197778]]] [[[0.8693867384914176 0.05693151135303165]]]] [[[[0.09716142630088975 0.9748037530199108]]] [[[0.43882558530864324 0.7337130027793078]]]]] [[[[[0.7080018972224589 0.8152552200420987]]] [[[0.983648802289838 0.9864318380795354]]]] [[[[0.4333311087879239 0.4444299070678299]]] [[[0.7064148230431638 0.5019825092335799]]]]] [[[[[0.5413073099811493 0.26223898227959197]]] [[[0.5671959818221134 0.1000307772659107]]]] [[[[0.8272513304144092 0.9421807850568463]]] [[[0.8780072008917817 0.03733649288533314]]]]]] [[[[[[0.4574219016067478 0.7050864612606662]]] [[[0.603275517469226 0.964103416654706]]]] [[[[0.5422867082350047 0.25655606847680623]]] [[[0.11995817198441117 0.09628845680853182]]]]] [[[[[0.8472153650752124 0.018654299989032008]]] [[[0.8654405132182575 0.39169592261378683]]]] [[[[0.389902880226771 0.12856542716986163]]] [[[0.9669354092372533 0.8736887581138894]]]]] [[[[[0.8570679218744451 0.7336553871698842]]] [[[0.8340569704712134 0.945972321550818]]]] [[[[0.020109598953844565 0.5510254539644152]]] [[[0.4668246185120005 0.8430397717953768]]]]]] [[[[[[0.42056132952489955 0.6488254249449625]]] [[[0.1824352408542268 0.9380694251460169]]]] [[[[0.5296018732276362 0.10198776507941698]]] [[[0.7544138447107022 0.5076660315524611]]]]] [[[[[0.8548352224167066 0.6141445328250483]]] [[[0.1915020119202695 0.8552459685154652]]]] [[[[0.38106516934156753 0.3061791653466095]]] [[[0.49040174482125887 0.03538737027209715]]]]] [[[[[0.4534033547623083 0.8953683470170462]]] [[[0.7664543664376414 0.6620290486412296]]]] [[[[0.5837355770713649 0.5644527937985911]]] [[[0.8640930229768709 0.7083311766510095]]]]]]]]]
Units CO2 gigagram/year - SF6(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[SF6·Gg/a] 0.04311 ... 0.2625
- entity :
- SF6
Magnitude [[[[[[[[[0.043110889318837886 0.14315283231314413]]] [[[0.37349485315657516 0.6928125352773189]]]] [[[[0.13069748252117674 0.018023147095811876]]] [[[0.750023480658374 0.6496828582844536]]]]] [[[[[0.34137962969624214 0.887696811826179]]] [[[0.9849629806158181 0.08735515996201593]]]] [[[[0.4111577090943702 0.09218574208968788]]] [[[0.38080247463834616 0.24528845163134727]]]]] [[[[[0.16030483679345964 0.6350981917419284]]] [[[0.7887689869513114 0.7756637939298886]]]] [[[[0.01684262245214274 0.18588149839425683]]] [[[0.6180291598549972 0.9751477726374639]]]]]] [[[[[[0.36646653289979736 0.022457270660798945]]] [[[0.5896538998608889 0.6386958031659568]]]] [[[[0.03489573430024162 0.714172937563971]]] [[[0.41527633992714985 0.7226798536610316]]]]] [[[[[0.60597805658688 0.8416088597589452]]] [[[0.217241878815573 0.9082336552490408]]]] [[[[0.32667663241623124 0.4416709519979586]]] [[[0.6102589446589823 0.8595748684778064]]]]] [[[[[0.33987202912075487 0.9153566247078045]]] [[[0.07581544239824367 0.4233179539919386]]]] [[[[0.785402754413726 0.20712054786182932]]] [[[0.22269606830808875 0.6355621310169617]]]]]] [[[[[[0.09277841939583653 0.8254845319399949]]] [[[0.10508696817912955 0.15963705399509187]]]] [[[[0.13376482592990813 0.2101963017591003]]] [[[0.7211044012565655 0.4855789105910463]]]]] [[[[[0.7751029671545578 0.8734371954270185]]] [[[0.36351838004452364 0.9357586476456109]]]] [[[[0.516517635769704 0.8752314503829782]]] [[[0.6083405728803494 0.931580067233217]]]]] [[[[[0.5782872633494943 0.08107438611773399]]] [[[0.14984442880121873 0.2795329773286426]]]] [[[[0.7968847044251809 0.49280392783336213]]] [[[0.2347259135478531 0.139769296054025]]]]]] ... [[[[[[0.27606460238618047 0.5300588546782675]]] [[[0.8895100354139469 0.9212515814594767]]]] [[[[0.1096012781447161 0.2652989207713137]]] [[[0.5073443604015939 0.6022988584442936]]]]] [[[[[0.7152443804702212 0.5153655314937072]]] [[[0.8763992978279803 0.33948828395038544]]]] [[[[0.22089614165101035 0.9954722340659177]]] [[[0.5616326241805584 0.8986320924666702]]]]] [[[[[0.6732481106552332 0.2009735541148988]]] [[[0.951921444684791 0.504959915583339]]]] [[[[0.7724665235871698 0.4661553195611611]]] [[[0.27055842748850945 0.006882032273528016]]]]]] [[[[[[0.607100781643689 0.21639611804453462]]] [[[0.7758725832011192 0.44891218737926286]]]] [[[[0.9689346022482938 0.9972927392351493]]] [[[0.22437580249218525 0.5954529600343635]]]]] [[[[[0.3908881653568683 0.07178113572836708]]] [[[0.647746512934518 0.6409559826752166]]]] [[[[0.9371803507467369 0.6247432772213114]]] [[[0.5562229338462407 0.18232236973389881]]]]] [[[[[0.8764080888246579 0.6628814642231695]]] [[[0.2584819191327451 0.7822443759819147]]]] [[[[0.5824032466966058 0.3012189537201092]]] [[[0.7454792855174702 0.38873121361554286]]]]]] [[[[[[0.024998838180851357 0.30458546101986494]]] [[[0.7999908899793987 0.3345703369447066]]]] [[[[0.9375613399893085 0.534639897251442]]] [[[0.7559592061848287 0.7529301556166128]]]]] [[[[[0.7905578343566959 0.2513575792790752]]] [[[0.14529970949361715 0.022815939494364113]]]] [[[[0.5566014033104818 0.8257879338673315]]] [[[0.21857948563254082 0.08178839536019655]]]]] [[[[[0.8204390805445609 0.17330703511620105]]] [[[0.7545460025771399 0.36354022644669304]]]] [[[[0.33240600399678766 0.057779328135079355]]] [[[0.07304682982913191 0.951686540932545]]]]]]] [[[[[[[0.5149687705162881 0.521663662133753]]] [[[0.8851796866858159 0.7331102127504051]]]] [[[[0.6217999812914723 0.9376120661697671]]] [[[0.05724384399983351 0.8228203510437386]]]]] [[[[[0.05441825437400649 0.5738381900661167]]] [[[0.47037711560499007 0.9175136576990767]]]] [[[[0.7522842462944326 0.524178277711118]]] [[[0.20396010311788526 0.6719018062698879]]]]] [[[[[0.7863246554787002 0.7889881280920691]]] [[[0.09594687813901936 0.013237976406837104]]]] [[[[0.8942171345066264 0.38172611214709085]]] [[[0.21855412899506177 0.5828469668282503]]]]]] [[[[[[0.3114387448550664 0.22395904209279527]]] [[[0.31823429598181696 0.3188410992948625]]]] [[[[0.4937174753467959 0.40007080492833447]]] [[[0.11545920076176786 0.16570057516238001]]]]] [[[[[0.9940980018247458 0.5566826918353499]]] [[[0.012667993654549292 0.4804330967590562]]]] [[[[0.721548255646304 0.13766363793518455]]] [[[0.8124736365505312 0.5120461671131722]]]]] [[[[[0.5952491100288332 0.475244368000423]]] [[[0.3097281122094194 0.9711750273504187]]]] [[[[0.8340051358865875 0.3257300522675113]]] [[[0.8825792589662256 0.7425052914802321]]]]]] [[[[[[0.35538606369825854 0.9932528303146192]]] [[[0.022485342951547915 0.7155750319920021]]]] [[[[0.49483319723526986 0.8999159321655154]]] [[[0.9964102459107046 0.8676123335420797]]]]] [[[[[0.42899286873218523 0.16340002633308637]]] [[[0.4625596692208246 0.7201667907073982]]]] [[[[0.6644370410116267 0.3385588611758049]]] [[[0.29765720237161497 0.09444335932107828]]]]] [[[[[0.09770662095308214 0.5820961107382374]]] [[[0.03232186830485673 0.04410102524366599]]]] [[[[0.3417211832921301 0.7985536781495649]]] [[[0.9729152023584297 0.913994463041856]]]]]] ... [[[[[[0.5609596511841047 0.9795458719046123]]] [[[0.7990208726532353 0.7681114266657253]]]] [[[[0.8581090571337547 0.8800688317708389]]] [[[0.17234450111269073 0.9751104642004695]]]]] [[[[[0.3667187875156577 0.9863325335427879]]] [[[0.9194761876507083 0.13564223801644837]]]] [[[[0.3315158642343743 0.4751889047058734]]] [[[0.07255174609871495 0.6370124611930821]]]]] [[[[[0.500074587127675 0.8859378295872233]]] [[[0.8361700708580893 0.26430147150970906]]]] [[[[0.20916593393411276 0.13495300135214205]]] [[[0.5808497658951607 0.15631683170687793]]]]]] [[[[[[0.4728663073385725 0.7434862214516548]]] [[[0.3758352804113455 0.7284502128696314]]]] [[[[0.8716416116277937 0.3091509596601304]]] [[[0.905296746100806 0.8274075220581384]]]]] [[[[[0.3310761239544905 0.2818151461764856]]] [[[0.005264138955194286 0.9365245925723262]]]] [[[[0.74544351757185 0.03223211572726492]]] [[[0.19552189347874582 0.1262870918721607]]]]] [[[[[0.702718825817433 0.21231101197355573]]] [[[0.620857038992021 0.1767965432294818]]]] [[[[0.1540792211329396 0.2947963710421001]]] [[[0.059809110614036154 0.12358629773482754]]]]]] [[[[[[0.4243575860909815 0.1596231394876425]]] [[[0.27157222520785074 0.14853901265332103]]]] [[[[0.79747849629428 0.7599980738998191]]] [[[0.2580776122669973 0.9309636413953052]]]]] [[[[[0.6460142105479026 0.3228195620214336]]] [[[0.09657791367473656 0.1395783803267735]]]] [[[[0.12594203756451983 0.23560724776516584]]] [[[0.6977407528829741 0.10400827958065606]]]]] [[[[[0.8695007696852249 0.420926517740169]]] [[[0.6593020293033616 0.5937760978489225]]]] [[[[0.6549234344982998 0.6367369632934039]]] [[[0.258220840403833 0.4077427312985813]]]]]]] [[[[[[[0.08451809540113775 0.004094438763236008]]] [[[0.377224736380687 0.9469183114460151]]]] [[[[0.7106703601761135 0.37613575352913964]]] [[[0.5002551894321567 0.9549544312698105]]]]] [[[[[0.22688924915863473 0.9049538668102942]]] [[[0.8353810558256157 0.3078703147591769]]]] [[[[0.7935050085434004 0.871815919931357]]] [[[0.4816087912037037 0.8507842741343036]]]]] [[[[[0.235498620446966 0.6757310454354674]]] [[[0.3168299400316723 0.008335050828717327]]]] [[[[0.5868109032317371 0.38270753722748907]]] [[[0.4604026883367782 0.22524544652338663]]]]]] [[[[[[0.36869991517011624 0.048873816889663746]]] [[[0.7176794790432831 0.4420305820054933]]]] [[[[0.4422730149444788 0.35610404449531274]]] [[[0.9021770900314894 0.05185645918154502]]]]] [[[[[0.9408007127917378 0.7322699718355931]]] [[[0.9442192688920937 0.8599114290199105]]]] [[[[0.9529567609106957 0.1856807653037017]]] [[[0.5326049697096887 0.7542348568020761]]]]] [[[[[0.23276108366923587 0.37432509258240343]]] [[[0.7487344602407445 0.9219355996449402]]]] [[[[0.6743436094972287 0.8579647409758647]]] [[[0.530957087692916 0.39544624953483487]]]]]] [[[[[[0.5608107096460253 0.05270688531490497]]] [[[0.9314213555982266 0.43389842263746903]]]] [[[[0.6849687247683294 0.2878708946102817]]] [[[0.4772723104614135 0.4745016131900758]]]]] [[[[[0.16145505957798612 0.7770012709231986]]] [[[0.7202663567095792 0.2288452155914893]]]] [[[[0.30486802817537517 0.47904845194158086]]] [[[0.3349517341799031 0.6866457805572743]]]]] [[[[[0.14936296495448054 0.3895449869047959]]] [[[0.28928218506618975 0.7955039300801918]]]] [[[[0.10449498067305807 0.7419513484899263]]] [[[0.8456049101660633 0.8778573465230088]]]]]] ... [[[[[[0.866353306545381 0.3743388431082485]]] [[[0.9842394351017066 0.3327334034787033]]]] [[[[0.5942914452248397 0.4334999615506523]]] [[[0.7411498625292918 0.5672131156584451]]]]] [[[[[0.39271891617358523 0.6380216978227292]]] [[[0.525899474078067 0.5054029811407534]]]] [[[[0.9833883596330947 0.765763460011363]]] [[[0.802633665843152 0.06287459915116156]]]]] [[[[[0.6919678473437136 0.20580331174723898]]] [[[0.5174488514960204 0.4249822062560631]]]] [[[[0.5735920150313418 0.5513968041528565]]] [[[0.6710454794809354 0.519185026294501]]]]]] [[[[[[0.544598741614818 0.5404571342452995]]] [[[0.7680679534449074 0.05899258705320476]]]] [[[[0.9321253801961468 0.8778491162422615]]] [[[0.24333729038623364 0.048320854829166815]]]]] [[[[[0.7343379096744123 0.3484793982271813]]] [[[0.4206647946030976 0.6767073669670602]]]] [[[[0.15182491188620784 0.010828408154972768]]] [[[0.1253027856540916 0.06204684888165701]]]]] [[[[[0.024215176748366152 0.975479472879289]]] [[[0.10402095675581324 0.08828826529466527]]]] [[[[0.11281546285306487 0.702197885386191]]] [[[0.23070863431503663 0.38363236865087025]]]]]] [[[[[[0.7806977239752987 0.9394578315140485]]] [[[0.6994056313164242 0.8393541807584025]]]] [[[[0.563714065781022 0.563768380930213]]] [[[0.1498770170222249 0.8075929128076571]]]]] [[[[[0.14739480748034817 0.04402603986955922]]] [[[0.3469078154737183 0.3670923473671165]]]] [[[[0.3615006572650058 0.6269917900755365]]] [[[0.7490426221181887 0.2812245039792477]]]]] [[[[[0.39080495829841577 0.17844259905848836]]] [[[0.5985613238399289 0.6831542813609214]]]] [[[[0.3866787179813249 0.49031962864912937]]] [[[0.16860462595023262 0.644884184256822]]]]]]] [[[[[[[0.5095265177544065 0.8194676542544101]]] [[[0.5222150844842572 0.7117111850046034]]]] [[[[0.6990565951181777 0.4581292024829935]]] [[[0.5637866758786656 0.6850110883777307]]]]] [[[[[0.22758324500417115 0.24862248901225992]]] [[[0.6136368552533442 0.08705370975546212]]]] [[[[0.8254229045914543 0.7313941826877154]]] [[[0.11186318588617816 0.29102906937916306]]]]] [[[[[0.01935217812882528 0.19094928204765316]]] [[[0.7464743903861293 0.10326745328752951]]]] [[[[0.23636473277100112 0.0793137036625805]]] [[[0.3450393778193098 0.7273606804855702]]]]]] [[[[[[0.47478718058815883 0.24691437093654944]]] [[[0.8247124612765494 0.7663731138801997]]]] [[[[0.7545926909146495 0.943976067392773]]] [[[0.7905638167274304 0.43278913463554447]]]]] [[[[[0.29071462854317565 0.7575171491498749]]] [[[0.28170093058225254 0.5224498613681576]]]] [[[[0.7504664574070548 0.5741316524848701]]] [[[0.45564130966910543 0.3154161248072963]]]]] [[[[[0.9437559275758779 0.5625540292751305]]] [[[0.729004915063609 0.9075517035896615]]]] [[[[0.6673690417485686 0.9242238217463414]]] [[[0.11559015832986175 0.6130563943967793]]]]]] [[[[[[0.9265707779970251 0.5249626168109213]]] [[[0.8544038342765016 0.8281066277797722]]]] [[[[0.1706135214266028 0.8035337963148155]]] [[[0.6822745139440086 0.47451075443762036]]]]] [[[[[0.1188028845302902 0.1482186190637016]]] [[[0.4588694131737697 0.7229977121938385]]]] [[[[0.4833937408502391 0.33803423528456766]]] [[[0.4235715489389623 0.9157102668226506]]]]] [[[[[0.5400635405217881 0.6953355221176426]]] [[[0.37636916713590074 0.09833309123530176]]]] [[[[0.3404136091173062 0.7594117756745838]]] [[[0.9235437090107589 0.2520018054247979]]]]]] ... [[[[[[0.5088229072108426 0.06226948764278428]]] [[[0.43162086967732116 0.27728327559294785]]]] [[[[0.2772319695594596 0.21626591580170096]]] [[[0.7199402639972489 0.8863603687472541]]]]] [[[[[0.8008239508041666 0.24230964926434273]]] [[[0.9898974566887866 0.003503484763369258]]]] [[[[0.8261906425963513 0.6288098624468945]]] [[[0.7677749261612474 0.9817112010642186]]]]] [[[[[0.36205588385158727 0.5856134298462378]]] [[[0.7585901359443498 0.06224877572821175]]]] [[[[0.31443821201535194 0.4396024987795144]]] [[[0.8659301951573912 0.9706067909849633]]]]]] [[[[[[0.6141127483084501 0.4228146460278318]]] [[[0.29753627693925344 0.3092470373730659]]]] [[[[0.8322131457360981 0.8710747549630874]]] [[[0.20874323866076117 0.994405640492374]]]]] [[[[[0.1640340073651596 0.734807353743512]]] [[[0.5925539190143724 0.35790192198683357]]]] [[[[0.5394444091629395 0.8732219660150935]]] [[[0.4290902757403944 0.6537987835136667]]]]] [[[[[0.3641843851679323 0.24312579783380384]]] [[[0.6367845674970811 0.25702341178192034]]]] [[[[0.2178845186690226 0.09058171580564078]]] [[[0.14400249435453694 0.6788001360857182]]]]]] [[[[[[0.39066888946417166 0.570869479425386]]] [[[0.0638131926099893 0.7626275856890061]]]] [[[[0.04524407142890352 0.05731451579292357]]] [[[0.651229619540179 0.8478083922183867]]]]] [[[[[0.7263606589308563 0.6773981172383237]]] [[[0.1260876396280678 0.2449794959720235]]]] [[[[0.7150940870218486 0.5365126551938536]]] [[[0.6953702142537619 0.4596213607451566]]]]] [[[[[0.45268372219632114 0.06076015028359394]]] [[[0.7077638658351102 0.27647565794021933]]]] [[[[0.007982720708007096 0.5464130255926231]]] [[[0.8898067024080735 0.4081180128874584]]]]]]]] [[[[[[[[0.7180094570932399 0.3735683244268392]]] [[[0.47059287577829967 0.4792704592522723]]]] [[[[0.42531096928602696 0.2729998388153534]]] [[[0.2950149928416743 0.41022840959157536]]]]] [[[[[0.9355745823655874 0.662380881403081]]] [[[0.14933031053043921 0.0540056465535701]]]] [[[[0.5405837533772291 0.8636997812948589]]] [[[0.598057735405781 0.021653713963271093]]]]] [[[[[0.6882343665604719 0.8005875322915622]]] [[[0.1441110988523423 0.3123228346156054]]]] [[[[0.6742391127620122 0.3933250329177794]]] [[[0.7899104319597832 0.9236182293820204]]]]]] [[[[[[0.770496291977423 0.5860323746682327]]] [[[0.46405483152209437 0.171335644002657]]]] [[[[0.05369401693826614 0.8565023232599708]]] [[[0.8654206752465612 0.793074931851821]]]]] [[[[[0.8075751725079311 0.8123012750952396]]] [[[0.8975059365604264 0.11235296778491932]]]] [[[[0.9453353818974225 0.11608232902105453]]] [[[0.9562500479212145 0.281254891820128]]]]] [[[[[0.5494213229617563 0.7906823487559655]]] [[[0.10281743556479006 0.6070551623284021]]]] [[[[0.15292339365654883 0.6593695157460571]]] [[[0.3403485468601771 0.9129309243166696]]]]]] [[[[[[0.3165278887062475 0.4913623153194622]]] [[[0.06497206388677534 0.5969791522004891]]]] [[[[0.19181230730351306 0.5848679608822046]]] [[[0.7997688436107612 0.7372481730156407]]]]] [[[[[0.8558779902231448 0.9103122432770059]]] [[[0.41422320298336124 0.29109598195085296]]]] [[[[0.8708503546495762 0.7984700776000642]]] [[[0.6328983439673908 0.3489290991608721]]]]] [[[[[0.42922121615398845 0.8023846427069073]]] [[[0.04241669264598058 0.47002792924764836]]]] [[[[0.45004201405261157 0.1654714805733648]]] [[[0.17276993516187944 0.770881313938328]]]]]] ... [[[[[[0.15211840439219304 0.8159271441536262]]] [[[0.7561969443467943 0.06250508199082094]]]] [[[[0.1111770377603114 0.7267769449683598]]] [[[0.18111283728994543 0.24238370573490198]]]]] [[[[[0.21878593000700564 0.14626603723216292]]] [[[0.26082311327354823 0.07469821397543686]]]] [[[[0.8968674175989889 0.6960762753494226]]] [[[0.17824697635580722 0.696777301605241]]]]] [[[[[0.9391294217719474 0.2648486872049953]]] [[[0.7421690790221439 0.9921065377015009]]]] [[[[0.583050143239038 0.7866040102891879]]] [[[0.9041366083201883 0.2751402942153379]]]]]] [[[[[[0.4005504129096421 0.15745750945140546]]] [[[0.4211091907817668 0.3168578304229729]]]] [[[[0.5178140550873691 0.856639219697342]]] [[[0.008351326417467275 0.3499014713493981]]]]] [[[[[0.25319101115992093 0.7585967859884439]]] [[[0.10009640997819502 0.9781095213065039]]]] [[[[0.6437279378385029 0.21720430868147567]]] [[[0.8323646103597203 0.13657158979082906]]]]] [[[[[0.6965355454324121 0.5177011086009657]]] [[[0.20771787399328223 0.7728274571407642]]]] [[[[0.3579712410790794 0.664547921447643]]] [[[0.7421507297766313 0.4211590699095856]]]]]] [[[[[[0.7236190595651011 0.5417086283559978]]] [[[0.5991886215836945 0.4812517570851933]]]] [[[[0.1649919449574766 0.679799425215941]]] [[[0.7015862091266402 0.8087620282433852]]]]] [[[[[0.607930223707041 0.4588835449646791]]] [[[0.4407077476616703 0.37368989827513344]]]] [[[[0.6369408636759173 0.4487810140268429]]] [[[0.2600894393051072 0.049587496325889435]]]]] [[[[[0.9922491940007203 0.799138379505794]]] [[[0.6680624471464272 0.03421707404155583]]]] [[[[0.6749729723825467 0.35366660986732124]]] [[[0.2538465954491844 0.3882691089621281]]]]]]] [[[[[[[0.49459215885225005 0.7003398956726614]]] [[[0.9468639522011238 0.3113777831167983]]]] [[[[0.6515867053898049 0.5977300484692707]]] [[[0.09117771458007418 0.16314932610255595]]]]] [[[[[0.7025461069799522 0.25662407845349133]]] [[[0.6954524189316931 0.5658127932046912]]]] [[[[0.3848022094290676 0.6081959092470095]]] [[[0.851867294017701 0.23247481998195374]]]]] [[[[[0.08382599131348034 0.9427681280024344]]] [[[0.9994515377333522 0.6124331152644722]]]] [[[[0.454555381756252 0.7974457825762639]]] [[[0.8905931345707202 0.7339972969054599]]]]]] [[[[[[0.35112279573924077 0.25242134306745356]]] [[[0.44838373741045234 0.050572583591560805]]]] [[[[0.6189865982557585 0.012360550426254835]]] [[[0.42848567799584036 0.4693390252077103]]]]] [[[[[0.20702812597131925 0.2736518927466678]]] [[[0.8798567045867741 0.5502763621022091]]]] [[[[0.6294359728678061 0.37962312268031784]]] [[[0.64150393703362 0.5644787164085159]]]]] [[[[[0.5489213841702989 0.1664288037274796]]] [[[0.5763205002168695 0.4298181139083941]]]] [[[[0.6862958925288836 0.4572117939841659]]] [[[0.48397001156463504 0.4010625184568388]]]]]] [[[[[[0.028656489608161584 0.9501875991032589]]] [[[0.36489233229582385 0.7092550605203577]]]] [[[[0.6947058011576838 0.2853053814752834]]] [[[0.5283991317899093 0.5233188759115683]]]]] [[[[[0.1060736396949794 0.72287838333736]]] [[[0.20364009432854446 0.5604870667831912]]]] [[[[0.15022599184876606 0.05062602715691611]]] [[[0.632904475609778 0.06605858125100394]]]]] [[[[[0.06506269465240577 0.2261778469576291]]] [[[0.7972188978583419 0.23404594637465415]]]] [[[[0.01713871276930945 0.47842135019150156]]] [[[0.6753159885027114 0.8526076444068832]]]]]] ... [[[[[[0.3919663895288348 0.07711828886419636]]] [[[0.5328487234880857 0.6336977524801253]]]] [[[[0.616716183864812 0.6146383200238617]]] [[[0.1849213322864247 0.6614217190362643]]]]] [[[[[0.5044957029283385 0.4753201800440645]]] [[[0.5757425501290573 0.5110553429810679]]]] [[[[0.11918819887578413 0.15466923811602162]]] [[[0.9733901482515932 0.7063300484398154]]]]] [[[[[0.12237595767848575 0.522153254881568]]] [[[0.4238152010205606 0.10022542830477321]]]] [[[[0.8189327352457959 0.004133844452413271]]] [[[0.8187765448584708 0.7439666439400497]]]]]] [[[[[[0.6240253127065085 0.9052175902241155]]] [[[0.11257824388470739 0.957204812621279]]]] [[[[0.6216111896126205 0.9044085842875563]]] [[[0.9554726132339035 0.7646888084071106]]]]] [[[[[0.5269781017881707 0.27848025406155796]]] [[[0.0698115895495649 0.42277558828903194]]]] [[[[0.6005097579200712 0.5612445100399732]]] [[[0.11046672446754235 0.26901223596412205]]]]] [[[[[0.6962719797755476 0.3504732747696073]]] [[[0.46054393385277437 0.2280422786776023]]]] [[[[0.009175565041595446 0.8109261617202664]]] [[[0.8509262583707784 0.2078992782094775]]]]]] [[[[[[0.7103667902433236 0.3436404182155023]]] [[[0.1477044973774383 0.1906495024389906]]]] [[[[0.42680014750511774 0.45275243087988604]]] [[[0.4887020410166776 0.1871040191269101]]]]] [[[[[0.3796906641125918 0.6840523653198826]]] [[[0.0262303951814028 0.2387030351514161]]]] [[[[0.5382232006051838 0.030432552514759514]]] [[[0.4508227380711345 0.9984637721158959]]]]] [[[[[0.20377146199926166 0.7066719855536954]]] [[[0.5166026113175156 0.4693779267071977]]]] [[[[0.8848965851901731 0.7620423935803883]]] [[[0.7797986353038806 0.8998977584611509]]]]]]] [[[[[[[0.9813383814633492 0.2128147110382892]]] [[[0.10693233468001628 0.3682727008853175]]]] [[[[0.48521917321773533 0.7274666512492646]]] [[[0.2596049794910694 0.5700042765649042]]]]] [[[[[0.7422296670819686 0.7335305735489709]]] [[[0.37567605090101697 0.16196628011224035]]]] [[[[0.8814510469380346 0.3192524006597951]]] [[[0.05730815163588188 0.002502767567831188]]]]] [[[[[0.2406458956596068 0.8478216054408032]]] [[[0.07611858308563302 0.24520048942674788]]]] [[[[0.4992232408140843 0.6459385032478492]]] [[[0.657451729875519 0.7182713448354169]]]]]] [[[[[[0.612279920640158 0.7295428725305715]]] [[[0.9306229667947952 0.6373656195947425]]]] [[[[0.07734474384156054 0.6439552750671462]]] [[[0.5976679454385875 0.09523053226630929]]]]] [[[[[0.12086642401448855 0.8723563629403358]]] [[[0.6390770572191375 0.07512575862254955]]]] [[[[0.8409234009211309 0.7400552875259794]]] [[[0.9306931554278887 0.05423330344199384]]]]] [[[[[0.648114400079304 0.33423723439585173]]] [[[0.4532840709122238 0.9076457703376527]]]] [[[[0.6506045026510954 0.17640582452360698]]] [[[0.28218827701444305 0.38293148855926806]]]]]] [[[[[[0.994207874589236 0.693374627657255]]] [[[0.6473597508229889 0.1900630645321557]]]] [[[[0.1913066373640775 0.538351504022968]]] [[[0.33508484686751316 0.6714068528996994]]]]] [[[[[0.13368220798845332 0.4019564888021767]]] [[[0.5051889000860401 0.4931460892223466]]]] [[[[0.2427135450179403 0.06312376525475205]]] [[[0.08548415541639587 0.3502914267939371]]]]] [[[[[0.29212735653350774 0.23455148826875138]]] [[[0.4800351019108584 0.11590533479649023]]]] [[[[0.5451455841928939 0.8849366689453431]]] [[[0.3387896048687159 0.3279448100121536]]]]]] ... [[[[[[0.9906424336432788 0.9441518576343036]]] [[[0.13605578489195524 0.6466818530140266]]]] [[[[0.5291852869562954 0.8294479754631936]]] [[[0.8485015892554185 0.017660126327682546]]]]] [[[[[0.9162516142620083 0.3028354551562016]]] [[[0.2901997670807155 0.7055602754138348]]]] [[[[0.5966373614474059 0.6952684603359985]]] [[[0.21913219721945676 0.339934181779446]]]]] [[[[[0.7378236484265946 0.6777420207598007]]] [[[0.9017767784445594 0.51532058300153]]]] [[[[0.9030322715184955 0.2120629936622508]]] [[[0.6771461664352164 0.5833376824962114]]]]]] [[[[[[0.08371447289379053 0.9330498705791154]]] [[[0.06597391653007867 0.02230033609808879]]]] [[[[0.6056665155012854 0.5756844301898707]]] [[[0.31122960293716406 0.4952518661870272]]]]] [[[[[0.9257870820218405 0.10520588977372458]]] [[[0.4552848251318917 0.8368230051032809]]]] [[[[0.4514972791850418 0.04678203594961128]]] [[[0.902203408247774 0.17382237900043407]]]]] [[[[[0.5701994575039513 0.7337521399024086]]] [[[0.401258111872574 0.7994970697564899]]]] [[[[0.41240978798225303 0.96139704402203]]] [[[0.25459716030924495 0.6965176845701243]]]]]] [[[[[[0.7602342594414038 0.45705055955846285]]] [[[0.5337495928409677 0.30720558081378124]]]] [[[[0.8064385111104585 0.630961419863593]]] [[[0.351083506231913 0.8781781430097393]]]]] [[[[[0.893128759677002 0.17087685068192993]]] [[[0.8243006496722689 0.07642749874099075]]]] [[[[0.7499464172629557 0.14346962578028122]]] [[[0.20835875480607957 0.516948449248438]]]]] [[[[[0.8588780032601894 0.6335474341984367]]] [[[0.06339170319049126 0.9870932457156042]]]] [[[[0.44230942700593356 0.38184197945771825]]] [[[0.03681274599337059 0.7646709661359972]]]]]]] [[[[[[[0.5032054687693237 0.6683719224133334]]] [[[0.6692051042502526 0.6019586923140972]]]] [[[[0.3318471467565036 0.9019629258161789]]] [[[0.3503400079590514 0.30478268581503987]]]]] [[[[[0.07242488216373655 0.27585727184410935]]] [[[0.5569323063518606 0.20622966850831925]]]] [[[[0.22526411086358022 0.6146053204274435]]] [[[0.7856341843962351 0.5552185884257619]]]]] [[[[[0.8866093987333483 0.8283719507024159]]] [[[0.16719432270627343 0.5259541673696335]]]] [[[[0.374016407406183 0.9986156327170727]]] [[[0.14254277975817553 0.29844447608363345]]]]]] [[[[[[0.33047354891220215 0.05554614229101906]]] [[[0.5463942577819391 0.4633437676077946]]]] [[[[0.4669881409575405 0.9706356536341807]]] [[[0.6364894727290862 0.7432292907491328]]]]] [[[[[0.5401503264579691 0.04424401935201172]]] [[[0.35738876934842434 0.7920652413729963]]]] [[[[0.09030498531013886 0.23166751381256423]]] [[[0.18329669594207554 0.769519403536496]]]]] [[[[[0.8336411699475003 0.7805640555709029]]] [[[0.05725758625201893 0.5664843837370248]]]] [[[[0.0975281623585168 0.10612123724609313]]] [[[0.9475343218792942 0.6604233950595021]]]]]] [[[[[[0.4473148140672891 0.9848432258913324]]] [[[0.5766860490598407 0.8938754386113854]]]] [[[[0.3289087072074174 0.5816342185033018]]] [[[0.3861528465630192 0.6858014335651572]]]]] [[[[[0.46213286940542275 0.47765999542841786]]] [[[0.8465962310105969 0.8671722934557731]]]] [[[[0.8677360816041569 0.9672230470834209]]] [[[0.11931396501623104 0.5235979690665186]]]]] [[[[[0.08820739579065684 0.46121902733981635]]] [[[0.12105040488248431 0.2726988648282226]]]] [[[[0.5001643195544088 0.5193826824726238]]] [[[0.7440675872395093 0.20515873937519946]]]]]] ... [[[[[[0.13437870116485573 0.9988792301767438]]] [[[0.08528925583383684 0.11252992094814751]]]] [[[[0.21437436589763315 0.839683432906467]]] [[[0.5679981449648686 0.6265888613306332]]]]] [[[[[0.6441668038208291 0.9976780384607341]]] [[[0.4613433841912319 0.6360170185227657]]]] [[[[0.8470444435082263 0.6591349307447756]]] [[[0.06048788274640937 0.03237172228343865]]]]] [[[[[0.8037476774454646 0.8103966830956889]]] [[[0.828645864657146 0.29590252762089997]]]] [[[[0.2744152115683789 0.8822801203475605]]] [[[0.7657333911446155 0.04600203809019676]]]]]] [[[[[[0.38957017662079607 0.38721713454266626]]] [[[0.7937976410395752 0.06023693426344212]]]] [[[[0.11572532724723616 0.48572949386239206]]] [[[0.21672029807087656 0.3482452738504841]]]]] [[[[[0.7979397005674984 0.6759230175533364]]] [[[0.10587656852424798 0.7697613784882157]]]] [[[[0.5442689704083145 0.832915103701911]]] [[[0.23927888316824375 0.2826053254669195]]]]] [[[[[0.014831674506780135 0.6489384042396668]]] [[[0.41230947448465605 0.038899733729032104]]]] [[[[0.6479616007384799 0.7821143866798512]]] [[[0.8308720331985288 0.7019235590341791]]]]]] [[[[[[0.8624259327101954 0.7081195600917864]]] [[[0.8470812724530818 0.5105007855514756]]]] [[[[0.7587074447559202 0.8804824949149533]]] [[[0.32860449220521304 0.7761503544885249]]]]] [[[[[0.21681142741115011 0.5129387971847333]]] [[[0.8439822068315731 0.2630398369950331]]]] [[[[0.751611688129809 0.7122065331275437]]] [[[0.10512677573283224 0.6644500026012067]]]]] [[[[[0.5590805854791479 0.12323827300177215]]] [[[0.293285696713123 0.74207983121046]]]] [[[[0.24919455784965316 0.7136950824490798]]] [[[0.41629138980805325 0.7183846325607902]]]]]]]] [[[[[[[[0.34068612772399187 0.3499783596141023]]] [[[0.6611331076264827 0.4500714373489053]]]] [[[[0.9518722674284454 0.5494424669895505]]] [[[0.5450201436096936 0.3830657802361729]]]]] [[[[[0.008950762626661946 0.06981265147676607]]] [[[0.49556042414985657 0.9750873970054507]]]] [[[[0.11195900228871725 0.8633897836684139]]] [[[0.9472577433630459 0.4608315536825436]]]]] [[[[[0.5583327990451094 0.03898791783645683]]] [[[0.01944025006748029 0.05503372568262699]]]] [[[[0.07247553608868207 0.7581556314903912]]] [[[0.5527795218072459 0.06342354950316065]]]]]] [[[[[[0.3073745734320106 0.8289565095070043]]] [[[0.08339846671963302 0.6705326071593921]]]] [[[[0.6209969509803778 0.6340643553185759]]] [[[0.46240619032085184 0.1432865389522524]]]]] [[[[[0.48060792134013675 0.11493817536578621]]] [[[0.1807997225364657 0.45322706904787413]]]] [[[[0.04492253814328495 0.7091697769664856]]] [[[0.23072827810940055 0.7822981511277701]]]]] [[[[[0.08529223632234306 0.8309114937221623]]] [[[0.39290282502888796 0.6675637150242485]]]] [[[[0.29635412764973756 0.5445331595219914]]] [[[0.6751218567178963 0.25957624159818193]]]]]] [[[[[[0.744795818476084 0.5264356410086574]]] [[[0.08310117434090902 0.63066574150547]]]] [[[[0.3915698813868117 0.3136968798649765]]] [[[0.6352519220329879 0.3563129829906979]]]]] [[[[[0.05870014784698396 0.8843315458261394]]] [[[0.9624408748177721 0.7999852366452851]]]] [[[[0.3974734924109141 0.8789834397759845]]] [[[0.21689839461560523 0.31963423326009466]]]]] [[[[[0.8431844361090535 0.15087480714118606]]] [[[0.4689844704700501 0.5388927945999329]]]] [[[[0.25373078526442727 0.24780053876925645]]] [[[0.6504342693925635 0.7628046165682948]]]]]] ... [[[[[[0.7815504992386066 0.18273165955142145]]] [[[0.42330130279179634 0.3669863295316472]]]] [[[[0.6977600546811575 0.5774606266018583]]] [[[0.5284382578872882 0.8097698342098931]]]]] [[[[[0.8621718301274054 0.5413452481373527]]] [[[0.9472767959699082 0.0405212647423675]]]] [[[[0.6130547759253138 0.7472753495391279]]] [[[0.9730455880990682 0.9838842867432973]]]]] [[[[[0.7253942943300123 0.6076265950037185]]] [[[0.6543336650965208 0.09700437661997163]]]] [[[[0.23794258227935228 0.7406287303951313]]] [[[0.6965558707443785 0.7945377377325596]]]]]] [[[[[[0.5684535124517412 0.06918184248436499]]] [[[0.2517352425194571 0.5910092533759685]]]] [[[[0.26530342171114596 0.0022386600221662167]]] [[[0.3345217201547396 0.5120933619481123]]]]] [[[[[0.3458812538008771 0.8185541112632378]]] [[[0.39215609088830794 0.841132632913062]]]] [[[[0.17033117094805217 0.190878100763764]]] [[[0.3024104776150912 0.40322925903245277]]]]] [[[[[0.9675199895080518 0.48526323811529715]]] [[[0.8325398644845867 0.9024014189762465]]]] [[[[0.43578622257921906 0.9379789228414027]]] [[[0.0579257154811712 0.7208102012263827]]]]]] [[[[[[0.2546768503507749 0.9569151730619005]]] [[[0.3339100942222172 0.11554846592275203]]]] [[[[0.7848491852282694 0.9090377195243324]]] [[[0.005296283898524101 0.6866531413950988]]]]] [[[[[0.14243834806043554 0.026266182064129562]]] [[[0.9693952309557445 0.016451487556722433]]]] [[[[0.7405246970901015 0.6921233955499068]]] [[[0.48193828500995173 0.357259483824949]]]]] [[[[[0.9167317052523676 0.6525110894013533]]] [[[0.9381447288437924 0.743316798695233]]]] [[[[0.5148974814217389 0.5253159319339628]]] [[[0.23780136685679854 0.14648044183747555]]]]]]] [[[[[[[0.050693569803949345 0.7088778055014948]]] [[[0.37860445641120577 0.7061275702598396]]]] [[[[0.26624954646696586 0.14095991594193158]]] [[[0.09807858061963703 0.41665559904520877]]]]] [[[[[0.22742591662985812 0.7534944923738643]]] [[[0.6882704130583344 0.6545790282386829]]]] [[[[0.8934568941297178 0.05739108316310382]]] [[[0.9148482915875717 0.30980137675189134]]]]] [[[[[0.42775953706063186 0.854789052214771]]] [[[0.5914251615533599 0.4548173295183725]]]] [[[[0.27337139016243583 0.9693061659129115]]] [[[0.22981394619100404 0.3435670909662385]]]]]] [[[[[[0.3624825538623153 0.7144271991481048]]] [[[0.6906886269376348 0.24692227414049994]]]] [[[[0.6847574750383079 0.9920371393519518]]] [[[0.1706060563173677 0.8438472080793401]]]]] [[[[[0.30977108308255796 0.9199795761567628]]] [[[0.21374737947868028 0.48599581291461613]]]] [[[[0.6168774500227687 0.4914046279917098]]] [[[0.21168818395536781 0.9337247325087596]]]]] [[[[[0.9254633400390365 0.21153757561983622]]] [[[0.43847334007610517 0.560131537932353]]]] [[[[0.6881933470599583 0.7880477777012166]]] [[[0.4770645213692475 0.7311701929935777]]]]]] [[[[[[0.8172980013547636 0.49673167874960134]]] [[[0.5877028004545631 0.5262023551977408]]]] [[[[0.4416808459087529 0.4670174755489135]]] [[[0.10075566644606837 0.07665277439941498]]]]] [[[[[0.8961027222359227 0.6066568729899406]]] [[[0.6685824256995986 0.21370247031702494]]]] [[[[0.7567485890572686 0.2647950323647713]]] [[[0.5838386242764134 0.9932734556655325]]]]] [[[[[0.31213923959447765 0.7541897374804716]]] [[[0.43101961370693676 0.3363808944835037]]]] [[[[0.7941788254890508 0.15316535582745672]]] [[[0.3294846226445909 0.788293809290772]]]]]] ... [[[[[[0.3069963915249796 0.8406376465132833]]] [[[0.5865281574092496 0.48861542963661886]]]] [[[[0.5704842565967079 0.7406326793577471]]] [[[0.9525183343480612 0.6396481038353115]]]]] [[[[[0.22632289835733166 0.8123077187687755]]] [[[0.9129281907516663 0.12841858914637128]]]] [[[[0.06093907313937208 0.6793574253062291]]] [[[0.7962223088286938 0.5608227190127725]]]]] [[[[[0.025260980982630632 0.24067239775718308]]] [[[0.780127073191572 0.11206889086881322]]]] [[[[0.5489787694516193 0.6753153674042671]]] [[[0.9424152999470083 0.21332918808769408]]]]]] [[[[[[0.39034140007944884 0.6353453615106028]]] [[[0.7493980651411912 0.029107738363349567]]]] [[[[0.378522871026547 0.8039690564634803]]] [[[0.173928146073002 0.8552370630189786]]]]] [[[[[0.604183674314432 0.8686399710150836]]] [[[0.9650424029426217 0.36821825018855225]]]] [[[[0.4234843514615486 0.12390354652891633]]] [[[0.5467998717368415 0.31256231690710723]]]]] [[[[[0.8815218332930925 0.3534790005711762]]] [[[0.8933635038071152 0.5624644813244639]]]] [[[[0.3280907180782474 0.8088494922298545]]] [[[0.80585304613666 0.7599756385772721]]]]]] [[[[[[0.7673759803382981 0.4301280977486267]]] [[[0.5615018066120993 0.7527015975227905]]]] [[[[0.5339838829564117 0.11798483815274219]]] [[[0.8667159186873844 0.26518727167642486]]]]] [[[[[0.6604840673124146 0.9401014253101738]]] [[[0.7756954460132015 0.97075702911473]]]] [[[[0.4132955050315772 0.5088381725655878]]] [[[0.016063970953976936 0.2542586257905667]]]]] [[[[[0.6726909692722374 0.191054914334563]]] [[[0.9670261075353748 0.7767962454572306]]]] [[[[0.5984948617816134 0.7521148091096003]]] [[[0.6246006724248314 0.8310088895312578]]]]]]] [[[[[[[0.8932873320077174 0.9308213487521313]]] [[[0.5577754903156584 0.5123463109180152]]]] [[[[0.67123162492878 0.4768953969986597]]] [[[0.2511934432721281 0.11513318620552293]]]]] [[[[[0.7116771782821865 0.8645737692284546]]] [[[0.8291492754081897 0.1364755617771637]]]] [[[[0.4155476877601081 0.7577057537732411]]] [[[0.6715590590922633 0.2536041794143967]]]]] [[[[[0.9204374216459938 0.7489068317993135]]] [[[0.1359768007017449 0.8003419790273512]]]] [[[[0.7446191961940225 0.09993522464843818]]] [[[0.4277036886533594 0.270117121694078]]]]]] [[[[[[0.4381919451597396 0.18678152213040822]]] [[[0.18482257169032257 0.3438472784048955]]]] [[[[0.8305959104256159 0.8343925969141925]]] [[[0.9373868668781669 0.46552928662839244]]]]] [[[[[0.019004690356951515 0.3351755715078112]]] [[[0.2542316230830859 0.24985237237613356]]]] [[[[0.6866385360463344 0.025071117581873525]]] [[[0.9616463275399768 0.21578728690899884]]]]] [[[[[0.8073718271088502 0.5936483165477159]]] [[[0.41429492432853343 0.8020587929741974]]]] [[[[0.7042309910951473 0.40422073278949466]]] [[[0.12700297405642247 0.27460920525923915]]]]]] [[[[[[0.9632484218304778 0.7477849182007352]]] [[[0.6874955371046363 0.6916686129507531]]]] [[[[0.4903071885182264 0.7829347655264883]]] [[[0.35552554188909435 0.7484157480247736]]]]] [[[[[0.8665242855047881 0.10197531412497529]]] [[[0.5749431023900742 0.6554528531520675]]]] [[[[0.6084969202636974 0.3139908734810274]]] [[[0.043814704503594926 0.2891434187985189]]]]] [[[[[0.8014042263155539 0.5058968084441607]]] [[[0.04055148605046899 0.5189550438263203]]]] [[[[0.7768526981362692 0.8680462131933167]]] [[[0.48499972980964867 0.5805329516260795]]]]]] ... [[[[[[0.8758852212210542 0.051705789004321434]]] [[[0.39780529943511156 0.1556791928100687]]]] [[[[0.5804479069841024 0.7744555595123871]]] [[[0.3003199337222098 0.39530774371629385]]]]] [[[[[0.7818850752757311 0.15482892303705464]]] [[[0.15901942390179769 0.6527907540444133]]]] [[[[0.5636319748124385 0.2140865926034179]]] [[[0.5439594580783093 0.15862729670140185]]]]] [[[[[0.34740858606190983 0.7435835821276114]]] [[[0.9660303358113991 0.7629035105403967]]]] [[[[0.49569498262773115 0.22745246930318708]]] [[[0.21677556370622209 0.4119768175015657]]]]]] [[[[[[0.6571858965535564 0.9601096414327566]]] [[[0.523359001456722 0.4984256738956637]]]] [[[[0.9421944086066585 0.21301109105806337]]] [[[0.6673013317155492 0.8354041253922077]]]]] [[[[[0.8750706117367 0.960956566381613]]] [[[0.7557615209950118 0.5679656473596146]]]] [[[[0.6175414566347431 0.9873686919055006]]] [[[0.8927226616278936 0.3746741675735318]]]]] [[[[[0.8484131111480672 0.38320932461278556]]] [[[0.1132032858603288 0.018704734816429647]]]] [[[[0.6590555331893558 0.0783417253215648]]] [[[0.9219715509407815 0.23728250714713417]]]]]] [[[[[[0.6121887071783696 0.718288951925556]]] [[[0.9813694074643463 0.003603879294136414]]]] [[[[0.11003999516917407 0.25551421959415144]]] [[[0.4661016074302995 0.5226147496275766]]]]] [[[[[0.7845167999812795 0.3575339574272953]]] [[[0.9737711703882168 0.32782201708685177]]]] [[[[0.417675910768708 0.7294425326051143]]] [[[0.7060004305672491 0.6234207420105874]]]]] [[[[[0.45162296513915445 0.27631251311271887]]] [[[0.7046703493999648 0.1794667680234966]]]] [[[[0.14052235156464477 0.14609393221563682]]] [[[0.30159338157989457 0.8876223319820954]]]]]]] [[[[[[[0.07507143758035051 0.8737754243882032]]] [[[0.6573961574008779 0.5663875490171038]]]] [[[[0.9759075914321413 0.10168387648868704]]] [[[0.12170294494961853 0.4871053982589787]]]]] [[[[[0.4334604224433648 0.09809859111618058]]] [[[0.23151365263611312 0.21967717986550062]]]] [[[[0.5402371158649057 0.05206362192401748]]] [[[0.04940708369163149 0.9691217581025914]]]]] [[[[[0.7433803641525973 0.15603912387211472]]] [[[0.22954982651580802 0.7926851245933668]]]] [[[[0.2586596602659079 0.04515055971233961]]] [[[0.31333484017284763 0.12446483341768189]]]]]] [[[[[[0.9794847127433586 0.46737648679022525]]] [[[0.683439878556724 0.41074438207987307]]]] [[[[0.9496720271483633 0.1781417680332088]]] [[[0.9921332445364138 0.2635607061939782]]]]] [[[[[0.04313823247786863 0.4794198115306757]]] [[[0.009182481016025146 0.9166842663356084]]]] [[[[0.7059773093524658 0.082186417058984]]] [[[0.6476895451991385 0.11906697633759966]]]]] [[[[[0.0924312222073056 0.9330570807626778]]] [[[0.2738116376536682 0.6514243303239612]]]] [[[[0.29020955116031055 0.12651330923399629]]] [[[0.5948050955605827 0.6653275039391554]]]]]] [[[[[[0.6325441759562929 0.21578808315419706]]] [[[0.9218524282642329 0.1367265804795943]]]] [[[[0.4784257870124805 0.3020079205592683]]] [[[0.9975647682166602 0.835558245171557]]]]] [[[[[0.3611015051789028 0.11520031270914677]]] [[[0.17668901272317006 0.5090395563233908]]]] [[[[0.3687405460969384 0.5720013185554963]]] [[[0.3396133610987181 0.07696960383507134]]]]] [[[[[0.42500708687414046 0.6966478493073384]]] [[[0.08512182688088454 0.6978702434856409]]]] [[[[0.16924651098418853 0.3897531876358843]]] [[[0.8174776374657088 0.3547720882974884]]]]]] ... [[[[[[0.44021790200586364 0.06814242395285108]]] [[[0.00600895900521925 0.7687819324919164]]]] [[[[0.09009214765497198 0.7260018733574836]]] [[[0.9998656627066953 0.22151192056085012]]]]] [[[[[0.48776405930469524 0.8020799098839846]]] [[[0.48969701492774687 0.6434329389144828]]]] [[[[0.20117687833878628 0.4051741928536381]]] [[[0.44705125214713204 0.6080736991996221]]]]] [[[[[0.6301938918424422 0.8194102920049057]]] [[[0.5236255189650901 0.1545122657166993]]]] [[[[0.09626056624964463 0.13903571048925345]]] [[[0.574509634021239 0.4857677032920025]]]]]] [[[[[[0.7072841799970262 0.39786899798131825]]] [[[0.866930034035888 0.43530318386124334]]]] [[[[0.8248076885295218 0.7405231185145108]]] [[[0.34087512390451136 0.22187619946728487]]]]] [[[[[0.7550439189960995 0.8998244437756584]]] [[[0.025107714104862677 0.17606995947799553]]]] [[[[0.0652042614994327 0.30291211203764323]]] [[[0.7657411015670025 0.06307550822310237]]]]] [[[[[0.7708959621269059 0.3763747880238697]]] [[[0.13276073928907883 0.34264891921634244]]]] [[[[0.2538194626119198 0.7422513955814878]]] [[[0.66293657507195 0.5022930467156518]]]]]] [[[[[[0.9324302229506919 0.6686472951705237]]] [[[0.3131510381436744 0.5444187501548075]]]] [[[[0.6644955723304898 0.1738865803085462]]] [[[0.18145252895410524 0.1629834042135644]]]]] [[[[[0.3977803213205571 0.24017703878847585]]] [[[0.22689177614449518 0.0511610331754111]]]] [[[[0.5498762048612384 0.46008928889853706]]] [[[0.9064816726184766 0.6935659558656335]]]]] [[[[[0.1987709986152535 0.5809295576167989]]] [[[0.7973815097782768 0.023732035466367152]]]] [[[[0.8496233944673517 0.8539229118425505]]] [[[0.32265110716816403 0.4954251712150164]]]]]]]] ... [[[[[[[[0.28557003210219045 0.3018044784694057]]] [[[0.19572371657243037 0.331283433139153]]]] [[[[0.3819984139508771 0.5603149437699692]]] [[[0.6116395250541712 0.6726605696036742]]]]] [[[[[0.8272487259730144 0.17909014436461412]]] [[[0.07608093050496834 0.9951328731734628]]]] [[[[0.5050302792626518 0.40200758880379983]]] [[[0.6639994236618255 0.4683122931369481]]]]] [[[[[0.0019975467388294588 0.5458877747801953]]] [[[0.0963613094895831 0.725949854098686]]]] [[[[0.6009263701716809 0.5453586856020572]]] [[[0.872183221643058 0.31879018036123097]]]]]] [[[[[[0.25204376307787624 0.44097627167447584]]] [[[0.6800977848888581 0.5739450006745456]]]] [[[[0.2237281232844225 0.38481413691064625]]] [[[0.49334400452625504 0.07202832902674772]]]]] [[[[[0.5106725758956834 0.6249106288050821]]] [[[0.5361379332252056 0.5100927373994804]]]] [[[[0.06658944054162519 0.12471065982249596]]] [[[0.07603061480151563 0.9623681074839214]]]]] [[[[[0.9638749578105918 0.392865991155502]]] [[[0.4352352900134431 0.9797148904405484]]]] [[[[0.2368353990651525 0.5893922440167544]]] [[[0.5334068853759535 0.8363297260198829]]]]]] [[[[[[0.20777348583146937 0.8348360443081568]]] [[[0.8383246045154594 0.8341487088560319]]]] [[[[0.004539325814703621 0.21879377949477485]]] [[[0.202058480609146 0.16700768881766948]]]]] [[[[[0.16106602073108356 0.596911130589641]]] [[[0.2837628275719113 0.9175065517914652]]]] [[[[0.3908423100111683 0.35379978123548506]]] [[[0.1543401524358866 0.025257353747037414]]]]] [[[[[0.7833818344250274 0.09489025913014815]]] [[[0.301074901017943 0.6438601105911399]]]] [[[[0.4255669730939151 0.15601632265340926]]] [[[0.2171814483527963 0.5053603343466423]]]]]] ... [[[[[[0.5960657866447052 0.47892981344899477]]] [[[0.806435356988001 0.8783044079352873]]]] [[[[0.26290170646740363 0.6444718279222512]]] [[[0.9437445478584985 0.06042174874004069]]]]] [[[[[0.7930950370433325 0.15767019353836265]]] [[[0.0023559835493657255 0.10028534212649431]]]] [[[[0.380992358290248 0.4938177258031181]]] [[[0.16621730708370597 0.12794587735085916]]]]] [[[[[0.779673704759285 0.13897377617902051]]] [[[0.22726090188332848 0.6537253447564817]]]] [[[[0.6977857477831387 0.9985203181001192]]] [[[0.2956911046426701 0.003340588838559033]]]]]] [[[[[[0.9323398675403641 0.9124205668797883]]] [[[0.6909149896371249 0.12682851054399558]]]] [[[[0.9508758930993227 0.0379722049738509]]] [[[0.2262064136945232 0.646775742008604]]]]] [[[[[0.7460053823945858 0.9628644558738518]]] [[[0.007534652958297694 0.99741729243261]]]] [[[[0.5415689403938772 0.970302947877532]]] [[[0.19837232689584183 0.2872744024250581]]]]] [[[[[0.2586527345711629 0.9217676229523778]]] [[[0.06464824371069466 0.3072148336579742]]]] [[[[0.12184284771139453 0.8894150073465502]]] [[[0.9753534531338286 0.5714126347027829]]]]]] [[[[[[0.6562133154575941 0.7154281530120649]]] [[[0.047971923641005665 0.8279998179917862]]]] [[[[0.942257325957872 0.840490549481102]]] [[[0.8802608362867731 0.8427579812549535]]]]] [[[[[0.8997188236053708 0.20947069815203967]]] [[[0.14140107146744318 0.8745237654602047]]]] [[[[0.6516443616422914 0.504477225328298]]] [[[0.1802977603035456 0.2170324423956399]]]]] [[[[[0.5617141204873003 0.14969207262595607]]] [[[0.5558369823904395 0.6252827287166856]]]] [[[[0.6121020047230961 0.29062318973782164]]] [[[0.7310589089022852 0.276813101938137]]]]]]] [[[[[[[0.44778065949581614 0.8672046371945814]]] [[[0.020344407212876003 0.3023720981676622]]]] [[[[0.1626004470374427 0.42445801737947]]] [[[0.7521130784488571 0.07577727921448818]]]]] [[[[[0.2894569434910055 0.9904058585183876]]] [[[0.7191528287936243 0.9112772285390085]]]] [[[[0.0586886330180284 0.2503428210744634]]] [[[0.25531674850107844 0.3878823834767898]]]]] [[[[[0.26175183763595666 0.5144623516665945]]] [[[0.11378639184821737 0.03502419591589567]]]] [[[[0.4864033964391149 0.9016047176965566]]] [[[0.9703936960890286 0.7334765238438276]]]]]] [[[[[[0.17696958770484505 0.8588491004871635]]] [[[0.2807874618191112 0.6674954776984398]]]] [[[[0.9263919903984452 0.8497845432299306]]] [[[0.5155501790185628 0.7970053070981363]]]]] [[[[[0.17665821852049723 0.9846918890758094]]] [[[0.9527492943891354 0.06273241198183832]]]] [[[[0.6253879577115597 0.45557933689875585]]] [[[0.6366626830149952 0.06937636281056103]]]]] [[[[[0.8341114074210388 0.017220021695150134]]] [[[0.33322750770915777 0.8295677006349298]]]] [[[[0.5393033186126875 0.2726390901719421]]] [[[0.8433036615304942 0.6081959844177083]]]]]] [[[[[[0.9319340685284514 0.808792503012412]]] [[[0.8205072899152224 0.15806920906194577]]]] [[[[0.6773646314759884 0.9167146930854424]]] [[[0.6425310173845054 0.46748722070662774]]]]] [[[[[0.07072879452947745 0.45013496937736]]] [[[0.5255682560149698 0.8036085968925092]]]] [[[[0.4541471372169037 0.6634493840283702]]] [[[0.41375171735528715 0.8989675355595367]]]]] [[[[[0.8346152089728215 0.08785654448877467]]] [[[0.4842890756448869 0.9795909857127858]]]] [[[[0.8770861422067457 0.5552000005430773]]] [[[0.4878967619671626 0.09309105082975278]]]]]] ... [[[[[[0.8085293383481559 0.46387136315214605]]] [[[0.37045600253326993 0.8386136580416476]]]] [[[[0.045866750245321275 0.44852428252970433]]] [[[0.8113908869309597 0.7292031557147123]]]]] [[[[[0.5855310441454953 0.6088196588092677]]] [[[0.8687263106696187 0.9972903212375225]]]] [[[[0.2992742158422512 0.48295599397517175]]] [[[0.5780300676920271 0.5786596995537979]]]]] [[[[[0.8134362934644949 0.7741090762466265]]] [[[0.3446883629897983 0.4367483662324608]]]] [[[[0.35128083988366354 0.6273465951667572]]] [[[0.13072216509233558 0.7187889633383091]]]]]] [[[[[[0.002669299911836287 0.7493124307230422]]] [[[0.6527973812607447 0.6431713273517545]]]] [[[[0.09652699696211875 0.6679379427356092]]] [[[0.8010945723984119 0.6401301801084217]]]]] [[[[[0.4412612057399278 0.9468216485303498]]] [[[0.9654430772823485 0.35264821804857427]]]] [[[[0.9532329257167576 0.8424845910901941]]] [[[0.2204384767693407 0.6531006241638566]]]]] [[[[[0.8350537003737283 0.37070005488817515]]] [[[0.8380642662227229 0.8617943833385693]]]] [[[[0.5508886524994191 0.19207155497088813]]] [[[0.30542329900144694 0.5825273303350853]]]]]] [[[[[[0.09704010999588764 0.7680500536888877]]] [[[0.23552227865567132 0.7655376246457561]]]] [[[[0.9875146128577107 0.8873490995276737]]] [[[0.4386846771693663 0.19135481246937025]]]]] [[[[[0.037490669432774903 0.6564724626224006]]] [[[0.027537283460493667 0.3460514181608191]]]] [[[[0.9675018524893224 0.0163222241297607]]] [[[0.49879970610498936 0.8807864230088384]]]]] [[[[[0.6389169763359787 0.4736453194318878]]] [[[0.6613717331449969 0.45891354410441876]]]] [[[[0.03439288938827345 0.5488166871743149]]] [[[0.15023694275136268 0.9622421535533803]]]]]]] [[[[[[[0.8926499688635451 0.5222570620765785]]] [[[0.8777348988159417 0.38352308685395253]]]] [[[[0.6007642518060532 0.7115509689155061]]] [[[0.4271122109306478 0.2856062360963981]]]]] [[[[[0.9045790764231864 0.6508189808618289]]] [[[0.09307795856605083 0.2828261254942933]]]] [[[[0.9790146117136278 0.25253547772269935]]] [[[0.5005313939993593 0.7632065456127158]]]]] [[[[[0.1954724910635418 0.5994398193392624]]] [[[0.6546563476450007 0.6128178145622224]]]] [[[[0.6277753622228222 0.670130513019818]]] [[[0.4723971494477246 0.30392336472628656]]]]]] [[[[[[0.9817662992752453 0.25917766024963784]]] [[[0.9804395979899397 0.8127874673841691]]]] [[[[0.20255382204608552 0.760780988797555]]] [[[0.0005003568968732219 0.5942234309271998]]]]] [[[[[0.2751807126259056 0.18312933090128358]]] [[[0.557930540127875 0.6895113190492853]]]] [[[[0.33778394116739163 0.31530493877176]]] [[[0.3325096001123252 0.15122019654537877]]]]] [[[[[0.04065679535635891 0.44508603914854494]]] [[[0.4181705685452253 0.03578588680165784]]]] [[[[0.11597906146675496 0.2510093820394653]]] [[[0.6527104231662771 0.1171456292573857]]]]]] [[[[[[0.8348403643863066 0.7916210304236263]]] [[[0.5278254679528482 0.8413810766936133]]]] [[[[0.3243134301877153 0.9651825552605171]]] [[[0.5516314952906749 0.6961586914047825]]]]] [[[[[0.0820749553372162 0.8933229657123365]]] [[[0.2716906868609499 0.011406957714016785]]]] [[[[0.15069693947183815 0.15220043651302162]]] [[[0.7628480353703675 0.6372026658508418]]]]] [[[[[0.8517977943398595 0.8730587141354759]]] [[[0.44440103375838047 0.2135006530759347]]]] [[[[0.7366700690449249 0.07656786360143963]]] [[[0.45905200036571847 0.7246851506554315]]]]]] ... [[[[[[0.15738389984938073 0.2972866816262334]]] [[[0.4056141293607687 0.8247319176886789]]]] [[[[0.894294792207078 0.24886355518977188]]] [[[0.9123941553073149 0.25152926589774693]]]]] [[[[[0.158315595619285 0.6008616969624219]]] [[[0.7916380099547456 0.4955695589722494]]]] [[[[0.7314854003050463 0.6473214251365277]]] [[[0.3079997030824946 0.34624281074628993]]]]] [[[[[0.5481408414752384 0.12092533885522272]]] [[[0.8864689866493067 0.8956012383539921]]]] [[[[0.4762415625174252 0.6388791346220178]]] [[[0.017045044974964618 0.6124619701012816]]]]]] [[[[[[0.5681018521202335 0.2593139818013662]]] [[[0.5320294120144282 0.8975513975489582]]]] [[[[0.4380135554896045 0.749515337536933]]] [[[0.7410664655857866 0.2732336502228875]]]]] [[[[[0.11012061090719905 0.12629961941128853]]] [[[0.6350440079527624 0.00048250370293723144]]]] [[[[0.17222011453323172 0.9142356354584831]]] [[[0.4361759911270693 0.5773015189438391]]]]] [[[[[0.5625016805634246 0.61929813069032]]] [[[0.10780895261158863 0.716101214732055]]]] [[[[0.6829791028471897 0.37313903229897005]]] [[[0.8737886523979117 0.61064692630194]]]]]] [[[[[[0.5573112092186926 0.7063892415591975]]] [[[0.2775865584142343 0.5034563159076764]]]] [[[[0.47874626286094046 0.41747086113674736]]] [[[0.8390985022535777 0.6860253576693787]]]]] [[[[[0.006778107890683227 0.6456611231033385]]] [[[0.7096489093192532 0.7051474624824569]]]] [[[[0.08605261938570907 0.8849867850539448]]] [[[0.5861491111999646 0.9540897563442772]]]]] [[[[[0.9794402631837202 0.5481926255801816]]] [[[0.9561097606332102 0.7822328490012661]]]] [[[[0.7948039045288411 0.25895132144516286]]] [[[0.627037484870071 0.8080215190380858]]]]]]] [[[[[[[0.15707547614988437 0.3319727529233263]]] [[[0.60694452352148 0.264706470540379]]]] [[[[0.6722009646031888 0.7687011552826408]]] [[[0.4130218177574506 0.47698789318673696]]]]] [[[[[0.35870884740750664 0.9523426695526954]]] [[[0.6446090586950847 0.31931160589376517]]]] [[[[0.8569033305776163 0.21766784237874737]]] [[[0.24219155211387033 0.7537935232921654]]]]] [[[[[0.23187152995348437 0.24541232849517114]]] [[[0.8576841603392173 0.9225703327845445]]]] [[[[0.5951771518667902 0.9440162152011249]]] [[[0.8685911973648579 0.6793241997325844]]]]]] [[[[[[0.5718044967216654 0.9786044378896125]]] [[[0.39361368558436505 0.5506312122993849]]]] [[[[0.04148461175263529 0.9940386926762255]]] [[[0.27971408620572913 0.8155044242598352]]]]] [[[[[0.1378734942851596 0.9032540425240934]]] [[[0.9587579143308204 0.6759823188801773]]]] [[[[0.014545021286452853 0.723710663300944]]] [[[0.9954691052773065 0.07586426272313573]]]]] [[[[[0.562608908087836 0.46052182159218646]]] [[[0.877049968275649 0.2189111027179853]]]] [[[[0.967793633483033 0.5281811450386724]]] [[[0.8597611222219285 0.015402509375394557]]]]]] [[[[[[0.5007091035972967 0.08233880167282137]]] [[[0.5451427993941853 0.47577881223667406]]]] [[[[0.5740926460639417 0.9427453557980319]]] [[[0.10524925700278687 0.2061320928004179]]]]] [[[[[0.34094635818818064 0.8952067515774554]]] [[[0.2335721160729224 0.09574175247607752]]]] [[[[0.005465212761539107 0.5046537692772595]]] [[[0.41567629389057326 0.39845981531580255]]]]] [[[[[0.5057273778856556 0.9091856488917055]]] [[[0.56213466236674 0.16179247281035947]]]] [[[[0.9235515786801074 0.08756527639388634]]] [[[0.03251107697586253 0.5380875304975958]]]]]] ... [[[[[[0.09353187797752216 0.6035696199506679]]] [[[0.29633488741593084 0.6258020805259864]]]] [[[[0.1297435018976153 0.5960492005994493]]] [[[0.45958038297098447 0.06093930563813599]]]]] [[[[[0.8743927493334481 0.2606363343413972]]] [[[0.164480541193184 0.4070767442720854]]]] [[[[0.5074533447663366 0.3818188931937657]]] [[[0.7524372021765646 0.3197694758656431]]]]] [[[[[0.6433516893824547 0.4526453808007451]]] [[[0.8116513235655709 0.9337625681534671]]]] [[[[0.3402736725800958 0.3972079826835262]]] [[[0.9779344552710214 0.48178769638259955]]]]]] [[[[[[0.8062285037166321 0.9661006617544518]]] [[[0.022610924896066864 0.8889239622565589]]]] [[[[0.8840696441087884 0.6446063288442583]]] [[[0.15626341574546987 0.0210152010763337]]]]] [[[[[0.6063684818733749 0.783294095977247]]] [[[0.3224856832807468 0.0744362479765166]]]] [[[[0.5276222246549419 0.7775369125644696]]] [[[0.6124775956688057 0.7425719039318043]]]]] [[[[[0.5069705055819648 0.08356907806816383]]] [[[0.28403867287824125 0.3909851536783139]]]] [[[[0.8884344849811915 0.9361028004093327]]] [[[0.7620143519428944 0.5612887064305085]]]]]] [[[[[[0.3351096296841646 0.9422732614043334]]] [[[0.7175182558780501 0.8615215021825348]]]] [[[[0.5624061605156118 0.490678260875827]]] [[[0.01516193122901388 0.07501455112720379]]]]] [[[[[0.8990852114058819 0.6847629461184107]]] [[[0.9200587895621278 0.8072354287840482]]]] [[[[0.24204581458027563 0.15860811620443505]]] [[[0.23387248589335752 0.7002194887648954]]]]] [[[[[0.764769488876625 0.7957826839535086]]] [[[0.7311055586728257 0.5341674470091191]]]] [[[[0.40360597025591016 0.6399197458404431]]] [[[0.7526364290927687 0.1815215946643387]]]]]]]] [[[[[[[[0.14250243378583183 0.5939843502057246]]] [[[0.6155834219685112 0.8624381483202319]]]] [[[[0.8685787062762307 0.027510808189510794]]] [[[0.031001306811206053 0.9518323692414613]]]]] [[[[[0.6794182041510942 0.3127902287790687]]] [[[0.48637676886317005 0.16562041945052286]]]] [[[[0.4540055741553821 0.1502308465725244]]] [[[0.5413254875632907 0.3395272876574086]]]]] [[[[[0.6075981796853692 0.14512428077649453]]] [[[0.7930634456128353 0.9929518105396847]]]] [[[[0.8753672582297075 0.6005739456715912]]] [[[0.7005851620640704 0.0026200461411782783]]]]]] [[[[[[0.14314821608980233 0.6408973554212167]]] [[[0.8655507845340091 0.11819818781095404]]]] [[[[0.8835432737141621 0.35119009371689214]]] [[[0.28982476425933246 0.2569180904744136]]]]] [[[[[0.6843348493741926 0.18739672810555208]]] [[[0.6335675076711478 0.9282967555597281]]]] [[[[0.688986105445571 0.6008104522017391]]] [[[0.5943012544557968 0.14677387772322714]]]]] [[[[[0.30297665477620284 0.8076490446614775]]] [[[0.0600655174555601 0.8386925472491213]]]] [[[[0.22142623652192572 0.05097851444246826]]] [[[0.3360644896250634 0.8761897449916749]]]]]] [[[[[[0.7720119511530268 0.42984795760798933]]] [[[0.4469103985268321 0.14199964787155683]]]] [[[[0.5423383178754211 0.5219995735177617]]] [[[0.4294147023112229 0.25620939790448716]]]]] [[[[[0.5828996749209132 0.25028498119143594]]] [[[0.4405014208953417 0.12900506755238816]]]] [[[[0.7442299308433066 0.8757031628155183]]] [[[0.3031043072198343 0.6471533448844538]]]]] [[[[[0.8115123888375348 0.8671386334866752]]] [[[0.5557804576696609 0.18248968043599822]]]] [[[[0.22603439657749214 0.6967463465070143]]] [[[0.873764181893697 0.12912156953713871]]]]]] ... [[[[[[0.37018460585245605 0.9071075750887392]]] [[[0.5280285650205371 0.24762095644882176]]]] [[[[0.5902397858374514 0.27152764585788913]]] [[[0.8542508164510234 0.09536331272115872]]]]] [[[[[0.9777795837878401 0.5309196397701035]]] [[[0.10661770665729708 0.9252249418718975]]]] [[[[0.23837824498740645 0.578361846673942]]] [[[0.8846695475120543 0.4915412107888668]]]]] [[[[[0.6797112124255831 0.9030553050611224]]] [[[0.4167433519461413 0.939257550909122]]]] [[[[0.9130116330800802 0.7133579243133985]]] [[[0.257353210270336 0.7918930070448951]]]]]] [[[[[[0.8290952854848107 0.0625909128661406]]] [[[0.581868005723089 0.7316929501672103]]]] [[[[0.964370556149592 0.4730894592572469]]] [[[0.5454454431831277 0.4514439984426336]]]]] [[[[[0.03726366545540527 0.74207200805279]]] [[[0.8388210779338421 0.6414830588641226]]]] [[[[0.44326995528606017 0.4257947875302486]]] [[[0.21404356656859636 0.41289513030831815]]]]] [[[[[0.5101717794531443 0.5558983585810495]]] [[[0.9241325507304637 0.7876928494641168]]]] [[[[0.6034297614812704 0.5664606318246136]]] [[[0.8907730087122959 0.23753954121071663]]]]]] [[[[[[0.3241401682804914 0.6801863206534408]]] [[[0.13741237204551482 0.9707756710528769]]]] [[[[0.2745227795442564 0.16976563211316065]]] [[[0.4479294943023534 0.8645146551259739]]]]] [[[[[0.29216102688602685 0.9498721542623921]]] [[[0.9593405886625459 0.7916306835447188]]]] [[[[0.6580451531507449 0.665353031135492]]] [[[0.7005384262308146 0.6643798366356162]]]]] [[[[[0.3826341441276677 0.9741974881616388]]] [[[0.4644769990374623 0.9120619626768222]]]] [[[[0.21967038754164514 0.6984369889429832]]] [[[0.903445011074279 0.1576930292138221]]]]]]] [[[[[[[0.5622529731438584 0.5986397122438598]]] [[[0.35753547266990127 0.8466211111454455]]]] [[[[0.43104000615024873 0.6592857560793317]]] [[[0.23526316667171787 0.6156883286340675]]]]] [[[[[0.08942962156397538 0.7565187510806499]]] [[[0.02158034933479025 0.7221049422303814]]]] [[[[0.7265345178653326 0.07525337836146573]]] [[[0.07298662425645841 0.8559813300548952]]]]] [[[[[0.6929333665985623 0.4607965786585544]]] [[[0.5346197210389679 0.1557260108343116]]]] [[[[0.7700286974200424 0.44739258491597556]]] [[[0.0005354102281487361 0.619592512864104]]]]]] [[[[[[0.20759775070555753 0.09340037150632896]]] [[[0.07353568449431014 0.8699883400730913]]]] [[[[0.31861830762084487 0.8608226539444294]]] [[[0.2903463206761422 0.8884133863281968]]]]] [[[[[0.3442419846603978 0.19327917966636443]]] [[[0.4458295258418137 0.3286709120635366]]]] [[[[0.9883867118846886 0.6352288728034063]]] [[[0.15465879748678346 0.45886004899851485]]]]] [[[[[0.39165019858983874 0.6177784226177934]]] [[[0.36452358390007567 0.551548804714412]]]] [[[[0.07433086858115168 0.7769324085758467]]] [[[0.9232208269259924 0.09250045990989453]]]]]] [[[[[[0.010534760946455002 0.514040599200633]]] [[[0.14566444055384487 0.6543186612405705]]]] [[[[0.6664173937606118 0.12443932919938094]]] [[[0.1332608630902935 0.9025238120679888]]]]] [[[[[0.9975615854825765 0.5336374799136213]]] [[[0.3045573369713144 0.6048117098931852]]]] [[[[0.14221169325346494 0.9138910609556594]]] [[[0.6799059416935793 0.4011541972586641]]]]] [[[[[0.2010001909041803 0.1475838527730109]]] [[[0.40558203047108177 0.6087677441723363]]]] [[[[0.5938329542478694 0.35585548241714626]]] [[[0.43102871642558915 0.6731084116874527]]]]]] ... [[[[[[0.800470766959296 0.5622350478229721]]] [[[0.6757757270858874 0.32789433675256263]]]] [[[[0.13791875051059987 0.6050857930949853]]] [[[0.10159354832136713 0.701100699349131]]]]] [[[[[0.06059437331930084 0.35021132897425955]]] [[[0.9479258394510673 0.6315898298131267]]]] [[[[0.5281152174586871 0.3571598213445847]]] [[[0.36919569815274755 0.5992305627090588]]]]] [[[[[0.9179873849875079 0.143701038498678]]] [[[0.6848877701660792 0.710808663755887]]]] [[[[0.8077851287249698 0.29456476195248393]]] [[[0.7991769130752754 0.24434083635109505]]]]]] [[[[[[0.6910377593193905 0.941588416855976]]] [[[0.45746216825994324 0.2402871134472574]]]] [[[[0.9780907190091607 0.4709962586747275]]] [[[0.1462318544158142 0.09062233986969548]]]]] [[[[[0.1545276322627107 0.3950779576148098]]] [[[0.6057526227496276 0.6289523158167675]]]] [[[[0.7976473401127235 0.493696586835667]]] [[[0.0726747718524905 0.7019055282007833]]]]] [[[[[0.36693572429558774 0.430658038708988]]] [[[0.6232713808533547 0.8715905992128294]]]] [[[[0.982762145813462 0.7838109084333037]]] [[[0.7512124863528667 0.040335683663330735]]]]]] [[[[[[0.17809307747241931 0.21115579077246294]]] [[[0.308926242713504 0.27819939947070493]]]] [[[[0.20238675136036222 0.3976103070124456]]] [[[0.6631819140125081 0.175652263927212]]]]] [[[[[0.35225080699239475 0.5369188137555849]]] [[[0.6323801219008788 0.3539242105581416]]]] [[[[0.8183204638552104 0.8132580661443934]]] [[[0.3254578145363235 0.6505749963319516]]]]] [[[[[0.10483507001303638 0.13565603746537036]]] [[[0.30455782355354555 0.6750827961928842]]]] [[[[0.7982289126910997 0.17070842316597412]]] [[[0.44305635062649873 0.8404558388757543]]]]]]] [[[[[[[0.6018416350286322 0.16526820578453938]]] [[[0.7463645287987208 0.5756333760675234]]]] [[[[0.6359545969553408 0.4214036289652293]]] [[[0.5283105936075293 0.4901774627535548]]]]] [[[[[0.7331254776804922 0.23114898861389366]]] [[[0.947001242811317 0.379208985646296]]]] [[[[0.44227299573510503 0.7676213628759807]]] [[[0.6715105860980808 0.021420029890546144]]]]] [[[[[0.9594501745150756 0.4111485832077887]]] [[[0.29235540416150596 0.09535219194096267]]]] [[[[0.9678292179738301 0.7603118086371945]]] [[[0.36912359593185917 0.7221785675093577]]]]]] [[[[[[0.5876568815033044 0.062149127720345976]]] [[[0.09941210190270555 0.18091358579898842]]]] [[[[0.847618555931162 0.8550683816085815]]] [[[0.3790652131646024 0.34200008604063803]]]]] [[[[[0.15684247607735158 0.16132941734663853]]] [[[0.5785009376438452 0.5067250364251219]]]] [[[[0.5306978319972955 0.12940021228478216]]] [[[0.8023057320416948 0.29847923590398184]]]]] [[[[[0.7949749612706625 0.06916322958671617]]] [[[0.9098697887013218 0.3656394543255891]]]] [[[[0.4259084913965392 0.5876698104713257]]] [[[0.015731689089873546 0.14044500167108276]]]]]] [[[[[[0.7626836753347963 0.6005343145304426]]] [[[0.0025356031484156105 0.5837769265972947]]]] [[[[0.8154620740369285 0.9973668135471344]]] [[[0.37352136488829035 0.1737243197564029]]]]] [[[[[0.5147324564421141 0.9037960468549892]]] [[[0.11828853135589468 0.4986051609250781]]]] [[[[0.3999379170301399 0.7902805261561009]]] [[[0.32554249141295966 0.5099618338299264]]]]] [[[[[0.10398470131046356 0.7153442266018376]]] [[[0.5514890896496071 0.48066891022251734]]]] [[[[0.3840269600881785 0.31119832473508446]]] [[[0.9200474902508323 0.6727743232074986]]]]]] ... [[[[[[0.31208416612795353 0.6407058454630744]]] [[[0.4773251917491833 0.8261141753250164]]]] [[[[0.8291068586924658 0.7251955799790116]]] [[[0.9468559064154032 0.2490863164670809]]]]] [[[[[0.020480316817545585 0.30442512962550894]]] [[[0.012164419461179632 0.14590487079604775]]]] [[[[0.7835300143836914 0.7748864599461827]]] [[[0.5509462617833369 0.8257928159729871]]]]] [[[[[0.26768022604304653 0.6510606570236641]]] [[[0.39393857491549455 0.32287416561711135]]]] [[[[0.6032181631019898 0.34746723952540515]]] [[[0.03028302191517529 0.004027227365989816]]]]]] [[[[[[0.6085883535835317 0.3088936121462551]]] [[[0.15554544802140136 0.3789212727980623]]]] [[[[0.5388138711160896 0.24214714138886795]]] [[[0.08290670343494055 0.6931991226072957]]]]] [[[[[0.37861827856163355 0.24997938561462796]]] [[[0.6039307721556824 0.10285411505984654]]]] [[[[0.4734650256278995 0.6522752794416824]]] [[[0.7395753509305865 0.36165601174730755]]]]] [[[[[0.7342566297388298 0.757869709543427]]] [[[0.02043032239649889 0.7435763511534703]]]] [[[[0.7669346995644615 0.8151103956020378]]] [[[0.23736523422324385 0.42985903454305985]]]]]] [[[[[[0.27517174124206156 0.1391374282533271]]] [[[0.28377892889780143 0.7451914078519501]]]] [[[[0.5499993153958499 0.004315242686526055]]] [[[0.7899057196454676 0.7836758701073262]]]]] [[[[[0.23225003208442885 0.06729495228438509]]] [[[0.1949110391844664 0.1739286979848771]]]] [[[[0.5854451353047853 0.3408130646169151]]] [[[0.801215963253527 0.7341718884346401]]]]] [[[[[0.5061177600549538 0.020979973176368683]]] [[[0.616350520520132 0.05456648601135483]]]] [[[[0.9022386274698834 0.1250915591599493]]] [[[0.9042757770356925 0.5459645829652111]]]]]]] [[[[[[[0.017245466410403698 0.9277571615947264]]] [[[0.9809821758768945 0.005297463264830493]]]] [[[[0.5789107329570585 0.17874084794491596]]] [[[0.2178375408738057 0.4213539298445539]]]]] [[[[[0.9720168000705283 0.6255830687028714]]] [[[0.1371762301946874 0.18725122719591825]]]] [[[[0.9083286445007951 0.9529968837806825]]] [[[0.7546538036462592 0.6728689652553024]]]]] [[[[[0.4927457478161429 0.75310791793554]]] [[[0.298172242564237 0.3785025731175038]]]] [[[[0.6840074862832957 0.9202376410402839]]] [[[0.987822167051611 0.0782083422535067]]]]]] [[[[[[0.44242981296879713 0.48828790027122115]]] [[[0.21845877754265364 0.03851801282011269]]]] [[[[0.7175595584063122 0.9632744597942242]]] [[[0.4489506114723698 0.2295337220783159]]]]] [[[[[0.8592423632555929 0.5626058881110548]]] [[[0.7406450358904578 0.826582102797471]]]] [[[[0.5611415148110782 0.6894013303426411]]] [[[0.18364170182443484 0.6812368109765019]]]]] [[[[[0.7403960951638906 0.7651632074866249]]] [[[0.35374367393019934 0.8893310648830033]]]] [[[[0.25646860406466965 0.5891056773073419]]] [[[0.596890845359487 0.5854142051951174]]]]]] [[[[[[0.9262145625028417 0.18155263685320655]]] [[[0.11903202266315815 0.925510281987068]]]] [[[[0.5471096911552048 0.21732950223629932]]] [[[0.24211937863805288 0.9630801698589727]]]]] [[[[[0.9977559919076052 0.6197876481221306]]] [[[0.5652737956497123 0.5718722442763994]]]] [[[[0.048137370098086274 0.8153736442780434]]] [[[0.007912463785114676 0.5319031820878475]]]]] [[[[[0.12830254287080411 0.12744904568196092]]] [[[0.7413523947771901 0.3702398716505074]]]] [[[[0.37779223411999685 0.9411490617389907]]] [[[0.775703460133411 0.3727304218909179]]]]]] ... [[[[[[0.03889662608536648 0.030735632344951136]]] [[[0.5280588406110097 0.7534655788699496]]]] [[[[0.6892891198208139 0.08024124955560763]]] [[[0.43703708998959634 0.5899609641117067]]]]] [[[[[0.1000247881004066 0.76194389169172]]] [[[0.8835769611962241 0.9863658549967197]]]] [[[[0.9308194668928884 0.9660106340097051]]] [[[0.27662472775866964 0.8665813231933932]]]]] [[[[[0.8661644372809638 0.516666737194061]]] [[[0.028410013619916574 0.5752561956289023]]]] [[[[0.46027784145864237 0.6471712320212456]]] [[[0.9451504225183585 0.8472319562740876]]]]]] [[[[[[0.8438855938420683 0.4105656342659638]]] [[[0.3665510005504786 0.11939685375528841]]]] [[[[0.579142897382376 0.2025158517198643]]] [[[0.829427214216903 0.8870680686275271]]]]] [[[[[0.4193341771532324 0.14210503011304731]]] [[[0.6830716008631711 0.4305817831868778]]]] [[[[0.47165332046778596 0.33563601460984294]]] [[[0.8546544968641997 0.812170035626141]]]]] [[[[[0.9984876402358525 0.3348641306534823]]] [[[0.18983286699330115 0.817780408666926]]]] [[[[0.3386375989712096 0.43914817381261595]]] [[[0.1382429132116929 0.96885150725071]]]]]] [[[[[[0.6130994873683759 0.7482865105341949]]] [[[0.4324738836542257 0.3519912311445227]]]] [[[[0.18655610800516276 0.9251021268357298]]] [[[0.4164011765951109 0.9253035609178603]]]]] [[[[[0.29323617542682656 0.746621467577628]]] [[[0.3156312369190142 0.7728550662350943]]]] [[[[0.35119136309773147 0.07215771734741516]]] [[[0.37717912154356315 0.5045725820286572]]]]] [[[[[0.5079277771299003 0.8362413191266417]]] [[[0.04142911226338808 0.9595857996132765]]]] [[[[0.5284775004023109 0.24519381044574895]]] [[[0.4806385871017298 0.702327221896487]]]]]]]] [[[[[[[[0.15242643580001602 0.09482583075433926]]] [[[0.7234643277262344 0.8836203086756378]]]] [[[[0.2875343120005003 0.7488161738303143]]] [[[0.2676786695153608 0.003723551525936175]]]]] [[[[[0.31623620120855467 0.2551449478584812]]] [[[0.40520467906509094 0.10604578439476764]]]] [[[[0.28238116161146776 0.692610211200648]]] [[[0.6351055628322732 0.03570386736711284]]]]] [[[[[0.2655690033561974 0.6120480048293108]]] [[[0.800616814178305 0.11952871471382309]]]] [[[[0.7867029465255719 0.3764629856870969]]] [[[0.688452128828347 0.4106322724782031]]]]]] [[[[[[0.8458444823840454 0.08373177752320016]]] [[[0.393251307560884 0.6119347956397714]]]] [[[[0.5690187889927699 0.5031045634384843]]] [[[0.3953775596781829 0.7115042911637703]]]]] [[[[[0.8896504782011301 0.526911770684435]]] [[[0.11796872200635666 0.6362709565208603]]]] [[[[0.28064634150197965 0.9932805779447375]]] [[[0.7373091185169997 0.45297521984197753]]]]] [[[[[0.502626548125958 0.4590310179405864]]] [[[0.5332239962962979 0.28003773471901516]]]] [[[[0.46822832377110446 0.24178751492006856]]] [[[0.5960803081362314 0.9574675268933788]]]]]] [[[[[[0.3083315289013091 0.7357136278182375]]] [[[0.14029914546054456 0.440909859511749]]]] [[[[0.45812651859311404 0.5345798219668896]]] [[[0.6391136003381743 0.010828386672641632]]]]] [[[[[0.8939235608746117 0.10524212638950303]]] [[[0.43578968822785813 0.5973330615945173]]]] [[[[0.812141382054193 0.28921606034550473]]] [[[0.006227705943353534 0.43455314705948456]]]]] [[[[[0.2855065730983257 0.6860680435109741]]] [[[0.3144497932796516 0.9466812146673802]]]] [[[[0.25551333835610035 0.06969033584026163]]] [[[0.3159304118832741 0.5836984095942906]]]]]] ... [[[[[[0.6945494163369487 0.5158327153133985]]] [[[0.6656221278582246 0.43964056134340046]]]] [[[[0.26287293037886483 0.8969956694692753]]] [[[0.9986421633493158 0.08479249421236223]]]]] [[[[[0.830770924089229 0.5737976554175441]]] [[[0.49630411633299354 0.4083587693919317]]]] [[[[0.2063368414534269 0.33361819261292003]]] [[[0.1436384231790495 0.7268086981105392]]]]] [[[[[0.8084690228179015 0.5549505392373003]]] [[[0.7699101377568098 0.4211095854960639]]]] [[[[0.2493316964052581 0.7645364840535877]]] [[[0.5251219468844602 0.21213726211225925]]]]]] [[[[[[0.7416978136823272 0.07947007419497698]]] [[[0.07321975297749239 0.19688761717104897]]]] [[[[0.16753828307891583 0.8806881455620297]]] [[[0.8628567681046988 0.1911935533565311]]]]] [[[[[0.7636490428422904 0.10227165503149349]]] [[[0.8722333252926298 0.44037678765777777]]]] [[[[0.23410670811238998 0.7195409269578223]]] [[[0.7771588651777654 0.7831502414179417]]]]] [[[[[0.3321200898387454 0.9367543669453634]]] [[[0.9211550877218221 0.17658037719353392]]]] [[[[0.39150677730679273 0.14648569274951695]]] [[[0.8732588306201291 0.014434947318668123]]]]]] [[[[[[0.2872790034150542 0.8796799817451927]]] [[[0.5611512850751774 0.8220560938449714]]]] [[[[0.9865527928503072 0.02006128933809659]]] [[[0.7251362787288229 0.7468046745913197]]]]] [[[[[0.2695424763809682 0.2755725963366311]]] [[[0.49869251629424893 0.016658636338863997]]]] [[[[0.09014119336772575 0.6283095147459369]]] [[[0.10173330735461483 0.9873596277445806]]]]] [[[[[0.7079921960156599 0.9449649177952913]]] [[[0.6507216752029289 0.38961619076140785]]]] [[[[0.7270090002049971 0.6330763856577005]]] [[[0.676116803859856 0.9467336741185959]]]]]]] [[[[[[[0.5481945205426699 0.18127559575790186]]] [[[0.06155651204836765 0.34084242753128347]]]] [[[[0.5822911058550194 0.5039623060000914]]] [[[0.994001397894804 0.2133407270529778]]]]] [[[[[0.63051544454801 0.9214235787077985]]] [[[0.5192675147198087 0.9552163465262412]]]] [[[[0.8795993206822028 0.16658314748617264]]] [[[0.7231838984729982 0.6867456157995796]]]]] [[[[[0.6010366031540488 0.46199405947166794]]] [[[0.13282805762754524 0.24106351131111048]]]] [[[[0.09077193037050324 0.8638195021734524]]] [[[0.4061384468844005 0.2515334570703387]]]]]] [[[[[[0.8956436023149987 0.700524855729291]]] [[[0.03143321392208753 0.10299767288437589]]]] [[[[0.44775171600025643 0.9425753224935496]]] [[[0.619569320494805 0.2957110946285011]]]]] [[[[[0.9395625702281531 0.41977981365588646]]] [[[0.17172647976083655 0.6801862346138408]]]] [[[[0.8766746506050541 0.19651502018241396]]] [[[0.30054159305630024 0.8057345142098028]]]]] [[[[[0.9454307288805817 0.7263828554883702]]] [[[0.9016059797196575 0.6337443480226614]]]] [[[[7.992425098990452e-05 0.8616624002776236]]] [[[0.35965571606509994 0.6350718660489185]]]]]] [[[[[[0.5543537998269608 0.028795357833056312]]] [[[0.45193250366616233 0.9896638994496652]]]] [[[[0.5920388564645925 0.18336039017969552]]] [[[0.5652945746422323 0.3728261725102844]]]]] [[[[[0.9345412440655011 0.6186548699868731]]] [[[0.8478854882568827 0.9429866491053845]]]] [[[[0.7868995745870162 0.7423777348232373]]] [[[0.8359105387474337 0.4757854417137449]]]]] [[[[[0.6561859208062061 0.5358921739188068]]] [[[0.9370005879594202 0.609678548442406]]]] [[[[0.5981499448459399 0.5945350280328893]]] [[[0.03540650151309632 0.921228041229464]]]]]] ... [[[[[[0.5283211430916024 0.2535508053903882]]] [[[0.9667058802976858 0.5252551506396075]]]] [[[[0.9951696288658846 0.5004597041222084]]] [[[0.1691384111789599 0.49021762478693387]]]]] [[[[[0.21292694534914758 0.6449324303350584]]] [[[0.7502138679134626 0.6546585764246496]]]] [[[[0.2328355545739671 0.1723376470427076]]] [[[0.8359673371744671 0.48680115546950664]]]]] [[[[[0.44696826028854764 0.09264633016200718]]] [[[0.8716315781461569 0.8292746271758045]]]] [[[[0.5455858705456387 0.7935415245298524]]] [[[0.9783233375135074 0.08032600954310265]]]]]] [[[[[[0.36801682632205013 0.12215228808495282]]] [[[0.18452924480415556 0.6957160778020851]]]] [[[[0.05616866302652279 0.9932969977227429]]] [[[0.8698068998862442 0.7681626211779619]]]]] [[[[[0.9461955691473917 0.15042430293801157]]] [[[0.06772521726451619 0.29635618778400963]]]] [[[[0.9440772934724002 0.3427066739929585]]] [[[0.17376847104305881 0.09431778330279328]]]]] [[[[[0.5734120236960204 0.3996422353129665]]] [[[0.7955922996298384 0.7475793584907137]]]] [[[[0.809977696023901 0.5383341148211337]]] [[[0.09332160251643296 0.06382193276959303]]]]]] [[[[[[0.0036887294058403075 0.39893707101508935]]] [[[0.5546743703766872 0.5570476223255404]]]] [[[[0.6865859347303855 0.25633619467617497]]] [[[0.2486695641103317 0.6961888947684611]]]]] [[[[[0.7437125374140375 0.33794101509503705]]] [[[0.3448281599937906 0.28649179416097037]]]] [[[[0.8493471834035492 0.16592207850007923]]] [[[0.8689100794590425 0.4971996419006117]]]]] [[[[[0.6107734921461155 0.37503504624656747]]] [[[0.2741182510569218 0.7625941079948817]]]] [[[[0.469612778234076 0.8618766226751885]]] [[[0.8220017551900825 0.9040894571483008]]]]]]] [[[[[[[0.9314277798024694 0.31180429171527246]]] [[[0.5508367170599154 0.2705111988771073]]]] [[[[0.2214067375272316 0.6892714956439526]]] [[[0.8768120008192959 0.07027633932521415]]]]] [[[[[0.4444346636073442 0.34689215483147284]]] [[[0.23081063118653788 0.8014787676194399]]]] [[[[0.9098772419784693 0.9169846436388659]]] [[[0.6410786027702229 0.7396947392645928]]]]] [[[[[0.14881632198253836 0.2950685633880794]]] [[[0.8804991098913801 0.13442173191805273]]]] [[[[0.4489702805786373 0.9848855713391835]]] [[[0.2927128607332492 0.5654428029611674]]]]]] [[[[[[0.03860272573518808 0.2642024707487638]]] [[[0.5635231205937736 0.708529063817633]]]] [[[[0.1625917709719219 0.9617041997425438]]] [[[0.6862832115757943 0.9365749543961724]]]]] [[[[[0.23273253532218874 0.047924941933086385]]] [[[0.7843451030272333 0.01395608235685919]]]] [[[[0.4925862811128534 0.18672052617110246]]] [[[0.7125066212415087 0.5972807502650925]]]]] [[[[[0.6056235169719383 0.3868724393578936]]] [[[0.4728505628723201 0.6034334836187235]]]] [[[[0.2684261074463983 0.6858533332427597]]] [[[0.9067238343800125 0.5179372367120917]]]]]] [[[[[[0.4138564426814003 0.5796322351588743]]] [[[0.8066357875874274 0.40970309744844036]]]] [[[[0.5486952334619674 0.9847421553703077]]] [[[0.40269572970134226 0.1797421931523867]]]]] [[[[[0.16194662972498286 0.06358649066384403]]] [[[0.98456305020244 0.4491239841961402]]]] [[[[0.4179046793190345 0.6048767101779943]]] [[[0.6187790305227394 0.26436626867877844]]]]] [[[[[0.7030055090003818 0.4029714184279095]]] [[[0.8892072433519934 0.3499130717884865]]]] [[[[0.99750372628408 0.4756122634081007]]] [[[0.09561692702105495 0.18234312957097776]]]]]] ... [[[[[[0.5623355084966213 0.35669450084171783]]] [[[0.7607977358425444 0.9831838943748277]]]] [[[[0.38985397329092875 0.3804073509227244]]] [[[0.4930489344759855 0.479919438649026]]]]] [[[[[0.9780636137048336 0.01699799205234731]]] [[[0.3477156623834805 0.26697802129812664]]]] [[[[0.8134688074436305 0.8781329166671962]]] [[[0.4110302079378081 0.9476501924046129]]]]] [[[[[0.641208444134901 0.26455169743700324]]] [[[0.1763261165906671 0.9195063351004991]]]] [[[[0.532447085405909 0.5529364508368286]]] [[[0.8430450468364235 0.3454355839770057]]]]]] [[[[[[0.01693877161609414 0.18289199948451584]]] [[[0.16494106702738354 0.998285284097322]]]] [[[[0.7839634743985266 0.9702136176178855]]] [[[0.35670167550343324 0.5897453690245268]]]]] [[[[[0.940860268028429 0.6610130123210335]]] [[[0.4519101811717753 0.9430032093239737]]]] [[[[0.06321157428962632 0.030970861050262477]]] [[[0.012816460675654784 0.9127523568701896]]]]] [[[[[0.9924406824648319 0.39170285178468855]]] [[[0.09273497329619051 0.5922633742972743]]]] [[[[0.43570855612666703 0.8242468183842983]]] [[[0.9228971952543594 0.5217230071315067]]]]]] [[[[[[0.3814000232822773 0.337025048014182]]] [[[0.30161273819849466 0.8439457054517455]]]] [[[[0.0750777528349652 0.5172003102907498]]] [[[0.9271827803227639 0.030547987263883192]]]]] [[[[[0.028122049226408374 0.4219227610586096]]] [[[0.12158190685058501 0.017761635684348853]]]] [[[[0.01490329731123019 0.77811229172464]]] [[[0.7869013559143812 0.9228561960675695]]]]] [[[[[0.8586619375481772 0.7981795506047363]]] [[[0.6070608690437427 0.04341686026641389]]]] [[[[0.5844712606561416 0.7319242633354548]]] [[[0.5384967510163691 0.13087487033755185]]]]]]] [[[[[[[0.24894203226799072 0.743917972783283]]] [[[0.03591870220380178 0.4361223290823425]]]] [[[[0.6919600041311124 0.21848533830472017]]] [[[0.868750307917065 0.778526508763257]]]]] [[[[[0.34441436338213116 0.6128238674367735]]] [[[0.6413899714344141 0.7918984615190084]]]] [[[[0.38067244778112896 0.8489662028219284]]] [[[0.7588327946969137 0.7448502564645625]]]]] [[[[[0.5327441654711932 0.629860943065857]]] [[[0.24951189347592373 0.8274124658332803]]]] [[[[0.7953826315791973 0.963740593993483]]] [[[0.5791300114278306 0.370943805869852]]]]]] [[[[[[0.4828085149210535 0.0950660380622611]]] [[[0.7039682180076136 0.5101547296343837]]]] [[[[0.7348558585626763 0.07761624154888747]]] [[[0.6976530858578791 0.8692301971560896]]]]] [[[[[0.48662140095508755 0.18577640068144874]]] [[[0.401151899878036 0.40208536507502834]]]] [[[[0.6035914535188645 0.16021794793341104]]] [[[0.9600625533879547 0.1858890844847677]]]]] [[[[[0.09732140284739677 0.7792488271326544]]] [[[0.8087746731193514 0.2844898515310481]]]] [[[[0.40022090827956736 0.40519046565403893]]] [[[0.5234354556787192 0.0399886887050287]]]]]] [[[[[[0.5036585058231174 0.40112425069876034]]] [[[0.46824956941352447 0.4432001005237891]]]] [[[[0.5364446656525109 0.4525959491395245]]] [[[0.4218031434089966 0.3183246250992744]]]]] [[[[[0.3544186234833062 0.36417124618250996]]] [[[0.3387618563659215 0.9695489159470149]]]] [[[[0.3822372131606159 0.685030141271349]]] [[[0.7088472147942411 0.8393955871876202]]]]] [[[[[0.10077096794259965 0.40111486091251003]]] [[[0.42618230940414725 0.4191106969632312]]]] [[[[0.9220445895949467 0.12594168887937018]]] [[[0.8806132013298518 0.45036824663514785]]]]]] ... [[[[[[0.8166871641684991 0.5842373314374508]]] [[[0.28360341480813656 0.23826819904670837]]]] [[[[0.9618408268373885 0.5830422638498284]]] [[[0.2915823242181875 0.9303414306154597]]]]] [[[[[0.05151909448714975 0.6760072040820471]]] [[[0.5191643770753626 0.40014882066190716]]]] [[[[0.9461350632354615 0.3281168253531913]]] [[[0.32037202570385426 0.951994886711548]]]]] [[[[[0.4479290346825283 0.9887041562393551]]] [[[0.7765331712771972 0.7793946848649204]]]] [[[[0.30321695403978965 0.4956204360809042]]] [[[0.6503521918107927 0.9450147409441649]]]]]] [[[[[[0.34908679907565066 0.5536354036131769]]] [[[0.1614657376839218 0.0761102063577419]]]] [[[[0.7543659210072985 0.37807298933403455]]] [[[0.2237045530635865 0.2088243110421819]]]]] [[[[[0.7520593092880027 0.39881001102178204]]] [[[0.273707442217455 0.6858681646225713]]]] [[[[0.5661949079961791 0.9203001902533251]]] [[[0.8759450521404325 0.6418486954214737]]]]] [[[[[0.4777931429466825 0.5162521658409063]]] [[[0.12359551505926258 0.6233506199286188]]]] [[[[0.15326595611788318 0.2377342488803037]]] [[[0.9689905073562278 0.012586493069843496]]]]]] [[[[[[0.023627155833494062 0.3121549061560054]]] [[[0.24357312698862665 0.4785138966452839]]]] [[[[0.20782778851887107 0.4214947432487264]]] [[[0.4339718737286943 0.9028493514192203]]]]] [[[[[0.22784948234127433 0.07754529318435699]]] [[[0.07841149516115586 0.22830362849626296]]]] [[[[0.01511119673476402 0.6487793129313739]]] [[[0.22701816941707642 0.15981920612956302]]]]] [[[[[0.04070784312749032 0.10241740429747959]]] [[[0.40838305787393714 0.9734189315750708]]]] [[[[0.41141970167693664 0.46870057484427385]]] [[[0.9303767889428549 0.2625081073171215]]]]]]]]]
Units SF6 gigagram/year - CH4(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CH4·Gg/a] 0.8001 ... 0.05255
- entity :
- CH4
Magnitude [[[[[[[[[0.8001204566139783 0.3164203903622753]]] [[[0.6500343213083958 0.6109896948386415]]]] [[[[0.9621272395086313 0.5853062262002102]]] [[[0.671589386074321 0.913246603758031]]]]] [[[[[0.29464878007028483 0.5847427440391003]]] [[[0.6986966828895634 0.17667256206378168]]]] [[[[0.45529594669688467 0.703116972625481]]] [[[0.13394822444347476 0.270309733556626]]]]] [[[[[0.2899360054818434 0.989537838334468]]] [[[0.4703878412663799 0.7988285875837927]]]] [[[[0.017177793734579283 0.08922388822305327]]] [[[0.8413412026945005 0.2345898234228846]]]]]] [[[[[[0.3166963824550728 0.4895948849396279]]] [[[0.042835651798680874 0.8201338300228561]]]] [[[[0.9990473668022163 0.7238393715522282]]] [[[0.725659311816165 0.5100118075102522]]]]] [[[[[0.9760611315462182 0.0022913421444913373]]] [[[0.510650085732634 0.46312452772666846]]]] [[[[0.8773638297918478 0.6436047713369119]]] [[[0.43054460994769594 0.7561900790680244]]]]] [[[[[0.9922173250888943 0.5528903612274116]]] [[[0.2957313152624482 0.8498716348726858]]]] [[[[0.4362898328411031 0.18714958396673476]]] [[[0.9880208831074285 0.5968072023833512]]]]]] [[[[[[0.951487422600969 0.06523065495193636]]] [[[0.13009178566034774 0.8003302265227048]]]] [[[[0.4609927055363642 0.8428506733836375]]] [[[0.7414604725664435 0.481532889964425]]]]] [[[[[0.5375291386138584 0.964881476813129]]] [[[0.13524486987428508 0.44652653108051343]]]] [[[[0.5185797004951561 0.031167210579760685]]] [[[0.7089647582792207 0.1771616282526015]]]]] [[[[[0.27260934843071816 0.009621379451071554]]] [[[0.9756806523520517 0.22187555301218576]]]] [[[[0.7088944855093169 0.8600392667553288]]] [[[0.7297511377934581 0.10476972145106966]]]]]] ... [[[[[[0.7828580857457353 0.9774186511354082]]] [[[0.37210156614905565 0.28386217619992316]]]] [[[[0.7428511751091478 0.2063878090267388]]] [[[0.1364295636430619 0.332620429292645]]]]] [[[[[0.14360743052929703 0.05840331553582878]]] [[[0.24316910749892984 0.6864595367190334]]]] [[[[0.3645106128978569 0.5315013401989889]]] [[[0.7586886264861447 0.7039284296463757]]]]] [[[[[0.8724818202092866 0.6530779547576475]]] [[[0.38035924996905346 0.03860757676542104]]]] [[[[0.8878330827452822 0.8162399878474824]]] [[[0.12064230328961012 0.9959733492763813]]]]]] [[[[[[0.9194047049776534 0.02092457151189331]]] [[[0.44419270676630396 0.9863117002642195]]]] [[[[0.15415200915923077 0.18871452789471643]]] [[[0.6853370735767076 0.36173367331411277]]]]] [[[[[0.07066109023949041 0.7834829999751509]]] [[[0.3243755406834933 0.11327500988174466]]]] [[[[0.03456732101453053 0.7219742326854464]]] [[[0.8276548180161233 0.6639964423957093]]]]] [[[[[0.23084320684137116 0.8085912102555338]]] [[[0.3437822816225914 0.5359569315994138]]]] [[[[0.13676519503068207 0.8085529785031549]]] [[[0.14192470619889153 0.017844648590763734]]]]]] [[[[[[0.9541640253434501 0.976221198427879]]] [[[0.8688071685985633 0.7305043316391884]]]] [[[[0.10355162840101084 0.8891514213286542]]] [[[0.04624874975593196 0.8634355936919448]]]]] [[[[[0.04811373463717605 0.8296789715110284]]] [[[0.7220095807775414 0.16738807730575145]]]] [[[[0.7090699785592047 0.9663791810354531]]] [[[0.2105329726095465 0.4787417307219308]]]]] [[[[[0.03722240076525307 0.09505733209600542]]] [[[0.8985078266043557 0.5878986303876249]]]] [[[[0.7875906612923725 0.046658021168548336]]] [[[0.37657322963520445 0.6986426644491511]]]]]]] [[[[[[[0.5532686333998302 0.0343134059799135]]] [[[0.31337042373883495 0.49465182770307903]]]] [[[[4.20256919784201e-05 0.8339761019800332]]] [[[0.9014498815903452 0.9932812824914024]]]]] [[[[[0.43631919947277753 0.16894961745166925]]] [[[0.6344985111052214 0.28542734302962025]]]] [[[[0.8314982081399813 0.732039080617976]]] [[[0.2039800304728353 0.6895827439314998]]]]] [[[[[0.4373135733415786 0.26594434817518897]]] [[[0.18262078534792714 0.14154203027046042]]]] [[[[0.056246642344270126 0.7589439098751186]]] [[[0.2005596871277615 0.1914412494323684]]]]]] [[[[[[0.34966443821506477 0.5929866620387443]]] [[[0.2158706987157345 0.8556696053422986]]]] [[[[0.9829741637470379 0.8979879314163544]]] [[[0.4878329732475516 0.22748089209315203]]]]] [[[[[0.5629691007047789 0.9809015796828799]]] [[[0.99031058581684 0.5051572852989704]]]] [[[[0.19092487932057867 0.29927421731716874]]] [[[0.3440914702078247 0.9116185025104319]]]]] [[[[[0.15010734631798672 0.015663854351481432]]] [[[0.46550797987271164 0.39646368034470647]]]] [[[[0.6581763580122737 0.7915276620207509]]] [[[0.0699159404260129 0.2090096696824073]]]]]] [[[[[[0.7911520452737194 0.6732214817219018]]] [[[0.5931467999673349 0.056636848426380504]]]] [[[[0.1857546191869357 0.19798446826138594]]] [[[0.42128271740022416 0.5696476185391465]]]]] [[[[[0.58824204414762 0.09542505832630632]]] [[[0.48931946585736075 0.4482419631373339]]]] [[[[0.3642055779989235 0.16295163025832204]]] [[[0.9055702833883312 0.3683450219231619]]]]] [[[[[0.07329475554572451 0.42565566539795174]]] [[[0.10993144314905168 0.7431764938717097]]]] [[[[0.816521366183536 0.972419181591947]]] [[[0.7682932269109222 0.9897939254682324]]]]]] ... [[[[[[0.2859087663167478 0.017709233174615813]]] [[[0.24532024583501966 0.30468094105711174]]]] [[[[0.6831675429811694 0.8729795304047328]]] [[[0.16470585179060981 0.12744823126843163]]]]] [[[[[0.32271798041862876 0.5230552323909411]]] [[[0.12509694677617422 0.25674615117206034]]]] [[[[0.011997167952384147 0.9562603507252426]]] [[[0.18528402980881664 0.9407796962079921]]]]] [[[[[0.1939667378923422 0.18574519646554044]]] [[[0.9396422982204378 0.8722049895118008]]]] [[[[0.579281517652685 0.7223500544702834]]] [[[0.5572354433391211 0.5106336416384613]]]]]] [[[[[[0.3263580123924643 0.08768514192153387]]] [[[0.3835301195114674 0.6612396849075047]]]] [[[[0.2754951811262304 0.44188875307534636]]] [[[0.533863122051459 0.6612852703392674]]]]] [[[[[0.5293262492091985 0.17091550437574177]]] [[[0.6046489905798185 0.2090743185207905]]]] [[[[0.9494827261692782 0.0955049384979536]]] [[[0.30134564088346105 0.17859602094961202]]]]] [[[[[0.5524155848783938 0.1047996432511552]]] [[[0.5785916072097342 0.9241873896706514]]]] [[[[0.6403017690860557 0.5246695578338909]]] [[[0.6763254980933554 0.8268189925703097]]]]]] [[[[[[0.10566917131482723 0.7107227101809452]]] [[[0.08256567309395446 0.8402173537605386]]]] [[[[0.34778053637520334 0.9927810508248377]]] [[[0.27998777773487427 0.41201338015814726]]]]] [[[[[0.49298037349948975 0.03211792674826597]]] [[[0.37294890970768324 0.40263374494555737]]]] [[[[0.8195551757137907 0.711776755032679]]] [[[0.7450273367707894 0.09900736017176959]]]]] [[[[[0.3571315057444068 0.6899749530058128]]] [[[0.6052992270409217 0.15375332215393844]]]] [[[[0.029035441581209076 0.1664654428532072]]] [[[0.341086839376055 0.2868499628893888]]]]]]] [[[[[[[0.16290379037088498 0.20191749926989833]]] [[[0.5716157045443886 0.6492601764033932]]]] [[[[0.632868936803074 0.43461518338198035]]] [[[0.10057545008178159 0.7860551288850126]]]]] [[[[[0.14990820583875342 0.11329408802292384]]] [[[0.7646986138839438 0.9932685891062331]]]] [[[[0.28782866740211355 0.16755100786720412]]] [[[0.5473599112251734 0.036988085453924624]]]]] [[[[[0.8413379526303524 0.19183229365664212]]] [[[0.8695373691326852 0.1461792653003111]]]] [[[[0.341087029901349 0.09656654512628549]]] [[[0.8802374136220026 0.948030057359063]]]]]] [[[[[[0.6046309003496299 0.33619482146141444]]] [[[0.2185687146060259 0.6395324722836206]]]] [[[[0.3183780020471888 0.21549917421208686]]] [[[0.19303222219568683 0.33872595807009553]]]]] [[[[[0.21187411780995824 0.5958267928270348]]] [[[0.029435027290303672 0.6674003655730826]]]] [[[[0.5534551317802587 0.4310176225460888]]] [[[0.07746280436235409 0.5887529864032487]]]]] [[[[[0.534110796095376 0.25571624269836934]]] [[[0.536819659459192 0.24557960233412823]]]] [[[[0.040158067890923466 0.5232261134963372]]] [[[0.7913451380860745 0.17137848100391517]]]]]] [[[[[[0.25504529902737605 0.37214721997863887]]] [[[0.9021442368402618 0.2207209819681032]]]] [[[[0.10379649324828966 0.5084546541169584]]] [[[0.38897418590904675 0.5262058901858977]]]]] [[[[[0.3716054741232073 0.6372289746164063]]] [[[0.9822307955152784 0.7618583764698206]]]] [[[[0.17912636485225142 0.8723990756063664]]] [[[0.9713708252074179 0.9192148556562064]]]]] [[[[[0.7933817281684796 0.9103635960519835]]] [[[0.173252251402505 0.6175396470343044]]]] [[[[0.05840396665043934 0.145682632230842]]] [[[0.9898875129272756 0.96629985264139]]]]]] ... [[[[[[0.977247914736553 0.487860020493342]]] [[[0.7952540813398862 0.3115013035612455]]]] [[[[0.39203942094497346 0.2333913019469248]]] [[[0.7838220497350542 0.86346606070939]]]]] [[[[[0.4896480601062835 0.9680306603237897]]] [[[0.9820746566683064 0.9404164814171316]]]] [[[[0.7341508707066912 0.26564734335764983]]] [[[0.6511599246031952 0.9221607768715125]]]]] [[[[[0.7006856407112095 0.2280607247813058]]] [[[0.48077557615416266 0.20762339701746912]]]] [[[[0.7968413143785591 0.9181584999049914]]] [[[0.2124674859729988 0.41129195028792]]]]]] [[[[[[0.7558499920552102 0.9707702181511431]]] [[[0.19897597751807417 0.4182046770465673]]]] [[[[0.8968200386990797 0.9753008122540826]]] [[[0.07140112231499451 0.05903665485515819]]]]] [[[[[0.9293585440308371 0.9223159532481255]]] [[[0.08050322428400625 0.6588908562589466]]]] [[[[0.21164206991631573 0.2911099034639022]]] [[[0.2858342203455664 0.988080328639669]]]]] [[[[[0.5351481815997482 0.6614007479178455]]] [[[0.6881167844406522 0.7067737114502758]]]] [[[[0.3192431264865536 0.20129574856678223]]] [[[0.8615356301750465 0.5550217661016031]]]]]] [[[[[[0.855981270646818 0.2191344549852281]]] [[[0.24332392771647182 0.827547626158869]]]] [[[[0.12106115704655318 0.5332856502366016]]] [[[0.09225510182896524 0.8959685939689994]]]]] [[[[[0.5286348543983128 0.630335803255821]]] [[[0.5139407831154437 0.8075128443010482]]]] [[[[0.2161532019325958 0.7598100575415716]]] [[[0.0302087516181081 0.2821962174609872]]]]] [[[[[0.9590603717467205 0.4897900815407189]]] [[[0.6677176856659693 0.21223194744132445]]]] [[[[0.03238894190897257 0.672276813633584]]] [[[0.506896143467176 0.4195336611136783]]]]]]] [[[[[[[0.17244133522536698 0.13879321328195893]]] [[[0.595829380280783 0.18081815914050026]]]] [[[[0.2312835639950298 0.6767720232543073]]] [[[0.6636587360693176 0.9847565801994811]]]]] [[[[[0.11356145333024592 0.8428442826387097]]] [[[0.6739467568182248 0.8241705949217016]]]] [[[[0.24866219922631116 0.41099296548401065]]] [[[0.8177246127972388 0.38775081693533364]]]]] [[[[[0.21106771635685762 0.2860192801092424]]] [[[0.5109691743985654 0.9309977140573564]]]] [[[[0.5857016059255773 0.4634148938329725]]] [[[0.07488147242567067 0.17160244967468619]]]]]] [[[[[[0.09606444274703685 0.7401282723982365]]] [[[0.14243258004145043 0.5894364254569634]]]] [[[[0.5354710955056402 0.6986071816374365]]] [[[0.1720938523707255 0.11850195907061312]]]]] [[[[[0.6398483609436947 0.1537355072047446]]] [[[0.31251528376391946 0.7815276894293391]]]] [[[[0.6363192753944646 0.6936112699814805]]] [[[0.1793549470976339 0.7013089159342845]]]]] [[[[[0.19907133221057938 0.26429256524562894]]] [[[0.7383564634425014 0.8049629838222535]]]] [[[[0.37539785581725726 0.16637184596683863]]] [[[0.17470392203698348 0.1330642091880846]]]]]] [[[[[[0.019936303525761367 0.443112153675546]]] [[[0.20331324403586437 0.28594708125556]]]] [[[[0.0688159447058343 0.4747880803595239]]] [[[0.41042844779018195 0.8505443003133347]]]]] [[[[[0.6199774051495198 0.37900292177427697]]] [[[0.4813360562721887 0.8784870663997613]]]] [[[[0.05198715700151746 0.9661687986796259]]] [[[0.9892436840927381 0.4625567508324673]]]]] [[[[[0.8626079154579983 0.5871273216775057]]] [[[0.24144979570442193 0.4485675348122591]]]] [[[[0.3298260478669446 0.08831180632568758]]] [[[0.6885690280040077 0.18983254377137027]]]]]] ... [[[[[[0.09352421795415045 0.2267526038414418]]] [[[0.20416916224015713 0.42404869478251705]]]] [[[[0.06787418557894975 0.8882118153620606]]] [[[0.8243514117270441 0.3704452961111907]]]]] [[[[[0.2278218592913197 0.3430513105008419]]] [[[0.5272417247157237 0.14167035729532773]]]] [[[[0.52255893002278 0.9728571583125034]]] [[[0.3243278336409863 0.8671867694609189]]]]] [[[[[0.3583183305804384 0.013178270046643625]]] [[[0.8541856935804224 0.9276028445653345]]]] [[[[0.7909164310930102 0.09969815127821635]]] [[[0.4386008130097643 0.09894343480206114]]]]]] [[[[[[0.225069963320632 0.10058870841785128]]] [[[0.27377701514024566 0.7401290646644938]]]] [[[[0.8235688256315138 0.7487361837776174]]] [[[0.19702712206062 0.19290819390199188]]]]] [[[[[0.4906896479345537 0.23002281600328944]]] [[[0.31430752167215936 0.7397690306426502]]]] [[[[0.9812211982911091 0.6229990527697097]]] [[[0.42213245993496407 0.7097994311706046]]]]] [[[[[0.9610999262021752 0.8107256558696297]]] [[[0.19496056359696723 0.9285197838789456]]]] [[[[0.9479861183920076 0.7758289167724961]]] [[[0.5752174121388434 0.5501254779635281]]]]]] [[[[[[0.3167957845513204 0.7709206577903972]]] [[[0.9493848053535577 0.5797444514152722]]]] [[[[0.9048160085671907 0.8982051600968495]]] [[[0.8687780061276565 0.8546042985960517]]]]] [[[[[0.02218524522149612 0.619267333452963]]] [[[0.5270454682241329 0.3157505429752093]]]] [[[[0.28420573683403183 0.5359196333489561]]] [[[0.12920242435049 0.745852890927817]]]]] [[[[[0.39228271762348543 0.2346028367476588]]] [[[0.2860387280706562 0.48888208016728796]]]] [[[[0.8683750922050819 0.6560441754694609]]] [[[0.14683002556500413 0.5442209496648595]]]]]]]] [[[[[[[[0.36166659948570756 0.30428297500334445]]] [[[0.05687241122879649 0.7340573794823518]]]] [[[[0.07707009929790098 0.8625187745835696]]] [[[0.5800994303838874 0.23992216247442588]]]]] [[[[[0.838398683793453 0.2895021573081007]]] [[[0.3611669936452935 0.9913012357661948]]]] [[[[0.004228444552817234 0.9597418805839201]]] [[[0.42639153255549966 0.9149240320331034]]]]] [[[[[0.45293462659606043 0.5876570738211951]]] [[[0.09195219726567083 0.33221275797126615]]]] [[[[0.6860927987145456 0.616295398204291]]] [[[0.7584256090870272 0.958084024384213]]]]]] [[[[[[0.7824398780312952 0.829320491949839]]] [[[0.2947376543793858 0.41775839557362293]]]] [[[[0.8291576402190286 0.9030966166500407]]] [[[0.617226333439735 0.4363208339438429]]]]] [[[[[0.801158786848568 0.4405148234564441]]] [[[0.30705462143291595 0.37426672542932493]]]] [[[[0.2359629021094536 0.417830805539225]]] [[[0.3400075263091188 0.1339100257427136]]]]] [[[[[0.08093644591542859 0.5554153023137194]]] [[[0.003327749316513251 0.5284408820532487]]]] [[[[0.9737552422906223 0.5268385513438613]]] [[[0.5464412613325558 0.7185260800473685]]]]]] [[[[[[0.5255363002166943 0.4531117069539451]]] [[[0.08581752059101944 0.19723085825208808]]]] [[[[0.8669647446037816 0.0551105096818727]]] [[[0.18864816912862492 0.2943554918163096]]]]] [[[[[0.2214171476386536 0.7905406681149035]]] [[[0.9499717297386914 0.12714661349678136]]]] [[[[0.1259989829706294 0.6187945568881048]]] [[[0.883363153186963 0.3400211715882322]]]]] [[[[[0.8662006353454067 0.8851842107997161]]] [[[0.10867893703704035 0.507210390231172]]]] [[[[0.0641349387565282 0.6153623942155412]]] [[[0.9634979017124479 0.9265144958420607]]]]]] ... [[[[[[0.31300077403641025 0.3985562631787142]]] [[[0.6374304662560907 0.0889533442215833]]]] [[[[0.3223963046953445 0.1929649731849048]]] [[[0.738517156627216 0.8918560376140368]]]]] [[[[[0.032479097948915125 0.022403379897440345]]] [[[0.8879264014380328 0.9688409516175366]]]] [[[[0.36732665520596053 0.02568098234597538]]] [[[0.18816116803153393 0.3476957475114082]]]]] [[[[[0.017590441244146326 0.6381561883224113]]] [[[0.14836355268432244 0.9023175538347024]]]] [[[[0.056370687894489735 0.11566419033993403]]] [[[0.7405954557149383 0.012959605481174585]]]]]] [[[[[[0.18441232104685712 0.046958954528207975]]] [[[0.7600990107461226 0.8480653800892203]]]] [[[[0.3975497938296888 0.9435461390805793]]] [[[0.7750775241819956 0.7670889588276977]]]]] [[[[[0.0884017555200628 0.7686864288471758]]] [[[0.909198342491144 0.24848125714102642]]]] [[[[0.7989959650489491 0.9599936794783402]]] [[[0.6258240787338666 0.4430283691204103]]]]] [[[[[0.6139212051841649 0.4025803625459575]]] [[[0.060622063031249396 0.0005734246930736431]]]] [[[[0.48761396593709927 0.057258610185332515]]] [[[0.5779708494397036 0.05501850124392882]]]]]] [[[[[[0.9598624407510444 0.6904503303993109]]] [[[0.1627739150757005 0.6449628764171922]]]] [[[[0.0989287135011011 0.3322865397997484]]] [[[0.7788448041212908 0.14451747040052476]]]]] [[[[[0.4324561124428018 0.15543553500107987]]] [[[0.8111990335832183 0.8725648177627768]]]] [[[[0.29355639165942105 0.6232436196116875]]] [[[0.3082839347024363 0.26674525589287545]]]]] [[[[[0.3035558687590033 0.966654006312124]]] [[[0.005794124532704559 0.26010527279046214]]]] [[[[0.1760882286116826 0.6129038499607399]]] [[[0.5117694148436895 0.35870379736987934]]]]]]] [[[[[[[0.4394706457487706 0.442228888776794]]] [[[0.2880023282693577 0.43061232972162866]]]] [[[[0.8944138316446999 0.044146188894592764]]] [[[0.8038694627916028 0.31791520273214924]]]]] [[[[[0.4094805005515161 0.25231785425405606]]] [[[0.5632330729406264 0.9430946086334698]]]] [[[[0.1373149894287059 0.2445424596929654]]] [[[0.7573988263172821 0.5826567338859524]]]]] [[[[[0.9076768898512166 0.6336978624373651]]] [[[0.26977794925288445 0.9869904167435308]]]] [[[[0.9064105226510862 0.9486204898697448]]] [[[0.26928479028765584 0.8046329608682515]]]]]] [[[[[[0.20209329148144273 0.6839877565815783]]] [[[0.20649945432703187 0.7880762546640692]]]] [[[[0.6483729857847051 0.26671005915495993]]] [[[0.11181845032642235 0.3857931818703455]]]]] [[[[[0.26809484006443873 0.6648162794344427]]] [[[0.86083015564961 0.5933625152408324]]]] [[[[0.5586285976751746 0.5717869045629768]]] [[[0.28982090469624244 0.9950096801881599]]]]] [[[[[0.04475810338343034 0.9674373033048301]]] [[[0.6947208379581175 0.957384793069735]]]] [[[[0.49847088418431207 0.5123223369154218]]] [[[0.9574331919065852 0.06582776334226492]]]]]] [[[[[[0.3807906244600011 0.29851448162062555]]] [[[0.8053219477706515 0.7984400756116525]]]] [[[[0.4298201880414537 0.7726590864962105]]] [[[0.8940085657299434 0.4121906089323363]]]]] [[[[[0.5101579520380509 0.6778654351459885]]] [[[0.678999094563586 0.3172351943474032]]]] [[[[0.825418047381012 0.9912747313211531]]] [[[0.19602567055388342 0.23372384493650455]]]]] [[[[[0.5190147237438291 0.6214152405512312]]] [[[0.20327809498733584 0.07712171307574378]]]] [[[[0.6554489085991868 0.9040153762466795]]] [[[0.8974826443783446 0.44056580131949896]]]]]] ... [[[[[[0.38301441401824377 0.4674269850735697]]] [[[0.11776474011531834 0.9481774155762547]]]] [[[[0.6609905827080015 0.1848125246613329]]] [[[0.1956377399842325 0.5707800087333235]]]]] [[[[[0.7220823355254657 0.363921770290771]]] [[[0.39933976268355265 0.056578804121911186]]]] [[[[0.39290044621443954 0.7369284709624165]]] [[[0.602645571445068 0.6939111768580324]]]]] [[[[[0.22651605954991705 0.1165747496428663]]] [[[0.9742584254563418 0.15638025989396886]]]] [[[[0.16460395104542347 0.8105735198122187]]] [[[0.38506185274713434 0.4653860982585477]]]]]] [[[[[[0.514238819626441 0.8513136052062317]]] [[[0.5342748947754631 0.6112930429946326]]]] [[[[0.8281610954982441 0.04814835503886883]]] [[[0.04933076947733217 0.28828197507294695]]]]] [[[[[0.7747020881502468 0.23028698445370066]]] [[[0.10418731885990062 0.34991634984453723]]]] [[[[0.10507839266788832 0.5155394323253215]]] [[[0.7989646243391164 0.2826972690396382]]]]] [[[[[0.823573308860811 0.6330983430121659]]] [[[0.42010924541397043 0.559160828567587]]]] [[[[0.29970359132036684 0.6736763217975645]]] [[[0.9449383394144371 0.5271593361916607]]]]]] [[[[[[0.4362984086170849 0.6884945840331029]]] [[[0.33980362933553265 0.9342603712269184]]]] [[[[0.4065097340008097 0.8877434491793301]]] [[[0.5787853592617372 0.8274696082007613]]]]] [[[[[0.9503911687069515 0.6319958616057257]]] [[[0.01066498270543903 0.8040987511078996]]]] [[[[0.9212333563065683 0.9708086692756148]]] [[[0.5642414519526068 0.2007750678625303]]]]] [[[[[0.6483945185218566 0.6804181308651087]]] [[[0.14160510998181686 0.47639178191577114]]]] [[[[0.16016354203550853 0.4422250183943346]]] [[[0.8105347433326938 0.3013359542149695]]]]]]] [[[[[[[0.7093330873180517 0.1667124487656455]]] [[[0.580309077433852 0.9468761320454994]]]] [[[[0.1414242992463025 0.3295163135014353]]] [[[0.3820347909488633 0.6033721879656323]]]]] [[[[[0.4340722188584314 0.2964844563218827]]] [[[0.536921610790343 0.46684170140016445]]]] [[[[0.3630115981409967 0.17220224145043328]]] [[[0.14917317695477317 0.01945296530545204]]]]] [[[[[0.6451035544165568 0.06363391863999524]]] [[[0.5242409094423348 0.39852902847184823]]]] [[[[0.49603217653372766 0.1437994411027077]]] [[[0.8324842087113521 0.7602789452654498]]]]]] [[[[[[0.1855641655409369 0.8091269554896398]]] [[[0.34680942352734445 0.08556150260175233]]]] [[[[0.39361137009844616 0.3311729185399154]]] [[[0.5572711668570949 0.14683443091986326]]]]] [[[[[0.8730225208807525 0.7512515734562124]]] [[[0.12658822648371604 0.5253943880077271]]]] [[[[0.3457806162124234 0.9925630910074689]]] [[[0.8490618625456404 0.4679624611379499]]]]] [[[[[0.37902393622859876 0.5277303372386063]]] [[[0.06656876952940127 0.3722922530467879]]]] [[[[0.4385743717212971 0.9306491442676424]]] [[[0.13158524372292224 0.14961021917581707]]]]]] [[[[[[0.7200233618089187 0.863236642083118]]] [[[0.6804816280421978 0.7923070215130162]]]] [[[[0.640317657739601 0.07583752522227238]]] [[[0.5917491310519086 0.5556769240065514]]]]] [[[[[0.0298077519050004 0.3479256819712252]]] [[[0.2100261141657307 0.05402198135700054]]]] [[[[0.1486938125617716 0.7643893649349321]]] [[[0.41447387257780166 0.7057688212883477]]]]] [[[[[0.7724195749735715 0.3329248028125955]]] [[[0.2941669509775088 0.41871234734983476]]]] [[[[0.10912892258843221 0.4405829850784797]]] [[[0.04110965678008027 0.13274447321614802]]]]]] ... [[[[[[0.9600378418139446 0.06879743480440093]]] [[[0.4796903714904672 0.4846995112877375]]]] [[[[0.8256983382305358 0.6123546144935149]]] [[[0.1809064336672882 0.5826100115826012]]]]] [[[[[0.13039073660388445 0.37305322770955696]]] [[[0.5099475830057122 0.6835449614905121]]]] [[[[0.8045656199626281 0.3078836806246332]]] [[[0.09202864717155301 0.8929608253773615]]]]] [[[[[0.11223076366071805 0.7338819517391326]]] [[[0.6409338536748691 0.9697083657818562]]]] [[[[0.2578478802725672 0.9213231277507774]]] [[[0.02647199057019123 0.22200063280773152]]]]]] [[[[[[0.5028903839762582 0.3605237792764996]]] [[[0.18210077185087103 0.625491189720571]]]] [[[[0.3708288509436284 0.7952033571986378]]] [[[0.2551744091533228 0.7852450036457551]]]]] [[[[[0.278421683000069 0.8999681676991856]]] [[[0.1347565724987454 0.5676154828502421]]]] [[[[0.6420042340649658 0.09547332366719641]]] [[[0.2542215031194802 0.03774652972827963]]]]] [[[[[0.03677770089487431 0.8763318275076177]]] [[[0.8285150295412036 0.17920818227159452]]]] [[[[0.7921642077567747 0.43331921041955423]]] [[[0.5919583739898027 0.07321116475103762]]]]]] [[[[[[0.29299110908796555 0.31770758918911557]]] [[[0.4465557744113281 0.25062943473936095]]]] [[[[0.4793681137003404 0.011594098180290335]]] [[[0.6583656448100867 0.17402419566924987]]]]] [[[[[0.8955532312109699 0.5684095994185764]]] [[[0.3466448080079063 0.41977117309292444]]]] [[[[0.924637626749689 0.6781744063890239]]] [[[0.728253717041961 0.27201643629653405]]]]] [[[[[0.0749817241224876 0.690777982374992]]] [[[0.11534615459614295 0.724858242709313]]]] [[[[0.13738683407318764 0.5448820004557716]]] [[[0.10807765313319462 0.22093285200932256]]]]]]] [[[[[[[0.14943871709345313 0.6832030071588934]]] [[[0.27343428951543935 0.9912001046288813]]]] [[[[0.21220149957273204 0.8412715468535126]]] [[[0.5247073977226574 0.03445656452657564]]]]] [[[[[0.09452413927873737 0.38281437450185574]]] [[[0.7862510380530389 0.39206391612161473]]]] [[[[0.49975344391833043 0.4981705916035416]]] [[[0.25295193024212115 0.6430689504153272]]]]] [[[[[0.1409159892898315 0.31394786617016157]]] [[[0.15627283295706418 0.9128165117470526]]]] [[[[0.05540763264635129 0.1833829987768263]]] [[[0.4306655383723743 0.4830099857929433]]]]]] [[[[[[0.2870580111332024 0.7632050898979268]]] [[[0.6741867537472287 0.9752638696828104]]]] [[[[0.0263676761287569 0.37959485287047157]]] [[[0.8461687458734283 0.3066349223787894]]]]] [[[[[0.49969060653745156 0.41376999709826967]]] [[[0.6710749762573246 0.3342893510795508]]]] [[[[0.7266746604528425 0.9702350166204059]]] [[[0.3029312496705646 0.09966823959547233]]]]] [[[[[0.5998151222633771 0.5753797520019736]]] [[[0.6874131980355231 0.1592510494584236]]]] [[[[0.3479365711088317 0.4512401906142426]]] [[[0.5369296517635921 0.321773168841051]]]]]] [[[[[[0.6670199963042616 0.6638881407432288]]] [[[0.01894923319427566 0.20360567009465314]]]] [[[[0.40065313314586826 0.7125750986074466]]] [[[0.6885969875935569 0.5815059760962734]]]]] [[[[[0.6157229546509407 0.36746179675016477]]] [[[0.06334893847483203 0.18528731653255637]]]] [[[[0.7271638069732903 0.2687009825144133]]] [[[0.5262852644284404 0.1951650481657594]]]]] [[[[[0.46830227122423085 0.42443095856002544]]] [[[0.14945064774389782 0.10390315346164403]]]] [[[[0.06325670805979722 0.9035005031599656]]] [[[0.7165732739401847 0.5568277326387367]]]]]] ... [[[[[[0.8892718356924154 0.21851139607411307]]] [[[0.10724585670068965 0.47363483046214594]]]] [[[[0.6144449433305336 0.11427474249846858]]] [[[0.3297979257962762 0.020804028863969592]]]]] [[[[[0.41830362023617074 0.825088106561695]]] [[[0.3585957885563257 0.27485369010345795]]]] [[[[0.7687764610028063 0.012716042573796882]]] [[[0.687053108410225 0.14161005860025988]]]]] [[[[[0.4968139052740236 0.20989050089473404]]] [[[0.9460525764891653 0.5168376211325861]]]] [[[[0.9234945258247946 0.39111177883948456]]] [[[0.004783153984848076 0.16656767694771146]]]]]] [[[[[[0.33255697385380023 0.7037392308803768]]] [[[0.4670794272971479 0.7959525694439035]]]] [[[[0.23172580965809397 0.3348637141591403]]] [[[0.771165618225096 0.31211187637092774]]]]] [[[[[0.7565774708607944 0.8881973898100015]]] [[[0.11172515763318736 0.25886912847257093]]]] [[[[0.8839689321591313 0.1383350308809319]]] [[[0.46468444721894997 0.5038466131497694]]]]] [[[[[0.5929209281640384 0.21478276345541514]]] [[[0.15286382010948074 0.13035780807049469]]]] [[[[0.09108416488770765 0.18785082381909124]]] [[[0.907610677797848 0.4248685304044417]]]]]] [[[[[[0.6069337015142994 0.7637694789063155]]] [[[0.3168722885478146 0.5882919089054475]]]] [[[[0.9379900158445956 0.8023959941003774]]] [[[0.3456014936255063 0.5199467896567628]]]]] [[[[[0.16069372932051162 0.17003116812239005]]] [[[0.13400049550149284 0.7781599469422603]]]] [[[[0.6253596471181526 0.9731175980082609]]] [[[0.2789650669313535 0.6546501335558574]]]]] [[[[[0.9230472151804449 0.18914062770761997]]] [[[0.2970463195082155 0.3742079795392088]]]] [[[[0.21225036492887173 0.05684502488011067]]] [[[0.3588545609627015 0.5164057686755776]]]]]]]] [[[[[[[[0.5674345972571817 0.6785424553727745]]] [[[0.8072409844360217 0.5280810425978385]]]] [[[[0.568308281357512 0.01919180064219539]]] [[[0.854680663391993 0.3320195928905364]]]]] [[[[[0.1602323462320029 0.03749931370508819]]] [[[0.6877744578368786 0.15388984508467218]]]] [[[[0.699733401183399 0.5322299865487408]]] [[[0.11016800965842954 0.8587249153384497]]]]] [[[[[0.23982304603192317 0.18601388767776106]]] [[[0.6420595721388319 0.39267260355356515]]]] [[[[0.9612366456766421 0.16428748978375585]]] [[[0.23764050849995644 0.18924569215081255]]]]]] [[[[[[0.714323627374323 0.32125424738731334]]] [[[0.5693974936091004 0.8534215723864891]]]] [[[[0.11820285653037799 0.1739234844088482]]] [[[0.8394047078811224 0.6354816729532462]]]]] [[[[[0.7575666313512633 0.28946339250758313]]] [[[0.5251549931052314 0.024691560438648952]]]] [[[[0.255957812155702 0.9801933686016759]]] [[[0.37315922473680485 0.49090405098771306]]]]] [[[[[0.049124065673820994 0.3051953216200628]]] [[[0.29329741180099334 0.9991938891216776]]]] [[[[0.3341814406765651 0.8027752993758467]]] [[[0.5361221414751279 0.2677025469819566]]]]]] [[[[[[0.4415842284200038 0.9042948886109222]]] [[[0.8661122546811925 0.6493880698806215]]]] [[[[0.46015871758146754 0.5862279755803723]]] [[[0.011071329534201091 0.9529679887829912]]]]] [[[[[0.060099729021597215 0.35842449556317746]]] [[[0.14387434274597066 0.7909559958501943]]]] [[[[0.31982760971067636 0.9670193040352005]]] [[[0.3579849153126159 0.7681014284066409]]]]] [[[[[0.1270380571173817 0.09600864718957369]]] [[[0.1603970463807577 0.247823082516483]]]] [[[[0.9007755111212188 0.7657030780645611]]] [[[0.4054800069885376 0.5563289840591062]]]]]] ... [[[[[[0.4255626373888093 0.9769151708856264]]] [[[0.2895971389680736 0.2321347071125327]]]] [[[[0.9014883162337607 0.7558830166168452]]] [[[0.8265356172849043 0.7627124486063186]]]]] [[[[[0.6617846892596929 0.8459619948835637]]] [[[0.95308971141903 0.5956990804221044]]]] [[[[0.5323776823573435 0.22302170997958015]]] [[[0.7316118951704387 0.12504614707274397]]]]] [[[[[0.2457042491432393 0.9253640252084224]]] [[[0.07924106193511937 0.16984027212749697]]]] [[[[0.17908838231217894 0.7177804047174703]]] [[[0.657581961539548 0.6975650513516514]]]]]] [[[[[[0.10682548170726192 0.0645450928564093]]] [[[0.9653991745951555 0.15183067507819625]]]] [[[[0.4770140257384836 0.5462771856129609]]] [[[0.017871737313005842 0.741637221391959]]]]] [[[[[0.15234497220211696 0.24548010894433603]]] [[[0.25639096117275695 0.4900227836844774]]]] [[[[0.040109873636808624 0.8531314307357346]]] [[[0.28702132922440404 0.824445956638425]]]]] [[[[[0.4281270007830753 0.7516253679762501]]] [[[0.4929995618051328 0.5995027369611623]]]] [[[[0.9362528286222768 0.6136483905948072]]] [[[0.13168752023729924 0.5858872464571631]]]]]] [[[[[[0.918581694372078 0.7134538417428427]]] [[[0.3771007018876149 0.7362505166970421]]]] [[[[0.520901595904324 0.29947124620569965]]] [[[0.9191912259446952 0.4733722278269178]]]]] [[[[[0.6701535983877287 0.8216069907435143]]] [[[0.9559691073967906 0.31449703265326345]]]] [[[[0.3930766620046634 0.7012044827091868]]] [[[0.7623827289727747 0.8673459813351344]]]]] [[[[[0.7559691496932212 0.43496263952292513]]] [[[0.5011391105576352 0.3419534606180097]]]] [[[[0.6834584640575126 0.05817929903013164]]] [[[0.23402324177201395 0.004232820790283309]]]]]]] [[[[[[[0.4185484143923467 0.25619984976176025]]] [[[0.7936082505522412 0.5232260756282118]]]] [[[[0.31486516060565395 0.6361320173328765]]] [[[0.04781174136969546 0.22487095247234412]]]]] [[[[[0.34085417936510054 0.654514980097529]]] [[[0.8901289811170732 0.9303134820335542]]]] [[[[0.4757564365833391 0.5911545848915517]]] [[[0.3224129213986684 0.2699738766707801]]]]] [[[[[0.12485147281095754 0.7775521879725028]]] [[[0.5093479858473149 0.5021405382343339]]]] [[[[0.08892796588689367 0.7216088666040975]]] [[[0.28303812707166076 0.18695156817770764]]]]]] [[[[[[0.39895256832929105 0.710087838113115]]] [[[0.08063243584932234 0.9592359106572537]]]] [[[[0.13245802933526973 0.6886604788406239]]] [[[0.7360815311311336 0.29930787189769137]]]]] [[[[[0.118623684514924 0.5609883106864075]]] [[[0.3608255232953126 0.9315036603269746]]]] [[[[0.6160284932732714 0.052338012789981625]]] [[[0.5250274051455147 0.9775475514584683]]]]] [[[[[0.50086505521801 0.6707720527139371]]] [[[0.047405382343730484 0.6996414152281805]]]] [[[[0.6359667161766567 0.9782466023356164]]] [[[0.6058563990063884 0.2210083311222788]]]]]] [[[[[[0.8610758333339716 0.5799031776313931]]] [[[0.6011400897315863 0.6521098595091886]]]] [[[[0.46137290387249275 0.36992638256143007]]] [[[0.34311190395580327 0.26838200295908965]]]]] [[[[[0.5740441902306767 0.14991829348172436]]] [[[0.08768128519065299 0.22248205297672285]]]] [[[[0.5113524223451542 0.5383217106237318]]] [[[0.8633842112144456 0.11780487216106594]]]]] [[[[[0.4113697104655403 0.37637000217214256]]] [[[0.38695617154766415 0.595927997670892]]]] [[[[0.35862649790233114 0.8488534755184117]]] [[[0.47893268981746373 0.8272186197869887]]]]]] ... [[[[[[0.221362409135885 0.8352294411559111]]] [[[0.4997910889397693 0.9389748763408872]]]] [[[[0.8014508039467696 0.8015952623531534]]] [[[0.862117987412636 0.7032307238450496]]]]] [[[[[0.7641605436154136 0.28634323143666596]]] [[[0.362771858596564 0.07291787873042577]]]] [[[[0.41693275371877303 0.2926352718560645]]] [[[0.5870555574173952 0.8459870987593856]]]]] [[[[[0.11307851203180463 0.23244371351301374]]] [[[0.9745190393101734 0.8598778545307363]]]] [[[[0.07046937870617864 0.06704935195956607]]] [[[0.9258751508532829 0.9574592971274534]]]]]] [[[[[[0.8920717766915119 0.8153051626806619]]] [[[0.37390853950611214 0.5073279857685322]]]] [[[[0.2327048119124686 0.6412625969763589]]] [[[0.0059446569932678495 0.6260490805256217]]]]] [[[[[0.4673619047223311 0.2894475842248947]]] [[[0.8154143419759149 0.8133835747094061]]]] [[[[0.6384312778602212 0.46852799326682615]]] [[[0.8981186665093377 0.25649673928287486]]]]] [[[[[0.2177062277100883 0.20260740543434885]]] [[[0.9304503273439351 0.9814025855026092]]]] [[[[0.8470594548938378 0.06266038628452941]]] [[[0.07205302903680644 0.34385423980812346]]]]]] [[[[[[0.7102098823272721 0.15436757557193437]]] [[[0.40319448613215814 0.6078957856269874]]]] [[[[0.9160897882464947 0.4877844726606745]]] [[[0.1576771226467606 0.6139550362153199]]]]] [[[[[0.7354055718289085 0.3048644316860829]]] [[[0.8332308569062492 0.018070154818217943]]]] [[[[0.13284141568070884 0.6745037204087584]]] [[[0.3962205716409558 0.7767863090214793]]]]] [[[[[0.9379539228803602 0.48684562982956225]]] [[[0.79308631729271 0.5101642823988594]]]] [[[[0.8707985948404954 0.615752006063244]]] [[[0.38668561183938943 0.3070779643178242]]]]]]] [[[[[[[0.7964807818476626 0.6868594711762307]]] [[[0.34210941272319495 0.7121630259107702]]]] [[[[0.5365932523774408 0.8614622291221252]]] [[[0.2283197865221308 0.9167136760601378]]]]] [[[[[0.0884383471714908 0.6472546391131321]]] [[[0.26860403709954683 0.14942151814699334]]]] [[[[0.38419845259434304 0.21864802628409696]]] [[[0.4570490042306895 0.4527302980721355]]]]] [[[[[0.3550313343617123 0.18013576914106322]]] [[[0.900838218051083 0.051462297699293225]]]] [[[[0.3695513296032219 0.8287325515265125]]] [[[0.4208126209184747 0.13070554151277858]]]]]] [[[[[[0.38917087974332965 0.4200941236790091]]] [[[0.3114506373135457 0.08034892048503972]]]] [[[[0.3150794228424062 0.1629037445572442]]] [[[0.1621323780460966 0.45770488354083316]]]]] [[[[[0.6661084575278853 0.23378971392858217]]] [[[0.806180500481457 0.17594274508408725]]]] [[[[0.7057676780498368 0.3877063409998015]]] [[[0.0006306035238257124 0.27527866890122066]]]]] [[[[[0.03180919369722934 0.6753649055044606]]] [[[0.9002006366719315 0.18550033614176487]]]] [[[[0.6779224651569492 0.7571345618510085]]] [[[0.11512010228152358 0.11569930685662977]]]]]] [[[[[[0.7001217569383019 0.04461810186659143]]] [[[0.6578463504668447 0.13930314805593802]]]] [[[[0.5054230384950813 0.6543588637572854]]] [[[0.6333059696600077 0.9801381008949364]]]]] [[[[[0.004465118501393861 0.7184325447195367]]] [[[0.21961055323869694 0.22886100732753067]]]] [[[[0.10782031306904283 0.9201713874594057]]] [[[0.427714973143002 0.02296356784392739]]]]] [[[[[0.17684375210293757 0.3281741024177838]]] [[[0.9337284219135543 0.03779085935030957]]]] [[[[0.8554578021599635 0.8913192081367601]]] [[[0.8680617845082377 0.9783591348380121]]]]]] ... [[[[[[0.056721413205699345 0.9583795911678682]]] [[[0.2490492663985442 0.9932399887814116]]]] [[[[0.5920267217140597 0.9915036796328843]]] [[[0.8031190667191735 0.304341126525255]]]]] [[[[[0.3014077279386004 0.26735036240664856]]] [[[0.8510954378572357 0.05087555606532068]]]] [[[[0.02373928912496992 0.1867169039852904]]] [[[0.8624764141425525 0.22126190016718694]]]]] [[[[[0.05332274943219528 0.8528824359949236]]] [[[0.7648917003077524 0.8629128897849627]]]] [[[[0.5261122338830928 0.08261604817202994]]] [[[0.01275671776825138 0.4715280151449448]]]]]] [[[[[[0.8450541296775901 0.15507266707449985]]] [[[0.5713922077107718 0.8129026849435105]]]] [[[[0.6925837452695648 0.10627913847655923]]] [[[0.8545061681893036 0.3206217110909386]]]]] [[[[[0.14600120828582963 0.8669596644812967]]] [[[0.9761776082945965 0.5379371443841174]]]] [[[[0.5325999782736834 0.42192769819848674]]] [[[0.9449083971993 0.8761264752793271]]]]] [[[[[0.823608298793713 0.7678060400075621]]] [[[0.07161205674852955 0.14230828595553202]]]] [[[[0.13569663433098555 0.6501739705837852]]] [[[0.395659114958002 0.18899661014529545]]]]]] [[[[[[0.8100839438778048 0.38361988576501416]]] [[[0.9345494096071242 0.29979003038655094]]]] [[[[0.18397320915181525 0.43240597028140015]]] [[[0.5984598205325234 0.7462712272849759]]]]] [[[[[0.10807747774002485 0.3313065560631906]]] [[[0.07026339041530982 0.5967587690574475]]]] [[[[0.03675387515434203 0.33394110611709193]]] [[[0.8220062557166405 0.6676156307660187]]]]] [[[[[0.47452363075098225 0.12836751247473477]]] [[[0.40767713159279206 0.44573673759015453]]]] [[[[0.9515933934213009 0.7056239602417]]] [[[0.7912638622723007 0.8708082043264251]]]]]]] [[[[[[[0.8329643280545409 0.44004568181238946]]] [[[0.04905047798334117 0.6703764395342798]]]] [[[[0.8844974473488422 0.8899715736072996]]] [[[0.7083504310277254 0.7275388517315645]]]]] [[[[[0.43002046226069857 0.15994634325961832]]] [[[0.7763074437865816 0.4572779028114067]]]] [[[[0.00984905097675104 0.3919446032414087]]] [[[0.2757515386870154 0.6887008389536272]]]]] [[[[[0.4639787767229091 0.020103734471190626]]] [[[0.37270379107335594 0.21769537487124768]]]] [[[[0.26986508450654123 0.9076246320748145]]] [[[0.012755499566713846 0.8905500534028776]]]]]] [[[[[[0.28061612074621134 0.5503587534826273]]] [[[0.7228364843014357 0.6826287873248577]]]] [[[[0.8118572533784919 0.6086321119596414]]] [[[0.2708851491419134 0.9501319370139503]]]]] [[[[[0.02486494107171633 0.1265899060766994]]] [[[0.6394609064407426 0.11452668384735887]]]] [[[[0.3537450936262725 0.1616971084537855]]] [[[0.7931737837574875 0.1711278715014637]]]]] [[[[[0.19853558522491044 0.32043401940938554]]] [[[0.29058661180143297 0.23303279555309653]]]] [[[[0.9636648695948483 0.08022708905177023]]] [[[0.732433606438159 0.38909368397832134]]]]]] [[[[[[0.923316443157918 0.5819772701190918]]] [[[0.5612908155301171 0.7823154672824606]]]] [[[[0.196654601890761 0.356197016328625]]] [[[0.5006897648772718 0.46235470462675465]]]]] [[[[[0.1459691782802044 0.34441453634023966]]] [[[0.47654206919736275 0.6153296191649457]]]] [[[[0.835763094614611 0.4992878465259306]]] [[[0.802318664397303 0.21747241110727955]]]]] [[[[[0.46885103420339247 0.7078962885559459]]] [[[0.7271575221285524 0.8953835906433119]]]] [[[[0.7357789723631883 0.8370612864647341]]] [[[0.7187200623463103 0.8934092258406621]]]]]] ... [[[[[[0.090118169321737 0.9021031712946644]]] [[[0.8122825496605774 0.5026374018606071]]]] [[[[0.4104979872764355 0.9207223473422501]]] [[[0.5738062518013302 0.836046294276918]]]]] [[[[[0.4775856575754066 0.5350735121652739]]] [[[0.924236079700055 0.6953907751757714]]]] [[[[0.3351553639692766 0.9848204920756122]]] [[[0.03457922725614526 0.19804433306507607]]]]] [[[[[0.9427580600150737 0.655808158074866]]] [[[0.586503086716369 0.13792336609238032]]]] [[[[0.8333726682556547 0.3400828168729674]]] [[[0.9193807904097949 0.8857669734657196]]]]]] [[[[[[0.11189107496915496 0.10336178224312542]]] [[[0.41837042407283076 0.41476853494987187]]]] [[[[0.3327713605444712 0.3948087743089903]]] [[[0.9495858198171037 0.4242961117242544]]]]] [[[[[0.7499915115472218 0.024397673126066333]]] [[[0.5058675748909647 0.5577384277432726]]]] [[[[0.6641013701238808 0.45595027783435327]]] [[[0.4878852103032876 0.9516039256794094]]]]] [[[[[0.10984323693872255 0.4900564267808669]]] [[[0.6571302569310816 0.3048913697690415]]]] [[[[0.8847830425419929 0.0756565261791371]]] [[[0.29300343458596334 0.04316099969367204]]]]]] [[[[[[0.7520802489528643 0.6054176869925311]]] [[[0.03149283347152432 0.6648066025298828]]]] [[[[0.22436059971676725 0.5671927656172684]]] [[[0.2082047796328017 0.6959375830266794]]]]] [[[[[0.2890643001118298 0.5544155027298199]]] [[[0.8075580810305666 0.04664081581744162]]]] [[[[0.9791838036714297 0.30439371440632834]]] [[[0.6077905255719305 0.4286830627485305]]]]] [[[[[0.5413350681179775 0.46728107959478404]]] [[[0.2028458084127377 0.35989802816738814]]]] [[[[0.9673848063247447 0.4645758289303321]]] [[[0.9008000044127183 0.1045149280121459]]]]]]]] ... [[[[[[[[0.5876720775965409 0.5176944290849177]]] [[[0.8416345461014619 0.2757195370639811]]]] [[[[0.2061531564052811 0.6152871970995591]]] [[[0.8173395383492665 0.6225358204803799]]]]] [[[[[0.7571073127118838 0.05617592034326224]]] [[[0.37697832496408146 0.8731788972320733]]]] [[[[0.48196421687653535 0.6050975815214993]]] [[[0.21165529394901295 0.9268564229332901]]]]] [[[[[0.2714500077049603 0.7399297195812582]]] [[[0.6694882495472763 0.8000348000152533]]]] [[[[0.9023191570036398 0.8065570326346595]]] [[[0.10644683672559341 0.16873354075873626]]]]]] [[[[[[0.5991289929123199 0.42779045448301245]]] [[[0.677637862924882 0.402283442755333]]]] [[[[0.8744103595422108 0.09030916253872956]]] [[[0.054430010724710876 0.4672373986627665]]]]] [[[[[0.6514641598513305 0.8152969635544409]]] [[[0.2412501423360377 0.7662043247116073]]]] [[[[0.5291776222222924 0.928145577700187]]] [[[0.998932678176277 0.30514962426569125]]]]] [[[[[0.07984899440408766 0.10375102099096489]]] [[[0.24232317139273674 0.011066292673462486]]]] [[[[0.25686773358741033 0.045476390589106463]]] [[[0.19007696028479015 0.021302720881972048]]]]]] [[[[[[0.8776609719811977 0.7955813926953135]]] [[[0.26904637930190844 0.39100807366945467]]]] [[[[0.676965302814781 0.1886845341761202]]] [[[0.6911192235750135 0.5161481189280918]]]]] [[[[[0.46723108657861623 0.42806478431674355]]] [[[0.3113919797399253 0.26538186854906476]]]] [[[[0.17644264816252409 0.7668671620455433]]] [[[0.4432834767671572 0.17364821795737184]]]]] [[[[[0.9911139529409155 0.06020563605031626]]] [[[0.2725031397977622 0.6807791193216822]]]] [[[[0.7059324365399753 0.4995802237518614]]] [[[0.7007970513953301 0.7803783393499114]]]]]] ... [[[[[[0.19278445378266684 0.2323111235557539]]] [[[0.2419975948609846 0.13981643796218834]]]] [[[[0.157277242315921 0.5165916606319034]]] [[[0.8781228009837916 0.42942504464538367]]]]] [[[[[0.07517877766173287 0.7649646440995549]]] [[[0.16167365928763444 0.412556388654597]]]] [[[[0.7521435888614196 0.30852375080178673]]] [[[0.0555615157144248 0.3303078618547661]]]]] [[[[[0.8963536220791355 0.8490977301126584]]] [[[0.6353828046692206 0.5245401734275722]]]] [[[[0.5088145703130967 0.8321870892636344]]] [[[0.4662259055105623 0.3094000972039189]]]]]] [[[[[[0.5189945005971172 0.8056310996067805]]] [[[0.823599324746165 0.3250572707696503]]]] [[[[0.012946502693747752 0.8438230067941659]]] [[[0.7712924154745608 0.17633938582676312]]]]] [[[[[0.7805857617423134 0.07363685722649327]]] [[[0.09135812724961356 0.4133221333528433]]]] [[[[0.613042414164475 0.3413200182338201]]] [[[0.5160231178769211 0.6496576177873093]]]]] [[[[[0.8916007856816542 0.1369393991223936]]] [[[0.3227962063966613 0.355739197020848]]]] [[[[0.9481706031146069 0.5371710112141413]]] [[[0.920476025191799 0.8276844709470835]]]]]] [[[[[[0.8636133540758769 0.7423323190707074]]] [[[0.0959989097749927 0.7557312043924728]]]] [[[[0.33673250884729977 0.9313759816114386]]] [[[0.06039322458807728 0.6261408328770959]]]]] [[[[[0.11139029821944069 0.3547233991081128]]] [[[0.39416964600726245 0.43995994054419363]]]] [[[[0.40894104703384204 0.9029892887818507]]] [[[0.8133274836074386 0.63332211436911]]]]] [[[[[0.23943465912633255 0.0845442905778061]]] [[[0.3533786446920565 0.31067870189867997]]]] [[[[0.46733695712119605 0.6859814873903496]]] [[[0.7243402744983884 0.45379844178429085]]]]]]] [[[[[[[0.5892812312029175 0.3627992487034394]]] [[[0.9338035152880642 0.18822699031922197]]]] [[[[0.4628165984908915 0.17580439360537192]]] [[[0.914802896897404 0.42548148840428157]]]]] [[[[[0.05873852636931576 0.04811172387481166]]] [[[0.5219612014071684 0.809906274082316]]]] [[[[0.02623824719922052 0.5715435289730666]]] [[[0.043028981083141904 0.4186707915040433]]]]] [[[[[0.810205334165746 0.6450970621693694]]] [[[0.70382228691568 0.731775257590983]]]] [[[[0.13578459888015293 0.7107406960186311]]] [[[0.07867105101237792 0.2054226546689747]]]]]] [[[[[[0.5676518062764954 0.4910639003248294]]] [[[0.9304501347448685 0.6205469109121544]]]] [[[[0.15798559522086675 0.665821957288641]]] [[[0.35477491005520834 0.8663050201274354]]]]] [[[[[0.9685762601279988 0.13731835129751546]]] [[[0.43477315294435914 0.6872588744422683]]]] [[[[0.18438440167085035 0.4416763622152473]]] [[[0.1835105338045988 0.9943355083940791]]]]] [[[[[0.8966639542002326 0.8151716145808054]]] [[[0.1557280839275489 0.5279064726814171]]]] [[[[0.5125378096181239 0.2563890632807212]]] [[[0.8898436450995505 0.049406838755736926]]]]]] [[[[[[0.5832673567717483 0.5563225607608284]]] [[[0.5639733787556359 0.46234138448588347]]]] [[[[0.9853506507309172 0.559665088996413]]] [[[0.32542100105144434 0.891884075697854]]]]] [[[[[0.41899184250427823 0.0034352422128723914]]] [[[0.547892440644585 0.991512638552348]]]] [[[[0.7536942749361065 0.5008276019928672]]] [[[0.7675557038979739 0.9926458648855935]]]]] [[[[[0.6892481272317547 0.48973373416580235]]] [[[0.9779309330365381 0.5231719627930731]]]] [[[[0.43479464085932573 0.08325863034203429]]] [[[0.2875204538277434 0.7168710744672167]]]]]] ... [[[[[[0.7082522586694701 0.15676171599032818]]] [[[0.1345428747513875 0.0004985249902784705]]]] [[[[0.16478623463297115 0.8724200236007317]]] [[[0.3182613679658488 0.8446193451227513]]]]] [[[[[0.025162691020947592 0.11643517347157628]]] [[[0.8647639124809626 0.2835533363311641]]]] [[[[0.9622653026321626 0.2301388741964624]]] [[[0.2669759812494319 0.6150609666466127]]]]] [[[[[0.43374851870901854 0.023389973252307517]]] [[[0.5545637825612806 0.20163385781585408]]]] [[[[0.3204552199482298 0.8007407741473977]]] [[[0.6501580236962775 0.311135886731869]]]]]] [[[[[[0.2859786320364617 0.028771853548553716]]] [[[0.4769284468428777 0.5924104722258066]]]] [[[[0.033090682378310365 0.5990735836411456]]] [[[0.6628724422077547 0.9898580420205996]]]]] [[[[[0.12098380055638691 0.7910644200023345]]] [[[0.8632887315629928 0.7899696400597319]]]] [[[[0.8304361040433955 0.09595032486944655]]] [[[0.046189951357301307 0.5700158494132621]]]]] [[[[[0.20125519720614093 0.517864710449567]]] [[[0.2021232614327152 0.25586164081581053]]]] [[[[0.7508538256132764 0.7524716352737277]]] [[[0.08354475911218417 0.9676734851386104]]]]]] [[[[[[0.7311497211080473 0.7694801617747141]]] [[[0.501492072906838 0.4366086715781998]]]] [[[[0.6961623210566673 0.5846087153049896]]] [[[0.9822108095039974 0.40504422578657184]]]]] [[[[[0.44925724370078113 0.0475362940028734]]] [[[0.4691146174035017 0.5139396318567921]]]] [[[[0.11062497887828748 0.8344672740237301]]] [[[0.9672930701516206 0.9160739657991904]]]]] [[[[[0.30123610693056746 0.9994594247456267]]] [[[0.6704336180654371 0.17739271788134614]]]] [[[[0.07282348715862208 0.7475342550584301]]] [[[0.7763148129224412 0.49584523740996733]]]]]]] [[[[[[[0.34420567636540245 0.8735107714466807]]] [[[0.7281808037912636 0.5385983366902478]]]] [[[[0.053012726636081586 0.07990986538982969]]] [[[0.9777435940291173 0.7770310102020601]]]]] [[[[[0.5838699289422689 0.2116815916355944]]] [[[0.4365563371237642 0.8237262911586176]]]] [[[[0.16393003143281526 0.9921677486974978]]] [[[0.4812458190413105 0.8242480755302397]]]]] [[[[[0.3771154822014817 0.8725296162959083]]] [[[0.33520793850171016 0.3848004109033305]]]] [[[[0.47706238126540834 0.9061142563352607]]] [[[0.24575940264231055 0.6047805292667549]]]]]] [[[[[[0.5288720847789584 0.6514589920901341]]] [[[0.8965985588157794 0.9604216371569297]]]] [[[[0.19026370876730225 0.8746515048616963]]] [[[0.24079907764340946 0.6701468693005129]]]]] [[[[[0.7553856923729703 0.8581688400583275]]] [[[0.7630605032003394 0.9616705376583021]]]] [[[[0.6613358338102396 0.8278314697961248]]] [[[0.27733097625842607 0.8450562175289976]]]]] [[[[[0.5369673132218248 0.7023116661968881]]] [[[0.6567137844794767 0.28987698582571286]]]] [[[[0.3264846037337268 0.7343087109093586]]] [[[0.1637111965529494 0.7163780730408671]]]]]] [[[[[[0.22980332765809763 0.4160270611941079]]] [[[0.18142519104763788 0.3866116302543241]]]] [[[[0.5863069860436031 0.890636882453336]]] [[[0.5250408568125444 0.2490430663163682]]]]] [[[[[0.1139208814526288 0.7764025968312864]]] [[[0.8352247278027202 0.6589106955516018]]]] [[[[0.4679498028359994 0.30920641784631153]]] [[[0.22031048529009767 0.6888972521374107]]]]] [[[[[0.16942699541384043 0.5501532919499301]]] [[[0.3056753700020227 0.6112336912899927]]]] [[[[0.16626808635025114 0.8364602822775845]]] [[[0.14694274999396362 0.640238217555032]]]]]] ... [[[[[[0.5220216007501419 0.5383033023131163]]] [[[0.7534083201804999 0.8664310700783282]]]] [[[[0.2552884230181154 0.012444968296024483]]] [[[0.42948169356432087 0.20486838787428774]]]]] [[[[[0.030151838751453997 0.5146148543095399]]] [[[0.42762291225849447 0.5793759349804122]]]] [[[[0.4391490522552821 0.4967950272807117]]] [[[0.47024025411885295 0.7706628167788913]]]]] [[[[[0.6617851650457861 0.5134136758324797]]] [[[0.4953681625110715 0.2961016128279115]]]] [[[[0.22228541072771324 0.880022403471597]]] [[[0.3503008658261122 0.9971544542415178]]]]]] [[[[[[0.5654561660335412 0.8727162176951451]]] [[[0.7304618094084289 0.6974710512895509]]]] [[[[0.3413050856819916 0.31356183191250087]]] [[[0.7465056785572587 0.2783079448934451]]]]] [[[[[0.2645022663045742 0.2582383785239579]]] [[[0.5977995641225681 0.7262772833573521]]]] [[[[0.8629316479926314 0.12982456566045963]]] [[[0.9784823873762768 0.8970580428726369]]]]] [[[[[0.7053224858815017 0.893411118516101]]] [[[0.6129582747475899 0.11404406922981913]]]] [[[[0.7356981621882671 0.5264043996244478]]] [[[0.9393505126298207 0.7910827914950573]]]]]] [[[[[[0.042620604038723586 0.3989920546468736]]] [[[0.07549818419494547 0.8581751161132093]]]] [[[[0.24305995844032913 0.38886217251511035]]] [[[0.9452244243261153 0.9906527350921718]]]]] [[[[[0.3016359089302779 0.13649423745024758]]] [[[0.26777021532246414 0.8757379614056399]]]] [[[[0.11960968829273655 0.19474803344348157]]] [[[0.1034063269710751 0.14607294311041275]]]]] [[[[[0.04260298029885634 0.1086462041409848]]] [[[0.21862658328417472 0.30439477324365194]]]] [[[[0.3992215451277653 0.05417718239083946]]] [[[0.5587188824801981 0.7481275923953191]]]]]]] [[[[[[[0.43532844934982284 0.07335039485100281]]] [[[0.5159939841364994 0.8926122045435817]]]] [[[[0.30704362217735126 0.42139801338393346]]] [[[0.2106291326475659 0.7467660864425455]]]]] [[[[[0.7996683696908633 0.970708788663611]]] [[[0.15637412339757362 0.7521005711695904]]]] [[[[0.513213923915424 0.6095642909053257]]] [[[0.2336848504950627 0.9941531467911255]]]]] [[[[[0.9838732568966123 0.443659959621436]]] [[[0.1743039183291213 0.4684882222222502]]]] [[[[0.11952884265069585 0.14086417641220594]]] [[[0.820137769044794 0.6333594407982696]]]]]] [[[[[[0.9857038828586439 0.747936030069612]]] [[[0.8043414425952214 0.3507380805591839]]]] [[[[0.5258092453966047 0.21978066124759077]]] [[[0.41454375284961187 0.31673835914751114]]]]] [[[[[0.07963910082699177 0.8285658402083462]]] [[[0.7449246943505786 0.4700270714743451]]]] [[[[0.959879182438664 0.04861638936475854]]] [[[0.23690080062583707 0.3201337800676146]]]]] [[[[[0.8373077738048461 0.7804811117151711]]] [[[0.9550956697852901 0.4141462518663903]]]] [[[[0.3168712313276365 0.3746489423839727]]] [[[0.33610496381987987 0.4450569112660523]]]]]] [[[[[[0.8487942311460386 0.5250831083760509]]] [[[0.3130772510458707 0.1693854675573404]]]] [[[[0.6416559149974276 0.9895373508751837]]] [[[0.5151722104226527 0.802414656217163]]]]] [[[[[0.5298029275650847 0.7906789498313987]]] [[[0.5204797162517087 0.27651409599607557]]]] [[[[0.6374619872685624 0.5147826733853677]]] [[[0.21406642437881984 0.6301875895213623]]]]] [[[[[0.0756194646926619 0.1492685055394013]]] [[[0.7191039838858455 0.1278155265096017]]]] [[[[0.5303786897128911 0.8137124151955951]]] [[[0.9315222902318675 0.45263500261163003]]]]]] ... [[[[[[0.33917950711162936 0.8746823702707518]]] [[[0.14378580773090543 0.2375295946342938]]]] [[[[0.5753803711805077 0.7267154063193049]]] [[[0.7117006938447407 0.7670232821203868]]]]] [[[[[0.10727108522426665 0.9820403916520875]]] [[[0.07967787859729658 0.10445154401785506]]]] [[[[0.19507508805695561 0.1599724434336185]]] [[[0.6772752512069826 0.7255615967997758]]]]] [[[[[0.27759125184723377 0.426455339080393]]] [[[0.4807879928963239 0.7152478230801558]]]] [[[[0.8510427708827784 0.35747359035313775]]] [[[0.5210952517896261 0.55647000124343]]]]]] [[[[[[0.16787083557972382 0.653395029314154]]] [[[0.028532344132678356 0.05631335998454845]]]] [[[[0.40672930307705624 0.5041325786366222]]] [[[0.9784589167916561 0.6106774658575477]]]]] [[[[[0.4645859913423266 0.33598812653084886]]] [[[0.6598089133823346 0.03769370694403984]]]] [[[[0.4407652010173363 0.7634966652552527]]] [[[0.08623705674911131 0.9894353088892164]]]]] [[[[[0.1500694736560978 0.3213510451796032]]] [[[0.2111704045008651 0.42402396322111424]]]] [[[[0.2736223079021213 0.36832487991596796]]] [[[0.6293483156652956 0.759948853015224]]]]]] [[[[[[0.05722160326693515 0.053766148739761155]]] [[[0.45137303805283135 0.4763985710185058]]]] [[[[0.17780246695870505 0.35753329299189474]]] [[[0.29837291463455995 0.1560568030264604]]]]] [[[[[0.09064809072288382 0.5488060600677435]]] [[[0.7074068044825802 0.7936763931127296]]]] [[[[0.689643641297247 0.6311750791158669]]] [[[0.41655462864185466 0.4931253819229273]]]]] [[[[[0.8445885047436492 0.062332476187894725]]] [[[0.540806746318448 0.4469733408923965]]]] [[[[0.6904905004171698 0.8062003472841057]]] [[[0.6257201475670197 0.4929334596321784]]]]]]]] [[[[[[[[0.4235215600954664 0.6946587610026435]]] [[[0.3712036740635677 0.01278954690140599]]]] [[[[0.8544699274550667 0.7210252392794528]]] [[[0.3375677444336962 0.6117938449538199]]]]] [[[[[0.24677075212853972 0.3966175312557506]]] [[[0.3666756075312948 0.9208532149913516]]]] [[[[0.2577258626210256 0.5083802936068218]]] [[[0.7540735991313299 0.4341080600775552]]]]] [[[[[0.30742136508202944 0.08760660721664504]]] [[[0.6100048213188822 0.19620316125094328]]]] [[[[0.10429383374005596 0.8483799359585827]]] [[[0.7808708711344097 0.7215075004859279]]]]]] [[[[[[0.6491585005650061 0.2552557358514753]]] [[[0.3882158012507215 0.8596650840969668]]]] [[[[0.9235512126430382 0.962479628414485]]] [[[0.8635094122672559 0.9541017368105333]]]]] [[[[[0.1034995190447191 0.9363114259105216]]] [[[0.5937891432017123 0.9081806795154544]]]] [[[[0.215519212254204 0.6814920390697548]]] [[[0.88082675835963 0.8887299840716332]]]]] [[[[[0.9480644888539855 0.5802015775194533]]] [[[0.9874670393998631 0.7229003905741228]]]] [[[[0.5372079780629944 0.23486418743178816]]] [[[0.313840393337236 0.45947930006869864]]]]]] [[[[[[0.23843087615893466 0.11363765441614893]]] [[[0.4184425983254578 0.004510615632198345]]]] [[[[0.21867505323267833 0.2756254412372262]]] [[[0.9459657858381975 0.18671496342791027]]]]] [[[[[0.5150795690430814 0.5787006925774937]]] [[[0.6361397097042187 0.9273912682414771]]]] [[[[0.5130946347117056 0.6112579226188857]]] [[[0.19004583274166287 0.4913499155582738]]]]] [[[[[0.10269273565968084 0.4813986357267478]]] [[[0.5290682056387168 0.40974402818578715]]]] [[[[0.5147316323788131 0.007597015439728461]]] [[[0.8530015126053321 0.7484636024421482]]]]]] ... [[[[[[0.2661621052714893 0.09577556686452082]]] [[[0.9614256832536728 0.3772497434122245]]]] [[[[0.9198789750823685 0.5263073677981417]]] [[[0.7873333889264478 0.8242625839310144]]]]] [[[[[0.7052178838693074 0.2678182488154761]]] [[[0.3431509514290795 0.6252146936639059]]]] [[[[0.5163551502813776 0.5441933909925895]]] [[[0.7476894154039981 0.2363991992394272]]]]] [[[[[0.6012333177964427 0.9749069483133335]]] [[[0.691597487369858 0.5862791613885878]]]] [[[[0.526663843504314 0.0874905776987519]]] [[[0.2138918515563214 0.20472667044615667]]]]]] [[[[[[0.4836475723508332 0.7154154376052018]]] [[[0.240433011032128 0.24447627851439635]]]] [[[[0.08818482465089061 0.3682962422565005]]] [[[0.059393754189964953 0.9555644402926342]]]]] [[[[[0.9379993275362267 0.36818284352813646]]] [[[0.2056968203149736 0.8752084822772322]]]] [[[[0.5317038533939803 0.425669700427181]]] [[[0.5962044662597182 0.9913439088260388]]]]] [[[[[0.6194347318534841 0.41777711090372394]]] [[[0.5685197961046141 0.7676189727183572]]]] [[[[0.8547154193643532 0.30760482062497996]]] [[[0.6601333882015059 0.9145187826574994]]]]]] [[[[[[0.011054231158428518 0.0966741097238385]]] [[[0.9475842836977515 0.9586967116018561]]]] [[[[0.9400457793277663 0.9326737861114419]]] [[[0.7707929300557536 0.3816941422939121]]]]] [[[[[0.809017789275528 0.9442245851207736]]] [[[0.0720008257707464 0.8609390350335999]]]] [[[[0.43473520128587917 0.9769932780431619]]] [[[0.979830873233979 0.2928962901077439]]]]] [[[[[0.33186816587887846 0.7804367345728265]]] [[[0.8382378512809594 0.5798297200106275]]]] [[[[0.8435638631818347 0.6385687377499922]]] [[[0.04911705895655849 0.9540544542761268]]]]]]] [[[[[[[0.45104946169026283 0.7883770438614454]]] [[[0.316512045553515 0.9670857352819873]]]] [[[[0.5733419246788932 0.07688687654952353]]] [[[0.11019933962250483 0.15094363580772108]]]]] [[[[[0.23801803880740602 0.513753110074091]]] [[[0.8590151027244571 0.2947330167721075]]]] [[[[0.5671006875971615 0.8510652816329025]]] [[[0.18319275382454647 0.06546034856774585]]]]] [[[[[0.6584689743362423 0.7152217214015495]]] [[[0.7388413480851187 0.7637945879587559]]]] [[[[0.21728053314592344 0.94757078453022]]] [[[0.27715254258110367 0.3507680444407848]]]]]] [[[[[[0.3478766732380164 0.36398173017900726]]] [[[0.36832592637000106 0.12394225868654263]]]] [[[[0.6439306581770634 0.13279721315503645]]] [[[0.4114548405427826 0.5821308507051265]]]]] [[[[[0.48367071660545735 0.4514201294530923]]] [[[0.4415006973610701 0.02655066880015]]]] [[[[0.571871357404934 0.9153329484514051]]] [[[0.3565660935675766 0.9447432356349073]]]]] [[[[[0.09933648675748996 0.3046270074332845]]] [[[0.033638875885420694 0.2312681081011405]]]] [[[[0.43183245314081187 0.5029240739079827]]] [[[0.25228895443495725 0.8614743829953022]]]]]] [[[[[[0.818856506766111 0.27148720385445746]]] [[[0.9032754536318535 0.06140301752209598]]]] [[[[0.9521165354877191 0.803980832800609]]] [[[0.244962996932776 0.9797798997980142]]]]] [[[[[0.1259431605222492 0.7688001619272244]]] [[[0.8934267563052897 0.8539892697272202]]]] [[[[0.2953026772928017 0.2642764365544663]]] [[[0.7907281443296946 0.9553991726594327]]]]] [[[[[0.21812478968899185 0.6712562213142649]]] [[[0.5914558213345604 0.5614130131998419]]]] [[[[0.2520178861405874 0.7115244589881118]]] [[[0.7353574626764507 0.43413595916407055]]]]]] ... [[[[[[0.45842006476226926 0.25091603441865884]]] [[[0.4287971643550027 0.25175245216088193]]]] [[[[0.9504060291721531 0.3604997533159874]]] [[[0.39573893444007613 0.740641397241982]]]]] [[[[[0.6342860833663423 0.09425277112705455]]] [[[0.21693317061977735 0.10950610127991811]]]] [[[[0.19228065941256212 0.31137672328482435]]] [[[0.17920686088154192 0.46563717824480433]]]]] [[[[[0.49823870302732187 0.3760729610256608]]] [[[0.32959973472170134 0.002439015022112301]]]] [[[[0.7619017365570826 0.24610396031480497]]] [[[0.32447274997048003 0.6467384761080313]]]]]] [[[[[[0.570507056109827 0.7187488950339445]]] [[[0.2536307002240208 0.8082926394488122]]]] [[[[0.6859815143510826 0.46828319943300145]]] [[[0.30351291277830705 0.4740386646094271]]]]] [[[[[0.471824647378695 0.6661154929709007]]] [[[0.36041066046168746 0.5910383053173222]]]] [[[[0.7550760303192132 0.5414200728513181]]] [[[0.025801454477410002 0.4239464333056493]]]]] [[[[[0.7740525752974413 0.10516702971220737]]] [[[0.4696725690562352 0.8150353600566931]]]] [[[[0.5499015853826889 0.6983739141193418]]] [[[0.628170155008665 0.2482094540413563]]]]]] [[[[[[0.594073715352767 0.8573597530221408]]] [[[0.6682604947241612 0.16626904084082417]]]] [[[[0.015353749084360935 0.7002551988533646]]] [[[0.7208940198145639 0.7316814139477794]]]]] [[[[[0.4064498939285953 0.6158773127808939]]] [[[0.8150277447387723 0.6155679306644385]]]] [[[[0.8719813814248892 0.41259246497449686]]] [[[0.9730573602107941 0.8339350212003213]]]]] [[[[[0.8479815887022827 0.35275022255782895]]] [[[0.17454138442379352 0.6731832678571279]]]] [[[[0.0476837339945928 0.24433861039858873]]] [[[0.20666224538423594 0.19519339441587502]]]]]]] [[[[[[[0.9772206160037619 0.615659099884262]]] [[[0.350855729356661 0.9079920605976575]]]] [[[[0.6529800733100161 0.12365189875078941]]] [[[0.16643291954959782 0.4138812702598499]]]]] [[[[[0.28616238785232306 0.14564136891726165]]] [[[0.16106805608537567 0.11922681725478923]]]] [[[[0.388950927789928 0.09705717574717898]]] [[[0.7564790155337927 0.6555256282358942]]]]] [[[[[0.9412798493451591 0.7272234557803116]]] [[[0.6996572632078397 0.821260924103942]]]] [[[[0.39658818927949235 0.926496518795583]]] [[[0.12575557851861452 0.2800268590183881]]]]]] [[[[[[0.042907569455395644 0.4660081245285691]]] [[[0.8961294695061519 0.5386061498846509]]]] [[[[0.4060807587011658 0.4111715554474532]]] [[[0.5554338103800212 0.9637423303655059]]]]] [[[[[0.0433333350506766 0.9515328616776583]]] [[[0.597123740489638 0.11328137350799505]]]] [[[[0.2283709165426694 0.23987260560948886]]] [[[0.8940868916769305 0.053152420101329145]]]]] [[[[[0.9477140779428762 0.5929523579141688]]] [[[0.12967235131867028 0.6179529314175778]]]] [[[[0.39234379951122633 0.9686735170428094]]] [[[0.4007542698220572 0.9234320461892453]]]]]] [[[[[[0.3127401229600564 0.7735503273489253]]] [[[0.8858430927469145 0.8364550315600836]]]] [[[[0.2541776472773194 0.0052705875803572555]]] [[[0.8108698015538558 0.7453746682161223]]]]] [[[[[0.1438327929005464 0.9321183511400627]]] [[[0.6416056722430167 0.8907663790971857]]]] [[[[0.6520082322230499 0.947079539223428]]] [[[0.24148173886074298 0.031547357970403755]]]]] [[[[[0.7426737177112605 0.9673780475241492]]] [[[0.9957726221549421 0.06059874225625339]]]] [[[[0.8013349079792556 0.7881329548733852]]] [[[0.6463340886482665 0.4616984618237353]]]]]] ... [[[[[[0.6806068618132644 0.5925830404361513]]] [[[0.9400375751027222 0.2676505997007774]]]] [[[[0.9052906820794736 0.23668359343193113]]] [[[0.23598566003658583 0.2239184603579114]]]]] [[[[[0.3734564250186746 0.4067534588535592]]] [[[0.2999051617819948 0.5419713453752959]]]] [[[[0.6042941115624885 0.46727134188410835]]] [[[0.7669461103955015 0.32967934825916334]]]]] [[[[[0.16822677128104702 0.9465057616522415]]] [[[0.922657973185351 0.73782873882976]]]] [[[[0.7435706517737324 0.8994058084842437]]] [[[0.01983962708260234 0.6855011373519923]]]]]] [[[[[[0.18016323935384093 0.6645451873069075]]] [[[0.5340871443192615 0.00787321524985285]]]] [[[[0.20395155022620703 0.4164457575858731]]] [[[0.763912256094324 0.5584669812988691]]]]] [[[[[0.4989138955178113 0.9633304804822459]]] [[[0.5451169954141905 0.39800213542306684]]]] [[[[0.4371902398219564 0.8408168312308335]]] [[[0.9090314742520547 0.3257628128836947]]]]] [[[[[0.8454924125304605 0.09596679368776173]]] [[[0.10339431621073925 0.9288936131051468]]]] [[[[0.30805837676023107 0.9569875133879032]]] [[[0.5989670027940949 0.18956003272093092]]]]]] [[[[[[0.17980613875408558 0.963476784349146]]] [[[0.7495330931975617 0.8716642433639639]]]] [[[[0.04595743865091051 0.1532332476504693]]] [[[0.9684028174400554 0.6519148403409609]]]]] [[[[[0.9248243414459965 0.637120465562821]]] [[[0.21129559621640936 0.5322820495433134]]]] [[[[0.28596828036358746 0.4715832165737971]]] [[[0.48684922526074004 0.27477541962354624]]]]] [[[[[0.2044318259977873 0.8250135216378643]]] [[[0.5164651245254819 0.5503365963415253]]]] [[[[0.28492007321902935 0.723741140337347]]] [[[0.4031228609350367 0.39952645426889677]]]]]]] [[[[[[[0.3653957754202454 0.1137900313954493]]] [[[0.11934469032492956 0.8857045372176282]]]] [[[[0.6905942633303055 0.6547164485519011]]] [[[0.5933784524224262 0.3064048475460347]]]]] [[[[[0.10096507089099671 0.8723526088172643]]] [[[0.29904558931448955 0.8404443733751421]]]] [[[[0.9219053701597885 0.355762199553891]]] [[[0.12819286284199383 0.7558593111249765]]]]] [[[[[0.9322327874913322 0.45027844574030174]]] [[[0.9029083159721499 0.718269842589217]]]] [[[[0.13162194970865582 0.7541711210051643]]] [[[0.6850013405652405 0.7153035105677803]]]]]] [[[[[[0.06981127840236878 0.7823618950455544]]] [[[0.33321151296749985 0.18087597506343622]]]] [[[[0.4444976478421139 0.6828759608906209]]] [[[0.5789958343944175 0.475877079988117]]]]] [[[[[0.25438819311894634 0.430963732109524]]] [[[0.810376282646101 0.48267595098832394]]]] [[[[0.23446052963769626 0.0605903031114543]]] [[[0.1286302839585648 0.5465543587626644]]]]] [[[[[0.8963219343785657 0.34190195165355675]]] [[[0.9170716244420767 0.5179984459566956]]]] [[[[0.10802061452681011 0.19757602551902687]]] [[[0.7872381858261002 0.11638834477095494]]]]]] [[[[[[0.2753642223694227 0.6476712575121181]]] [[[0.20725350373710927 0.9480013777950231]]]] [[[[0.6618479941176519 0.6760182318840037]]] [[[0.03325226208207033 0.5477555827096875]]]]] [[[[[0.39369355668394024 0.37659753648869077]]] [[[0.4683620813186409 0.23163414690372763]]]] [[[[0.6997832722048465 0.4792680105700322]]] [[[0.9365984708111643 0.9036250195508527]]]]] [[[[[0.34421657915983217 0.7535974793331137]]] [[[0.5641654413742215 0.3778220732919857]]]] [[[[0.9987593427509326 0.7692461594434403]]] [[[0.20277959308907845 0.04863076046041359]]]]]] ... [[[[[[0.6038765014132305 0.989205206464413]]] [[[0.8821167109574144 0.20503670743295188]]]] [[[[0.38099552143566084 0.4673010586707619]]] [[[0.28775398275818376 0.23976812296811734]]]]] [[[[[0.04379082423574199 0.7626984692555425]]] [[[0.26244135294490856 0.9698067225697692]]]] [[[[0.30250757999600497 0.10709685061976582]]] [[[0.22447157911149285 0.9983597459893219]]]]] [[[[[0.6025226127240105 0.5730618843943167]]] [[[0.7182275568345212 0.47099315120920415]]]] [[[[0.4501447851535545 0.03118347359527085]]] [[[0.413702398691873 0.8365409224698054]]]]]] [[[[[[0.35304387643867197 0.8176839122159435]]] [[[0.6602927792622643 0.5540620971660613]]]] [[[[0.8695324480095912 0.3487214120189186]]] [[[0.8050012934637613 0.9143740604291742]]]]] [[[[[0.5481716296042801 0.19779582922619243]]] [[[0.6976092914004044 0.3758154073681196]]]] [[[[0.27348534464019014 0.45020031357803825]]] [[[0.513755048795533 0.15354417869792047]]]]] [[[[[0.8309328771033703 0.5029133806323988]]] [[[0.23741833894230224 0.2692050268043722]]]] [[[[0.797817031888486 0.7933861136135357]]] [[[0.29429319824669986 0.22628923569533332]]]]]] [[[[[[0.5567808344854083 0.5453060658974308]]] [[[0.5323827243567463 0.5683452019526677]]]] [[[[0.010312500667219338 0.8411675898807817]]] [[[0.9193709713998156 0.2891543665842554]]]]] [[[[[0.4585879947881213 0.6132773417059662]]] [[[0.8461375943972966 0.23531766772280005]]]] [[[[0.49505573065051767 0.2040649706043257]]] [[[0.5280412881706288 0.6507098515484439]]]]] [[[[[0.7180971700328417 0.40754239484738763]]] [[[0.4384698984265396 0.8967499708536291]]]] [[[[0.10732937402469056 0.7487126936574654]]] [[[0.9555980577727535 0.09529719143639193]]]]]]]] [[[[[[[[0.7160143585736248 0.7216600330623719]]] [[[0.8683008561988244 0.7072190297469945]]]] [[[[0.02084154974178498 0.03347404116391228]]] [[[0.0005158309137051065 0.05105643199185472]]]]] [[[[[0.513523827693642 0.6164979436883333]]] [[[0.779054999053651 0.8022523299449436]]]] [[[[0.9429487602954955 0.47481819249378787]]] [[[0.7117497183845816 0.9050961324831508]]]]] [[[[[0.7669528060839337 0.819074012385905]]] [[[0.6037427587097534 0.8669172604369142]]]] [[[[0.30906188405854795 0.9487575338246877]]] [[[0.7402730217669992 0.9990787948655969]]]]]] [[[[[[0.057552129819321896 0.015927081498598228]]] [[[0.6756071765846536 0.6704652557786478]]]] [[[[0.6669915418694337 0.33232469119719477]]] [[[0.8274515029754401 0.5950494400707251]]]]] [[[[[0.7766137859661835 0.7247724809857217]]] [[[0.688300063245802 0.9239993346806338]]]] [[[[0.9613462355298436 0.8047070065257405]]] [[[0.8689931660889894 0.5073125206781959]]]]] [[[[[0.834869032225639 0.12201319876346228]]] [[[0.9731662566078136 0.04048555892235861]]]] [[[[0.961617792525475 0.3051512584119789]]] [[[0.9966857483425798 0.8655282705130615]]]]]] [[[[[[0.9863876747837366 0.17352804953428969]]] [[[0.2991861223791512 0.8077073082959098]]]] [[[[0.5018395727684034 0.4129798583126828]]] [[[0.7943819166831717 0.7736823662454247]]]]] [[[[[0.17233693333913314 0.3050410138381401]]] [[[0.785387887015573 0.3962356060038358]]]] [[[[0.942604115763961 0.4536579372588839]]] [[[0.5639018696044401 0.19788454516314524]]]]] [[[[[0.445996633011537 0.5640130572764037]]] [[[0.9011530785041968 0.9305266695801828]]]] [[[[0.03448119887636081 0.6089169690354138]]] [[[0.912666209821901 0.8492913790966563]]]]]] ... [[[[[[0.2569471797960511 0.9624631528754151]]] [[[0.30533268761703714 0.21702522258441403]]]] [[[[0.426592174601488 0.40662605376994376]]] [[[0.09556086297121413 0.6137065718849387]]]]] [[[[[0.2982098801659032 7.73985490561957e-05]]] [[[0.7780194143371558 0.6656750392399102]]]] [[[[0.6086947482768533 0.23686656128546124]]] [[[0.7111745205412464 0.7818537688742773]]]]] [[[[[0.5309489379236965 0.6849846696273416]]] [[[0.35617133851704375 0.8592700195439062]]]] [[[[0.8986118086258291 0.8558624000553003]]] [[[0.9440101267159182 0.6806934313847879]]]]]] [[[[[[0.37266953149700366 0.182073796591124]]] [[[0.28004083657415246 0.5105838936574401]]]] [[[[0.7277458683660815 0.44618181921467315]]] [[[0.9255292102885629 0.728548648950633]]]]] [[[[[0.9530165492545817 0.8752067821220475]]] [[[0.6368349834333308 0.36663468531890475]]]] [[[[0.4585753172026402 0.44925126143599514]]] [[[0.8267572785657774 0.52507816837225]]]]] [[[[[0.3912967773498399 0.21448591508910975]]] [[[0.005460256200472524 0.4318681988462386]]]] [[[[0.0613420309276318 0.7047042973721495]]] [[[0.803024344192604 0.06028966301083172]]]]]] [[[[[[0.8137682144836961 0.6222091560358083]]] [[[0.40039523631665264 0.8755763649502887]]]] [[[[0.03059554119488661 0.005992753480190571]]] [[[0.0414330386045928 0.6159844084675273]]]]] [[[[[0.9875668639981623 0.7406498040177725]]] [[[0.036898800801542175 0.5416993334025351]]]] [[[[0.9732355682257549 0.7631714325432685]]] [[[0.9790263366541713 0.45747190659283177]]]]] [[[[[0.07350698519515986 0.3881954930967523]]] [[[0.6796612682728664 0.31575393275099206]]]] [[[[0.8069152239394262 0.37119098365381786]]] [[[0.18695431454279698 0.7800310958130399]]]]]]] [[[[[[[0.44667614719415627 0.001164948250688802]]] [[[0.9265032585911306 0.42410793859353313]]]] [[[[0.5384616006355777 0.8265547134321228]]] [[[0.23040298610055854 0.19788947627386044]]]]] [[[[[0.9641798972669678 0.6456559174636989]]] [[[0.8549826164683321 0.5411921627118502]]]] [[[[0.5415494751578523 0.42674555937947056]]] [[[0.11730167912323153 0.8224063572144032]]]]] [[[[[0.3388496269056427 0.8202168675915014]]] [[[0.10652232640347148 0.309056828714121]]]] [[[[0.7220013455419212 0.9599031061109874]]] [[[0.27863279047691725 0.5564888829443926]]]]]] [[[[[[0.356561704425719 0.8440492273043382]]] [[[0.7188056275644185 0.4491695919227342]]]] [[[[0.5198466640389803 0.2959603972562178]]] [[[0.29876555407327454 0.23061124424503388]]]]] [[[[[0.7673112339508888 0.1429990988630082]]] [[[0.8503040251532167 0.8184749832523501]]]] [[[[0.3005101290501868 0.4138271435016124]]] [[[0.4296069639189055 0.5970011282827562]]]]] [[[[[0.8443547664521303 0.13695380395173706]]] [[[0.4652314372262286 0.6077363143612036]]]] [[[[0.9357673728705903 0.47033542806708706]]] [[[0.059731621805982904 0.12562670008621213]]]]]] [[[[[[0.9459183886507788 0.3529605525917765]]] [[[0.13569658586726574 0.43373423121730237]]]] [[[[0.7014003893264417 0.49930753015837337]]] [[[0.3745689279873813 0.866406834079795]]]]] [[[[[0.5459491194235614 0.13588202239421288]]] [[[0.7610384360751273 0.33571918382525834]]]] [[[[0.6022525134194123 0.34185677046151053]]] [[[0.592548660554345 0.360448831110767]]]]] [[[[[0.21327158766203902 0.0031473257937151278]]] [[[0.804185366745906 0.4748284121315568]]]] [[[[0.00984986954114675 0.7375696380422577]]] [[[0.23930323799531394 0.9435412216882684]]]]]] ... [[[[[[0.7949834660232155 0.9558159444685814]]] [[[0.7330607107135905 0.8220488705853837]]]] [[[[0.423948349351323 0.8536876018046691]]] [[[0.5946052142542102 0.6413525157023781]]]]] [[[[[0.9924940091855058 0.9763451117087121]]] [[[0.6428019776671829 0.4930664734845688]]]] [[[[0.4729662930263049 0.38073909164082853]]] [[[0.3577017592412439 0.8348267243663898]]]]] [[[[[0.4799563702238424 0.25030057884203727]]] [[[0.07508002831492955 0.3029561971225685]]]] [[[[0.6918909692098688 0.7568146258097396]]] [[[0.32294528070203943 0.018569287780462407]]]]]] [[[[[[0.37217602634571123 0.90189062266058]]] [[[0.9650719232676358 0.11204315422073607]]]] [[[[0.6238515200339868 0.053208883152656705]]] [[[0.623594708758861 0.9540974457984833]]]]] [[[[[0.8773572564725602 0.10181052394928558]]] [[[0.5420597200915659 0.14024804962178017]]]] [[[[0.0910687386972795 0.25433723485841264]]] [[[0.18410353186847828 0.2787095848151646]]]]] [[[[[0.3110304840032496 0.9103911775808107]]] [[[0.7209266397607443 0.3310705106919992]]]] [[[[0.4487371646217486 0.48948516688897437]]] [[[0.5636906172525923 0.03736609738594199]]]]]] [[[[[[0.47359106030926434 0.9307425251937844]]] [[[0.09048200333108125 0.4444724863436491]]]] [[[[0.47888394140419255 0.44942224524377683]]] [[[0.6083761483804029 0.4001859433194067]]]]] [[[[[0.3850665770897639 0.9631113236866836]]] [[[0.48622422293587586 0.12973840063494202]]]] [[[[0.19972793144342849 0.25523339274044576]]] [[[0.6932749708877826 0.42618763799837567]]]]] [[[[[0.9631906432196988 0.25175121821558144]]] [[[0.8281046102790194 0.11226122797141425]]]] [[[[0.28230010848251763 0.6927686943828544]]] [[[0.36923496033866554 0.6503523796929271]]]]]]] [[[[[[[0.7726493651888602 0.5302850850299679]]] [[[0.8061637764022611 0.2508690079775072]]]] [[[[0.3433322597189563 0.7285424491739664]]] [[[0.5840169579357137 0.40759408470106107]]]]] [[[[[0.5368502002895137 0.8982369421193003]]] [[[0.6429897274375284 0.7402165780329043]]]] [[[[0.38702708223664917 0.6775077492713295]]] [[[0.8193123843281706 0.03336448634470035]]]]] [[[[[0.5582308290076146 0.67458388970242]]] [[[0.6682479292880257 0.8019514112042994]]]] [[[[0.11667529810780453 0.6914481094681711]]] [[[0.03528157202099569 0.12306245037871333]]]]]] [[[[[[0.4265734999705454 0.1272566164788811]]] [[[0.4571305122377133 0.6178176949245053]]]] [[[[0.4047382572323922 0.41255296195822133]]] [[[0.7004020078472687 0.5928014327439607]]]]] [[[[[0.111427739589809 0.41930476569687114]]] [[[0.3689617905265459 0.7784727115550933]]]] [[[[0.7491851635556293 0.6952311165940888]]] [[[0.997773617725723 0.01221835225231882]]]]] [[[[[0.7492531704804704 0.5918288240380111]]] [[[0.14680870050701977 0.9784043842206401]]]] [[[[0.12010414619792309 0.4019313320288691]]] [[[0.7029175270237252 0.47454768655193225]]]]]] [[[[[[0.6425940834848143 0.12065137701543693]]] [[[0.840453868850367 0.31926905734175526]]]] [[[[0.8979570286686428 0.17812778522306838]]] [[[0.9058368349440015 0.005482811760513684]]]]] [[[[[0.8783957995058339 0.692946873192726]]] [[[0.6401415907927603 0.5868453720740471]]]] [[[[0.34902344576352484 0.6606211856177352]]] [[[0.22736154687939703 0.07592209232241309]]]]] [[[[[0.9404656334504894 0.294355323123757]]] [[[0.4824404092403415 0.9331145777358903]]]] [[[[0.36937450688228457 0.4827674946012557]]] [[[0.8738642807531203 0.19177014709649143]]]]]] ... [[[[[[0.44038021835768426 0.20998369055279276]]] [[[0.12071535080161111 0.9739355814589202]]]] [[[[0.2652057879240376 0.9796144492451224]]] [[[0.04946163900310374 0.5679138164867873]]]]] [[[[[0.9327753744336768 0.3150725905230767]]] [[[0.23683534450553734 0.3046948621669766]]]] [[[[0.8564455491378937 0.05077194376473304]]] [[[0.8270489131575259 0.3418556706796365]]]]] [[[[[0.8447639338809159 0.4483979591873477]]] [[[0.025503745757937124 0.9295037724501479]]]] [[[[0.322355075788767 0.7356806663293478]]] [[[0.08090182692278369 0.7515417374928735]]]]]] [[[[[[0.0014146846940520375 0.38798140684547755]]] [[[0.7118625689492674 0.7215142540832687]]]] [[[[0.5915684421133233 0.8304575092297451]]] [[[0.4739365755348828 0.9766390896401131]]]]] [[[[[0.7432510884282522 0.6216239845625946]]] [[[0.12524666553851405 0.4246349892651342]]]] [[[[0.7668709911422674 0.6976970780293409]]] [[[0.665269343815574 0.9129078270544415]]]]] [[[[[0.08778040330507542 0.23978303217153984]]] [[[0.06975655876948195 0.21085564444645155]]]] [[[[0.8730892237038205 0.32592056106714895]]] [[[0.09389567520010045 0.039557577040794656]]]]]] [[[[[[0.28733536583762 0.3613784197169354]]] [[[0.5162920650853335 0.15682486424515696]]]] [[[[0.24734942782214908 0.21982810102450667]]] [[[0.7684517679442181 0.7245758445371094]]]]] [[[[[0.19567519325516458 0.8819709979913594]]] [[[0.8955135330120343 0.490634180636367]]]] [[[[0.6550462571934387 0.011184225119658109]]] [[[0.10404214945612611 0.7089388780525419]]]]] [[[[[0.17473034300672274 0.34963429335499174]]] [[[0.4535365808733206 0.1410321993921949]]]] [[[[0.26680569768845364 0.7033841630781076]]] [[[0.030883490825593496 0.38771848584668145]]]]]]] [[[[[[[0.017212724229439424 0.35908289743916366]]] [[[0.6401651621763592 0.60528731746536]]]] [[[[0.9985903673207179 0.10431051819896242]]] [[[0.43388450538785894 0.5438179081534339]]]]] [[[[[0.6560578582059606 0.796505323019268]]] [[[0.8455751211173197 0.05999828012987207]]]] [[[[0.8697679294623125 0.8203329842566291]]] [[[0.3227930863485996 0.12123307425778496]]]]] [[[[[0.12567787636371175 0.07777271833308541]]] [[[0.2487701655729253 0.47650920724984946]]]] [[[[0.32146377665282644 0.9976573831262108]]] [[[0.3196127323233935 0.20852438863439648]]]]]] [[[[[[0.24744068495453342 0.12076398182837478]]] [[[0.12008879991647148 0.03123624230086064]]]] [[[[0.6027891407229239 0.10638958025133993]]] [[[0.5963683216563347 0.8672835438911539]]]]] [[[[[0.9115151010230026 0.026540262391921532]]] [[[0.7822558180379807 0.7685149272678491]]]] [[[[0.6029207876501614 0.4335365119686623]]] [[[0.279475406688679 0.7797457334815764]]]]] [[[[[0.683048921517784 0.3536015610522667]]] [[[0.6890088661636321 0.2900095232415958]]]] [[[[0.4391416808098384 0.9853361840277034]]] [[[0.9783693734840928 0.2719645904720558]]]]]] [[[[[[0.8516274289776679 0.23782406757308105]]] [[[0.23111559476495014 0.9192715147098167]]]] [[[[0.5543520392470106 0.9305874501417373]]] [[[0.840783332170653 0.5064848293120211]]]]] [[[[[0.5621645113356738 0.5562808251181358]]] [[[0.03519175540949848 0.9185368793913367]]]] [[[[0.6618500935422049 0.5852419380798943]]] [[[0.00636485316995361 0.4638161560585251]]]]] [[[[[0.931296058107773 0.7191755847427299]]] [[[0.7835258268609633 0.9788094127797108]]]] [[[[0.8367642576412423 0.5889477521692964]]] [[[0.8987182499352886 0.2757283466547855]]]]]] ... [[[[[[0.24702053198566043 0.4929845898717301]]] [[[0.22990762766062767 0.1288693066800367]]]] [[[[0.618195401818538 0.6153048457541442]]] [[[0.4549009686415785 0.9921156439376934]]]]] [[[[[0.819599971337751 0.06726192908852835]]] [[[0.6893422052582195 0.8403993548515181]]]] [[[[0.2705569739626197 0.9944832681519984]]] [[[0.7408421188873962 0.33894059719778336]]]]] [[[[[0.9129616345072987 0.3184829015280086]]] [[[0.8880789485110839 0.8219855936194908]]]] [[[[0.35672774088461 0.38776844288948353]]] [[[0.8825611832790465 0.3354750137413536]]]]]] [[[[[[0.19383710020790457 0.4445573085915715]]] [[[0.927217015036584 0.8925927629665683]]]] [[[[0.16155529851294204 0.46896934839578]]] [[[0.950605054634281 0.5921421746072072]]]]] [[[[[0.14822784022860647 0.7966625300537361]]] [[[0.19820259377158 0.424471054493586]]]] [[[[0.5185495078554806 0.7302674232985441]]] [[[0.6635027208347795 0.41595133412300567]]]]] [[[[[0.6956582923731566 0.9867056515297186]]] [[[0.7459533638540768 0.7424726508709891]]]] [[[[0.9009128653615187 0.2833862632206945]]] [[[0.14273398381251734 0.283080447595182]]]]]] [[[[[[0.5373575974562596 0.028370615309654235]]] [[[0.5878051567252509 0.6912798439355533]]]] [[[[0.9316256733729101 0.977048250889358]]] [[[0.5544491427537305 0.20872272009410886]]]]] [[[[[0.48422639081537433 0.6040197286843535]]] [[[0.284256528669812 0.1883607877687149]]]] [[[[0.43046623165840825 0.12078106708865521]]] [[[0.6743299266474518 0.4177025065007903]]]]] [[[[[0.10254443821788484 0.5518114937246629]]] [[[0.5615995673676818 0.9408468987737607]]]] [[[[0.2663626325977848 0.014436627882035369]]] [[[0.41160904134411214 0.05255017802373141]]]]]]]]]
Units CH4 gigagram/year - population(time, area (ISO3), provenance, model, source)float64[] 0.271 0.6973 ... 0.09837 0.09811
- entity :
- population
Magnitude [[[[[0.2710455767032238 0.6973141141160162]]] [[[0.39391530140444053 0.4437661930086]]] [[[0.9710364089202611 0.3387362712060591]]] [[[0.5844332025841523 0.40647594769297357]]]] [[[[0.7660189413600262 0.581441775600035]]] [[[0.709715121131175 0.9616518247459277]]] [[[0.07829885481662324 0.29966335078362816]]] [[[0.06539304727904216 0.8019419381676014]]]] [[[[0.611336667926068 0.6363094486739869]]] [[[0.5000648369087302 0.31317769612115187]]] [[[0.6603567263559286 0.4504767155727527]]] [[[0.15466081093932205 0.6051700422711489]]]] [[[[0.8403797457017333 0.9793035383324494]]] [[[0.6303702888165448 0.828574057081404]]] [[[0.24635793964981267 0.6261120883720042]]] [[[0.05145056552579619 0.03344225114561983]]]] [[[[0.7721291836962167 0.6749082240292353]]] [[[0.7653214340279184 0.1542210598997109]]] [[[0.5321232208086857 0.1977254175580342]]] [[[0.08497977540891122 0.7141853062825394]]]] [[[[0.07738122168761774 0.3261442831387035]]] [[[0.6842132243132655 0.28168176460400796]]] [[[0.600906380093934 0.7613232291765464]]] [[[0.4571981320093451 0.10196484203203893]]]] [[[[0.541392313435 0.5694875457877933]]] [[[0.863506433865893 0.55680796247323]]] [[[0.13767222252498523 0.08074094634827977]]] [[[0.7429790985908935 0.24191808882344012]]]] [[[[0.9706521561744643 0.4269745303236492]]] [[[0.6034848975469725 0.7790128431540467]]] [[[0.9467701160482337 0.6136412410146806]]] [[[0.9487748233432888 0.46495883478426037]]]] [[[[0.3345622257476507 0.8067017480638148]]] [[[0.17928338705637747 0.10176992010396224]]] [[[0.31679862954874183 0.7205547901194409]]] [[[0.5866228658443533 0.5721183282465169]]]] [[[[0.8009450634964742 0.3951130096277783]]] [[[0.27578566665147086 0.6643669892237235]]] [[[0.09984064157785155 0.2971337652599757]]] [[[0.6668924179696926 0.07321380295357138]]]] [[[[0.8658724136895534 0.7580409913840416]]] [[[0.10673571461064346 0.8597365619227716]]] [[[0.029771412784324602 0.10923102831157805]]] [[[0.6548781734875676 0.6042305374571924]]]] [[[[0.4777243357047075 0.2768057878779151]]] [[[0.3984991253667609 0.0564222924415565]]] [[[0.6032147367708456 0.006646379992538698]]] [[[0.029651994979185803 0.14182834524006327]]]] [[[[0.7454155702980666 0.8104397455551791]]] [[[0.7614629908613102 0.3832407389345064]]] [[[0.5060264719657573 0.5676064599839115]]] [[[0.20725446369499756 0.15321689369295854]]]] [[[[0.778981965218313 0.6158246262647917]]] [[[0.6337161471175136 0.7788425719587734]]] [[[0.5023186101138932 0.040740112168445086]]] [[[0.6122438647487941 0.09197851154255843]]]] [[[[0.11101535754893777 0.3839698973229406]]] [[[0.7402195374571139 0.9092009158425087]]] [[[0.6163933139026458 0.02349101333057102]]] [[[0.21741356842737658 0.11110543004684392]]]] [[[[0.7053649210378455 0.6739586299029255]]] [[[0.7532701776066263 0.2383849915498204]]] [[[0.0643184387739183 0.3245251359615785]]] [[[0.9975583118691869 0.759756003685667]]]] [[[[0.841766384767613 0.7008732003667663]]] [[[0.4111725994634765 0.8742050272965709]]] [[[0.3049613570256241 0.6048037223602295]]] [[[0.5339042895817099 0.9297565918463937]]]] [[[[0.1066755595481872 0.9546219361807444]]] [[[0.7220706888515713 0.06269429104606727]]] [[[0.03484440293892388 0.5425178584513949]]] [[[0.25051152865436066 0.07278157057965917]]]] [[[[0.25406826337058785 0.6384768300257316]]] [[[0.43418931982601694 0.7071338772971593]]] [[[0.5209497535100933 0.5228861163638934]]] [[[0.2754081963640205 0.20263468192452705]]]] [[[[0.7951490269134027 0.0032743824822268897]]] [[[0.9180389202306123 0.43660296137329213]]] [[[0.6214149396735799 0.01366691377023177]]] [[[0.6051211352436626 0.3377619626856331]]]] [[[[0.7192017911277895 0.16993556675680987]]] [[[0.6702843489542021 0.3004320692101031]]] [[[0.46861794786549127 0.4481859224752638]]] [[[0.0983653001146968 0.09810554720583087]]]]]
Units dimensionless - SF6 (SARGWP100)(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CO2·Gg/a] 1.03e+03 ... 6.274e+03
- entity :
- SF6
- gwp_context :
- SARGWP100
Magnitude [[[[[[[[[1030.3502547202254 3421.3526922841447]]] [[[8926.526990442148 16558.219593127924]]]] [[[[3123.669832256124 430.75321558990385]]] [[[17925.56118773514 15527.42031299844]]]]] [[[[[8158.973149740188 21215.95380264568]]] [[[23540.61523671805 2087.7883230921807]]]] [[[[9826.669247355449 2203.2392359435403]]] [[[9101.179143856474 5862.3939939892]]]]] [[[[[3831.285599363686 15178.84678263209]]] [[[18851.578788136343 18538.36467492434]]]] [[[[402.53867660621154 4442.567811622738]]] [[[14770.896920534433 23306.03176603539]]]]]] [[[[[[8758.550136305157 536.7287687930948]]] [[[14092.728206675247 15264.829695666367]]]] [[[[834.0080497757748 17068.733207778907]]] [[[9925.10452425888 17272.04850249866]]]]] [[[[[14482.875552426432 20114.45174823879]]] [[[5192.0809036921955 21706.784360452075]]]] [[[[7807.571514747927 10555.93575275121]]] [[[14585.188777349678 20543.839356619574]]]]] [[[[[8122.941495986041 21877.02333051653]]] [[[1811.9890733180239 10117.299100407334]]]] [[[[18771.125830488054 4950.1810938977205]]] [[[5322.436032563321 15189.934931305384]]]]]] [[[[[[2217.404223560493 19729.08031336588]]] [[[2511.5785394811965 3815.325590482696]]]] [[[[3196.979339724804 5023.691612042498]]] [[[17234.395190031915 11605.335963126006]]]]] [[[[[18524.960914993935 20875.148970705744]]] [[[8688.089283064115 22364.631678730104]]]] [[[[12344.771494895927 20918.03166415318]]] [[[14539.33969184035 22264.763606873887]]]]] [[[[[13821.065594052914 1937.6778282138425]]] [[[3581.281848349128 6680.838158154557]]]] [[[[19045.544435761825 11778.013875217355]]] [[[5609.949333793689 3340.4861756911973]]]]]] ... [[[[[[6597.9439970297135 12668.406626810594]]] [[[21259.28984639333 22017.912796881497]]]] [[[[2619.4705476587146 6340.644206434397]]] [[[12125.530213598096 14394.94271681862]]]]] [[[[[17094.340693238286 12317.236202699603]]] [[[20945.94321808873 8113.769986414212]]]] [[[[5279.417785459147 23791.786394175433]]] [[[13423.019717915347 21477.307009953416]]]]] [[[[[16090.629844660072 4803.267943346083]]] [[[22750.922527966504 12068.541982441802]]]] [[[[18461.94991373336 11141.11213751175]]] [[[6466.346416975376 164.4805713373196]]]]]] [[[[[[14509.708681284166 5171.867221264378]]] [[[18543.35473850675 10729.001278364383]]]] [[[[23157.536993734222 23835.29646772007]]] [[[5362.581679563228 14231.32574482129]]]]] [[[[[9342.227152029152 1715.5691439079733]]] [[[15481.14165913498 15318.847985937677]]]] [[[[22398.61038284701 14931.364325589342]]] [[[13293.728118925152 4357.504636640182]]]]] [[[[[20946.153322909326 15842.86699493375]]] [[[6177.717867272608 18695.64058596776]]]] [[[[13919.43759604888 7199.132993910611]]] [[[17816.95492386754 9290.676005411475]]]]]] [[[[[[597.4722325223474 7279.592518374772]]] [[[19119.78227050763 7996.231052978488]]]] [[[[22407.71602574447 12777.893544309465]]] [[[18067.425027817404 17995.03071923705]]]]] [[[[[18894.332241125034 6007.446144769898]]] [[[3472.6630568974497 545.3009539153022]]]] [[[[13302.773539120515 19736.331619429224]]] [[[5224.049706617726 1954.7426491086976]]]]] [[[[[19608.494025015007 4142.038139277205]]] [[[18033.649461593646 8688.611412075963]]]] [[[[7944.503495523226 1380.9259424283966]]] [[[1745.8192329162525 22745.308328287825]]]]]]] [[[[[[[12307.753615339285 12467.761524996698]]] [[[21155.794511791002 17521.334084734684]]]] [[[[14861.019552866188 22408.928381457434]]] [[[1368.1278715960211 19665.406389945354]]]]] [[[[[1300.5962795387552 13714.73274258019]]] [[[11242.013062959264 21928.576419007935]]]] [[[[17979.593486436937 12527.860837295722]]] [[[4874.646464517458 16058.453169850323]]]]] [[[[[18793.159265940936 18856.816261400454]]] [[[2293.1303875225626 316.3876361234068]]]] [[[[21371.789514708373 9123.254080315472]]] [[[5223.443682981976 13930.042507195183]]]]]] [[[[[[7443.386002036087 5352.6211060178075]]] [[[7605.799673965425 7620.302273147213]]]] [[[[11799.847660788422 9561.692237787194]]] [[[2759.474898206252 3960.243746380883]]]]] [[[[[23758.94224361143 13304.716334864863]]] [[[302.7650483437281 11482.351012541445]]]] [[[[17245.003309946667 3290.160946650911]]] [[[19418.119913557697 12237.903394004816]]]]] [[[[[14226.453729689114 11358.34039521011]]] [[[7402.501881805125 23211.08315367501]]]] [[[[19932.722747689444 7784.9482491935205]]] [[[21093.64428929279 17745.87646637755]]]]]] [[[[[[8493.72692238838 23738.7426445194]]] [[[537.3996965419951 17102.243264608853]]]] [[[[11826.51341392295 21507.99077875582]]] [[[23814.20487726584 20735.934771655706]]]]] [[[[[10252.929562699226 3905.2606293607646]]] [[[11055.176094377708 17211.986297906817]]]] [[[[15880.045280177881 8091.556782101738]]] [[[7114.007136681598 2257.196287773771]]]]] [[[[[2335.1882407786634 13912.097046643876]]] [[[772.4926524860758 1054.0145033236172]]]] [[[[8167.13628068191 19085.4329077746]]] [[[23252.67333636647 21844.46766670036]]]]]] ... [[[[[[13406.935663300104 23411.146338520233]]] [[[19096.598856412325 18357.863097310834]]]] [[[[20508.80646549674 21033.64507932305]]] [[[4119.033576593309 23305.140094391223]]]]] [[[[[8764.579021624219 23573.347551672632]]] [[[21975.480884851928 3241.8494885931163]]]] [[[[7923.229155201546 11357.014822470373]]] [[[1733.9867317592875 15224.597822514663]]]]] [[[[[11951.782632351435 21173.914127134638]]] [[[19984.464693508336 6316.805169082047]]]] [[[[4999.065821025295 3225.376732316195]]] [[[13882.309404894342 3735.972277794383]]]]]] [[[[[[11301.504745391883 17769.32069269455]]] [[[8982.463201831159 17409.960087584193]]]] [[[[20832.23451790427 7388.707935877117]]] [[[21636.592231809263 19775.039777189508]]]]] [[[[[7912.719362512324 6735.381993618007]]] [[[125.81292102914345 22382.9377624786]]]] [[[[17816.10006996722 770.3475658816316]]] [[[4672.973254142025 3018.261495744641]]]]] [[[[[16794.97993703665 5074.233186167982]]] [[[14838.483231909304 4225.437383184615]]]] [[[[3682.4933850772563 7045.6332679061925]]] [[[1429.4377436754642 2953.7125158623785]]]]]] [[[[[[10142.146307574458 3814.993033754656]]] [[[6490.576182467633 3550.082402414373]]]] [[[[19059.736061433294 18163.953966205678]]] [[[6168.054933181236 22250.031029347796]]]]] [[[[[15439.739632094874 7715.387532312263]]] [[[2308.212136826204 3335.9232898098867]]]] [[[[3010.014697792024 5631.013221587464]]] [[[16676.003993903083 2485.79788197768]]]]] [[[[[20781.06839547688 10060.14377399004]]] [[[15757.318500350344 14191.248738589247]]]] [[[[15652.670084509367 15218.013422712356]]] [[[6171.478085651608 9745.051278036093]]]]]]] [[[[[[[2019.9824800871925 97.8570864413406]]] [[[9015.67119949842 22631.347643559762]]]] [[[[16985.021608209114 8989.644509346437]]] [[[11956.099027428547 22823.410907348472]]]]] [[[[[5422.653054891371 21628.39741676603]]] [[[19965.60723423222 7358.100522744329]]]] [[[[18964.76970418727 20836.400486359435]]] [[[11510.450109768519 20333.744151809857]]]]] [[[[[5628.417028682488 16149.97198590767]]] [[[7572.235566756969 199.20771480634411]]]] [[[[14024.780587238518 9146.71013973699]]] [[[11003.624251248999 5383.3661719089405]]]]]] [[[[[[8811.92797256578 1168.0842236629635]]] [[[17152.539549134468 10564.53090993129]]]] [[[[10570.325057173044 8510.886663437976]]] [[[21562.0324517526 1239.3693744389261]]]]] [[[[[22485.137035722535 17501.252326870675]]] [[[22566.840526521042 20551.88315357586]]]] [[[[22775.66658576563 4437.770290758472]]] [[[12729.25877606156 18026.21307756962]]]]] [[[[[5562.989899694738 8946.369712719443]]] [[[17894.753599753796 22034.260831514075]]]] [[[[16116.812266983767 20505.357309323168]]] [[[12689.874395860696 9451.165363882554]]]]]] [[[[[[13403.375960540006 1259.694559026229]]] [[[22260.970398797617 10370.17230103551]]]] [[[[16370.752521963073 6880.114381185734]]] [[[11406.808220027782 11340.588555242812]]]]] [[[[[3858.775923913868 18570.330375064445]]] [[[17214.365925358943 5469.400652636594]]]] [[[[7286.345873391467 11449.258001403783]]] [[[8005.3464468996835 16410.83415531886]]]]] [[[[[3569.774862412085 9310.125187024621]]] [[[6913.8442230819355 19012.543928916584]]]] [[[[2497.4300380860877 17732.63722890924]]] [[[20209.957352968915 20980.790581899913]]]]]] ... [[[[[[20705.844026434606 8946.698350287139]]] [[[23523.32249893079 7952.328343141008]]]] [[[[14203.56554087367 10360.64908106059]]] [[[17713.481714450074 13556.39346423684]]]]] [[[[[9385.982096548687 15248.718577963231]]] [[[12568.997430465803 12079.131249264008]]]] [[[[23502.981795230964 18301.746694271576]]] [[[19182.944613651332 1502.7029197127613]]]]] [[[[[16538.031551514756 4918.699150759012]]] [[[12367.027550754889 10157.074729519909]]]] [[[[13708.84915924907 13178.38361925327]]] [[[16037.986959594356 12408.522128438575]]]]]] [[[[[[13015.90992459415 12916.925508462658]]] [[[18356.824087333287 1409.9228305715937]]]] [[[[22277.79658668791 20980.593878190048]]] [[[5815.761240230985 1154.868430417087]]]]] [[[[[17550.676041218452 8328.657617629633]]] [[[10053.888591014032 16173.306070512741]]]] [[[[3628.6153940803674 258.79895490384916]]] [[[2994.736577132789 1482.9196882716026]]]]] [[[[[578.742724285951 23313.95940181501]]] [[[2486.1008664639367 2110.0895405425003]]]] [[[[2696.2895621882503 16782.529460729966]]] [[[5513.936360129375 9168.813610755798]]]]]] [[[[[[18658.67560300964 22453.04217318576]]] [[[16715.79458846254 20060.56492012582]]]] [[[[13472.766172166428 13474.06430423209]]] [[[3582.0607068311747 19301.470616103004]]]]] [[[[[3522.7358987803213 1052.2223528824654]]] [[[8291.096789821868 8773.507102074085]]]] [[[[8639.865708633639 14985.103782805323]]] [[[17902.118668624713 6721.26564510402]]]]] [[[[[9340.238503332137 4264.778117497873]]] [[[14305.615639774302 16327.387324526022]]]] [[[[9241.621359753666 11718.639124714193]]] [[[4029.65056021056 15412.732003738047]]]]]]] [[[[[[[12177.683774330317 19585.276936680402]]] [[[12480.940519173748 17009.89732161002]]]] [[[[16707.45262332445 10949.287939343545]]] [[[13474.501553500108 16371.765012227765]]]]] [[[[[5439.239555599691 5942.077487393012]]] [[[14665.920840554927 2080.583663155545]]]] [[[[19727.60741973576 17480.3209662364]]] [[[2673.530142679658 6955.594758161998]]]]] [[[[[462.51705727892426 4563.68784093891]]] [[[17840.73793022849 2468.0921335719554]]]] [[[[5649.117113226927 1895.5975175356741]]] [[[8246.441129881505 17383.920263605127]]]]]] [[[[[[11347.413616056998 5901.253465383532]]] [[[19710.62782450953 18316.317421736774]]]] [[[[18034.765312860127 22561.028010687278]]] [[[18894.47521978559 10343.660317789512]]]]] [[[[[6948.079622181898 18104.65986468201]]] [[[6732.652240915836 12486.55168669897]]]] [[[[17936.14833202861 13721.746494388397]]] [[[10889.82730109162 7538.4453828943815]]]]] [[[[[22555.766669063483 13445.041299675622]]] [[[17423.217470020256 21690.48571579291]]]] [[[[15950.120097790792 22088.94933973756]]] [[[2762.604784083696 14652.047826083026]]]]]] [[[[[[22145.041594128903 12546.606541781019]]] [[[20420.25163920839 19791.748403936555]]]] [[[[4077.6631620958074 19204.45773192409]]] [[[16306.360883261807 11340.807031059127]]]]] [[[[[2839.3889402739355 3542.4249956224685]]] [[[10966.978974853097 17279.64532143274]]]] [[[[11553.110406320715 8079.018223301168]]] [[[10123.360019641199 21885.475377061346]]]]] [[[[[12907.518618470736 16618.51897861166]]] [[[8995.223094548028 2350.1608805237124]]]] [[[[8135.885257903619 18149.941438622554]]] [[[22072.694645357136 6022.84314965267]]]]]] ... [[[[[[12160.867482339137 1488.2407546625443]]] [[[10315.738785287976 6627.070286671455]]]] [[[[6625.8440724710845 5168.7553876606535]]] [[[17206.572309534247 21184.012813059377]]]]] [[[[[19139.692424219582 5791.200617417792]]] [[[23658.549214862003 83.73328584452526]]]] [[[[19745.956358052797 15028.555712480778]]] [[[18349.820735253816 23462.897705434825]]]]] [[[[[8653.135624052937 13996.160973325084]]] [[[18130.30424906996 1487.7457399042607]]]] [[[[7515.073267166913 10506.499720830396]]] [[[20695.731664261653 23197.502304540623]]]]]] [[[[[[14677.294684571958 10105.270040065181]]] [[[7111.117018848157 7391.004193216276]]]] [[[[19889.894183092743 20818.68664361779]]] [[[4988.963403992192 23766.294807767743]]]]] [[[[[3920.412776027315 17561.89575446994]]] [[[14162.0386644435 8553.855935485322]]]] [[[[12892.721378994254 20870.004987760734]]] [[[10255.257590195426 15625.790925976635]]]]] [[[[[8704.006805513582 5810.706568227912]]] [[[15219.15116318024 6142.859541587897]]]] [[[[5207.439996189641 2164.9030077548146]]] [[[3441.659615073433 16223.323252448665]]]]]] [[[[[[9336.986458193702 13643.780558266728]]] [[[1525.1353033787443 18226.799297967245]]]] [[[[1081.333307150794 1369.8169274508734]]] [[[15564.38790701028 20262.620574019442]]]]] [[[[[17360.019748447467 16189.815001995938]]] [[[3013.4945871108202 5855.009953731363]]]] [[[[17090.748679822183 12822.652459133102]]] [[[16619.348120664912 10984.950521809242]]]]] [[[[[10819.140960492075 1452.1675917778953]]] [[[16915.556393459134 6607.768224771243]]]] [[[[190.7870249213696 13059.271311663691]]] [[[21266.380187552957 9754.020508010257]]]]]]]] [[[[[[[[17160.426024528435 8928.282953801458]]] [[[11247.169731101363 11454.56397612931]]]] [[[[10164.932165936045 6524.6961476869465]]] [[[7050.858328916017 9804.458989238652]]]]] [[[[[22360.23251853754 15830.903065533637]]] [[[3568.994421677497 1290.7349526303253]]]] [[[[12919.951705715775 20642.424772947128]]] [[[14293.579876198168 517.5237637221792]]]]] [[[[[16448.80136079528 19134.04202176834]]] [[[3444.255262570981 7464.515747312969]]]] [[[[16114.314795012093 9400.46828673493]]] [[[18878.85932383882 22074.47568223029]]]]]] [[[[[[18414.861378260408 14006.173754570762]]] [[[11090.910473378055 4094.9218916635027]]]] [[[[1283.2870048245609 20470.405525913302]]] [[[20683.554138392814 18954.49087125852]]]]] [[[[[19301.046622939553 19414.00047477623]]] [[[21450.391883794193 2685.235930059572]]]] [[[[22593.5156273484 2774.3676636032037]]] [[[22854.37614531703 6721.991914501059]]]]] [[[[[13131.169618785974 18897.308135267576]]] [[[2457.3367099984825 14508.61837964881]]]] [[[[3654.8691083915173 15758.931426330764]]] [[[8134.330269958233 21819.049091168403]]]]]] [[[[[[7565.016540079316 11743.559336135146]]] [[[1552.8323268939307 14267.80173759169]]]] [[[[4584.314144553962 13978.34426508469]]] [[[19114.47536229719 17620.231335073815]]]]] [[[[[20455.483966333162 21756.46261432044]]] [[[9899.934551302333 6957.193968625386]]]] [[[[20813.32347612487 19083.434854641535]]] [[[15126.27042082064 8339.405469944844]]]]] [[[[[10258.387066080324 19176.992960695086]]] [[[1013.758954238936 11233.667509018796]]]] [[[[10756.004135857418 3954.768385703419]]] [[[4129.201450368919 18424.06340312604]]]]]] ... [[[[[[3635.629864973414 19500.658745271667]]] [[[18073.106969888384 1493.8714595806207]]]] [[[[2657.131202471443 17369.9689847438]]] [[[4328.596811229696 5792.970567064158]]]]] [[[[[5228.983727167435 3495.758289848694]]] [[[6233.672407237803 1785.287314012941]]]] [[[[21435.13128061584 16636.222980851202]]] [[[4260.102734903792 16652.97750836526]]]]] [[[[[22445.193180349543 6329.883624199389]]] [[[17737.84098862924 23711.346251065872]]]] [[[[13934.89842341301 18799.835845911595]]] [[[21608.8649388525 6575.853031746577]]]]]] [[[[[[9573.154868540447 3763.2344758885906]]] [[[10064.509659684227 7572.902147109052]]]] [[[[12375.755916588121 20473.677350766477]]] [[[199.59670137746787 8362.645165250615]]]]] [[[[[6051.265166722111 18130.463185123812]]] [[[2392.304198478861 23376.817559225445]]]] [[[[15385.097714340222 5191.1829774872685]]] [[[19893.514187597317 3264.0609960008146]]]]] [[[[[16647.19953583465 12373.056495563082]]] [[[4964.457188439445 18470.576225664267]]]] [[[[8555.512661789999 15882.695322598669]]] [[[17737.40244166149 10065.701770839096]]]]]] [[[[[[17294.495523605918 12946.836217708347]]] [[[14320.608055850298 11501.916994336121]]]] [[[[3943.3074844836906 16247.206262660991]]] [[[16767.910398126704 19329.412475016907]]]]] [[[[[14529.53234659828 10967.31672465583]]] [[[10532.915169113921 8931.18856877569]]]] [[[[15222.886641854424 10725.866235241547]]] [[[6216.137599392063 1185.1411621887576]]]]] [[[[[23714.755736617215 19099.40727018848]]] [[[15966.69248679961 817.7880695931843]]]] [[[[16131.854039942866 8452.63197582898]]] [[[6066.933631235508 9279.631704194862]]]]]]] [[[[[[[11820.752596568776 16738.12350657661]]] [[[22630.04845760686 7441.92901649148]]]] [[[[15572.922258816337 14285.74815841557]]] [[[2179.147378463773 3899.2688938510873]]]]] [[[[[16790.85195682086 6133.315475038444]]] [[[16621.312812467466 13522.925757592122]]]] [[[[9196.772805354716 14535.882231003528]]] [[[20359.628327023056 5556.148197568695]]]]] [[[[[2003.4411923921805 22532.158259258184]]] [[[23886.89175182712 14637.151454820885]]]] [[[[10863.873623974423 19058.954203572706]]] [[[21285.175916240212 17542.535396040494]]]]]] [[[[[[8391.834818167854 6032.870099312141]]] [[[10716.37132410981 1208.6847478383033]]]] [[[[14793.779698312628 295.41715518749055]]] [[[10240.807704100585 11217.202702464278]]]]] [[[[[4947.972210714531 6540.28023664536]]] [[[21028.575239623904 13151.605054242798]]]] [[[[15043.519751540565 9072.992632059597]]] [[[15331.944095103518 13491.04132216353]]]]] [[[[[13119.221081670144 3977.6484090867625]]] [[[13774.059955183184 10272.65292241062]]]] [[[[16402.471831440318 10927.361876221565]]] [[[11566.88327639478 9585.394191118448]]]]]] [[[[[[684.8901016350619 22709.48361856789]]] [[[8720.926741870191 16951.19594643655]]]] [[[[16603.468647668644 6818.798617259274]]] [[[12628.739249778833 12507.321134286483]]]]] [[[[[2535.159988710008 17276.793361762906]]] [[[4866.998254452213 13395.64089611827]]]] [[[[3590.401205185509 1209.962049050295]]] [[[15126.416967073696 1578.8000918989944]]]]] [[[[[1554.998402192498 5405.650542287335]]] [[[19053.531658814372 5593.698118354235]]]] [[[[409.61523518649585 11434.270269576888]]] [[[16140.052125214801 20377.32270132451]]]]]] ... [[[[[[9367.99670973915 1843.1271038542932]]] [[[12735.084491365247 15145.376284274997]]]] [[[[14739.516794369007 14689.855848570294]]] [[[4419.619841645551 15807.979084966717]]]]] [[[[[12057.44729998729 11360.152303053143]]] [[[13760.246948084468 12214.222697247524]]]] [[[[2848.597953131241 3696.594790972917]]] [[[23264.02454321308 16881.288157711588]]]]] [[[[[2924.7853885158097 12479.462791669477]]] [[[10129.1833043914 2395.38773648408]]]] [[[[19572.492372374523 98.79888241267719]]] [[[19568.759422117455 17780.802790167192]]]]]] [[[[[[14914.204973685553 21634.70040635636]]] [[[2690.6200288445066 22877.195021648567]]]] [[[[14856.507431741631 21615.365164472598]]] [[[22835.795456290296 18276.062520929943]]]]] [[[[[12594.776632737281 6655.678072071236]]] [[[1668.4969902346013 10104.336560107864]]]] [[[[14352.183214289702 13413.74378995536]]] [[[2640.1547147742626 6429.392439542517]]]]] [[[[[16640.900316635587 8376.311266993614]]] [[[11007.000019081308 5450.2104603946955]]]] [[[[219.29600449413118 19381.135265114368]]] [[[20337.137575061603 4968.792749206513]]]]]] [[[[[[16977.766286815433 8213.005995350506]]] [[[3530.1374873207756 4556.523108291875]]]] [[[[10200.523525372313 10820.783098029277]]] [[[11679.978780298594 4471.786057133152]]]]] [[[[[9074.606872290944 16348.851531145192]]] [[[626.9064448355269 5705.002540118845]]]] [[[[12863.534494463893 727.3380051027524]]] [[[10774.663439900114 23863.28415356991]]]]] [[[[[4870.137941782354 16889.46045473332]]] [[[12346.802410488624 11218.132448302025]]]] [[[[21149.028386045138 18212.81320657128]]] [[[18637.187383762746 21507.55642722151]]]]]]] [[[[[[[23453.987316974046 5086.271593815112]]] [[[2555.682798852389 8801.717551159089]]]] [[[[11596.738239903876 17386.452964857424]]] [[[6204.559009836559 13623.10220990121]]]]] [[[[[17739.28904325905 17531.380707820408]]] [[[8978.657616534307 3870.9940946825445]]]] [[[[21066.680021819026 7630.132375769103]]] [[[1369.664824097577 59.81614487116539]]]]] [[[[[5751.436906264603 20262.936370035197]]] [[[1819.2341357466291 5860.291697299274]]]] [[[[11931.435455456614 15437.930227623598]]] [[[15713.096344024905 17166.685141566464]]]]]] [[[[[[14633.490103299779 17436.07465348066]]] [[[22241.888906395605 15233.038308314348]]]] [[[[1848.539377813297 15390.531074104796]]] [[[14284.263895982242 2276.009721164792]]]]] [[[[[2888.7075339462763 20849.317074274026]]] [[[15273.941667537389 1795.5056310789346]]]] [[[[20098.06928201503 17687.32137187091]]] [[[22243.56641472654 1296.1759522636528]]]]] [[[[[15489.934161895368 7988.269902060857]]] [[[10833.48929480215 21692.733911069903]]]] [[[[15549.447613361179 4216.099206114207]]] [[[6744.299820645189 9152.062576566508]]]]]] [[[[[[23761.56820268274 16571.653601008395]]] [[[15471.898044669437 4542.507242318521]]]] [[[[4572.228633001452 12866.600946148938]]] [[[8008.5278401335645 16046.623784302818]]]]] [[[[[3195.0047709240343 9606.760082372024]]] [[[12074.01471205636 11786.191532414083]]]] [[[[5800.853725928773 1508.6579895885743]]] [[[2043.0713144518613 8371.965100375097]]]]] [[[[[6981.8438211508355 5605.780569623158]]] [[[11472.838935669517 2770.1375016361167]]]] [[[[13028.979462210167 21149.986387793702]]] [[[8097.071556362311 7837.880959290471]]]]]] ... [[[[[[23676.354164074364 22565.229397459858]]] [[[3251.7332589177304 15455.696287035236]]]] [[[[12647.52835825546 19823.806613570327]]] [[[20279.1879832045 422.0770192316129]]]]] [[[[[21898.413580862 7237.767378233219]]] [[[6935.7744332291 16862.890582390653]]]] [[[[14259.632938593002 16616.916202030367]]] [[[5237.259513545017 8124.42694452876]]]]] [[[[[17633.985197395614 16198.034296159238]]] [[[21552.465004824968 12316.16193373657]]]] [[[[21582.471289292043 5068.305548527794]]] [[[16183.793377801674 13941.770611659455]]]]]] [[[[[[2000.7759021615936 22299.891906840858]]] [[[1576.7766050688804 532.9780327443221]]]] [[[[14475.42972048072 13758.857881537911]]] [[[7438.387510198222 11836.519601869952]]]]] [[[[[22126.31126032199 2514.4207655920177]]] [[[10881.307320652213 20000.069821968413]]]] [[[[10790.784972522499 1118.0906591957096]]] [[[21562.661457121798 4154.354858110374]]]]] [[[[[13627.767034344437 17536.67614366757]]] [[[9590.068873754519 19107.979967180112]]]] [[[[9856.593932775848 22977.389352126516]]] [[[6084.8721313909555 16646.772661225972]]]]]] [[[[[[18169.598800649554 10923.508373447263]]] [[[12756.615268899128 7342.213381449373]]]] [[[[19273.88041553996 15079.977934739874]]] [[[8390.895798942722 20988.457617932767]]]]] [[[[[21345.77735628035 4083.9567312981258]]] [[[19700.78552716723 1826.617219909679]]]] [[[[17923.719372584645 3428.9240561487213]]] [[[4979.774239865303 12355.06793703767]]]]] [[[[[20527.184277918528 15141.783677342639]]] [[[1515.061706252741 23591.52857260294]]]] [[[[10571.195305441812 9126.023309039467]]] [[[879.8246292415571 18275.636090650336]]]]]]] [[[[[[[12026.610703586837 15974.088945678672]]] [[[15994.001991581037 14386.812746306923]]]] [[[[7931.146807480437 21556.913927006677]]] [[[8373.126190221328 7284.306190979453]]]]] [[[[[1730.9546837133037 6592.988797074214]]] [[[13310.68212180947 4928.889077348831]]]] [[[[5383.812249639567 14689.067158215901]]] [[[18776.65700707002 13269.72426337571]]]]] [[[[[21189.964629727026 19798.08962178774]]] [[[3995.944312679935 12570.304600134243]]]] [[[[8938.992137007774 23866.913621938038]]] [[[3406.7724362203953 7132.82297839884]]]]]] [[[[[[7898.317819001632 1327.5528007553555]]] [[[13058.822760988343 11073.916045826292]]]] [[[[11161.016568885218 23198.19212185692]]] [[[15212.09839822516 17763.180048904273]]]]] [[[[[12909.592802345463 1057.4320625130802]]] [[[8541.591587427343 18930.359268814613]]]] [[[[2158.289148912319 5536.853580120286]]] [[[4380.7910330156055 18391.513744522254]]]]] [[[[[19924.023961745257 18655.48092814458]]] [[[1368.4563114232526 13538.976771314894]]]] [[[[2330.9230803685514 2536.297570181626]]] [[[22646.070292915134 15784.119141922101]]]]]] [[[[[[10690.82405620821 23537.75309880285]]] [[[13782.796572530193 21363.62298281211]]]] [[[[7860.918102257277 13901.057822228913]]] [[[9229.05303285616 16390.654262207256]]]]] [[[[[11044.975578789605 11416.073890739186]]] [[[20233.649921153265 20725.417813592976]]]] [[[[20738.892350339353 23116.63082529376]]] [[[2851.603763887922 12513.991460689795]]]]] [[[[[2108.1567593966984 11023.134753421611]]] [[[2893.104676691375 6517.50286939452]]]] [[[[11953.92723735037 12413.246111095708]]] [[[17783.215335024273 4903.293871067267]]]]]] ... [[[[[[3211.650957840052 23873.21360122418]]] [[[2038.4132144287005 2689.4651106607257]]]] [[[[5123.547344953432 20068.43404646456]]] [[[13575.155664660359 14975.473785802133]]]]] [[[[[15395.586611317818 23844.505119211546]]] [[[11026.106882170441 15200.806742694102]]]] [[[[20244.36219984661 15753.324844800136]]] [[[1445.660397639184 773.6841625741838]]]]] [[[[[19209.569490946607 19368.480725986967]]] [[[19804.63616530579 7072.0704101395095]]]] [[[[6558.523556484256 21086.494876306697]]] [[[18301.02804835631 1099.4487103557028]]]]]] [[[[[[9310.727221237026 9254.489515569723]]] [[[18971.76362084585 1439.6627288962668]]]] [[[[2765.8353212089446 11608.934903311172]]] [[[5179.61512389395 8323.06204502657]]]]] [[[[[19070.758843563213 16154.560119524742]]] [[[2530.449987729527 18397.296945868355]]]] [[[[13008.028392758717 19906.670978475675]]] [[[5718.765307721026 6754.267278659378]]]]] [[[[[354.47702071204526 15509.627861328037]]] [[[9854.196440183281 929.7036361238673]]]] [[[[15486.28225764967 18692.533841648445]]] [[[19857.84159344484 16775.97306091688]]]]]] [[[[[[20611.979791773672 16924.0574861937]]] [[[20245.242411628657 12200.968774680267]]]] [[[[18133.107929666494 21043.531628467386]]] [[[7853.647363704592 18549.993472275746]]]]] [[[[[5181.793115126488 12259.237252715127]]] [[[20171.174743274598 6286.652104181291]]]] [[[[17963.519346302437 17021.736141748297]]] [[[2512.529940014691 15880.35506216884]]]]] [[[[[13362.025992951634 2945.3947247423544]]] [[[7009.52815144364 17735.707965929996]]]] [[[[5955.749932606711 17057.31247053301]]] [[[9949.364216412474 17169.392718202886]]]]]]]] [[[[[[[[8142.398452603406 8364.482794777045]]] [[[15801.081272272937 10756.707352638838]]]] [[[[22749.74719153985 13131.674961050257]]] [[[13025.981432271677 9155.272147644531]]]]] [[[[[213.92322677722052 1668.5223702947094]]] [[[11843.894137181573 23304.588788430272]]]] [[[[2675.8201547003423 20635.015829675092]]] [[[22639.4600663768 11013.874133012792]]]]] [[[[[13344.153897178114 931.8112362913183]]] [[[464.62197661277895 1315.3060438147852]]]] [[[[1732.1653125195016 18119.919592620354]]] [[[13211.430571193177 1515.8228331255395]]]]]] [[[[[[7346.252305025054 19812.060577217402]]] [[[1993.2233545992292 16025.729311109473]]]] [[[[14841.82712843103 15154.138092113963]]] [[[11051.507948668359 3424.548280958833]]]]] [[[[[11486.529320029269 2747.0223912422903]]] [[[4321.113368621531 10832.126950244194]]]] [[[[1073.6486616245104 16949.15766949901]]] [[[5514.405846814674 18696.925811953708]]]]] [[[[[2038.484448103999 19858.78469995968]]] [[[9390.377518190424 15954.77278907954]]]] [[[[7082.863650828728 13014.342512575597]]] [[[16135.412375557722 6203.872174196548]]]]]] [[[[[[17800.62006157841 12581.811820106912]]] [[[1986.1180667477256 15072.911221980734]]]] [[[[9358.5201651448 7497.355428772939]]] [[[15182.520936588411 8515.880293477681]]]]] [[[[[1402.9335335429168 21135.523945244735]]] [[[23002.336908144753 19119.647155822313]]]] [[[[9499.616468620849 21007.70421064603]]] [[[5183.871631312965 7639.258174916263]]]]] [[[[[20152.108023006378 3605.907890674347]]] [[[11208.728844234198 12879.537790938397]]]] [[[[6064.165767819813 5922.43287658523]]] [[[15545.379038482271 18231.030335982246]]]]]] ... [[[[[[18679.0569318027 4367.286663278973]]] [[[10116.901136723935 8770.97327580637]]]] [[[[16676.465306879665 13801.308975784414]]] [[[12629.674363506187 19353.499037616446]]]]] [[[[[20605.90674004499 12938.15143048273]]] [[[22639.915423680806 968.4582273425833]]]] [[[[14652.009144615 17859.880853985156]]] [[[23255.789555567728 23514.834453164807]]]]] [[[[[17336.923634487295 14522.275620588873]]] [[[15638.574595806847 2318.404601217322]]]] [[[[5686.8277164765195 17701.026656443642]]] [[[16647.685310790646 18989.451931808177]]]]]] [[[[[[13586.038947596617 1653.4460353763232]]] [[[6016.472296215025 14125.121155685649]]]] [[[[6340.751778896389 53.503974529772584]]] [[[7995.069111698276 12239.031350559884]]]]] [[[[[8266.561965840963 19563.443259191386]]] [[[9372.53057223056 20103.06992662218]]]] [[[[4070.9149856584468 4561.986608253959]]] [[[7227.61041500068 9637.179290875622]]]]] [[[[[23123.72774924244 11597.791390955603]]] [[[19897.702761181623 21567.393913532294]]]] [[[[10415.290719643337 22417.696255909526]]] [[[1384.4245999999919 17227.363809310547]]]]]] [[[[[[6086.776723383521 22870.272636179423]]] [[[7980.451251910992 2761.608335553774]]]] [[[[18757.89552695564 21726.001496631547]]] [[[126.58118517472603 16411.01007934286]]]]] [[[[[3404.2765186444094 627.7617513326966]]] [[[23168.546019842295 393.1905526056662]]]] [[[[17698.54026045343 16541.74915364277]]] [[[11518.325011737847 8538.501663416282]]]]] [[[[[21909.88775553159 15595.015036692346]]] [[[22421.65901936664 17765.27148881607]]]] [[[[12306.04980597956 12555.05077322171]]] [[[5683.4526678774855 3500.882559915666]]]]]]] [[[[[[[1211.5763183143895 16942.17955148573]]] [[[9048.64650822782 16876.448929210168]]]] [[[[6363.364160560484 3368.941991012165]]] [[[2344.0780768093255 9958.06881718049]]]]] [[[[[5435.479407453609 18008.51836773536]]] [[[16449.66287209419 15644.438774904522]]]] [[[[21353.619769700257 1371.6468875981814]]] [[[21864.874168942966 7404.252904370203]]]]] [[[[[10223.452935749103 20429.45834793303]]] [[[14135.061361125301 10870.134175489104]]]] [[[[6533.576224882217 23166.417365318586]]] [[[5492.553313964996 8211.2534740931]]]]]] [[[[[[8663.333037309336 17074.810059639705]]] [[[16507.458183809475 5901.442351957949]]]] [[[[16365.70365341556 23709.68763051165]]] [[[4077.4847459850876 20167.94827309623]]]]] [[[[[7403.528885673136 21987.511870146634]]] [[[5108.562369540459 11615.299928659326]]]] [[[[14743.371055544174 11744.570609001865]]] [[[5059.347596533291 22316.021106959357]]]]] [[[[[22118.573826932974 5055.748057314086]]] [[[10479.512827818913 13387.143756583238]]]] [[[[16447.820994733003 18834.34188705908]]] [[[11401.842060725015 17474.96761254651]]]]]] [[[[[[19533.422232378853 11871.887122115473]]] [[[14046.09693086406 12576.236289226006]]]] [[[[10556.172217219195 11161.717665619033]]] [[[2408.060428061034 1832.0013081460181]]]]] [[[[[21416.855061438553 14499.099264459583]]] [[[15979.119974220406 5107.489040576896]]]] [[[[18086.29127846872 6328.601273518035]]] [[[13953.743120206282 23739.235590406228]]]]] [[[[[7460.127826308016 18025.13472578327]]] [[[10301.368767595788 8039.5033781557395]]]] [[[[18980.873929188318 3660.652004276216]]] [[[7874.682481205723 18840.222042049452]]]]]] ... [[[[[[7337.2137574470125 20091.239751667472]]] [[[14018.022962081064 11677.908768315192]]]] [[[[13634.57373266132 17701.121036650155]]] [[[22765.188190918667 15287.589681663947]]]]] [[[[[5409.1172707402275 19414.154478573735]]] [[[21818.983758964827 3069.2042805982737]]]] [[[[1456.4438480309927 16236.642464818879]]] [[[19029.713181005784 13403.662984405264]]]]] [[[[[603.7374454848722 5752.070306396677]]] [[[18645.037049278573 2678.446491764636]]]] [[[[13120.592589893702 16140.037280961984]]] [[[22523.7256687335 5098.567595295889]]]]]] [[[[[[9329.159461898827 15184.754140103407]]] [[[17910.61375687447 695.6749468840546]]]] [[[[9046.696617534473 19214.86044947718]]] [[[4156.882691144749 20440.16580615359]]]]] [[[[[14439.989816114925 20760.4953072605]]] [[[23064.513430328658 8800.4161795064]]]] [[[[10121.275999931011 2961.2947620411005]]] [[[13068.516934510513 7470.239374079863]]]]] [[[[[21068.37181570491 8448.148113651112]]] [[[21351.387740990052 13442.901103654689]]]] [[[[7841.368162070114 19331.502864293525]]] [[[19259.887802666177 18163.417761996803]]]]]] [[[[[[18340.285930085327 10280.06153619218]]] [[[13419.893178029173 17989.568180794693]]]] [[[[12762.214802658242 2819.8376318505384]]] [[[20714.510456628486 6337.975793066555]]]]] [[[[[15785.56920876671 22468.424064913157]]] [[[18539.121159715516 23201.09299584205]]]] [[[[9877.762570254696 12161.232324317549]]] [[[383.9289058000488 6076.781156394544]]]]] [[[[[16077.314165606476 4566.212452596056]]] [[[23111.92397009546 18565.430266427815]]]] [[[[14304.02719658056 17975.543937719445]]] [[[14927.95607095347 19861.112459797063]]]]]]] [[[[[[[21349.567234984446 22246.63023517594]]] [[[13330.834218544236 12245.076830940563]]]] [[[[16042.435835797844 11397.799988267967]]] [[[6003.523294203862 2751.683150311998]]]]] [[[[[17009.084560944255 20663.313084560064]]] [[[19816.667682255735 3261.7659264742124]]]] [[[[9931.589737466584 18109.167515180463]]] [[[16050.261512305095 6061.139888004082]]]]] [[[[[21998.454377339254 17898.873280003594]]] [[[3249.845536771703 19128.173298753693]]]] [[[[17796.39878903714 2388.451869097673]]] [[[10222.11815881529 6455.799208488464]]]]]] [[[[[[10472.787489317776 4464.078378916756]]] [[[4417.25946339871 8217.949953877003]]]] [[[[19851.24225917222 19941.983066249202]]] [[[22403.54611838819 11126.14995041858]]]]] [[[[[454.21209953114123 8010.696159036687]]] [[[6076.135791685753 5971.471699789592]]]] [[[[16410.661011507396 599.1997102067772]]] [[[22983.347228205446 5157.316157125072]]]]] [[[[[19296.186667901522 14188.19476549041]]] [[[9901.64869145195 19169.205152083316]]]] [[[[16831.12068717402 9660.875513668923]]] [[[3035.3710799484975 6563.160005695816]]]]]] [[[[[[23021.637281748423 17872.059544997574]]] [[[16431.143336800807 16530.879849523]]]] [[[[11718.341805585613 18712.140896083074]]] [[[8497.060451149355 17887.13637779209]]]]] [[[[[20709.930423564438 2437.21000758691]]] [[[13741.140147122773 15665.323190334415]]]] [[[[14543.076394302368 7504.381876196555]]] [[[1047.171437635919 6910.527709284602]]]]] [[[[[19153.56100894174 12090.933721815441]]] [[[969.1805166062089 12403.025547449057]]]] [[[[18566.77948545684 20746.30449532027]]] [[[11591.493542450604 13874.737543863303]]]]]] ... [[[[[[20933.656787183198 1235.7683572032822]]] [[[9507.546656499168 3720.7327081606422]]]] [[[[13872.704976920048 18509.48787234605]]] [[[7177.646415960814 9447.855074819423]]]]] [[[[[18687.053299089977 3700.411260585606]]] [[[3800.564231252965 15601.69902166148]]]] [[[[13470.804198017282 5116.669563221688]]] [[[13000.631048071593 3791.192391163504]]]]] [[[[[8303.065206879646 17771.647612849916]]] [[[23088.125025892437 18233.393901915482]]]] [[[[11847.110084802775 5436.114016346171]]] [[[5180.935972578708 9846.245938287419]]]]]] [[[[[[15706.742927629997 22946.620430242885]]] [[[12508.280134815655 11912.373606106365]]]] [[[[22518.44636569914 5090.965076287715]]] [[[15948.501828001628 19966.158596873764]]]]] [[[[[20914.18762050713 22966.861936520552]]] [[[18062.700351780783 13574.378971894792]]]] [[[[14759.24081357036 23598.111736541465]]] [[[21336.071612906657 8954.71260500741]]]]] [[[[[20277.073356438807 9158.702858245575]]] [[[2705.558532061858 447.0431621126686]]]] [[[[15751.427243225606 1872.3672351853988]]] [[[22035.12006748468 5671.051920816507]]]]]] [[[[[[14631.310101563035 17167.10595102079]]] [[[23454.728838397878 86.1327151298603]]]] [[[[2629.9558845432603 6106.78984830022]]] [[[11139.828417584158 12490.49251609908]]]]] [[[[[18749.951519552582 8545.061582512359]]] [[[23273.13097227838 7834.946208375758]]]] [[[[9982.454267372123 17433.676529262233]]] [[[16873.410290557254 14899.75573405304]]]]] [[[[[10793.788866825791 6603.869063393981]]] [[[16841.62135065916 4289.255755761569]]]] [[[[3358.48420239501 3491.6449799537204]]] [[[7208.081819759481 21214.17373437208]]]]]]] [[[[[[[1794.2073581703771 20883.232642878058]]] [[[15711.76816188098 13536.662421508781]]]] [[[[23324.19143522818 2430.2446480796207]]] [[[2908.7003842958834 11641.819018389593]]]]] [[[[[10359.70409639642 2344.5563276767157]]] [[[5533.1762980031035 5250.284598785465]]]] [[[[12911.667069171248 1244.3205639840178]]] [[[1180.8293002299927 23162.010018651934]]]]] [[[[[17766.790703247076 3729.3350605435417]]] [[[5486.2408537278125 18945.174477781467]]]] [[[[6181.9658803552 1079.0983771249166]]] [[[7488.702680131059 2974.7095186825973]]]]]] [[[[[[23409.68463456627 11170.298034286383]]] [[[16334.213097505704 9816.790731708968]]]] [[[[22697.161448845884 4257.588255993691]]] [[[23711.98454442029 6299.100878036079]]]]] [[[[[1031.0037562210603 11458.13349558315]]] [[[219.461296283001 21908.75396542104]]]] [[[[16872.857693523933 1964.2553677097176]]] [[[15479.780130259409 2845.700734468632]]]]] [[[[[2209.106210754604 22300.064230228003]]] [[[6544.09813992267 15569.041494742673]]]] [[[[6936.008272731422 3023.668090692511]]] [[[14215.841783897926 15901.327344145815]]]]]] [[[[[[15117.8058053554 5157.33518738531]]] [[[22032.273035515165 3267.765273462304]]]] [[[[11434.376309598285 7217.989301366512]]] [[[23841.79796037818 19969.84205960021]]]]] [[[[[8630.325973775778 2753.2874737486077]]] [[[4222.867404083764 12166.04539612904]]]] [[[[8812.899051716828 13670.831513476363]]] [[[8116.759330259362 1839.5735316582052]]]]] [[[[[10157.669376291957 16649.883598445387]]] [[[2034.411662453141 16679.09881930682]]]] [[[[4044.991612522106 9315.101184497635]]] [[[19537.71553543044 8479.052910309974]]]]]] ... [[[[[[10521.207857940142 1628.603932473141]]] [[[143.61412022474008 18373.888186556804]]]] [[[[2153.20232895383 17351.444773243857]]] [[[23896.789338690018 5294.134901404318]]]]] [[[[[11657.561017382217 19169.709846227233]]] [[[11703.75865677315 15378.04724005614]]]] [[[[4808.127392296992 9683.66320920195]]] [[[10684.524926316457 14532.961410870968]]]]] [[[[[15061.634015034371 19583.90597891725]]] [[[12514.649903265656 3692.8431506291136]]]] [[[[2300.627533366507 3322.9534806931574]]] [[[13730.780253107614 11609.84810867886]]]]]] [[[[[[16904.091901928925 9509.069051753506]]] [[[20719.627813457726 10403.746094283715]]]] [[[[19712.903755855572 17698.50253249681]]] [[[8146.9154613178225 5302.841167268109]]]]] [[[[[18045.54966400678 21505.804206238237]]] [[[600.0743671062181 4208.072031524093]]]] [[[[1558.3818498364417 7239.599477699673]]] [[[18301.21232745136 1507.5046465321468]]]]] [[[[[18424.413494833054 8995.357433770487]]] [[[3172.981669008984 8189.309169270586]]]] [[[[6066.285156424883 17739.80835439756]]] [[[15844.184144219607 12004.80381650408]]]]]] [[[[[[22285.082328521537 15980.670354575519]]] [[[7484.309811633819 13011.608128699898]]]] [[[[15881.444178698706 4155.889269374255]]] [[[4336.715442003116 3895.3033607041893]]]]] [[[[[9506.949679561314 5740.231227044573]]] [[[5422.713449853435 1222.7486928923254]]]] [[[[13142.0412961836 10996.134004675036]]] [[[21664.911975581592 16576.22634518864]]]]] [[[[[4750.6268669045585 13884.216427041494]]] [[[19057.418083700817 567.195647646175]]]] [[[[20305.999127769708 20408.757593036957]]] [[[7711.361461319121 11840.661592038892]]]]]]]] ... [[[[[[[[6825.123767242352 7213.127035418797]]] [[[4677.796826081087 7917.674052025757]]]] [[[[9129.762093425963 13391.527156102264]]] [[[14618.184648794693 16076.587613527812]]]]] [[[[[19771.244550755044 4280.254450314278]]] [[[1818.3342390687433 23783.67566884576]]]] [[[[12070.223674377377 9607.981372410817]]] [[[15869.586225517633 11192.66380597306]]]]] [[[[[47.74136705802407 13046.71781724667]]] [[[2303.035296801036 17350.201512958593]]]] [[[[14362.140247103176 13034.07258588917]]] [[[20845.178997269086 7619.085310633422]]]]]] [[[[[[6023.845937561242 10539.332893019973]]] [[[16254.33705884371 13717.28551612164]]]] [[[[5347.1021464976975 9197.057872164447]]] [[[11790.921708177497 1721.4770637392705]]]]] [[[[[12205.074563906834 14935.364028441463]]] [[[12813.696604082415 12191.216423847582]]]] [[[[1591.4876289448423 2980.5847697576537]]] [[[1817.1316937562235 23000.597768865726]]]]] [[[[[23036.611491673146 9389.497188616499]]] [[[10402.12343132129 23415.18588152911]]]] [[[[5660.366037657145 14086.47463200043]]] [[[12748.424560485288 19988.280451875202]]]]]] [[[[[[4965.786311372119 19952.58145896495]]] [[[20035.95804791948 19936.15414165916]]]] [[[[108.48988697141655 5229.171329925119]]] [[[4829.19768655859 3991.4837627423008]]]]] [[[[[3849.477895472897 14266.176021092419]]] [[[6781.93157896868 21928.40658781602]]]] [[[[9341.131209266923 8455.814771528094]]] [[[3688.7296432176904 603.6507545541942]]]]] [[[[[18722.825842758157 2267.8771932105406]]] [[[7195.690134328837 15388.256643128245]]]] [[[[10171.050656944572 3728.7901114164815]]] [[[5190.636615631832 12078.11199088475]]]]]] ... [[[[[[14245.972300808455 11446.422541430977]]] [[[19273.805032013224 20991.47534965337]]]] [[[[6283.350784570947 15402.876687341806]]] [[[22555.494693818113 1444.0797948869726]]]]] [[[[[18954.971385335648 3768.3176255668677]]] [[[56.30800682984084 2396.819676823214]]]] [[[[9105.71736313693 11802.243646694524]]] [[[3972.593639300573 3057.906468685534]]]]] [[[[[18634.201543746913 3321.4732506785904]]] [[[5431.535555011551 15624.035739679914]]]] [[[[16677.079372017015 23864.63560259285]]] [[[7067.017400959816 79.8400732415609]]]]]] [[[[[[22282.922834214703 21806.851548426945]]] [[[16512.868252327287 3031.2014020014944]]]] [[[[22725.933845073814 907.5356988750366]]] [[[5406.333287299105 15457.940234005637]]]]] [[[[[17829.528639230604 23012.46049538506]]] [[[180.0782057033149 23838.273289139383]]]] [[[[12943.497675413664 23190.240454273015]]] [[[4741.09861281062 6865.858217958888]]]]] [[[[[6181.800356250794 22030.24618856183]]] [[[1545.0930246856026 7342.434524425584]]]] [[[[2912.04406030233 21257.018675582553]]] [[[23310.9475298985 13656.761969396513]]]]]] [[[[[[15683.4982394365 17098.73285698835]]] [[[1146.5289750200354 19789.195650003694]]]] [[[[22519.950090393144 20087.724132598338]]] [[[21038.23398725388 20141.91575199339]]]]] [[[[[21503.279884168365 5006.3496858337485]]] [[[3379.4856080718923 20901.117994498894]]]] [[[[15574.300243250766 12057.005685346321]]] [[[4309.11647125474 5187.075373255794]]]]] [[[[[13424.967479646477 3577.6405357603503]]] [[[13284.503879131506 14944.257216328786]]]] [[[[14629.237912881996 6945.894234733938]]] [[[17472.307922764616 6615.833136321476]]]]]]] [[[[[[[10701.957761950005 20726.190828950494]]] [[[486.23133238773653 7226.693146207126]]]] [[[[3886.1506841948813 10144.546615369334]]] [[[17975.502574927683 1811.0769732262677]]]]] [[[[[6918.020949435032 23670.700018589465]]] [[[17187.752608167622 21779.525762082303]]]] [[[[1402.6583291308789 5983.193423679675]]] [[[6102.070289175775 9270.388965095277]]]]] [[[[[6255.868919499365 12295.650204831609]]] [[[2719.4947651723955 837.0782823899066]]]] [[[[11625.041174894846 21548.352752947703]]] [[[23192.409336527784 17530.08891986748]]]]]] [[[[[[4229.573146145797 20526.493501643206]]] [[[6710.820337476757 15953.14191699271]]]] [[[[22140.768570522843 20309.850583195344]]] [[[12321.649278543651 19048.42683964546]]]]] [[[[[4222.1314226398845 23534.136148911846]]] [[[22770.70813590034 1499.304646365936]]]] [[[[14946.772189306279 10888.346151880265]]] [[[15216.238124058384 1658.0950711724088]]]]] [[[[[19935.26263736283 411.55851851408823]]] [[[7964.137434248872 19826.668045174825]]]] [[[[12889.349314843234 6516.074255109416]]] [[[20154.957510578814 14535.884027583228]]]]]] [[[[[[22273.224237829992 19330.14082199665]]] [[[19610.124228973815 3777.854096580504]]]] [[[[16189.014692276123 21909.481164742072]]] [[[15356.491315489679 11172.944574888403]]]]] [[[[[1690.418189254511 10758.225768118904]]] [[[12561.081318757779 19206.24546573097]]]] [[[[10854.116579484 15856.440278278049]]] [[[9888.666044791364 21485.324099872927]]]]] [[[[[19947.303494450432 2099.7714132817146]]] [[[11574.508907912797 23412.22455853558]]]] [[[[20962.358798741225 13269.280012979547]]] [[[11660.732611015186 2224.8761148310914]]]]]] ... [[[[[[19323.851186520926 11086.525579336292]]] [[[8853.898460545153 20042.86642719538]]]] [[[[1096.2153308631787 10719.730352459936]]] [[[19392.24219764994 17427.955421581624]]]]] [[[[[13994.191955077338 14550.789845541498]]] [[[20762.55882500389 23835.238677576788]]]] [[[[7152.6537586298045 11542.648256006607]]] [[[13814.91861783945 13829.966819335772]]]]] [[[[[19441.127413801427 18501.206922294376]]] [[[8238.051875456182 10438.285952955814]]]] [[[[8395.61207321956 14993.583624485498]]] [[[3124.2597457068205 17179.05622378559]]]]]] [[[[[[63.796267892887265 17908.56709428071]]] [[[15601.857412131798 15371.794723706933]]]] [[[[2306.9952273946383 15963.716831381062]]] [[[19146.160280322045 15299.11130459128]]]]] [[[[[10546.142817184274 22629.03739987536]]] [[[23074.08954704813 8428.292411360926]]]] [[[[22782.26692463051 20135.38172705564]]] [[[5268.4795947872435 15609.104917516173]]]]] [[[[[19957.783438932107 8859.731311827387]]] [[[20029.73596272308 20596.885761791807]]]] [[[[13166.238794736117 4590.510163804226]]] [[[7299.616846134582 13922.40319500854]]]]]] [[[[[[2319.2586289017145 18356.396283164417]]] [[[5628.982459870545 18296.34922903357]]]] [[[[23601.599247299288 21207.6434787114]]] [[[10484.563784347856 4573.380018017949]]]]] [[[[[896.0269994433203 15689.691856675376]]] [[[658.1410747057987 8270.628894043575]]]] [[[[23123.294274494805 390.10115670128073]]] [[[11921.312975909246 21050.795509911237]]]]] [[[[[15270.11573442989 11320.12313442212]]] [[[15806.784422165427 10968.03370409561]]]] [[[[821.9900563797355 13116.718823466126]]] [[[3590.662931757568 22997.587469925787]]]]]]] [[[[[[[21334.33425583873 12481.943783630226]]] [[[20977.86408170101 9166.201775809466]]]] [[[[14358.26561816467 17006.068157080597]]] [[[10207.981841242483 6825.989042703915]]]]] [[[[[21619.439926514155 15554.57364259771]]] [[[2224.563209728615 6759.5443993136105]]]] [[[[23398.449219955706 6035.597917572515]]] [[[11962.700316584687 18240.63644014391]]]]] [[[[[4671.792536418649 14326.611682208373]]] [[[15646.286708715517 14646.345768037116]]]] [[[[15003.83115712545 16016.119261173651]]] [[[11290.291871800619 7263.768416958249]]]]]] [[[[[[23464.214552678364 6194.346079966345]]] [[[23432.50639195956 19425.62047048164]]]] [[[[4841.036346901445 18182.665632261564]]] [[[11.958529835270006 14201.939999160075]]]]] [[[[[6576.819031759143 4376.791008540678]]] [[[13334.539909056213 16479.32052527792]]]] [[[[8073.036193900662 7535.788036645065]]] [[[7946.979442684574 3614.162697434553]]]]] [[[[[971.697409016978 10637.556335650224]]] [[[9994.276588230885 855.2826945596224]]]] [[[[2771.899569055444 5999.124230743221]]] [[[15599.779113674025 2799.7805392515183]]]]]] [[[[[[19952.68470883273 18919.74262712467]]] [[[12615.028684073073 20109.007732977356]]]] [[[[7751.090981486397 23067.863070726362]]] [[[13183.99273744713 16638.192724574303]]]]] [[[[[1961.5914325594676 21350.41888052484]]] [[[6493.407415976702 272.6262893650012]]]] [[[[3601.656853376932 3637.590432661217]]] [[[18232.068045351785 15229.143713835121]]]]] [[[[[20357.967284722643 20866.103267837876]]] [[[10621.184706825294 5102.665608514839]]]] [[[[17606.414650173705 1829.9719400744073]]] [[[10971.342808740672 17319.975100664815]]]]]] ... [[[[[[3761.4752064001996 7105.151690866978]]] [[[9694.177691722372 19711.092832759427]]]] [[[[21373.645533749164 5947.838969035548]]] [[[21806.220311844827 6011.549454956153]]]]] [[[[[3783.7427353009116 14360.594557401882]]] [[[18920.148437918422 11844.112459436763]]]] [[[[17482.501067290606 15470.982060763012]]] [[[7361.19290367162 8275.20317683633]]]]] [[[[[13100.566111258198 2890.115598639823]]] [[[21186.608780918432 21404.869596660414]]]] [[[[11382.173344166464 15269.211317466226]]] [[[407.3765749016544 14637.84108542063]]]]]] [[[[[[13577.63426567358 6197.604165052653]]] [[[12715.502947144834 21451.4784014201]]]] [[[[10468.523976201548 17913.4165671327]]] [[[17711.4885275003 6530.2842403270115]]]]] [[[[[2631.8826006820573 3018.560903929796]]] [[[15177.551790071022 11.531838500199832]]]] [[[[4116.060737344238 21850.231687457745]]] [[[10424.606187936957 13797.506302757754]]]]] [[[[[13443.790165465849 14801.22532349865]]] [[[2576.633967416968 17114.819032096115]]]] [[[[16323.200558047834 8918.022871945384]]] [[[20883.54879231009 14594.461538616366]]]]]] [[[[[[13319.737900326754 16882.702873264818]]] [[[6634.318746100201 12032.605950193467]]]] [[[[11442.035682376478 9977.553581168262]]] [[[20054.45420386051 16396.00604829815]]]]] [[[[[161.99677858732912 15431.30084216979]]] [[[16960.608932730152 16853.024353330722]]]] [[[[2056.657603318447 21151.184162789283]]] [[[14008.963757679156 22802.745176628225]]]]] [[[[[23408.622290090916 13101.80375136634]]] [[[22851.023279133726 18695.36509113026]]]] [[[[18995.813318239303 6188.936582539393]]] [[[14986.195888394699 19311.714305010253]]]]]]] [[[[[[[3754.103879982237 7934.1487948674985]]] [[[14505.974112163372 6326.4846459150585]]]] [[[[16065.603054016212 18371.95761125512]]] [[[9871.22144440307 11400.010647163013]]]]] [[[[[8573.14145303941 22760.989802309425]]] [[[15406.156502812526 7631.547380860989]]]] [[[[20479.98960080503 5202.261432852062]]] [[[5788.378095521502 18015.665206682756]]]]] [[[[[5541.729565888277 5865.3546510345905]]] [[[20498.651432107297 22049.430953550615]]]] [[[[14224.733929616288 22561.98754330689]]] [[[20759.329617020103 16235.84837360877]]]]]] [[[[[[13666.127471647806 23388.646065561737]]] [[[9407.367085466325 13160.085973955302]]]] [[[[991.4822208879835 23757.52475496179]]] [[[6685.166660316927 19490.555739810065]]]]] [[[[[3295.1765134153147 21587.77161632583]]] [[[22914.31415250661 16155.977421236239]]]] [[[[347.6260087462232 17296.684852892562]]] [[[23791.711616127624 1813.155879082944]]]]] [[[[[13446.352903299281 11006.471536053255]]] [[[20961.49424178801 5231.975354959849]]]] [[[[23130.26784024449 12623.52936642427]]] [[[20548.290821104092 368.11997407192996]]]]]] [[[[[[11966.947575975391 1967.8973599804308]]] [[[13028.912905521029 11371.113612456511]]]] [[[[13720.814240928208 22531.614003572962]]] [[[2515.4572423666064 4926.5570179299875]]]]] [[[[[8148.617960697517 21395.441362701185]]] [[[5582.373574142845 2288.227884178253]]]] [[[[130.61858500078466 12061.225085726503]]] [[[9934.663423984703 9523.189586047682]]]]] [[[[[12086.884331467169 21729.537008511765]]] [[[13435.018430565087 3866.840100167592]]]] [[[[22072.882730454567 2092.810105813883]]] [[[777.0147397231145 12860.291978892541]]]]]] ... [[[[[[2235.4118836627795 14425.313916820964]]] [[[7082.403809240747 14956.669724571077]]]] [[[[3100.8696953530057 14245.575894326841]]] [[[10983.971153006529 1456.4494047514502]]]]] [[[[[20897.986709069413 6229.208390759393]]] [[[3931.0849345170977 9729.134188102842]]]] [[[[12128.134939915446 9125.471547331]]] [[[17983.249132019897 7642.490473188869]]]]] [[[[[15376.105376240666 10818.224601137808]]] [[[19398.466633217147 22316.925378867865]]]] [[[[8132.540774664289 9493.270786136276]]] [[[23372.633480977413 11514.72594354413]]]]]] [[[[[[19268.861238827507 23089.8058159314]]] [[[540.401105015998 21245.282697931758]]]] [[[[21129.264494200044 15406.091259377776]]] [[[3734.69563631673 502.26330572437547]]]]] [[[[[14492.20671677366 18720.728893856205]]] [[[7707.407830409848 1779.026326638747]]]] [[[[12610.171169253112 18583.132210290823]]] [[[14638.214536484456 17747.468503970125]]]]] [[[[[12116.595083408958 1997.3009658291157]]] [[[6788.524281789967 9344.545172911703]]]] [[[[21233.58419105048 22372.85692978305]]] [[[18212.143011435175 13414.800083689155]]]]]] [[[[[[8009.120149451534 22520.33094756357]]] [[[17148.686315485396 20590.363902162582]]]] [[[[13441.507236323121 11727.210434932267]]] [[[362.37015637343177 1792.8477719401708]]]]] [[[[[21488.13655260058 16365.834412230019]]] [[[21989.405070534856 19292.926747938753]]]] [[[[5784.894968468588 3790.7339772859978]]] [[[5589.552412851245 16735.245781481]]]]] [[[[[18277.990784151338 19019.206146488857]]] [[[17473.422852280535 12766.601983517947]]]] [[[[9646.182689116253 15294.08192558659]]] [[[17988.010655317175 4338.366112477695]]]]]]]] [[[[[[[[3405.8081674813807 14196.225969916819]]] [[[14712.44378504742 20612.271744853544]]]] [[[[20759.031080001914 657.508315729308]]] [[[740.9312327878247 22748.793624870927]]]]] [[[[[16238.095079211153 7475.686467819743]]] [[[11624.404775829764 3958.3280248674964]]]] [[[[10850.733222313633 3590.517233083333]]] [[[12937.679152762648 8114.702175012066]]]]] [[[[[14521.596494480325 3468.47031055822]]] [[[18954.216350146762 23731.548271898468]]]] [[[[20921.27747169001 14353.717301551029]]] [[[16743.985373331285 62.61910277416086]]]]]] [[[[[[3421.242364546276 15317.446794567079]]] [[[20686.66375036282 2824.9366886818016]]]] [[[[21116.684241768475 8393.443239833723]]] [[[6926.811865798047 6140.342362338485]]]]] [[[[[16355.602900043204 4478.781801722695]]] [[[15142.263433340433 22186.292457877502]]]] [[[[16466.76792014915 14359.369807621566]]] [[[14203.799981493545 3507.895677585129]]]]] [[[[[7241.142049151248 19302.812167409313]]] [[[1435.5658671878864 20044.751879254]]]] [[[[5292.087052874025 1218.3864951749913]]] [[[8031.941302039017 20940.93490530103]]]]]] [[[[[[18451.08563255734 10273.366186830945]]] [[[10681.158524791288 3393.7915841302083]]]] [[[[12961.885797222565 12475.789807074507]]] [[[10263.01138523823 6123.404609917243]]]]] [[[[[13931.302230609826 5981.8110504753195]]] [[[10527.983959398667 3083.2211145020774]]]] [[[[17787.095347155027 20929.30559129089]]] [[[7244.192942554039 15466.964942738445]]]]] [[[[[19395.14609321708 20724.61334033154]]] [[[13283.152938304896 4361.503362420358]]]] [[[[5402.222078202063 16652.237681517643]]] [[[20882.96394725936 3086.0055119376157]]]]]] ... [[[[[[8847.4120798737 21679.871044620868]]] [[[12619.882703990837 5918.14085912684]]]] [[[[14106.73088151509 6489.510736003551]]] [[[20416.59451317946 2279.183174035694]]]]] [[[[[23368.93205252938 12688.979390505474]]] [[[2548.1631891094007 22112.87611073835]]]] [[[[5697.240055199015 13822.848135507214]]] [[[21143.602185538097 11747.834937853917]]]]] [[[[[16245.097976971438 21583.021790960825]]] [[[9960.166111512779 22448.255466728016]]]] [[[[21820.97803061392 17049.254391090228]]] [[[6150.74172546103 18926.242868372996]]]]]] [[[[[[19815.377323086977 1495.9228175007604]]] [[[13906.645336781829 17487.461508996326]]]] [[[[23048.45629197525 11306.838076248201]]] [[[13036.146092076753 10789.511562778944]]]]] [[[[[890.601604384186 17735.520992461683]]] [[[20047.823762618827 15331.44510685253]]]] [[[[10594.151931336839 10176.49542197294]]] [[[5115.641240989453 9868.193614368804]]]]] [[[[[12193.10552893015 13285.970770087084]]] [[[22086.76796245808 18825.859102192393]]]] [[[[14421.971299402363 13538.409100608265]]] [[[21289.474908223874 5677.195034936128]]]]]] [[[[[[7746.950021903745 16256.453063617235]]] [[[3284.1556918878046 23201.53853816376]]]] [[[[6561.094431107728 4057.39860750454]]] [[[10705.514913826248 20661.900257510777]]]]] [[[[[6982.648542576042 22701.944486871173]]] [[[22928.240069034848 18919.97333671878]]]] [[[[15727.279160302804 15901.937444138262]]] [[[16742.86838691647 15878.678095591227]]]]] [[[[[9144.956044651259 23283.31996706317]]] [[[11101.00027699535 21798.280907976052]]]] [[[[5250.122262245319 16692.644035737303]]] [[[21592.33576467527 3768.863398210349]]]]]]] [[[[[[[13437.846058138215 14307.48912262825]]] [[[8545.09779681064 20234.24455637615]]]] [[[[10301.856146990945 15756.92957029603]]] [[[5622.789683454057 14714.951054354215]]]]] [[[[[2137.3679553790116 18080.798150827533]]] [[[515.770349101487 17258.308119306115]]]] [[[[17364.174976981452 1798.555742839031]]] [[[1744.3803197293562 20457.953788312]]]]] [[[[[16561.10746170564 11013.03822993945]]] [[[12777.411332831334 3721.8516589400474]]]] [[[[18403.685868339016 10692.682779491815]]] [[[12.796304452754793 14808.261057452086]]]]]] [[[[[[4961.586241862825 2232.2688790012626]]] [[[1757.5028594140124 20792.721327746884]]]] [[[[7614.977552138193 20573.661429271862]]] [[[6939.277064159799 21233.079933243906]]]]] [[[[[8227.38343338351 4619.37239402611]]] [[[10655.325667619347 7855.234798318526]]]] [[[[23622.442414044057 15181.970060001413]]] [[[3696.345259934125 10966.755171064506]]]]] [[[[[9360.439746297146 14764.904300565262]]] [[[8712.113655211808 13182.016432674449]]]] [[[[1776.5077590895253 18568.684564962736]]] [[[22064.97776353122 2210.7609918464796]]]]]] [[[[[[251.78078662027457 12285.57032089513]]] [[[3481.3801292368926 15638.216003649635]]]] [[[[15927.375710878621 2974.0999678652047]]] [[[3184.9346278580147 21570.319108424934]]]]] [[[[[23841.72189303358 12753.93576993555]]] [[[7278.920353614414 14454.999866447128]]]] [[[[3398.8594687578125 21841.99635684026]]] [[[16249.752006476547 9587.585314482072]]]]] [[[[[4803.90456260991 3527.2540812749603]]] [[[9693.410528258855 14549.549085718838]]]] [[[[14192.60760652408 8504.946029769797]]] [[[10301.586322571582 16087.29103933012]]]]]] ... [[[[[[19131.251330327177 13437.417642969032]]] [[[16151.03987735271 7836.674648386247]]]] [[[[3296.2581372033374 14461.55045497015]]] [[[2428.0858048806745 16756.306714444232]]]]] [[[[[1448.2055223312902 8370.050762484803]]] [[[22655.42756288051 15094.996932533732]]]] [[[[12621.953697262621 8536.119730135575]]] [[[8823.777185850666 14321.610448746505]]]]] [[[[[21939.89850120144 3434.4548201184043]]] [[[16368.817706969292 16988.3270637657]]]] [[[[19306.064576526776 7040.097810664367]]] [[[19100.328222499083 5839.745988791172]]]]]] [[[[[[16515.802447733433 22503.963162857828]]] [[[10933.345821412644 5742.862011389451]]]] [[[[23376.36818431894 11256.810582325988]]] [[[3494.9413205379597 2165.873922885722]]]]] [[[[[3693.2104110787864 9442.363186993955]]] [[[14477.487683716101 15031.960348020744]]]] [[[[19063.771428694094 11799.348425372442]]] [[[1736.927047274523 16775.542123998723]]]]] [[[[[8769.763810664546 10292.727125144813]]] [[[14896.186002395178 20831.015321186624]]]] [[[[23488.015284941743 18733.080711555962]]] [[[17953.978423833516 964.0228395536046]]]]]] [[[[[[4256.424551590822 5046.623399461864]]] [[[7383.337200852746 6648.965647349848]]]] [[[[4837.043357512657 9502.88633759745]]] [[[15850.047744898946 4198.089107860367]]]]] [[[[[8418.794287118235 12832.35964875848]]] [[[15113.884913431004 8458.788632339585]]]] [[[[19557.859086139528 19436.867780851004]]] [[[7778.441767418131 15548.742412333642]]]]] [[[[[2505.5581733115696 3242.179295422352]]] [[[7278.931982929739 16134.478829009933]]]] [[[[19077.671013317286 4079.931313666782]]] [[[10589.04677997332 20086.894549130528]]]]]]] [[[[[[[14384.015077184311 3949.9101182504915]]] [[[17838.11223828943 13757.63768801381]]]] [[[[15199.314867232648 10071.54673226898]]] [[[12626.623187219951 11715.241359809961]]]]] [[[[[17521.698916563764 5524.460827872058]]] [[[22633.329703190477 9063.094756946475]]]] [[[[10570.324598069012 18346.15057273594]]] [[[16049.103007744132 511.9387143840529]]]]] [[[[[22930.85917091031 9826.45113866615]]] [[[6987.294159459992 2278.917387389008]]]] [[[[23131.11830957454 18171.45222642895]]] [[[8822.053942771434 17260.067763473653]]]]]] [[[[[[14044.999467928978 1485.3641525162689]]] [[[2375.9492354746626 4323.834700595824]]]] [[[[20258.083486754775 20436.1343204451]]] [[[9059.658594633998 8173.80205637125]]]]] [[[[[3748.535178248703 3855.7730745846616]]] [[[13826.172409687902 12110.728370560413]]]] [[[[12683.678184735361 3092.665073606294]]] [[[19175.106995796505 7133.653738105167]]]]] [[[[[18999.901574368832 1653.0011871225165]]] [[[21745.887949961594 8738.78295838158]]]] [[[[10179.212944377286 14045.308470264685]]] [[[375.98736924797777 3356.635539938878]]]]]] [[[[[[18228.139840501633 14352.77011727758]]] [[[60.600915247133095 13952.268545675344]]]] [[[[19489.543569482594 23837.066843776513]]] [[[8927.16062083014 4152.0112421780295]]]]] [[[[[12302.105708966528 21600.725519834243]]] [[[2827.095899405883 11916.663346109368]]]] [[[[9558.516217020346 18887.70457513081]]] [[[7780.465544769737 12188.087828535243]]]]] [[[[[2485.234361320079 17096.72701578392]]] [[[13180.589242625609 11487.986954318165]]]] [[[[9178.244346107467 7437.639961168519]]] [[[21989.135016994896 16079.306324659217]]]]]] ... [[[[[[7458.81157045809 15312.86970656748]]] [[[11408.072082805482 19744.128790267892]]]] [[[[19815.653922749934 17332.17436149838]]] [[[22629.85616332814 5953.162963563234]]]]] [[[[[489.47957193933956 7275.760598049665]]] [[[290.72962512219317 3487.1264120255414]]]] [[[[18726.367343770227 18519.786392713766]]] [[[13167.615656621754 19736.448301754397]]]]] [[[[[6397.557402428813 15560.349702865575]]] [[[9415.13194048032 7716.692558248963]]]] [[[[14416.914098137559 8304.467024657184]]] [[[723.7642237726894 96.25073404715661]]]]]] [[[[[[14545.26165064641 7382.557330295498]]] [[[3717.5362077114924 9056.21841987369]]]] [[[[12877.651519674542 5787.316679193945]]] [[[1981.4702120950794 16567.459030314367]]]]] [[[[[9048.976857623042 5974.507316189608]]] [[[14433.945454520808 2458.2133499303322]]]] [[[[11315.8141125068 15589.379178656212]]] [[[17675.850887241017 8643.578680760651]]]]] [[[[[17548.73345075803 18113.086058087905]]] [[[488.28470527632345 17771.47479256794]]]] [[[[18329.739319590633 19481.138454888707]]] [[[5673.029097935529 10273.630925579131]]]]]] [[[[[[6576.604615685272 3325.3845352545177]]] [[[6782.316400657454 17810.07464766161]]]] [[[[13144.983637960813 103.13430020797271]]] [[[18878.746699526677 18729.853295565095]]]]] [[[[[5550.77576681785 1608.3493595968037]]] [[[4658.3738365087465 4156.895881838563]]]] [[[[13992.138733784368 8145.432244344271]]] [[[19149.061521759293 17546.708133587897]]]]] [[[[[12096.214465313396 501.42135891521156]]] [[[14730.777440431153 1304.1390156713805]]]] [[[[21563.50319653021 2989.6882639227883]]] [[[21612.19107115305 13048.553532868546]]]]]]] [[[[[[[412.1666472086484 22173.396162113964]]] [[[23445.47400345778 126.60937202944879]]]] [[[[13835.966517673698 4271.906265883492]]] [[[5206.317226883956 10070.358923284839]]]]] [[[[[23231.201521685627 14951.435341998627]]] [[[3278.5119016530284 4475.304329982447]]]] [[[[21709.054603569006 22776.62552235831]]] [[[18036.225907145596 16081.568269601727]]]]] [[[[[11776.623372805816 17999.279238659405]]] [[[7126.316597285265 9046.211497508342]]]] [[[[16347.778922170766 21993.679620862786]]] [[[23608.9497925335 1869.1793798588103]]]]]] [[[[[[10574.072529954252 11670.080816482186]]] [[[5221.1647832694225 920.5805064006934]]]] [[[[17149.673445910863 23022.25958908196]]] [[[10729.91961418964 5485.855957671751]]]]] [[[[[20535.89248180867 13446.28072585421]]] [[[17701.41635778194 19755.31225685956]]]] [[[[13411.282203984769 16476.691795189123]]] [[[4389.036673603993 16281.559782338398]]]]] [[[[[17695.466674416984 18287.400658930335]]] [[[8454.473806931766 21255.01245070378]]]] [[[[6129.599637145605 14079.62568764547]]] [[[14265.69120409174 13991.399504163308]]]]]] [[[[[[22136.528043817918 4339.1080207916375]]] [[[2844.8653416494803 22119.695739490926]]]] [[[[13075.921618609396 5194.175103447555]]] [[[5786.653149449464 23017.61605962945]]]]] [[[[[23846.368206591767 14812.924790118921]]] [[[13510.043716028124 13667.746638205947]]]] [[[[1150.483145344262 19487.430098245237]]] [[[189.10788446424078 12712.486051899556]]]]] [[[[[3066.4307746122186 3046.0321917988663]]] [[[17718.322235174845 8848.732932447128]]]] [[[[9029.234395467925 22493.46257556188]]] [[[18539.312697188525 8908.257083192937]]]]]] ... [[[[[[929.6293634402589 734.5816130443321]]] [[[12620.606290603133 18007.827334991798]]]] [[[[16474.009963717454 1917.7658643790226]]] [[[10445.186450751353 14100.067042269791]]]]] [[[[[2390.592435599718 18210.459011432107]]] [[[21117.489372589756 23574.1439344216]]]] [[[[22246.585258740033 23087.654152831954]]] [[[6611.330993432205 20711.293624322097]]]]] [[[[[20701.330051015037 12348.335018938058]]] [[[678.9993255160063 13748.623075530766]]]] [[[[11000.640410861552 15467.39244530777]]] [[[22589.09509818877 20248.843754950696]]]]]] [[[[[[20168.86569282543 9812.518658956536]]] [[[8760.56891315644 2853.584804751393]]]] [[[[13841.515247438787 4840.128856104757]]] [[[19823.310419783982 21200.926840197895]]]]] [[[[[10022.086833962256 3396.310219701831]]] [[[16325.41126062979 10290.90461816638]]]] [[[[11272.514359180084 8021.7007491752465]]] [[[20426.242475054372 19410.863851464772]]]]] [[[[[23863.854601636875 8003.252722618228]]] [[[4537.005521139898 19544.951767139533]]]] [[[[8093.438615411909 10495.641354121522]]] [[[3304.0056257594606 23155.55102329197]]]]]] [[[[[[14653.077748104186 17884.04760176726]]] [[[10336.125819335994 8412.590424354094]]]] [[[[4458.69098132339 22109.940831373944]]] [[[9951.98812062315 22114.75510593686]]]]] [[[[[7008.344592701155 17844.253075105313]]] [[[7543.586562364439 18471.236083018754]]]] [[[[8393.473578035782 1724.5694446032226]]] [[[9014.58100489116 12059.284710484908]]]]] [[[[[12139.473873404619 19986.167527126738]]] [[[990.1557830949752 22934.10061075731]]]] [[[[12630.61225961523 5860.1320696534]]] [[[11487.262231731342 16785.620603326042]]]]]]]] [[[[[[[[3642.991815620383 2266.3373550287088]]] [[[17290.797432657004 21118.52537734774]]]] [[[[6872.070056811957 17896.70655454451]]] [[[6397.520201417123 88.99288146987459]]]]] [[[[[7558.045208884456 6097.9642538177]]] [[[9684.391829655673 2534.4942470349465]]]] [[[[6748.90976251408 16553.38404769549]]] [[[15179.02295169133 853.322430073997]]]]] [[[[[6347.0991802131175 14627.947315420528]]] [[[19134.74185886149 2856.7362816603722]]]] [[[[18802.20042196117 8997.465357921616]]] [[[16454.005878997497 9814.111312229055]]]]]] [[[[[[20215.68312897869 2001.1894828044838]]] [[[9398.706250705129 14625.241615790537]]]] [[[[13599.549056927202 12024.199066179775]]] [[[9449.523676308572 17004.952558814115]]]]] [[[[[21262.646429007007 12593.191319357997]]] [[[2819.4524559519245 15206.875860848562]]]] [[[[6707.447561897314 23739.405812879224]]] [[[17621.68793255629 10826.107754223263]]]]] [[[[[12012.774500210397 10970.841328780016]]] [[[12744.053511481521 6692.901859784462]]]] [[[[11190.656938129398 5778.721606589639]]] [[[14246.31936445593 22883.473892751754]]]]]] [[[[[[7369.123540741288 17583.555704855877]]] [[[3353.149576507015 10537.745642330801]]]] [[[[10949.223794375426 12776.457745008662]]] [[[15274.815048082368 258.79844147613505]]]]] [[[[[21364.77310490322 2515.2868207091224]]] [[[10415.37354864581 14276.260172108963]]]] [[[[19410.179031095213 6912.263842257564]]] [[[148.84217204614947 10385.820214721682]]]]] [[[[[6823.607097049985 16397.02623991228]]] [[[7515.350059383674 22625.68103055039]]]] [[[[6106.768786710799 1665.5990265822531]]] [[[7550.736844010252 13950.391989303547]]]]]] ... [[[[[[16599.731050453072 12328.401895990224]]] [[[15908.36885581157 10507.409416107272]]]] [[[[6282.66303605487 21438.19650031568]]] [[[23867.547704048648 2026.5406116754575]]]]] [[[[[19855.425085732575 13713.763964479305]]] [[[11861.668380358547 9759.77458846717]]]] [[[[4931.450510736903 7973.474803448789]]] [[[3432.9583139792835 17370.727884841886]]]]] [[[[[19322.409645347845 13263.317887771478]]] [[[18400.852292387757 10064.519093355928]]]] [[[[5959.027544085669 18272.421968880746]]] [[[12550.414530538601 5070.080564482997]]]]]] [[[[[[17726.577747007625 1899.33477325995]]] [[[1749.9520961620683 4705.614050388071]]]] [[[[4004.1649655860883 21048.446678932512]]] [[[20622.276757702304 4569.5259252210935]]]]] [[[[[18251.21212393074 2444.2925552526945]]] [[[20846.376474493853 10525.00522502089]]]] [[[[5595.150323886121 17197.028154291955]]] [[[18574.096877748598 18717.29076988881]]]]] [[[[[7937.6701471460165 22388.429369994188]]] [[[22015.606596551548 4220.271014925461]]]] [[[[9357.011977632348 3501.0080567134555]]] [[[20870.886051821086 344.9952409161682]]]]]] [[[[[[6865.968181619795 21024.351563710105]]] [[[13411.515713296742 19647.140642894818]]]] [[[[23578.611749122345 479.4648151805085]]] [[[17330.757061618868 17848.63172273254]]]]] [[[[[6442.06518550514 6586.185052445484]]] [[[11918.75113943255 398.14140849884956]]]] [[[[2154.3745214886453 15016.597402427891]]] [[[2431.426045775295 23597.895103095478]]]]] [[[[[16921.01348477427 22584.661535307463]]] [[[15552.24803735 9311.826959197648]]]] [[[[17375.515104899434 15130.525617219044]]] [[[16159.191612250559 22626.934811434443]]]]]]] [[[[[[[13101.849040969813 4332.486738613855]]] [[[1471.2006379559868 8146.134017997675]]]] [[[[13916.757429934965 12044.699113402186]]] [[[23756.63340968582 5098.843376566169]]]]] [[[[[15069.31912469744 22022.02353111638]]] [[[12410.49360180343 22829.670681977168]]]] [[[[21022.423764304647 3981.3372249195263]]] [[[17284.09517350466 16413.220217609953]]]]] [[[[[14364.774815381768 11041.658021372865]]] [[[3174.5905772983315 5761.417920335541]]]] [[[[2169.4491358550276 20645.286101945512]]] [[[9706.708880537173 6011.649623981095]]]]]] [[[[[[21405.88209532847 16742.544051930057]]] [[[751.2538127378921 2461.644381936584]]]] [[[[10701.26601240613 22527.550207595836]]] [[[14807.70675982584 7067.4951616211765]]]]] [[[[[22455.54542845286 10032.737546375687]]] [[[4104.262866283993 16256.451007270796]]]] [[[[20952.524149460794 4696.708982359694]]] [[[7182.944074045577 19257.054889614286]]]]] [[[[[22595.794420245904 17360.55024617205]]] [[[21548.382915299815 15146.489917741608]]]] [[[[1.9101895986587183 20593.731366635206]]] [[[8595.771613955889 15178.217598569154]]]]]] [[[[[[13249.055815864363 688.2090522100458]]] [[[10801.18683762128 23652.967196847]]]] [[[[14149.728669503762 4382.313325294724]]] [[[13510.540333949353 8910.545522995797]]]]] [[[[[22335.535733165478 14785.851392686269]]] [[[20264.4631693395 22537.380913618694]]]] [[[[18806.89983262969 17742.82786227537]]] [[[19978.261876063665 11371.272056958505]]]]] [[[[[15682.843507268326 12807.822956659485]]] [[[22394.314052230144 14571.317307773505]]]] [[[[14295.783681817964 14209.387169986054]]] [[[846.2153861630022 22017.35018538419]]]]]] ... [[[[[[12626.875319889297 6059.8642488302785]]] [[[23104.270539114692 12553.59810028662]]]] [[[[23784.55412989464 11960.986928520782]]] [[[4042.408027177142 11716.201232407719]]]]] [[[[[5088.953993844628 15413.885085007898]]] [[[17930.111443131755 15646.339976549127]]]] [[[[5564.769754317814 4118.8697643207115]]] [[[19979.61935846977 11634.547615721209]]]]] [[[[[10682.54142089629 2214.247290871972]]] [[[20831.99471769315 19819.663589501728]]]] [[[[13039.502306040766 18965.64243626347]]] [[[23381.92776657283 1919.7916280801535]]]]]] [[[[[[8795.602149096998 2919.4396852303726]]] [[[4410.2489508193175 16627.614259469836]]]] [[[[1342.4310463338948 23739.798245573555]]] [[[20788.384907281237 18359.08664615329]]]]] [[[[[22614.074102622664 3595.1408402184766]]] [[[1618.6326926219372 7082.912888037831]]]] [[[[22563.447313990368 8190.689508431708]]] [[[4153.066457929106 2254.1950209367596]]]]] [[[[[13704.54736633489 9551.4494239799]]] [[[19014.655961153137 17867.14666792806]]]] [[[[19358.46693497124 12866.185344225096]]] [[[2230.3863001427476 1525.3441931932734]]]]]] [[[[[[88.16063279958335 9534.595997260636]]] [[[13256.717452002826 13313.438173580416]]]] [[[[16409.403840056217 6126.435052760582]]] [[[5943.202582236928 16638.914584966224]]]]] [[[[[17774.729644195497 8076.790260771387]]] [[[8241.393023851595 6847.153880447192]]]] [[[[20299.39768334483 3965.5376761518937]]] [[[20766.95089907112 11883.07144142462]]]]] [[[[[14597.486462292161 8963.337605292963]]] [[[6551.426200260431 18225.999181077674]]]] [[[[11223.745399794416 20598.851281937008]]] [[[19645.84194904297 21607.73802584439]]]]]]] [[[[[[[22261.12393727902 7452.122571995013]]] [[[13164.99753773198 6465.217653162864]]]] [[[[5291.621026900835 16473.58874589047]]] [[[20955.806819581172 1679.6045098726183]]]]] [[[[[10621.988460215527 8290.722500472202]]] [[[5516.374085358256 19155.342546104617]]]] [[[[21746.066083285416 21915.932982968894]]] [[[15321.778606208329 17678.70426842377]]]]] [[[[[3556.710095382667 7052.138664975098]]] [[[21043.92872640399 3212.6793928414604]]]] [[[[10730.389705829433 23538.765155006487]]] [[[6995.837371524656 13514.082990771903]]]]]] [[[[[[922.6051450709953 6314.439050895455]]] [[[13468.20258219119 16933.844625241432]]]] [[[[3885.9433262289335 22984.7303738468]]] [[[16402.168756661482 22384.14141006852]]]]] [[[[[5562.3075942003115 1145.4061122007647]]] [[[18745.847962350876 333.55036832893467]]]] [[[[11772.812118597198 4462.62057548935]]] [[[17028.908247672058 14275.009931335713]]]]] [[[[[14474.402055629325 9246.251300653657]]] [[[11301.12845264845 14422.060258487492]]]] [[[[6415.383967968919 16391.894664501957]]] [[[21670.6996416823 12378.699957418992]]]]]] [[[[[[9891.16898008547 13853.210420297097]]] [[[19278.595323339516 9791.904029017725]]]] [[[[13113.81607974102 23535.337513350354]]] [[[9624.427939862082 4295.838416342042]]]]] [[[[[3870.5244504270904 1519.7171268658724]]] [[[23531.056899838313 10734.06322228775]]]] [[[[9987.921835724926 14456.553373254064]]] [[[14788.818829493473 6318.353821422805]]]]] [[[[[16801.831665109126 9631.016900427037]]] [[[21252.053116112646 8362.922415744828]]]] [[[[23840.339058189515 11367.133095453608]]] [[[2285.2445558032136 4358.000796746369]]]]]] ... [[[[[[13439.81865306925 8524.998570117057]]] [[[18183.06588663681 23498.095075558384]]]] [[[[9317.509961653197 9091.735687053113]]] [[[11783.869533976054 11470.074583711721]]]]] [[[[[23375.720367545524 406.25201005110074]]] [[[8310.404330965184 6380.774709025227]]]] [[[[19441.90449790277 20987.37670834599]]] [[[9823.621969713613 22648.83959847025]]]]] [[[[[15324.881814824135 6322.785568744378]]] [[[4214.194186516944 21976.20140890193]]]] [[[[12725.485341201225 13215.181175000205]]] [[[20148.776619390523 8255.910457050437]]]]]] [[[[[[404.83664162465 4371.118787679929]]] [[[3942.0915019544664 23859.018289925996]]]] [[[[18736.727038124787 23188.105461067466]]] [[[8525.170044532055 14094.914319686191]]]]] [[[[[22486.560405879456 15798.210994472702]]] [[[10800.653330005429 22537.776702842973]]]] [[[[1510.756625522069 740.2035791012732]]] [[[306.31341014814933 21814.781329197533]]]]] [[[[[23719.33231090948 9361.698157654057]]] [[[2216.3658617789533 14155.094645704856]]]] [[[[10413.434491427342 19699.498959384728]]] [[[22057.242966579193 12469.179870443011]]]]]] [[[[[[9115.460556446427 8054.898647538949]]] [[[7208.544442944022 20170.30236029672]]]] [[[[1794.3582927556683 12361.08741594892]]] [[[22159.66844971406 730.0968956068083]]]]] [[[[[672.1169765111601 10083.95398930077]]] [[[2905.807573728982 424.5030928559376]]]] [[[[356.1888057384016 18596.8837722189]]] [[[18806.942406353708 22056.26308601491]]]]] [[[[[20522.020307401435 19076.4912594532]]] [[[14508.754770145451 1037.6629603672923]]]] [[[[13968.863129681786 17492.98989371737]]] [[[12870.07234929122 3127.9094010674894]]]]]]] [[[[[[[5949.714571204979 17779.639549520463]]] [[[858.4569826708625 10423.323665067986]]]] [[[[16537.84409873359 5221.799585482812]]] [[[20763.132359217852 18606.783559441843]]]]] [[[[[8231.503284832936 14646.490431738888]]] [[[15329.2203172825 18926.373230304303]]]] [[[[9098.071501968983 20290.29224744409]]] [[[18136.10379325624 17801.921129503044]]]]] [[[[[12732.585554761517 15053.676539273985]]] [[[5963.334254074578 19775.1579334154]]]] [[[[19009.644894742814 23033.400196444247]]] [[[13841.207273125152 8865.556960289463]]]]]] [[[[[[11539.12350661318 2272.0783096880405]]] [[[16824.840410381967 12192.698038261771]]]] [[[[17563.055019647967 1855.0281730184104]]] [[[16673.90875200331 20774.601712030544]]]]] [[[[[11630.251482826594 4440.055976286625]]] [[[9587.530407085062 9609.840225293177]]]] [[[[14425.835739100861 3829.2089556085243]]] [[[22945.49502597212 4442.749119185948]]]]] [[[[[2325.981528052783 18624.04696847044]]] [[[19329.7146875525 6799.307451592051]]]] [[[[9565.27970788166 9684.05212913153]]] [[[12510.107390721389 955.7296600501859]]]]]] [[[[[[12037.438289172507 9586.869591700373]]] [[[11191.164708983235 10592.48240251856]]]] [[[[12821.027509095013 10817.043184434635]]] [[[10081.09512747502 7607.958539872658]]]]] [[[[[8470.605101251018 8703.69278376199]]] [[[8096.408367145524 23172.21909113366]]]] [[[[9135.46939453872 16372.220376385241]]] [[[16941.44843358236 20061.554533784125]]]]] [[[[[2408.4261338281317 9586.645175808992]]] [[[10185.75719475912 10016.745657421226]]]] [[[[22036.865691319228 3010.0063642169475]]] [[[21046.655511783458 10763.801094580034]]]]]] ... [[[[[[19518.82322362713 13963.272221355075]]] [[[6778.121613914464 5694.60995721633]]]] [[[[22987.995761413586 13934.710106010898]]] [[[6968.817548814683 22235.16019170949]]]]] [[[[[1231.3063582428792 16156.572177560927]]] [[[12408.028612101167 9563.556813819581]]]] [[[[22612.62801132753 7841.992125941273]]] [[[7656.891414322117 22752.677792405997]]]]] [[[[[10705.503928912427 23630.02933412059]]] [[[18559.142793525014 18627.5329682716]]]] [[[[7246.885201550973 11845.32842233361]]] [[[15543.417384277947 22585.852308565543]]]]]] [[[[[[8343.17449790805 13231.88614635493]]] [[[3859.031130645731 1819.0339319500315]]]] [[[[18029.345512074433 9035.944445083425]]] [[[5346.5388182197175 4990.901033908148]]]]] [[[[[17974.217491983265 9531.559263420591]]] [[[6541.6078689971755 16392.249134479454]]]] [[[[13532.058301108682 21995.17454705447]]] [[[20935.08674615634 15340.183820573222]]]]] [[[[[11419.256116425713 12338.426763597661]]] [[[2953.932809916376 14898.079816293992]]]] [[[[3663.0563512174085 5681.848548239258]]] [[[23158.873125813847 300.81718436925956]]]]]] [[[[[[564.6890244205081 7460.502257128529]]] [[[5821.3977350281775 11436.482129822285]]]] [[[[4967.0841456010185 10073.72436364456]]] [[[10371.927782115794 21578.099498919368]]]]] [[[[[5445.602627956457 1853.3325071061322]]] [[[1874.0347343516253 5456.456721060685]]]] [[[[361.1576019608601 15505.825579059838]]] [[[5425.734249068127 3819.679026496556]]]]] [[[[[972.9174507470187 2447.775962709762]]] [[[9760.355083187098 23264.71246464419]]]] [[[[9832.930870078786 11201.943738778145]]] [[[22236.005255734235 6273.943764879204]]]]]]]]]
Units CO2 gigagram/year
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[us]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG', 'MEX', 'BOL'], dtype='str', name='area (ISO3)'))
- category (IPCC 2006)PandasIndex
PandasIndex(Index(['0', '1', '2', '3', '4', '5', '1.A', '1.B'], dtype='str', name='category (IPCC 2006)'))
- animal (FAOSTAT)PandasIndex
PandasIndex(Index(['cow', 'swine', 'goat'], dtype='str', name='animal (FAOSTAT)'))
- product (FAOSTAT)PandasIndex
PandasIndex(Index(['milk', 'meat'], dtype='str', name='product (FAOSTAT)'))
- scenario (FAOSTAT)PandasIndex
PandasIndex(Index(['highpop', 'lowpop'], dtype='str', name='scenario (FAOSTAT)'))
- provenancePandasIndex
PandasIndex(Index(['projected'], dtype='str', name='provenance'))
- modelPandasIndex
PandasIndex(Index(['FANCYFAO'], dtype='str', name='model'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020', 'RAND2021'], dtype='str', name='source'))
- entity_terminology :
- primap2
- area :
- area (ISO3)
- cat :
- category (IPCC 2006)
- scen :
- scenario (FAOSTAT)
- references :
- doi:10.1012
- rights :
- Use however you want.
- contact :
- lol_no_one_will_answer@example.com
- title :
- Completely invented GHG inventory data
- comment :
- GHG inventory data ...
- institution :
- PIK
- publication_date :
- 2099-12-31
Compared to the minimal example, this data set has a lot more to unpack:
The first thing to notice is that there are a lot more dimensions, in particular for the used
model, theprovenanceof the data, the describedscenario, and theanimaltype. As before, the dimensionscenario,animal, andproductuse a specific set of categories given in parentheses and with appropriate metadata in theattrs. Thescenariois a standard dimension, and the metadata inattrsis given using thescenkey. Theanimalandproductdimensions are nonstandard.There is also a coordinate which is not defining a dimension,
category names. It gives additional information about categories, which can be helpful for humans trying to make sense of the category codes without looking them up. Note that because this coordinate is not used as an index for a dimension, the category names do not have to be unique.In the data variables, emissions of the different gases all use all dimensions, but the population data does not use all dimensions. For each data variable, only the dimensions which make sense have to be used.
In the
attrs, the terminology for the entities is explicitly defined, so that the meaning of the entity attributes is unambiguously defined.In the
attrs, additional metadata useful for humans is included: citablereferences, usagerights, a descriptivetitle, a long-formcomment, an email address tocontactfor questions about the data set, and thepublication_date.
Processing information example#
For detailed descriptions of processing steps done to arrive at the dataset at hand, we use rich metadata types. This example shows a dataset with detailed processing step information.
# we don't actually do the processing, but add corresponding metadata as if we did
time = pd.date_range("2000-01-01", "2020-01-01", freq="YS")
area_iso3 = np.array(["COL", "ARG"])
with_processing = xr.Dataset(
{
"CO2": xr.DataArray(
data=np.random.default_rng().random((len(time), len(area_iso3), 1)),
coords={
"time": time,
"area (ISO3)": area_iso3,
"source": ["RAND2020"],
},
dims=["time", "area (ISO3)", "source"],
attrs={"units": "CO2 Gg / year", "entity": "CO2"},
),
"Processing of CO2": xr.DataArray(
data=np.array(
[
[
primap2.TimeseriesProcessingDescription(
steps=[
primap2.ProcessingStepDescription(
time="all",
function="rand",
description="invented from thin air",
),
primap2.ProcessingStepDescription(
time=np.array(["2000", "2001"], dtype=np.datetime64),
function="replace",
description="use other data which is also invented, but better",
source="betterData2024",
),
]
),
primap2.TimeseriesProcessingDescription(
steps=[
primap2.ProcessingStepDescription(
time="all",
function="rand",
description="invented from thin air",
),
]
),
]
],
dtype=object,
).T,
dims=["area (ISO3)", "source"],
attrs={"entity": "Processing of CO2", "described_variable": "CO2"},
),
},
attrs={"area": "area (ISO3)"},
).pr.quantify()
with_processing
<xarray.Dataset> Size: 576B
Dimensions: (time: 21, area (ISO3): 2, source: 1)
Coordinates:
* time (time) datetime64[us] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 24B 'COL' 'ARG'
* source (source) <U8 32B 'RAND2020'
Data variables:
CO2 (time, area (ISO3), source) float64 336B [CO2·Gg/a] 0....
Processing of CO2 (area (ISO3), source) object 16B Using function=rand f...
Attributes:
area: area (ISO3)- time: 21
- area (ISO3): 2
- source: 1
- time(time)datetime64[us]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000', '2001-01-01T00:00:00.000000', '2002-01-01T00:00:00.000000', '2003-01-01T00:00:00.000000', '2004-01-01T00:00:00.000000', '2005-01-01T00:00:00.000000', '2006-01-01T00:00:00.000000', '2007-01-01T00:00:00.000000', '2008-01-01T00:00:00.000000', '2009-01-01T00:00:00.000000', '2010-01-01T00:00:00.000000', '2011-01-01T00:00:00.000000', '2012-01-01T00:00:00.000000', '2013-01-01T00:00:00.000000', '2014-01-01T00:00:00.000000', '2015-01-01T00:00:00.000000', '2016-01-01T00:00:00.000000', '2017-01-01T00:00:00.000000', '2018-01-01T00:00:00.000000', '2019-01-01T00:00:00.000000', '2020-01-01T00:00:00.000000'], dtype='datetime64[us]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG'
array(['COL', 'ARG'], dtype='<U3')
- source(source)<U8'RAND2020'
array(['RAND2020'], dtype='<U8')
- CO2(time, area (ISO3), source)float64[CO2·Gg/a] 0.3923 0.3954 ... 0.4875
- entity :
- CO2
Magnitude [[[0.3923199551551487] [0.395401896923821]] [[0.215140979242194] [0.19310549001031574]] [[0.07301717998242718] [0.9306629769869504]] [[0.3162483925572471] [0.41308408654655704]] [[0.18724934165569662] [0.0651665013673165]] [[0.30416652398701494] [0.2152207065923436]] [[0.5945548276321212] [0.9732736893314965]] [[0.5577660621184048] [0.3499867633769139]] [[0.36293692197385097] [0.2396674909340838]] [[0.5919429312564888] [0.5308734905653735]] [[0.23876752408807178] [0.9984173331291085]] [[0.3034175853002721] [0.45871256090323886]] [[0.026014604593973867] [0.7837006388238078]] [[0.400725741058086] [0.7618693526399901]] [[0.8429501331986704] [0.2877071630533714]] [[0.5950408453344063] [0.4300853980221887]] [[0.6297082796442418] [0.5969577886703002]] [[0.20335236045738414] [0.9385768686910448]] [[0.9166777321243005] [0.18983649856056317]] [[0.570476785986679] [0.6669476601578237]] [[0.23138095633510514] [0.4875272659748333]]]
Units CO2 gigagram/year - Processing of CO2(area (ISO3), source)objectUsing function=rand for times=al...
- entity :
- Processing of CO2
- described_variable :
- CO2
array([[TimeseriesProcessingDescription(steps=[ProcessingStepDescription(time='all', function='rand', description='invented from thin air', source=None), ProcessingStepDescription(time=array(['2000', '2001'], dtype='datetime64[Y]'), function='replace', description='use other data which is also invented, but better', source='betterData2024')])], [TimeseriesProcessingDescription(steps=[ProcessingStepDescription(time='all', function='rand', description='invented from thin air', source=None)])]], dtype=object)
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[us]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG'], dtype='str', name='area (ISO3)'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020'], dtype='str', name='source'))
- area :
- area (ISO3)
Note that the processing information in the data variable “Processing of CO2” has the same dimensions as the described variable “CO2”, with the exception of the “time”. The time information is included in the rich metadata object itself:
print("COL processing:")
print(with_processing["Processing of CO2"].pr.loc[{"area": "COL"}].item())
print()
print("ARG processing:")
print(with_processing["Processing of CO2"].pr.loc[{"area": "ARG"}].item())
COL processing:
Using function=rand for times=all: invented from thin air
Using function=replace with source=betterData2024 for times=['2000' '2001']: use other data which is also invented, but better
ARG processing:
Using function=rand for times=all: invented from thin air
Limitations#
xarray does not provide a solution for the management of multiple data sets, including search and discovery, change management etc. For this, we use datalad.
At the moment, xarray does not deal with very sparse data efficiently. For large, very sparse datasets with lots of dimensions, primap2 is currently not usable.