完成--将数据处理方法整合到一个类中
This commit is contained in:
parent
c2b2e20a4a
commit
48d30f560d
0
api/data_api.py
Normal file
0
api/data_api.py
Normal file
0
api/model_api.py
Normal file
0
api/model_api.py
Normal file
59
api/system_api.py
Normal file
59
api/system_api.py
Normal file
@ -0,0 +1,59 @@
|
||||
from fastapi import APIRouter, HTTPException, Query
|
||||
from typing import Optional
|
||||
from datetime import datetime
|
||||
from function.system_monitor import SystemMonitor
|
||||
|
||||
router = APIRouter()
|
||||
system_monitor = SystemMonitor()
|
||||
|
||||
@router.get("/system/resources")
|
||||
async def get_system_resources():
|
||||
"""获取系统资源使用情况"""
|
||||
result = system_monitor.get_system_resources()
|
||||
if result['status'] == 'error':
|
||||
raise HTTPException(status_code=500, detail=result['message'])
|
||||
return result
|
||||
|
||||
@router.get("/system/history")
|
||||
async def get_training_history(
|
||||
page: int = Query(1, ge=1),
|
||||
page_size: int = Query(10, ge=1, le=100),
|
||||
start_time: Optional[str] = None,
|
||||
end_time: Optional[str] = None,
|
||||
status: Optional[str] = None,
|
||||
experiment_name: Optional[str] = None
|
||||
):
|
||||
"""获取训练历史记录"""
|
||||
result = system_monitor.get_training_history(
|
||||
page=page,
|
||||
page_size=page_size,
|
||||
start_time=start_time,
|
||||
end_time=end_time,
|
||||
status=status,
|
||||
experiment_name=experiment_name
|
||||
)
|
||||
if result['status'] == 'error':
|
||||
raise HTTPException(status_code=500, detail=result['message'])
|
||||
return result
|
||||
|
||||
@router.get("/system/logs")
|
||||
async def get_system_logs(
|
||||
level: Optional[str] = None,
|
||||
start_time: Optional[str] = None,
|
||||
end_time: Optional[str] = None,
|
||||
module: Optional[str] = None,
|
||||
page: int = Query(1, ge=1),
|
||||
page_size: int = Query(20, ge=1, le=100)
|
||||
):
|
||||
"""获取系统日志"""
|
||||
result = system_monitor.get_system_logs(
|
||||
level=level,
|
||||
start_time=start_time,
|
||||
end_time=end_time,
|
||||
module=module,
|
||||
page=page,
|
||||
page_size=page_size
|
||||
)
|
||||
if result['status'] == 'error':
|
||||
raise HTTPException(status_code=500, detail=result['message'])
|
||||
return result
|
||||
@ -0,0 +1,81 @@
|
||||
{
|
||||
"input_file": "dataset/dataset_raw/breast_cancer.csv",
|
||||
"timestamp": "2025-02-21T16:33:43.580798",
|
||||
"process_methods": [
|
||||
{
|
||||
"method_name": "SimpleImputer",
|
||||
"params": {
|
||||
"strategy": "mean",
|
||||
"missing_values": NaN
|
||||
}
|
||||
},
|
||||
{
|
||||
"method_name": "IsolationForest",
|
||||
"params": {
|
||||
"contamination": 0.1,
|
||||
"random_state": 42
|
||||
}
|
||||
},
|
||||
{
|
||||
"method_name": "StandardScaler",
|
||||
"params": {
|
||||
"with_mean": true,
|
||||
"with_std": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"feature_methods": [],
|
||||
"split_params": {
|
||||
"val_size": 0.3
|
||||
},
|
||||
"steps": [
|
||||
{
|
||||
"step": "load_data",
|
||||
"shape": [
|
||||
569,
|
||||
31
|
||||
]
|
||||
},
|
||||
{
|
||||
"step": "cleaning",
|
||||
"method": "SimpleImputer",
|
||||
"params": {
|
||||
"strategy": "mean",
|
||||
"missing_values": NaN
|
||||
},
|
||||
"shape": [
|
||||
569,
|
||||
31
|
||||
]
|
||||
},
|
||||
{
|
||||
"step": "cleaning",
|
||||
"method": "IsolationForest",
|
||||
"params": {
|
||||
"contamination": 0.1,
|
||||
"random_state": 42
|
||||
},
|
||||
"shape": [
|
||||
512,
|
||||
31
|
||||
]
|
||||
},
|
||||
{
|
||||
"step": "cleaning",
|
||||
"method": "StandardScaler",
|
||||
"params": {
|
||||
"with_mean": true,
|
||||
"with_std": true
|
||||
},
|
||||
"shape": [
|
||||
512,
|
||||
31
|
||||
]
|
||||
}
|
||||
],
|
||||
"output_files": {
|
||||
"train": "dataset/dataset_processed/breast_cancer_20250221_163343/train_breast_cancer_20250221_163343.csv",
|
||||
"validation": "dataset/dataset_processed/breast_cancer_20250221_163343/val_breast_cancer_20250221_163343.csv",
|
||||
"test": ""
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,359 @@
|
||||
mean radius,mean texture,mean perimeter,mean area,mean smoothness,mean compactness,mean concavity,mean concave points,mean symmetry,mean fractal dimension,radius error,texture error,perimeter error,area error,smoothness error,compactness error,concavity error,concave points error,symmetry error,fractal dimension error,worst radius,worst texture,worst perimeter,worst area,worst smoothness,worst compactness,worst concavity,worst concave points,worst symmetry,worst fractal dimension,target
|
||||
-0.23699125926993578,-0.19504766764457077,-0.2809282510304952,-0.30240775482998283,-1.5871855996848152,-0.8639895781113308,-0.43624867281177193,-0.4674118036303813,-1.3565691476637636,-1.1349694302458775,-0.8164493466946307,-0.987596663397936,-0.9577673690066597,-0.6420241745424317,-0.3236822078454787,-0.5797225296446687,-0.6552864187938733,-0.5120702572451242,-1.3014888706845267,-1.0389012728511517,-0.24235319586529802,-0.25435568073227216,-0.32701563821715035,-0.30367331743207715,-0.1351984415587286,-0.2949358771577488,-0.3308012912619814,-0.058516882764556855,-1.1574582874444417,-0.8387643298586203,1
|
||||
-0.5067204873491806,-0.11869326087113409,-0.538219822338019,-0.5512743990803873,-0.8072321016328048,-0.6649688742345649,-0.799601441721914,-0.7613600016571933,-0.752803171913166,-0.20572874314934814,-1.2243950542106865,-0.562906433990094,-1.2364078814167845,-0.9239497696333608,-1.3301978846285494,-0.9264002626861451,-0.879085497161405,-1.0961328586166523,-1.068015381106276,-1.2338003727930638,-0.6305560924075608,0.3475011182788889,-0.6639599473287312,-0.6166847466860986,-0.5962868434272743,-0.2964725517595021,-0.29551794948587123,-0.40138458677187017,0.2042222078965716,-0.6650845365659069,1
|
||||
0.29247722547821126,-1.0254018413056936,0.23609598808652194,0.1607803054321021,-0.5001880934975921,-0.4310407631004858,-0.47740460466937373,-0.26359945979303434,-1.0832426586415331,-0.48252384143342064,-0.12086230900038492,-1.5694668965264456,-0.022495680034594404,-0.19428379972100296,-0.819327069382365,-0.5696175733004105,-0.49124225807611077,-0.06834352360417316,0.27962906506691815,-0.3536705765363912,0.3291007574298336,-1.2507630479840839,0.3475793622054074,0.11774694829528826,-0.42690743049597224,-0.26112903591917797,-0.17173704555000985,0.29322986537043577,0.4335961950796835,0.004250666816013468,1
|
||||
2.403691183530572,0.3537496310395051,2.3466680236888484,2.68222946453004,0.12392899841544125,0.5313370619796124,1.3446062112735404,2.221176561883558,-0.9486191640484948,-0.933663904221097,1.4708190619512167,0.3834185948623373,1.4188722956679352,1.7493582710937943,-0.5248250700051531,-0.12733140715556743,0.2585128407370309,0.7338629409302145,-1.396060410766856,-0.7101632340250785,2.356918372287242,1.1131967125764224,2.254811300572847,2.6070057849830186,0.2694301559993827,0.577895296638083,1.128540861215487,2.0502560975593074,-1.0973841479441029,-0.5047647273726327,0
|
||||
0.4722967108643747,1.4871353565827048,0.6037251212830411,0.3853242889838126,1.000315916107909,1.7967305750572224,1.5266105314406242,1.3541997375663328,0.5689547750003029,0.6462250009198104,0.3554044029297677,-0.32439845415073276,0.6683545068233264,0.3369710082018756,-0.6185848902150409,0.6359814490030192,0.47892956527533026,-0.0361748433220927,-0.3040546588787085,-0.2401850246714803,1.0524601919806333,1.8889232535241416,1.5872801221442439,0.9645137555176657,1.5538907040617593,2.889822234975811,2.2483531510277652,1.6131339251197048,2.1047495302709267,1.1325013240136816,0
|
||||
-0.8064196296594521,-0.20936411891458984,-0.8028346831514499,-0.7754658803031313,-0.5171603753543123,-0.4518882424347146,-0.6846599746614404,-0.891143241881887,-1.5319876406183288,0.11240588280052757,-0.19512427032005536,-0.2290763873781991,-0.06706665983187948,-0.41980955959408084,-0.05001572407046402,0.3211731936626651,-0.2849186744929455,-0.6439618464016552,-0.11786693934162286,0.033660546132978406,-0.77763917743289,-0.6355316534393413,-0.7653257929419638,-0.7351273990100943,-0.7844861911287218,-0.4301632421120327,-0.7067713265811864,-0.9021968257427116,-1.2066098561265373,-0.36248089671360123,1
|
||||
-0.526700430169865,-0.004161650710979072,-0.5933886032825171,-0.5593819526466187,-0.9337527482010838,-1.298392868424564,-1.1057950160282313,-1.0920130062869318,-1.009811661590785,-0.423210606086833,-0.9070489395046285,0.7302286675879391,-0.9843661795308459,-0.7763094964896966,0.442423673527623,-1.0848148859907478,-1.1421198799480305,-0.9023165599171159,-0.05137132522123463,-0.6996781558636465,-0.6160889037165447,0.5096680891235634,-0.7003386305975916,-0.6162484938230269,-0.41749746311089964,-1.1092197486267832,-1.206580107380148,-1.1627626207203812,-0.5767416056078329,-0.6503885540565236,1
|
||||
0.36906700629083644,0.7331355896950182,0.3659623219912682,0.2489058876737468,-0.7779163420621057,0.16771823638259797,-0.10831296079900847,-0.15580812900975646,0.6423857720510511,-0.4807264706653417,-0.24067160659611977,0.3327153678556706,-0.18568297703433206,-0.21451857426100168,-0.9327203562174006,0.4424326697937646,0.33010599678911245,0.19101646117010254,-0.1001347755761858,0.4061892055156207,0.20612965355619808,1.0262618416081435,0.2063029223263378,0.08786362717486963,-1.0997200985286457,0.7653695980519768,0.3852770221613663,0.3905578490776912,0.5318993324438746,0.7150018209061961,1
|
||||
-0.05717177388377231,0.4277179626012715,0.008097574802624855,-0.15929180926955172,1.8257859882302152,1.6706760488502579,0.30275445420899055,0.49744450496131465,1.6704197307615274,2.283629770639228,1.070794630309259,0.4158686601466042,0.9257159708141021,0.611428131962587,0.8126547584589752,0.6142169276461553,-0.1344039290921119,0.6976731756128738,-0.7207605073664727,1.2678159226638839,0.2784655970112774,0.45616970698923787,0.22043056631424446,0.15308343020410473,1.6150554920647295,1.0242992684473953,0.13308789077802238,0.8140199536285561,0.5919734719442128,2.2240120249378905,0
|
||||
0.6088263201390542,-1.218673933450955,0.5841963492672895,0.4886074713710204,-0.04733675486600917,-0.023302853331033553,-0.06305783254124712,0.48133775438450305,0.12020979302350841,-0.8222269166002362,-0.2748321088031682,-0.7229258184231347,-0.4286667056066289,-0.2354891587842732,-0.6249958180926399,-0.5626218342928471,-0.5910216960384612,0.3357755224394658,-0.45034500994356197,-0.6330670710733727,0.3845583140787283,-1.0300822216799914,0.351111273202384,0.20936004954036772,-0.41279247941836333,-0.3072292739717748,-0.4273966695670694,0.5032534091597761,-0.2690891942273104,-0.7412364459327124,1
|
||||
-0.6465800870939742,-0.1902755172212311,-0.6993321914679682,-0.6538525768096617,-0.973869050771513,-1.1653083782560567,-0.9096238731021962,-0.9385342580021211,0.33234378450344726,-0.12664442935389833,-0.6926794111618467,-1.09326218847983,-0.7536035260642564,-0.6206856850275239,0.17356538566080737,-1.0888568685284512,-0.7979090052598319,-0.6051583758113952,0.03285645266458965,-0.4449524334712106,-0.6763688565957781,-0.6823427378068763,-0.7307130651715916,-0.6535481136156662,-0.7844861911287218,-1.1204374732195816,-0.8835929262690032,-0.7678159078872556,-0.156222629105461,-0.5161207138571565,1
|
||||
-0.6798799917951154,-0.02325025240433782,-0.7090965774758433,-0.6876928003904533,-0.5032739629260866,-0.644363807450734,-0.795338277465748,-0.9249054690525114,-1.034288660607702,-0.22190508006205364,-0.7179284780105346,-0.6221278031338809,-0.8082389206544771,-0.6335623597347958,-0.5047909203876554,-0.39783331544801975,-0.3841343868170906,-0.8570793532704398,-0.528662066574241,-0.2679396433340943,-0.6281448942923912,-0.07045499214552874,-0.6759684447184522,-0.6118859651923089,-0.14460840894380123,-0.360244547732261,-0.5650595440377936,-0.6624626342953671,-0.6113297465322707,-0.12534117894854976,1
|
||||
-0.26696117350096293,-0.7939525457737138,-0.21501864547733465,-0.36339065774120083,0.946313201109253,0.7616289848577217,-0.48396331890962907,-0.3930729548143277,0.7362142682825638,1.1333124790690556,-0.9011079825990548,-0.8604329700652154,-0.8520910136808383,-0.7236990826856996,-1.0737607695245823,-0.2649142743043148,-0.5797471832743539,-0.9087502959735321,-0.43704588711948444,-0.5744739872300764,-0.3388011204720714,-0.8227759909094805,-0.2920497193470803,-0.4282235098390781,0.005951069217356934,0.32818567385318415,-0.32270347511664454,-0.5992848203099557,0.5701283303077264,0.001578669996125671,1
|
||||
-0.05717177388377231,-0.08528820790775545,-0.0636706623552613,-0.1836144699682456,0.3029094252681284,0.2768038840617024,-0.35000158055241515,-0.18461443292597723,-0.2958991902640659,1.1908283436475644,-0.23819620788546408,0.1562681378724698,-0.20437403307835508,-0.29030700253808833,-0.015156303736018393,0.009474155659005981,-0.3610216356506704,0.5046610939203897,-0.15333126687249599,0.24089503214716337,-0.19171803544674226,0.03654177212312228,-0.17408389204805705,-0.27248123772244304,0.5376142264739442,0.16683484066909532,-0.2966747803637765,0.34957764541147823,-0.03971520704419855,0.5680419958123617,1
|
||||
-0.3435509543135881,0.5565660240314464,-0.3614844355954698,-0.38277828583436263,-1.5216108743293055,-0.3011076360871525,-0.22850139925168625,-0.7780862426408054,-0.8425521683085253,-0.11945494628158505,0.6539374874348427,1.2697110029388752,-0.011712378470734992,0.25382448009206227,-0.306853522166781,1.7420855165322136,1.380326860765716,0.482545126226459,1.0273353038428348,2.698103937743929,-0.36291310162376467,0.26725354507740123,-0.44957294981224327,-0.39485016581408494,-1.743361867667595,-0.3172176588831707,-0.352781077942181,-0.8864877476706635,-0.696889884608511,-0.019797304562977628,1
|
||||
-0.4767505731181535,-0.796338620985384,-0.3644137513978326,-0.514614156867863,2.5123919360702636,1.8040029515691633,1.3544442826339231,1.1491484129153848,1.225754248620885,2.574803835067927,-0.16195392759726907,-0.571424576127214,-0.25253944673025985,-0.2630820331569989,0.29377028336579186,0.8598450972450488,0.5330472265430458,0.07239445262992984,0.2825844256944908,1.0642820524713805,-0.10491490330064601,-0.2777612229160396,-0.03386702546808048,-0.18588504440268924,2.259638257942187,2.2282838189210477,1.6815060208541948,1.1299090235556128,2.0282915345432233,2.845251285561829,0
|
||||
-1.0927988100892678,-0.0208641771926684,-1.0132572016211707,-0.9753347008271818,0.12701486784393573,0.4634615478681698,-0.1857057888340207,-0.5380337100056323,0.5526367756556928,0.5581538332839684,0.4123385732748484,0.05080542569860252,0.6194702064004974,-0.26639317808172597,0.2777429636717939,1.0432889201100453,0.3537824735937382,0.5307981466495802,2.2611983658544768,-0.02369899910309051,-0.9705350266464363,-0.41317900269355073,-0.9210830679086379,-0.8769095795084315,-0.45984231634372513,0.1276496383243881,-0.3076646737038764,-0.48949202465422753,0.12594378369915996,-0.3965488561671718,1
|
||||
-1.3785119924250602,0.019699101405720208,-1.3720983874106019,-1.175203521351232,0.946313201109253,-0.2969866227303863,-1.0864796025906795,-0.747111722300783,3.0656086747257465,1.5251393065101455,1.6302347389174423,1.1662764198452749,1.4655999357779925,0.3377068181851484,2.5215677208315053,-0.2750192306485732,-1.1975341101836183,-0.098501661368624,1.6642155190847723,0.5357107592744859,-1.1320853003627815,-0.37472704053450423,-1.1503040916124283,-0.9726670829526932,0.41057966677546825,-0.7659266425951126,-1.2953090357154804,-1.0592876064631938,0.5919734719442128,-0.11465319166899858,1
|
||||
-0.8563694867111642,0.0006104997123606145,-0.8902259379219375,-0.8071910899101234,-1.0679880683405982,-1.177429005775957,-0.6248117072191111,-0.6656487338065242,-1.1036401578222967,-0.9228796796126271,-0.46791320823431104,-0.4645421735971602,-0.5300297403069065,-0.5956681455962526,1.0037805458099007,-1.0238742261915288,-0.373987325329394,-0.4111410228600958,0.30918267134264593,-0.7465526229382836,-0.8620311114638165,-0.2627148029407606,-0.9309724187001729,-0.785514604694888,-0.09755857201843937,-1.1018437105383676,-0.5806767608895145,-0.6542665935621245,-0.8570875899427478,-1.028476104070662,1
|
||||
1.7043931848066034,-0.030408478039347774,1.6289856521099868,1.8150737352722564,-1.0078136144849532,-0.37092245060177914,0.2871775078883844,0.38655572214403466,0.6505447717233567,-2.0426416681254658,1.596074236710394,0.34488414233727066,1.9034019792706809,1.7250765416457958,-0.9411346990567495,0.38258023606238867,0.7404982614026216,0.52275597657906,0.08309758333332716,-0.4134971989869148,1.5467558055903465,0.05326001654009922,1.5484291011774989,1.551273856349246,-1.3631991853106722,-0.06520302419564176,0.4390696579839601,0.2368820853293935,-0.05427863480185585,-1.0952760245678599,0
|
||||
-0.6698900203847732,0.5971293026298342,-0.6446516298238641,-0.6735927072317902,-2.24524725531129,0.2622591310378217,0.2061773870212318,-0.6173284820760895,-1.7849166304597957,0.7756356962214545,-0.5505915251702107,0.774847507353806,-0.44088778071233603,-0.518776002344257,0.030922240384225544,2.9725582775292025,2.219150610415306,0.9087801399640286,0.5618660050001197,3.4345264862586222,-0.7511159981660275,0.4628570047560284,-0.7363641227667542,-0.6971733999228471,-1.7174844573586463,0.8068598122993136,0.44543222781243885,-0.3487933254002305,-1.030028294564935,1.1832692635915518,1
|
||||
0.17259756855410266,1.8975402929899263,0.10818253138335038,0.08111477908565519,-1.950546724890055,-1.0508896544681963,-0.663016217668598,-0.8183531190828345,-0.32445568911713496,-1.3434644393429702,-0.6718860619923389,-0.5288338654416138,-0.6047939644829977,-0.5084746625784393,-0.5693008821559974,-0.4351439234883581,-0.42585008404428804,-0.9328768061850926,-0.8271534899590933,-0.9032120260561496,-0.12179329010683142,1.0981502926011433,-0.13982435537738272,-0.2011538946102025,-1.3820191200808167,-0.6829462141004384,-0.564481128598841,-0.8929762799178138,-0.957211155776646,-1.1467119633507015,1
|
||||
0.7486859198838471,-0.2761742248413471,0.8283059994641814,0.6489960310508138,0.676299626115975,1.4622012555079698,0.9871562851796281,1.0447642793695096,0.8626787632032966,0.6012907317178505,-0.16442932630792473,-0.9861769730417494,-0.2769815969416745,0.025355480285893583,-1.0385006661977867,0.4890709298441874,-0.03518821676796679,-0.3906334891802694,-0.4001038792748245,0.2840688834001187,1.0379930032896176,0.309049156119843,1.000982896646104,0.9470636409947935,0.6364188840172048,2.6547110209075675,1.6346543702990324,1.3399325673449534,2.5471136484097854,2.771771373014912,0
|
||||
-1.625597285307529,-1.10652839850247,-1.6440365377299393,-1.328189532122727,-1.9428320513188182,-1.5616528981568025,-1.1726119173508318,-1.2488370027684648,0.005983797611232259,1.17285463596678,-0.9535864352649552,0.26984336636740336,-1.0239049519316636,-0.9032735091033984,0.24528764129144792,-1.360680194188999,-1.3294459095236748,-1.5155320277942796,1.0746210738839996,-0.7422352378129881,-1.496417335564868,-0.8929926174607824,-1.5349291991831957,-1.1807596986379452,-1.5274031161801844,-1.4027245975616491,-1.330765902123276,-1.605690322012697,0.21878563565422893,-0.2515930286882535,1
|
||||
1.6278034039939784,0.5708824753014654,1.6045746870902977,1.6529226639476302,-0.3142644604307916,1.0816135513830942,0.5050907885208658,0.5299677513183382,0.6791012705764257,-0.17517344009201483,1.3614064389402356,0.7261724094274058,1.2945048842980909,1.9833458457745081,0.3089962370750899,1.2889170897089384,0.6694688309887452,1.43755282210073,0.28701746663585037,0.6714000060694884,2.082041787157938,1.4977163341668862,2.0040456197874987,2.2819974019945226,0.8810780360290853,1.904045477951117,1.2644684893693532,1.6541141287859176,1.4712404228128084,1.1284933287838497,0
|
||||
-0.6798799917951154,-0.08051605748441576,-0.5909475067805475,-0.6432775069406643,1.2086121025312941,1.3579638588368257,0.764160001010949,0.2487191066309352,2.0987672135575597,2.909114797930508,0.5707640907568117,-0.28789213070593256,0.6518201110920754,0.24499476029279,-0.4911676986477571,0.9134790963030347,0.8335129917065075,-0.1145860015096644,0.4421738995834219,1.4250920950853636,0.22059684224721376,0.4528260581058426,0.5312387340481981,0.13497893638662484,1.5350707692916155,2.6324292391821458,2.6075491386173444,0.796944868767634,3.440944027036039,3.900690029417551,0
|
||||
0.7120560247125919,1.002762088613716,0.6183717002948544,0.6158608121279551,-1.0162997554133144,-0.7003611065926744,-0.6920385281817275,-0.32709722649008,-1.0546861597884654,-0.868958556570275,0.060831956361741955,0.03052413489593573,-0.073536640770195,0.22696741570260912,-1.101007213004379,-1.019754513220408,-0.9162913892829595,-0.6873895647824642,-0.759180195524919,-0.1939273269004569,0.7920507955423458,1.415796936523701,0.6866428179151743,0.7049433019899406,-0.6104017945048833,-0.6130275197206667,-0.5720005293052252,-0.13962353585393608,0.14050721145681827,0.1812704561335872,0
|
||||
1.0417250812538916,0.2917116755360883,0.960125210570503,0.9912757924773615,-0.5796492312813273,-0.5464291370899383,-0.0933918859024276,0.31314610893818184,0.9769047586155716,-1.7209123006394336,1.082181464378275,-0.6420034681204942,1.1054376635450909,1.2552618673261862,-0.6967180737232809,-0.5719494863029316,-0.43994322499942207,0.04424685738310931,0.473205186172936,-0.47825797586634766,0.939133880567675,-0.06042404549534233,0.9056212997277324,0.8358191609114827,-0.9397506529824156,-0.6629694442776464,-0.2984100266806343,0.02856605002614535,0.7357873210510849,-1.143371967325842,0
|
||||
-0.16040147845731056,0.3537496310395051,-0.06806463605880551,-0.2340223030104662,1.1854680818175851,1.2440299601497609,1.1363670341454355,1.1748572647976032,1.3440597438693134,2.057161053861348,0.11578580773829802,-0.48948816128444034,0.37720536459912457,-0.02467959857664897,-0.5460612685997001,0.02035641633743807,0.4090275861378645,0.4684713286030486,-0.3971485186472518,0.400021512479484,0.12173771952527111,0.7102870221272838,0.31579216323261655,0.038348927216219436,1.238656796661836,1.1579899587999258,1.537480576554992,1.659236654244194,1.3001201466603278,1.9434523588496608,0
|
||||
-0.010551907302174852,-0.4360412640232296,-0.07782902206668132,-0.12122155774116097,-0.5696201556387205,-0.8295669959548134,-1.0001341296177189,-1.0029612603093676,-0.7038491738793347,-0.5220659983311449,-0.7362464284693866,-0.6405837777643077,-0.7715756953373553,-0.6044978653955247,-0.8726179073649083,-1.0275275565621451,-1.0224409269570305,-1.2457172219283277,-1.0739261023614215,-1.0166975779210603,-0.10009250707030745,-0.30618223842490033,-0.14335626637435975,-0.2201308941538262,-0.7233214031257515,-0.7674633171968657,-0.9465245260270486,-0.9713509194294456,-0.9226230148522082,-0.667088534180823,1
|
||||
-0.23699125926993578,0.6615533333449212,-0.2252712507856038,-0.32285288991004424,0.14707301912915144,0.22104899747016027,0.12124203760992598,0.27040127086895077,-0.1653551955071797,-0.006220587892646533,-0.8585311247757772,-1.1350416475333236,-0.887316465456112,-0.7303213725351537,-1.373070964809994,-0.6644487020696036,-0.7184236902728748,-0.8357676025835615,-1.271935264408799,-1.0092963462776967,0.0783361534522232,0.7487389842863302,0.040303105468430876,-0.18784818228651234,0.9046029544917663,1.1948701492420033,0.740424101678277,0.9011028864192585,1.49672642138871,0.9601575291309119,0
|
||||
0.8585756053976141,0.25592054736103936,0.9405964385547515,0.7395891295952243,0.23733469991261782,1.4549288789960289,1.706975173047644,1.3898204359573585,0.030460796628149062,0.25619554424679813,-0.3144384881736588,0.2272526556818033,-0.06203445243541172,-0.10120383683700826,-0.06003279887921267,1.44204604354116,1.4908170858539687,1.4315211945478403,-0.4311351658643386,0.7571309392717852,0.45448305941863876,0.5079962646818654,0.6760470849242443,0.33674588555733553,0.49056438954858234,1.7811115098108588,1.974762648403175,1.6319165184667186,0.33347262924578536,0.8940256078386859,0
|
||||
-0.5133804682894088,-1.6147624185881577,-0.5416373574407759,-0.5449293571589889,-0.4014402717857646,-0.7881144498367537,-0.7479515670799038,-0.5364849839886311,-0.3978866861678831,-0.6694504013135734,-1.2407326857010141,-1.371521498292418,-1.2917621627779292,-0.9339567854058695,-1.240444894342161,-1.0275275565621451,-1.0447080896661427,-1.0595409847957853,-1.2482923793882164,-1.2276326797569272,-0.5533977527221421,-1.026738572796596,-0.6053302247789174,-0.5713144489266309,-0.08814860463336674,-0.21118711136219812,-0.3799666035729542,-0.015829170612251878,0.43541662354939054,-0.39320886014231227,1
|
||||
-0.3701908780745012,0.8190342973151342,-0.4059123919313039,-0.4116834768096221,-0.3613239692153342,-0.920471702354067,-0.46051591550071647,-0.5188295073948184,-0.8221546691277619,-0.20752611391742584,-0.64614191540152,0.421953047387404,-0.7988933926324656,-0.5323884870348016,0.2893627704499422,-0.8059180908892195,-0.22234512865214948,-0.42018846418943095,-0.48285397684686293,-0.44865304929289274,-0.3412123185872407,1.330533889997119,-0.4350921147246382,-0.3778363041542843,0.5093843243187276,-0.6345409641452118,-0.15669824413724168,-0.24958708235827362,-0.07612377643834332,-0.07590923778062321,0
|
||||
0.5255765583862009,0.10559780902583626,0.5695497702554762,0.44348717326329806,1.0774626518202741,0.6476950861706573,1.170800283906776,1.1485289225085842,0.5893522741810663,-0.6910188505305145,0.5301675519020587,-0.7829584391990283,0.3779242513700484,0.5139333091789564,-0.2150971169186428,-0.5867182686522322,0.04880690332463318,-0.016069418145792023,-0.852274055293462,-0.552270292299985,0.8089291823485312,0.09839927646593626,0.7254938388819188,0.7180308878820948,1.106917253270822,0.034680824918317976,0.776864274332292,0.742304597212684,-0.06156034868068501,-0.10797319961927862,0
|
||||
-1.122768724320295,0.9669709604386679,-1.1318944916168605,-1.0183399849611043,0.4834327868350633,-0.669332300141729,-0.8238686844108585,-0.7756082810136036,-0.3734096871509663,0.6749829332090636,-0.39810696459382094,-0.05871354463579812,-0.20077959922373506,-0.507003042611894,1.3595870430166548,-0.6185877463533545,-0.4878599042468785,0.2995857571221251,2.2020911533030203,-0.8544872510706716,-1.1995988475875232,-0.1991854741562493,-1.2099933874613356,-1.0123660934922276,-0.789191174821258,-1.1428729224051788,-1.1754035152206017,-1.3092668488270915,-1.1720217152020995,-0.9376282121944733,1
|
||||
0.18924752090467298,0.28216737468940806,0.21754365467155767,0.0691296999007916,0.2689648615546881,0.6064849526029955,0.7018522157285237,0.49589577894431347,0.6668627710679679,0.5132195640820085,-0.7822888444875823,-1.0567558650350297,-0.8068011471126292,-0.548944211658437,-1.0949969681191296,-0.49888287889060245,-0.4095020405363322,-0.7452931892902095,-0.6675640160701625,-0.8514034045526034,0.5846877576377825,0.7871909464453767,0.47826006909354696,0.47372928456188285,1.1351471554260397,1.3116574189752486,1.4570808305405767,1.2955373467065558,3.4263805992783807,1.3021731220765638,0
|
||||
0.788645805525217,0.11275603466084622,0.9650074035744407,0.6793112313419393,0.568294196118664,2.2718591738373215,2.433352775155915,1.4914168626726314,1.4868422381346575,0.7145250901067903,-0.25997971653923413,-0.37773824896174635,0.3606709688678735,-0.04491437311664796,0.969722491460155,2.51161680736419,3.0173861141141094,2.239759286635118,1.1810140564766205,1.849429375971552,0.3580351348118658,-0.39478893383487645,0.6266003309665696,0.24622341646993562,0.3117750092322076,1.623602363131153,1.9950071887665166,1.1879643120827474,0.8140657452484955,0.6381819123344189,0
|
||||
-1.2060184860731484,-1.6266927946465068,-1.1855986146601765,-1.0627552784108931,0.3646268138380201,-0.4887349500952119,-0.9176582980465089,-0.7468019770973828,0.054937795645064735,0.6983487531940835,-0.8718982778133179,-1.2660587861185508,-0.8772520506631767,-0.8263445753522392,-0.43867822664991385,-0.6792174844189041,-1.0580120147277894,-0.820487479449573,-0.05284900553502097,-0.6077795296252133,-1.0910949324049029,-1.6319390206911528,-1.0994445732559632,-0.9430018882638103,0.1518055636859781,-0.5369621269338819,-0.9176037540794175,-0.6995155684435677,0.12048249829003885,-0.30636896349595566,1
|
||||
-0.5133804682894088,0.7593824170233869,-0.4972094011049417,-0.559029450317652,0.4602887661213531,0.14347698134279732,-0.35246109839251094,-0.48227957339359206,-0.9608576635569538,1.043443940665136,-0.3580055054811989,0.9817166735410068,-0.44088778071233603,-0.47058044843989605,1.8283861440660942,0.7277033604355174,0.22468930244470856,0.06837336759466991,-0.14003214404841843,1.2283426872326106,-0.5606313470676499,0.546448226840912,-0.6003855493831499,-0.5972714942794033,0.6646487861724214,-0.008346063930772288,-0.4395433937850744,-0.4437307972269566,-1.0973841479441029,0.6021099552659323,1
|
||||
-1.2826082668857735,0.5350913471264174,-1.3105827555609852,-1.113163111453114,-1.0849603501973184,-1.3686925080399868,-1.1924684247132047,-1.1965829869548472,-0.638577176500891,0.46469055334389325,-0.901603062341186,0.34285601325700377,-0.9951494810947054,-0.8366459151180567,-0.4218495409712162,-1.2974076213872585,-1.4200366195832776,-1.5044740439473143,-0.7813454002317151,-0.5831087574806675,-1.1561972815144752,0.5899156623250517,-1.2163508272558934,-0.9827008988033448,-0.8691758975943727,-1.2596601921384238,-1.3444743480264534,-1.4024968121677257,-0.9499294418978168,-0.07991723301045538,1
|
||||
-0.9995590769260718,-0.8154272226787432,-0.9580884206766734,-0.9312719097063594,0.42171539826517057,0.27437975855772223,-0.39427290167413825,-0.8697708228472716,0.3037872856503782,1.1800441190390931,-1.0842874871875752,-1.2857316381971375,-0.9110397288966027,-0.9103372849428162,-0.9227032814086519,0.6639644050332728,0.017238267585132597,-0.8683383913691682,-1.1256449133439455,0.8114066379897859,-0.9560678379554206,-1.0133639772630145,-0.8327852929842194,-0.8588050856909515,0.10005074306808062,1.1902601254367433,0.5304592973384747,-0.48266199070985877,-0.5275900369257379,1.7497325894077878,1
|
||||
-0.08048170717457133,-0.8201993731020829,-0.1295802679084225,-0.16845686982268288,-0.07742398179383166,-0.7098151960581968,-0.46149972263675476,-0.20072118350278886,-0.28366069075560807,-0.935461274989176,-0.2129471410367762,-1.035866135508283,-0.41141342310445395,-0.2630820331569989,-0.1229400286781546,-0.7701620915172286,-0.5166099117953523,0.004036007030508304,-0.111956218086477,-0.9636554178102869,-0.25440918644114485,-1.0635187105139448,-0.3619815570872199,-0.3128346275565852,-0.15401837632887386,-0.8127952179485859,-0.5291977868227311,-0.26819892485667873,-0.6204318888808068,-1.1159839999219905,1
|
||||
-1.4804097008105528,-0.1711869155278715,-1.47511265979369,-1.214331279866522,0.43714474540764403,-0.8732012550264551,-0.7886155953694864,-0.9208787814083084,-1.1444351561838235,1.399323352744657,0.6965143452581204,0.15221187971193645,0.5022916627398927,-0.14204129090864226,0.023709946521926557,-1.0420631476111937,-0.21332551844086356,-0.8936712270913068,-0.04693828427987562,-0.3968444277893463,-0.9367782530340659,-0.06543951882043553,-1.0090276517333587,-0.8446268676411178,0.10475572676061627,-0.9987328447607262,-0.7542013925753014,-0.980229963557125,-0.7587844525785568,-0.0298172926375571,1
|
||||
0.1959075018449017,1.4203252506559474,0.2819886023235375,0.11742251896921266,-0.5295038530682902,0.6646639646985177,0.4214671819576111,-0.1514716961621535,0.34866178384805846,0.28854821807220915,-0.5595029605285713,-0.18851380577286556,0.03357748809747429,-0.41318726974462666,0.14471621021161107,1.8765591663442662,0.6215521517412886,0.122658015570681,0.1392494352572105,1.6989376658898223,0.07592495533705348,1.0563546815587017,0.32285598522657016,-0.0390859559790263,0.13769061260836982,1.4238346649032338,0.9208897186314954,0.21468447501019478,0.5755896157168475,1.3689730425737614,1
|
||||
-0.020541878712517038,1.3010214900724528,0.11208828578650057,-0.09584139005556755,1.617489801806829,1.7579445669935412,0.9920753208598194,0.7371872923930874,1.99270021781759,1.8989924262704512,0.5341281898391078,0.7221161512668725,0.29165783885917407,0.1732532869237031,1.1632523767651797,1.257047612007816,0.42255700145479325,1.0354443185747215,0.6800804301030319,2.2441617302842856,0.025289794918498157,1.2586454390041193,0.05796266045331458,-0.08467438017003008,2.2737532090197954,1.2425070618963532,0.5397139443617166,0.7542571566153295,1.4202684256610054,2.437771770528924,0
|
||||
-0.7098499060261425,0.2726230738427287,-0.6802916387526106,-0.7165979913657128,1.054318631106564,0.4489167948442891,-0.11093644649511047,-0.19855296707898748,0.8422812640225331,0.48985374409699095,0.6663144809881211,1.056757449510874,0.9760380447787791,0.14713203251752302,1.0642836776547429,0.12917902312175786,0.8120914174547036,0.10255259039438068,2.103086572279332,1.0513298970954943,-0.6233224980620525,0.1335075897415875,-0.5456409289300106,-0.6171209995491705,0.22238031907402087,-0.3510245001217416,-0.2845280561457715,-0.4923947890805843,0.5410014747924108,-0.12934917417838193,1
|
||||
-1.4907326712679068,0.6353065060165525,-1.4858534844023534,-1.240416452210049,0.707158320400922,-0.8239915072956592,-0.8973262839017174,-0.9670308167149417,0.9728252587794194,0.7558646177725923,0.3118373856222279,3.460090409626886,0.13709718311052357,-0.33739884146754007,3.1907083180559193,-0.4390304451592265,-0.7663403695203311,-0.4696478101231304,1.5814654215127337,0.7608315550934671,-1.2188884325088778,0.9744352839155154,-1.2583805681199167,-1.0195642657329125,1.0128175794200995,-0.8880922734344939,-1.0607037336762966,-1.1991325514741449,0.002154647759068339,0.082406573797735,1
|
||||
-0.11711160234582718,-1.9321104217402536,-0.10370464498755191,-0.22520974478630174,2.612682692496338,0.22104899747016027,-0.1053615393908936,0.674309016102842,2.5148761968451336,0.8277594484957276,0.21232635745386957,-0.3203421959901994,0.06017629862166056,-0.06220590772355601,2.6537931083069886,0.4665291041531495,-0.881904125352432,-0.5571064096400372,0.8840003134055545,1.7316264389813456,-0.44007144130918335,-2.160235544267617,-0.4591091095040803,-0.48275511772305396,0.6599438024798857,-0.7451815354714441,-0.9219997114154574,-0.5781117150824125,-0.2927547643335039,-0.6610765413360747,1
|
||||
0.7520159103539618,-0.9967689387656551,0.6964867883578596,0.6236158633652199,-0.02187833208092786,-0.2562613142635206,-0.33114527711168124,0.04614574360718915,-0.21022969370485994,-0.5490265598523216,-0.6362403205588972,-1.0845412334346833,-0.6033561909411498,-0.46027910867407856,-1.1294557054612253,-0.771716700185576,-0.5047716733930396,-0.454970849744431,-0.7000729829734632,-1.0703565073354475,0.4351934744972845,-0.9749120151039685,0.4076218491540121,0.2641097838558796,-0.4927772021914787,-0.48164184127076587,-0.07976899075654277,0.08491383006718783,-0.16896562839341228,-0.7806483990260585,1
|
||||
-0.3701908780745012,0.5661103248781257,-0.39126581291949053,-0.40780595119098983,-0.5973929804951719,-0.716845160019739,-0.722700517254921,-0.4692702748507827,-0.3774891869871197,0.19149019659597613,1.8015323296948151,1.1683045489255413,1.8329510757201335,0.7103945747127631,-0.8838370311507067,-0.34886314239507593,-0.3102863282121871,1.3189308135605575,2.067622244748459,1.5533801102370017,-0.5196409791097714,-0.3195568339584814,-0.5410494446339404,-0.5394679899223889,-1.7499488448371456,-1.11490544465327,-1.115942408096272,-1.0278694503190973,-1.2594022817480468,-0.8748362869271078,1
|
||||
-1.2393183907742895,0.13184463635420496,-1.2353969833003422,-1.0976530089785845,0.3908567039802247,-0.4979466270103364,-1.1505746375035741,-1.0107048903943734,0.018222297119691228,0.2705745103914272,-0.6095060144838158,1.8619246943767445,-0.6615860193859903,-0.6453353194671587,2.4574584420555134,-0.013067670032031601,-1.3016542355601501,-0.7897261789298334,0.8840003134055545,-0.6651390748612823,-1.2671123948122642,-0.4232099493437371,-1.2884018115942193,-1.0459575639487568,-0.21518316433184398,-0.8827139123283577,-1.3577779031223638,-1.461747356635125,-1.108306718762346,-0.9610081843684927,1
|
||||
0.9351653862102394,0.2773952242660684,0.8331881924681189,0.8266572048499694,-1.5632701116139827,-0.592972346766356,-0.6346497785794939,-0.6417983531447071,0.2425947881080879,-1.5375804822954375,-0.5936634627356195,-1.225090578697164,-0.570287399478648,-0.4190737496108082,-1.6467374485850086,-0.6162558333508332,-0.7347717337808305,-1.1486080183267966,-0.018862358317934192,-1.0216317323499697,0.789639597427176,0.1920214452010056,0.8102597028093603,0.5609798571762442,-1.4196589896211058,0.43882624517941615,0.01682638754854526,-0.3510130864321502,3.288028035580631,-0.3725008847881807,0
|
||||
0.5488864916769993,3.465191707057048,0.6671936303342328,0.42938708010463494,0.8537371182544156,1.656131295826377,1.638108673524964,1.245169425969454,1.2420722479654962,0.8439357854084343,-0.6203977688107009,0.21508388120020325,-0.47826989280038174,-0.4164984146693538,-0.5737083950718467,0.24655197758198866,0.09165005182824128,-0.15881793689752532,-1.4467448455297296,0.0015885423450688477,0.6232669274804918,4.0338740122222525,0.7749405928395929,0.45409790572365155,2.692496757655515,2.4703100686971804,1.882794593609708,1.5960588402587828,1.1672288683717,2.578051603573038,0
|
||||
-0.10712163093548441,-1.2258321590859647,-0.07050573256077429,-0.2178071958780039,0.7611610353995769,0.5725471955472742,0.05581886306337976,0.02229536294537195,0.7158167691018003,0.22024812888523174,-0.5461358074910304,-1.366653988499778,-0.4006301215405945,-0.48971150800498586,-0.3709628009427726,0.0584443287119501,-0.10283529335261112,-0.5327788451767138,-0.19470631565851546,-0.270406720548549,-0.22306361094394336,-1.3845090033198977,-0.11510097839854593,-0.3058545817474362,0.30707002553967194,0.2682553643848081,0.07466793144380747,-0.29073803687309574,0.35349734241256475,-0.0024293252337064873,1
|
||||
-0.14375152610674027,-0.1759590659512112,-0.1676613733391377,-0.23966234027393155,0.5374355018337182,-0.3377119311972519,-0.5813602253774198,-0.4952888719364015,-0.6059411778116697,-0.8455927365852562,-0.3575104257390679,0.4077561438255375,-0.33736808569928645,-0.33555931650935844,-0.3577402621952243,-0.5812771383130162,-0.4816589222266195,-0.33051826790313127,-0.13264374247948674,-0.949469723827173,-0.19412923356191156,0.08836832981575045,-0.2390710543924292,-0.2779343985108406,0.13298562891583285,-0.459360059545344,-0.6171169335435298,-0.4920532873833658,-0.35100847536413615,-1.0538600738595967,1
|
||||
-0.0904716785849141,1.3487429943058513,-0.11102793449345826,-0.17797443270478025,-0.2047160957192339,-0.4111629339678489,-0.3663983661530533,-0.4008165848993333,-0.10416269796488939,-0.09069701399233068,-0.6743614607029946,-0.33859535771259974,-0.586821795209899,-0.533860107001347,-1.077366916455732,-0.8276826122460834,-0.5245020707302276,-0.8303391377859604,-0.9616223985136553,-1.1665725186991764,0.23747522905339918,1.710038038262491,0.31226025223564,0.04772836377226344,0.7540434763306094,0.4111661023478581,0.7797563515270551,0.4264155272856272,1.0907708726439953,-0.1874651050109436,0
|
||||
-0.613280182392833,2.171938942331965,-0.6436751912230768,-0.6104947903467727,-0.5950785784238007,-0.8625351028089427,-0.8448565699796754,-0.6201161889066915,0.2752307867973103,-0.867161185802196,1.1826826520308955,2.9834800757642164,1.1004054561486234,0.3906851369807816,0.29657506431224157,-0.5315296609258986,-0.7110952569762049,0.16487940844091198,0.10821814866769591,0.32477565743861936,-0.5558089508373114,1.3238465922303286,-0.6046238425795222,-0.5654250352751613,-1.2690995114599484,-1.0574338145476994,-1.0963919662596735,-0.8957082934955614,-0.8498058760639187,-1.0298121024806055,1
|
||||
3.126299115545338,0.7164330632133289,3.0301750442401456,3.7467864980091083,-0.8365478612035029,0.4586132968602098,0.9379659283777134,1.648767425999945,0.0590172954812181,-1.127779947173563,1.4703239822090854,-0.6405837777643077,1.4627243886942962,2.3365346377453964,-0.7480054967440741,0.2372243255719042,0.053880434068481496,1.049518116198132,-0.026250759886865878,0.23657764702186782,2.918727533121697,0.4695443025228189,2.8199170600891255,3.438067489134811,-0.3892675609556824,0.9482338756606106,0.8676754982478538,2.1629516576413925,1.307401860539157,0.6722498717879896,0
|
||||
-0.25697120209062074,-0.8297436739487623,-0.1378799960151169,-0.3274354201866096,3.4381527646186454,1.961571109327869,2.1628058127453857,1.6174831604565225,0.5648752751641507,2.7167961257461197,0.11677596722256019,-0.5032794390302537,-0.11379429994193652,0.011742995595348745,0.15433260202800972,0.5232723205478307,1.5483171009509162,0.5770406245550711,-0.6306220082255025,2.3076889685564907,0.09762573837357745,-0.5034575225452254,0.07209030444122175,0.0008311809920441873,2.5936921001122557,1.3446959229129425,2.272068184024823,1.5482486026482012,0.502772476928558,3.920730005566712,0
|
||||
-0.1504115070469684,0.14138893720088433,-0.20476604016906483,-0.2033546003903741,-0.3667242407151998,-0.7927202882943158,-0.2724447846613966,-0.2914765280990544,-0.7691211712577772,-0.9156901965403126,0.5073938837640264,-0.05060102831473141,0.41243081637439827,0.3332919582855121,-0.3100589861055807,-0.9139633933393656,-0.32437946916732135,-0.3150370905173798,-0.6705193766977352,-0.9180144893428771,0.5002958236068564,0.745395335402935,0.4323452261328489,0.36379356306778754,0.42469461785307655,-0.6168692062250497,0.11342176585363345,0.13784659313604605,0.023999789395554798,-0.5408366844411193,0
|
||||
-1.7684538764754254,-1.4167181760195564,-1.7333806697020018,-1.4163151143643717,0.6454409318310292,-0.4669178205593911,-0.8123909344904118,-0.888665280254685,-0.4427611843655622,1.6994842710137494,-1.1907296317457692,-0.9991569991554561,-1.07782145975096,-0.9965374244832114,0.4488346014052217,-0.37062766375193984,-0.5216834425392006,-0.7418752670102383,-0.5641263941051146,0.3506799681903922,-1.5509104129676947,-1.1638281770158052,-1.450163335255754,-1.2023542153599995,1.5538907040617593,-0.08748480592106343,-0.40136797481420133,-0.38943202736922466,0.2042222078965716,1.5426528358664748,1
|
||||
1.7576730323284298,1.8044833597348011,1.7656870562202462,1.8150737352722564,0.5220061546912448,1.2052439520860796,1.9168540287358127,1.6369971082707366,0.4710467789326391,0.07106635513472434,1.3312065746702364,-0.3467078740336665,1.259998319293741,1.2990425613309113,0.24648969026849793,0.16338041382540147,0.7111845282159425,0.386039085380217,-0.796122203369579,0.055247471759455935,1.884323541714053,1.75350547374663,1.9581307768268015,1.9569890190060266,2.217293404709361,1.1464648992867765,1.9122937809962917,1.3535926352336909,0.7048400370660612,1.028293448038053,0
|
||||
2.1239719840409848,0.9526545091686489,2.0683830224643924,2.259226669770146,-0.3435802200014907,0.8658663815288659,1.1691606053467118,1.3331370637351176,1.2583902473101063,-0.9552323534380381,1.9327284613595666,0.6835816987418053,1.4274989369190227,1.9693654560923273,-0.30485010720503136,0.9663357910268472,0.8487335839380529,0.3377860649570958,1.0096031400773984,0.6504298497466242,2.0048834474725195,1.0329491393749342,1.8274500699386615,2.0137018912053617,-0.5680569412720577,0.9144270344220395,0.9544378140907473,0.8430475978921235,1.489444707509881,0.1251585229159416,0
|
||||
1.3547441854446194,0.23205979524434092,1.1798238957477059,1.2651701020843935,-0.8650921534170787,-0.6875132414215798,-0.03715091129223884,0.3769536208386278,1.3970932417392983,-2.0767917127189546,0.9079133951481151,0.08528362006313582,0.5669914721230488,0.7247428693865805,-1.1030106279661287,-1.0855921903249215,-0.24545787981856967,-0.23059430477691786,4.492495639671936,-0.8970443330200131,1.1272073335508823,0.4043431492966097,0.8773660117519181,0.9470636409947935,-1.1232450169913266,-0.8811772377266044,-0.11505233253265292,0.1805343052883508,3.6612158718706147,-1.3825156827058096,0
|
||||
-0.7231698679065988,-0.4408134144465693,-0.7496187794085273,-0.7148354797208799,0.19336106055656965,-0.8283549332028234,-0.6084149216184729,-0.3531158235756988,-1.1036401578222967,-0.153604990875075,-0.6045552170625045,-0.8243322724364687,-0.5940106629191385,-0.6063373903537065,0.05135707299407285,-1.0636722081012229,-0.4219040045768504,0.1689004934761719,-0.11343389840026334,-1.0395180421547654,-0.698069639632302,-0.6723117911566898,-0.7042237326942661,-0.6659813202132129,0.05770588983525444,-1.0056478804686158,-0.5361387720901625,0.033688575484421855,-0.5439738931531032,-0.7238684666034403,1
|
||||
-1.2659583145352027,-0.9371170584739077,-1.2827542554385396,-1.077207873898523,-0.19777288950512054,-1.1788834810783453,-1.2067828185425618,-1.2819177904916088,-0.34077368846174505,-0.23808141697475915,0.283617840320753,0.19480259039753647,0.08030512820753131,-0.291042812521361,3.0504692707334375,-0.8074726995575668,-1.4469263325256738,-1.7302579686771684,0.833759182736817,0.07004993504618352,-0.9729462247616061,-0.707420104432341,-1.0231552957212657,-0.8502981548610513,0.9892926609574186,-1.0217829637870246,-1.3758823063615808,-1.6649408664800964,0.11320078441120969,-0.32306894362025507,1
|
||||
0.3723969967609505,-0.8416740500071119,0.36205656758811805,0.2164756734088214,-0.8890076414879111,0.33983114716518503,-0.16635758182526764,-0.18554366853617799,0.38537728237343194,-0.49151069527381286,-0.6704008227659456,-1.369696182120178,-0.21012512724574672,-0.5320205820431653,-1.0649457436928833,0.7525770991290763,0.5172629086732954,0.10858421794727056,-0.8611401371761803,-0.09401069971504637,0.12173771952527111,-1.0200512750298056,0.3475793622054074,-0.04061284099977747,-0.822126060669011,0.9820407168991816,0.5518606685797217,0.5117909515902371,0.1514297822750615,0.12115052768610944,1
|
||||
1.6411233658744346,0.22490156960933097,1.506930827011541,1.688172896844288,-0.46315766035565625,-0.8906549586551118,0.08205372002440069,0.453460686078483,-0.964937163393106,-2.128915464993229,-0.19264887160939967,-0.6975742049198014,-0.1475819781753625,0.08826723385570817,0.3182119458991385,-0.8743208722965061,-0.05830096793438698,0.7278313133773247,-0.06467044804531218,-1.0364341956366971,0.9777130504103843,-0.18581087862266762,0.870302189757965,0.8925320331108175,-0.3186928055676403,-0.9134474043634221,-0.13761053465180514,0.3666527302724002,-0.5530760355016394,-1.6323473853653288,0
|
||||
0.19923749231501575,0.5780407009364754,0.20582639146210713,0.08851732799395343,-0.06122316729423485,0.09426723361200127,0.7412045011700554,0.17314127700128074,1.1768002505870525,-0.9785981734230569,0.26331957089337643,2.125581474811413,0.5267338129513073,0.16663099707424894,1.0386399661443462,0.5784609282741643,1.4908170858539687,1.326972983631078,0.6564375450824494,-0.06625608105243211,0.07351375722188463,0.6417422200176792,0.14272852438075656,-0.0390859559790263,-0.022278832937860954,-0.2864841668481062,0.5212046503152326,0.24883464473203876,0.271578061275739,-0.8915362670514072,0
|
||||
-0.9129793247031045,-1.1852688804875766,-0.9175662187439895,-0.8406788111619484,-1.7353073322525565,-0.8470206995834701,-0.4942932938380311,-0.9007453431872938,-0.39380718633172973,-0.17517344009201483,0.272231006251737,-0.7357030316288148,0.5475815293081019,-0.20237770953700243,-0.49517452857125677,0.8924918792803445,1.0026306831681184,0.7439156535183651,1.6671708797123448,0.9094729572643556,-0.9126662718823727,-1.6035180051822924,-0.8737554605491495,-0.8143072936576272,-1.9964899903260418,-0.8396870234792674,-0.721231712555002,-1.1731784224855435,-0.536692179274274,-0.7766404037962263,1
|
||||
2.1406219363915544,1.9142428194716157,2.0927939874840815,2.343827228722125,0.3677126832665156,0.320438143133344,1.2577032475901582,1.5344714459452626,0.11205079335120281,-1.0936299025800744,0.15093646942960864,-0.28180774346513277,0.01344865851160353,0.6621990208084024,-0.6947146587615312,-0.5136516612399032,-0.3435461408663039,-0.5679633392352396,-1.0222072913788978,-0.9032120260561496,2.0314066267393818,2.29852024174007,2.04642855175122,2.2187407368491106,0.9939976446499543,0.45803467770133144,0.7751290280154344,1.054778650167556,0.5100541908073871,-0.12133318371871761,0
|
||||
-0.7098499060261425,-0.3525286316147838,-0.6905442440608798,-0.705670419167749,0.9308838539667806,0.03754269681886682,-0.3668902697210725,0.018888165707969525,-0.7691211712577772,0.8924647961465496,0.35243392447698096,1.4907770726879428,0.4174630237708661,-0.1354190010591881,-0.07606011857321066,-0.3294305340407331,-0.5577618833843444,0.4322815632857079,-0.20505007785501983,-0.6404683027167364,-0.5799209319890046,0.42942051592207514,-0.5594153818182198,-0.5987983793001547,0.1800354658411947,-0.38022131755505284,-0.6257931651278191,-0.11827967977778359,-0.7150941693055833,-0.2829889913219363,1
|
||||
-0.7231698679065988,-0.5648893254534036,-0.7476659022069525,-0.7032029028649828,0.7611610353995769,-0.8395059105211319,-0.6439959463718576,-0.5510430085484417,-1.8257116288213227,-0.423210606086833,0.4044172974007503,2.7096826499282156,0.49582168180157715,0.0010737508378948454,-0.07966626550436032,-0.6675579194062984,-0.03631566804437748,0.4141866806270375,-0.9084259072173452,0.21622426000261746,-0.6209112999468833,0.011464405497657459,-0.6427684813468709,-0.6110134594661651,-0.1869532621766274,-1.014867928079135,-0.8108861055926585,-0.6530713376218599,-2.109542377101327,-0.5595406621803348,1
|
||||
-1.1327586957306373,-0.9681360362256162,-1.1006484563916583,-1.0204549989349037,0.22576268955576326,0.138628730334837,-0.19423211734635243,-0.669365676247327,0.5648752751641507,1.3202390389492085,-0.1961144298043175,-0.09116360992006498,-0.0030857372196475253,-0.4992770377875308,0.23527056648269928,1.2655979596837275,1.429934716927789,0.3277333523689456,0.27667370443934547,0.908856187960742,-0.910255073767203,-0.6422189512061318,-0.8105342537032661,-0.8428818561888306,0.0765258246053997,0.4972198800460387,0.2840543203446571,-0.25317285017906727,0.271578061275739,0.9788615068701274,1
|
||||
-1.4034869209509164,-0.13062363692948373,-1.3935800366279283,-1.1773185353250313,-0.4454139111418127,-0.7999926648062563,-0.7495912456399676,-0.8874262994410842,1.8417587238799404,0.41795891337385566,0.051425441261250315,0.3611091749794041,0.0005086966349721724,-0.4271676594268077,0.29016413643464223,-0.19417957989450677,-0.007001934857698287,-0.22657321974165795,-0.02034003863172053,0.3432787365470285,-1.148963687168967,0.03486994768142494,-1.182444481684917,-0.9632876463966493,-0.3610376588004658,-0.619942555428556,-0.6772721391946025,-0.7227376838544216,0.551924045610654,0.22936639889156937,1
|
||||
-0.3868408304250715,-1.2544650616260036,-0.40298307612894113,-0.4617388075228762,0.11081405334434,-0.28244186970650564,-1.0217778866105611,-0.7604307660469927,-0.6059411778116697,-0.14461813703468276,-0.9233865709949559,-0.9711688178477759,-0.8830031448305683,-0.7711588266067878,-0.28561732357223374,-0.8230187862410412,-1.1669238080290667,-0.6095815693501813,-0.8862607025105491,-1.2115966778629725,-0.5799209319890046,-1.325995147860479,-0.5587089996188241,-0.5957446092586518,-0.05991870247815016,-0.673726166489919,-1.1132238555331946,-0.7597906180026224,-0.9135208725036721,-0.8407683274735362,1
|
||||
-0.5133804682894088,-0.9752942618606261,-0.5733716119663714,-0.5428143431851894,-0.6490812934224568,-1.2089426373276984,-0.8871602768293219,-0.7201638896049637,-0.8792676668339,-0.8491874781214128,0.07964498656272496,-0.5357295043145204,0.024231960075462626,-0.15418215563264162,0.3707014178969818,-1.080228790419123,-0.8001639078126533,-0.14273359675648492,1.4721170782925408,-1.1869259057184267,-0.6570792716744234,-1.4313200876874321,-0.7151726567848941,-0.640678654155048,-1.236164625612195,-1.2865519976691053,-1.1312704172285164,-1.024454433346913,-1.0427712938528857,-1.47403157378697,1
|
||||
-0.6266001442732893,2.1934136192369937,-0.647580945626227,-0.6365799626902994,-0.8380907959177507,-0.7534494551298384,-0.5680788290409029,-0.753926116775588,-0.6997696740431812,-0.1374286539623695,-0.8714031980711867,1.0810949984740743,-0.7564790731479523,-0.7534993870082435,0.22325007671220098,0.27220302060972124,0.12096378501492047,-0.37072911825573196,-0.3380413060957958,0.583201995652737,-0.6787800547109474,2.0845267132027696,-0.6812663112139176,-0.6611825387194229,-0.4833672348064061,-0.3786846429532998,-0.36839829479390174,-0.6278002120276954,-0.7715274518665075,0.008926661250817343,1
|
||||
-0.06383175482400102,-0.7080538381535977,-0.10712218009030808,-0.1550617813219526,-0.9422388891294439,-0.771872808960087,-0.8138666451944692,-0.7272880292831687,0.34866178384805846,-0.9192849380764705,-0.9738847046923318,-1.349414891317511,-0.8599987681610017,-0.7483487171253346,-1.0204699315420391,-0.5066559222323398,-0.8779580458849943,-0.9399137049967977,-0.04546060396608928,-0.7274327745262604,-0.2568203845563142,-0.8695870752770148,-0.18362005173989462,-0.3407548107931807,-0.9679805551376328,-0.19428369074291257,-0.6373614739068716,-0.6498270714982848,0.8231678875970317,-0.3203969468003673,1
|
||||
-0.03719183106308794,-1.3761548974211681,-0.09638135548164489,-0.1423716974791557,-0.25100413714665215,-0.8089619291709825,-1.0586706542119972,-0.7625989824707943,-0.7935981702746929,-0.48252384143342064,-0.7332759500165998,-0.9681266242273759,-0.7830778836721386,-0.6107522502533426,-0.9731893384447452,-1.1065016769141944,-1.2961297243057375,-0.8405929046258735,0.2663299422428406,-0.9587212633813778,-0.29781075251419276,-1.417945492153851,-0.3598624104890338,-0.3614768217890916,-0.6621566151227808,-0.9810610868405639,-1.2000440129199834,-0.8521668271002102,-0.08704634725658655,-0.9262722257099495,1
|
||||
-0.14042153563662563,-0.06858568142606611,-0.1266509521060597,-0.2537624334325947,0.946313201109253,0.44164441833234896,-0.5441395220639712,-0.38006365627151834,-0.25918369173869127,0.24541131963832946,-0.828826340247909,-1.1461963574747902,-0.8089578074254009,-0.6721923838566117,-0.9471449439419986,-0.6185877463533545,-0.6862913288951688,-0.7320236086738512,-0.9158143087862771,-0.9679728029355824,-0.13384928068267823,-0.04203397663666805,-0.08684569042273159,-0.23343660647751635,1.473905981288644,0.5955670545582453,0.11920592024315968,0.5937513589226626,1.1781514391899433,0.3235542867926186,1
|
||||
-1.3741830048139116,2.186255393601984,-1.3843038699204464,-1.170973493403633,-1.187565508694765,-1.195609947055808,-0.9802940190409467,-1.0333162902425894,-0.6752926750262657,-0.41062901071028407,-0.9362586442903654,1.044588675029274,-0.9527351616101919,-0.8484188748504198,-0.07565943558086065,-0.7530613961654069,-0.7195511415492855,-0.9863572371540518,-0.5907246397532696,-0.6713067678974187,-1.2622899985819258,1.924031566799793,-1.2831039450987538,-1.0402862767288232,-0.9444556366749518,-0.9526326067081294,-1.0000279541301664,-1.0119896213984398,-1.0009014390496194,-0.6477165572366358,1
|
||||
0.03273796880930913,0.1390028619892149,0.05301375043885304,-0.08315130621277063,0.8305930975407053,0.42952379081244846,0.6133095734850779,0.6455027121866217,-0.47947668289093687,0.6534144839921237,-0.7248595944003705,-0.4434496311623866,-0.6946548108484921,-0.5699147961817085,-0.586129567834695,-0.34808583806090226,-0.30521279746833874,-0.29010636329876704,-1.1093904298922952,-0.3148141104087315,0.2736432007809388,0.9008750084808183,0.33698362921447733,0.09266240866865935,1.4221511606707464,0.9367088161474614,0.9376637663611213,1.2767547533595418,0.5610261879591901,1.5827327881647935,0
|
||||
-0.7797797058985396,-1.984604076396991,-0.7959996129459369,-0.7543157405651366,-0.7146560187779663,-0.870049891871281,-1.008824425986057,-1.0804904847204435,0.1895612902381032,-0.14461813703468276,-1.168451043349868,-1.6463329886685525,-1.0505037624558498,-0.916186974309834,-1.0629423287311337,-0.698650092773247,-0.9715365018270856,-1.2752721969374892,0.08605294396090034,-0.8662058678393308,-0.8596199133486473,-2.0967062154831053,-0.816891693497824,-0.783115213947993,-1.0291453431406028,-0.5554022221549206,-0.9344356433529388,-1.0377729995384322,0.9451365950674173,-0.49875273452788443,1
|
||||
-0.2003613640986805,0.29648382595942796,-0.13250958371078533,-0.27456007084162276,0.6840142996872118,1.1640338185184178,0.3816229929480603,0.5510304251495534,0.7647707671356316,1.0811887267947826,0.015779699827808618,-0.703861405068628,-0.10157322483622935,-0.11076936661955322,-0.6830948519833825,-0.07136549509506017,-0.30521279746833874,-0.2915137430611081,-0.37646099425424207,-0.024315768406704238,0.35562393669669606,0.43276416480547036,0.308728341238663,0.17533232622076697,1.0316375141902434,1.056569435084213,0.703405513585309,0.7047394105186555,1.5804661309952428,1.3956930107726404,0
|
||||
-0.20369135456879456,-0.4813766930449579,-0.2677463299198632,-0.27033004289402407,-0.8319190570607617,-1.1064021285093404,-0.6502267249001001,-0.5956463178380739,-1.1852301545453503,-0.9102980842360783,-0.3688972598080838,-0.5704105115870806,-0.3769068581001041,-0.3554261860577209,-0.298439179327432,-0.8820939156382434,-0.26349710024114154,-0.39264403169789935,-0.7266712286216183,-0.5306833666735076,-0.184484441101234,-0.30283858954150444,-0.19492216693021994,-0.25743051394646577,-0.16342834371394646,-0.7974284719310537,-0.38285868076771734,-0.19033653789087435,-0.6641221721537808,-0.3725008847881807,1
|
||||
-0.6066202014526043,-1.5026168836396725,-0.6441634105234701,-0.615077320623338,-0.16382832579168022,-1.0465262285610322,-0.9096238731021962,-0.7483507031143839,-0.8017571699469985,-0.49151069527381286,-0.9159603748629889,-0.8993730484063356,-1.0044950091167166,-0.7759415914980603,-0.5003834074718061,-0.9793346878433749,-1.066693389556152,-0.9523790686061041,-0.751791793955987,-0.5097132103506434,-0.6667240641351005,-1.1705154747825957,-0.7162322300839871,-0.6413330334496559,-0.16813332740648212,-0.858127118700306,-0.9163890816576169,-0.6433385392511344,-0.6495587443961225,-0.18880110342088796,1
|
||||
-0.6632300394445445,0.5088445197980487,-0.6661332790411906,-0.6672476653103917,0.1925895931994463,-0.3486204959651625,-0.8140306130504755,-0.6814457391799357,0.9483482597625026,0.19688230890021172,-0.45801161339168833,0.06297420018020258,-0.458859949985435,-0.5448972567504372,1.2493992201204187,0.6328722316663244,-0.618080526672319,-0.34861315056180164,0.4200086948766258,-0.6688396906829641,-0.6884248471716244,0.30069003391135457,-0.6805599290145218,-0.6629275501717102,0.5423192101664811,-0.12436499636314083,-0.7426330837962489,-0.4319489886729205,0.37170162710963717,-0.5541966685405583,1
|
||||
-0.7797797058985396,-1.0969840976557905,-0.7510834373097087,-0.7761708849610647,0.35536920555253665,0.3980101592607073,-0.12831703923178703,-0.552901479768843,0.1283687926958129,1.0811887267947826,-0.4396936629328364,1.2088671305308747,-0.6759637548044695,-0.49596589286280374,2.1529393678695525,1.4560375215562866,1.593415152007346,0.7901581314238559,-0.19766167628608813,1.3294928530252486,-0.878909498270002,-0.9581937706869916,-0.9034235129237542,-0.8049278571015833,0.16121553107105074,-0.17738027012362725,-0.3764961109392385,-0.6616088800523209,-0.9863380112919616,-0.03115329104750146,1
|
||||
0.07602784492079252,-1.4692118306762938,-0.00020215330406955084,-0.02322591028845222,-0.1653712605059269,-1.0307694127851614,-0.9435652192955172,-0.509846896496212,-1.6870086343921307,-0.8635664442660395,-0.5451456480067682,-0.18445754761233218,-0.7262858287691462,-0.38338696542208284,-0.03398840437646604,-0.8603293942813793,-1.2146713695850615,-0.8812058634820005,-0.8241981293315204,-0.5430187527457805,-0.09044771460963033,-1.2390602768922003,-0.21046257531691753,-0.16778055058520935,-0.13990342525126556,-0.9526326067081294,-1.1089435812849453,-0.8371407524225989,-1.403216130854919,-0.733220455473048,1
|
||||
-1.493396663643998,0.6305343555932128,-1.4785301948964467,-1.2488765081052469,-1.1991375190516194,-0.8496872376378483,-0.620548542962945,-1.197543197085388,-2.0908791181712463,0.9769412222462337,-1.2308310908583913,0.020383489494602114,-1.002338348803945,-1.0131667301051739,-0.5055922863723554,0.3382738890144869,0.5685619417499841,-1.1825861868747443,-0.033639161455798074,0.7565141699681716,-1.4322794657013638,0.4310923403637725,-1.3332570812558238,-1.14695010174988,-1.05737524529582,-0.3548661866261246,-0.3354286147736023,-1.405058074896864,-0.9007778732157213,0.6849418566824577,1
|
||||
-1.470752728447222,0.47066731641133036,-1.4609543000822705,-1.2467614941314475,0.707158320400922,-0.4327376509532718,-0.8768303019009197,-0.8905237514750866,-0.28366069075560807,1.2914811066599527,-0.6540631912756181,1.7017024970356773,-0.6529593781349028,-0.7409906172926078,1.4998260903391367,-0.37606879409115584,-0.570727573063068,-0.3371530582113104,0.45103998146614044,0.5431119909178501,-1.3249811495763284,1.0279336660498408,-1.3184230550685212,-1.0821665515837167,1.1163272206558945,-0.5262054047216094,-0.8715040435948934,-0.730079970344618,0.013077218577311568,0.6882818527073172,1
|
||||
0.5255765583862009,1.1721734286422787,0.6720758233381704,0.38144676336518013,1.779497946802796,2.2161042872457792,2.095578991782769,1.2826485955808808,0.08349429449813377,1.6221973279863786,-0.16888504398710502,1.6002960430223434,0.2650590283349875,-0.0669886726148283,1.1063553918514872,2.0996455102521216,1.856111299411048,1.8899248885674906,0.19392360686730703,1.6304762731887077,0.2905215875871242,1.8253939247396298,0.47119624709959335,0.1801311077145567,1.9820442200825517,2.0116127000738424,2.0031050049118533,1.8504776046865201,0.2588350619877888,1.6628926927614311,0
|
||||
0.4056969014620917,-0.631699431380161,0.46604727857199374,0.1812254405121635,1.5249137189519915,2.0633843804950334,0.6329857162058435,1.286985028428484,0.8749172627117544,0.5150169348500887,0.31530294381714574,-0.21082322565579878,0.16369599363470982,0.2023177812629744,0.8931920399213148,1.512780737950968,0.2692236278629327,2.32621261489321,0.5603883246863335,1.0038386607172431,0.049401776070190966,-1.1838900703161774,0.05443074945633804,-0.14007849378014953,0.3541198624650338,0.4103977650469816,-0.2822143943899609,0.5869213249782941,-0.5112061806983725,-0.2682930088125529,1
|
||||
-0.566660315811235,0.3537496310395051,-0.6256110771085066,-0.5794745853977137,-1.1651929553381781,-1.3381485266898376,-0.8422330842835731,-0.8081315273706271,-0.19391169436024874,-0.9049059719318426,-0.8654622411656131,0.8093257017183394,-0.9958683678656293,-0.7233311776940633,-0.6798893880445829,-1.2662377175868926,-0.9343306097055314,-0.8470266406822897,-0.7783900396041421,-1.1252489753570623,-0.618500101831714,1.2419271945871435,-0.6985726750991034,-0.6086140687192704,-0.8832908486719817,-1.1238181573434387,-0.7536229771363487,-0.5740136947157912,-0.3218816198488205,-0.8701602924923039,1
|
||||
-0.293601097261876,1.453730303619326,-0.36246087419625717,-0.3626856530832675,-0.8905505762021589,-1.0872515370278977,-1.0352232508030845,-0.8106094889978288,-0.48763568256324247,-1.314706507053717,-0.5203916609002115,0.12178994350793604,-0.6551160384476746,-0.48382502813880435,-0.28962415349573306,-1.0426849910785325,-1.216700781882601,-0.9397126507450348,-1.1212118724025864,-1.1363508228221078,-0.37738029031478076,1.0814320481841664,-0.46970484249501043,-0.43258603846979615,-0.43631739788104423,-0.9649260035221552,-1.157819685876442,-0.8318474761157131,-1.028207866095228,-1.262275825810854,1
|
||||
-0.293601097261876,0.6639394085565915,-0.12372163630369688,-0.3640956623991341,2.473818568214081,2.3664000684925455,1.8151939580118563,1.5406663500132671,2.2986627055290407,2.1721927830183656,-0.30156641487824937,-0.34467974495339954,-0.11666984702563234,-0.3686707657566292,-0.41904476002476654,0.9818818777103219,0.4659638755966067,0.25133273669900386,0.2500754587911904,0.24212857075439082,-0.10009250707030745,0.8891722373889346,0.06502648244726816,-0.19090195232801518,1.845599692999003,2.3450710886542927,1.701750561217537,1.6746042306190236,2.7437199231381673,1.69629265301003,0
|
||||
-0.9462792294042462,-0.5267121220666862,-0.9331892363565902,-0.8808640766641386,0.9617425482517264,-0.42522286189093345,-0.7335223957513421,-0.5882124329564684,-0.2958991902640659,0.2867508473041315,-0.8441738122539741,0.43614995094927095,-0.8815653712887204,-0.7652723467406064,-0.6486361146412869,-1.013069695946514,-0.941659043002201,-0.7091034239728686,-0.37793867456802843,-0.7144806191503741,-0.8427415265424618,0.17195955190063397,-0.8628065364585216,-0.7752626624127006,0.2741351396919184,-0.6660427934811529,-0.7987393813746535,-0.5740136947157912,0.2315286349421802,-0.20015708990541087,1
|
||||
-0.5933002395721481,-0.3143514282280655,-0.5841124365750353,-0.623537376518536,0.5914382168323743,0.04845126158677739,-0.44871022986825704,-0.32616799087987947,0.6138292731979831,-0.034978520181900896,-0.4114741176313615,0.9736041572199401,-0.5027120430117962,-0.4459308140002612,0.5486046665003592,-0.4724545315286962,-0.4980069657345753,-0.7030717964199785,0.060932378626531586,-0.9611883405958324,-0.5654537432979886,0.06496278763198296,-0.5661260127124756,-0.5830932762295695,0.5705491123216977,-0.44245663892605847,-0.48870870609604744,-0.7729384333455324,0.3243704868972492,-0.7345564538829924,1
|
||||
-0.0005619358918320769,-0.6865791612485687,-0.08124655716943747,-0.09337387375280133,-1.9266312368192215,-1.145915374224216,-0.8976542196137304,-1.0928802928564525,-0.7324056727324025,-1.269772237851757,-0.5599980402707023,-1.11577442127079,-0.617733926359629,-0.4128193647529903,-1.2216127937017134,-0.6403522677102185,-0.41626674819479675,-0.8029957595461917,-0.48285397684686293,-0.8551040203742852,-0.09527011083996889,-0.9097108618777593,-0.1659604967550109,-0.17781436643586096,-2.1752793706424165,-0.8573587813994293,-0.7848574108397904,-1.0681666505908731,-0.5985867472443204,-1.0405000897601577,1
|
||||
-0.29027110679176193,0.7593824170233869,-0.3917540322198839,-0.34083050868733983,-2.5245184385900514,-1.8472148825256576,-1.2068156121137632,-1.2990157257193011,-1.5972596379967714,-1.7011412221905713,-0.9610126313969223,-0.06074167371606502,-1.0548170830813937,-0.7358399474096989,-1.3458245213301974,-1.5651889645101027,-1.4470390776533149,-1.841239915650347,-0.5330951075156004,-1.4729218318040742,-0.45936102623053804,0.6032902578586328,-0.5714238792079404,-0.4755569454823692,-2.3441882852044653,-1.5410253117194392,-1.3697684551718516,-1.6847650400036267,-1.0482325792620073,-1.561539469638299,1
|
||||
0.3624070253506083,-0.49807921952664724,0.30200559363968243,0.22141070601435342,0.25584991648358574,-0.4055874453086945,-0.8063241238181756,-0.18523392333277766,-0.02665220107798901,-0.9534349826699592,-0.47484432462414705,0.09136800730393609,-0.4854587605096213,-0.37014238572317454,-0.6798893880445829,-0.6753309627480355,-1.1267865425888444,-0.38942716366969155,-0.9217250300414227,-1.0179311165282876,0.049401776070190966,-0.40314805604336496,0.008515906495640007,-0.07224117357248348,-0.44572736526611684,-0.5469505118452778,-1.0313780709213984,-0.3940423002816737,-0.8498058760639187,-1.1707599347296926,1
|
||||
1.6444533563445491,0.6997305367316395,1.6436322311218003,1.7163730831616144,0.5065768075487724,1.050099919831353,1.3806791395949443,1.3520315211425311,0.6383062722148988,-0.08710227245617405,2.237202502770215,1.5394521706143431,1.3836468438926617,2.559117157685384,0.5197554910511626,1.4373822175361177,1.4626308039437002,1.473742587418071,0.6047187340999256,0.7145738573224434,1.628736541506104,0.9226087262228878,1.446003682265174,1.6930560368475833,0.372939797235179,0.8560333995554169,0.8468525424455594,1.0735612435145705,0.24791249116954556,0.08908656584745495,0
|
||||
1.5878435183526083,-0.3429843307681036,1.6436322311218003,1.5965222913129775,1.1314653668189292,1.7700651945134416,2.003756992419195,1.7689485649192318,0.4914442781134025,-0.2362840462066802,1.2955608332367945,-1.031607064439723,1.2398694897078706,1.3693124147334526,-0.1934602353317455,1.364315610123789,1.5939788776455512,1.194277177467495,0.6712143482203133,0.11013993978107048,1.6673157113488133,-0.6840145622485736,1.6331949651049409,1.6145305214946581,1.732680084378134,2.106118188081666,2.832552744369915,2.2175919291963426,1.6896918391776772,0.6709138733780461,0
|
||||
-0.44678065888712637,-0.23083879581961886,-0.518202831021874,-0.46244381218080954,-1.6103296203985253,-1.674617146642275,-1.213390723139619,-1.1876003760562408,-1.0546861597884654,-1.7892123898264123,-0.0797706904035005,-0.44466650861054674,-0.17202412838677683,-0.2222445790853649,-0.3982092444225692,-1.3754489765382993,-1.4922555110937676,-1.486379161288644,0.10230742741255056,-1.4175976252699303,-0.5268745734552792,-0.7408565932662943,-0.6194578687668245,-0.5259441511671628,-1.7946461899162396,-1.4722591232909825,-1.395195597868209,-1.563685613254829,-1.1610991443838563,-1.7766352136392753,1
|
||||
-1.1460786576110942,-0.853604426065461,-1.143123535525917,-1.0345550920935669,0.7765903825420504,-0.44510069102357025,-1.1240446384017417,-0.9797303700543509,0.005983797611232259,0.48446163179275537,-0.8709081183290556,-0.5460729626238806,-0.9778961985925304,-0.827080385335512,-0.10571066000710695,-1.1136528767885925,-1.3781518046646188,-1.213950650149773,-0.6971176223458903,-0.33023334299907253,-1.0573381587925326,-0.9381318773866194,-1.0909679868632192,-0.9410387503799872,0.14239559630090548,-0.9188257654695584,-1.2632648203975052,-1.0806314625393463,-0.4656954689556916,0.05902660162371562,1
|
||||
1.3747241282653049,0.3632939318861844,1.384876001913095,1.3532956843260382,0.37542735683775125,0.8076873694333432,0.6854554301278858,1.0478617314035115,1.3440597438693134,-0.185957664700486,1.9188662285798945,0.23536517200287002,2.0018894668872624,2.038163689528323,0.48890290064021696,0.3584838017030034,0.5696893930263948,1.099781679138883,1.3642464153861336,0.3944705887469615,1.3562711544919697,0.10843022311612208,1.378897373322616,1.3069722530290342,-0.008163881860252662,-0.016797774240415165,0.055580221958371076,0.6996168850603791,0.6920970377781109,-0.37116488637823725,0
|
||||
0.3624070253506083,0.17240791495259358,0.2668538040113301,0.23656830615991653,-0.8504342736317296,-1.019618435466853,-0.9137230695023557,-0.7557845879959892,-1.10771965765845,-1.6436253576120627,-0.9070489395046285,-0.21690761289659904,-0.9218230304604619,-0.6512217993333402,-1.2592769949826086,-1.1197158505951474,-1.070864959278872,-0.9204114425757863,-0.07353652992803071,-1.1326502070004258,0.018056200572989886,0.06830643651537824,-0.07271804643482493,-0.09754383963064833,-1.2502795766898038,-1.0367655411541186,-0.9676366895488195,-0.8603628678334528,-0.40926218639476736,-1.3998836620350807,1
|
||||
-0.6299301347434033,1.3964644985392491,-0.606570524393149,-0.6408099906378983,0.59915289040361,-0.08245151562814784,-0.34081938061605777,-0.03252953805646762,0.1365277923681185,1.2034099390241133,-0.5194015014159493,0.06500232926046903,-0.505587590095492,-0.550047926633346,0.6183235071692498,-0.16619662386425313,-0.2212176773757388,1.133960901938594,0.17766912341565683,0.1958708729833674,-0.7053032339778098,0.8273147330461206,-0.70210458609608,-0.6825589290099416,0.001246085524819967,-0.4048081111831045,-0.48523821346233176,0.2095619495519183,-0.49482232447100716,0.04700261593422007,1
|
||||
-1.026199000686985,-2.2255976727756503,-1.038156385941254,-0.9358544399829247,0.054496936274312846,-0.9265320161140173,-0.8179658415946287,-0.8304331820154432,-1.6543726357029094,0.39459309338883564,-0.9624978706233156,-1.5526334251602323,-1.0368449138082947,-0.8410607750176929,0.4135744980784264,-0.9772359661411059,-0.9174188405593702,-1.1391584684939353,-1.0635823401649167,-0.7625886248322384,-1.038048573871178,-2.2388112930274073,-1.0842573559689634,-0.9004672341143092,0.589369047091843,-0.8389186861783907,-0.810307690153706,-1.0568970945826648,-1.4214204155519914,-0.3217329452103107,1
|
||||
-0.7398198202571697,-0.46944631698660827,-0.7974642708471182,-0.7123679634181138,-1.513896200758069,-1.4370528472522255,-1.0967767839478804,-0.9964566110379629,-0.47131768321863127,-0.8078479504556096,-0.06838385633448453,-1.0131510898092961,-0.2467883525628682,-0.3057590121868146,-0.07766285054261031,-1.19682444054518,-1.201592934778697,-0.9477548208155548,0.3579461216975971,-0.42459904645196056,-0.6329672905227302,-0.9481628240368059,-0.7328322117697778,-0.6201747695906732,-1.4817647743625835,-1.3071434373325987,-1.2397233120321332,-1.1151231339584087,-0.2545257664696521,-0.9055642503558179,1
|
||||
2.220541707674294,0.43487618823628144,2.3320214446770358,2.4143276945154404,0.7225876675433943,1.8985438462243867,2.185761312586279,2.738451051561931,1.3889342420669926,0.12678484894515413,1.6406314135021962,-0.36881448100857306,1.5367697260994642,1.9660543111676,-0.8810322502042574,0.2931902376324115,0.7207678640654339,0.6433885276368627,-0.038072202397157084,-0.4116468910760739,2.0241730323938745,0.011464405497657459,1.9722584208147078,2.1423964858115445,-0.20106821325423568,0.604018764867888,1.1482069861398763,1.824864977395137,0.37534248404905124,-0.40857284185666826,0
|
||||
-1.3798439886131062,-1.6863446749382542,-1.4057855191377728,-1.1794335492988308,-0.21088783457622284,-1.322634123464365,-1.232968485146781,-1.3563805373890225,0.4751262787687913,0.4341352502865599,-0.8337771376692203,-1.3709130595683379,-0.9707073308832909,-0.8123641856700583,-0.29523371538863236,-1.3005945691573706,-1.5369533169470713,-2.2135923899154313,0.4480846208385672,-0.0841423908572278,-1.2743459891577726,-1.891071809154292,-1.3360826100534051,-1.0555551269363366,-0.3610376588004658,-1.2512084818287812,-1.4159086547371023,-1.8428632507309033,0.4263144812008543,-0.019797304562977628,1
|
||||
-0.9063193437628764,0.5661103248781257,-0.9317245784554088,-0.8558364113075114,0.5065768075487724,-0.867868178917699,-1.086135270093066,-1.0230946985303822,-0.6997696740431812,-0.06553382323923296,-0.39959220382021443,1.0263355133068737,-0.4315422526903247,-0.5647641262987998,0.052559121971122856,-1.0063071482392028,-1.1439238019902878,-0.9752992533070864,1.0642773116874948,-0.799594783049057,-0.8547975171183086,0.5865720134416563,-0.8864703401382658,-0.8044916042385116,-0.1351984415587286,-0.9534009440090061,-1.2087202445042728,-1.107610096619603,0.19147920860862033,-0.7065004872741691,1
|
||||
-1.366857025779661,-0.48853491867996784,-1.3442698872881562,-1.173441009706399,0.6531556054022659,-0.27977533165212753,-0.5223317972151225,-0.8056535657434253,-0.8262341689639141,1.5898446541609677,0.17717569576255895,0.5111907269191378,0.1284705418594361,-0.4220169895438988,2.834100454864465,0.5388184072313049,-0.0024921297520553182,-0.15680739437989535,1.93167565588011,0.7904364816669217,-1.170664470205491,-0.6589371956231087,-1.1541891937091027,-1.0029866569361838,0.7352235415604642,-0.4486033373330715,-0.6639685840986922,-0.9320782242493252,-0.6149706034716848,0.1919584434131393,1
|
||||
1.9008626225433372,-0.21175019412626012,1.9853857413974483,2.082975505286856,1.2934735118148961,1.7215826844338398,2.879345343493274,2.6269427783378503,0.9809842584517239,-0.17697081086009378,1.8277715560277656,-0.25138580726113235,1.5985939883989237,2.3078380483977616,-1.0897880892185803,0.02968406834752252,0.7342972793823626,0.4061445105565173,-0.42522444460919323,-0.02369899910309051,2.610094174380022,0.1636004296921455,2.4914493373702893,3.065071291208416,0.5987790144769156,1.1503065857911596,2.523100484530262,1.993908317518265,1.405704997903348,0.6962978431669815,0
|
||||
-0.8630294676513929,-1.431034627289576,-0.8692325080050044,-0.8286937319770848,0.23964910198398895,-0.4727357217689434,-0.6976134352859445,-0.5030325020214069,-0.07152669927566813,0.16093489353864532,-0.8753638360082358,-1.3033763611954576,-1.0095272165131846,-0.778884831431151,-0.1221386626934546,-0.8681024376231165,-0.8142570487677876,-0.43446331606460464,-0.4163583627264747,-0.3327004202135272,-0.8644423095789858,-1.5433323252811764,-0.9214362590083358,-0.8055822363961911,0.22238031907402087,-0.6468343609592375,-0.6784289700725078,-0.3487933254002305,-0.250884909530238,-0.10596920200436255,1
|
||||
0.30579718735866807,-0.32866787949808457,0.2854061374262936,0.18228294749906307,-0.2656620169320022,-0.16196283215869478,-0.5657832790568136,-0.6563563777045176,0.43433128040726443,-0.5292554814034582,-0.726839913368895,-1.11516598254671,-0.7809212233593668,-0.5368033469344378,-0.7936833578719684,-0.8300145252486045,-0.5459236449820317,-0.8269212155059892,0.41409797362148043,-0.8544872510706716,0.1265601157556097,-0.4466154915275046,0.05443074945633804,0.005848088917369868,-0.39867752834075504,-0.35947621043138445,-0.22437285049469868,-0.42426520048550553,1.3274265737059363,-0.5982846160687092,1
|
||||
-0.41681074465609863,0.41101543611958297,-0.38491896201437087,-0.5029815800119661,0.3160243703392307,0.6137573291149356,0.5132891813211848,0.5085953322837227,-0.21022969370485994,1.5988315080013586,-0.12284262796890952,1.2798516483402083,0.1025906181061737,-0.5099462825449848,2.4574584420555134,1.4016262181641268,1.3386111635385187,2.400602688045522,0.25155313910497673,1.5632484190948204,-0.6209112999468833,0.009792581055959527,-0.5424622090327313,-0.6531118607525946,-0.11167352309604767,-0.07595974640791422,-0.13414004201808946,0.0439336264009751,-1.1738421436718072,0.20398242910263484,1
|
||||
-0.6931999536755716,-0.42411088796488,-0.7213020599856879,-0.6739452095607569,-0.3366370137873773,-0.8062953911166045,-0.7651681919605738,-0.8490178942194566,0.24667428794424126,-0.2902051692490323,-0.11591151157907356,-0.06479793187659838,-0.2467883525628682,-0.3414457963755399,-0.5264278019745527,-0.21361218824884962,-0.36496771511810805,-1.128301538898733,-0.7340596301905502,-0.1760410170956612,-0.5919769225648515,-0.15404621423041226,-0.6484195389420336,-0.577640115441172,-0.313987821875104,-0.4785684920672593,-0.5777846836947513,-0.9283217055799222,-0.16714519992370525,-0.03983728071213657,1
|
||||
-0.8663594581215069,-1.3475219948811292,-0.8316396218746832,-0.8399738065040153,1.6329191489493025,0.436796167324389,-0.47297747255720146,0.1291574581184491,-0.06336769960336253,-0.19494451854087697,-0.14264581765415496,0.3469122714175371,-0.5156520048884274,-0.29472186243772447,1.8003383346015982,0.9787726603736266,-0.30408534619192806,1.7371236572276072,-0.5818585578705511,0.05278039454500156,-0.9608902341857593,-1.6118771273907808,-0.982891510355731,-0.8568419478071284,0.2647251723068457,-0.4048081111831045,-0.9144803107090732,-0.3725276933569118,-1.3995752739155043,-0.9329522177596694,1
|
||||
0.46230673945403195,-1.4620536050412842,0.3972083572164704,0.3610016282851187,-1.0348149719842814,-0.8067802162174005,-0.2668698775571796,-0.37851493025451716,-1.7441216320982689,-1.1763089579116808,-0.7614954953180745,-1.6410598530598592,-0.7500090922096367,-0.5276057221435292,-0.9960282690086925,-0.7794897435273133,-0.499134417010986,-0.7312193916667991,-1.5070342023322145,-1.0487695817089702,0.35562393669669606,-1.5867997607653157,0.3299198072205237,0.23095456626242236,-0.41749746311089964,-0.12513333366401758,0.2973578754405676,-0.07559196762547885,-1.0027218675193263,-0.47203276632900554,1
|
||||
1.0550450431343479,0.010154800559039988,1.1407663517162032,0.9584930758834699,1.455481656810862,1.4937148870597108,1.8988175645751109,2.0198421796734127,1.4052522414116038,0.25979028578295604,-0.3530547080598876,-0.999765437879536,-0.29854820006939303,-0.08685554216319089,-0.49878067550240646,-0.17941079754520625,0.18522850777033273,0.5689984544845509,-1.1773637243264694,-0.6293664552516909,0.8884987201491188,-0.08717323656250509,1.0292381846219183,0.7900126102889429,1.845599692999003,1.2179202682683017,1.486580017927161,2.4993308294015555,0.4335961950796835,0.5880819719615207,0
|
||||
-0.09713165952514223,-0.2857185256880265,-0.18523726815331387,-0.17903193969168024,-1.2153383335512162,-1.3347547509842654,-0.9055246767020366,-0.9729159755795459,-0.8711086671615944,-1.1870931825201507,-0.5406899303275879,-0.012066575789664743,-0.6364249824036518,-0.4459308140002612,-1.216403914801164,-1.3302875947228066,-0.9365855122583527,-1.1994747440228366,-0.930591111924141,-1.3756573126242024,-0.09768130895513817,0.1151175208829132,-0.19244982923233647,-0.19133820519108682,-1.226754658227123,-1.2190919826521387,-0.8027882894473217,-0.9575201006920988,-0.9754154404737179,-1.2809798035500686,1
|
||||
0.019418006928852292,-1.400015649537867,0.013467987106956448,-0.10183392964799914,2.2809517289331684,0.04772402393558331,0.423106860517675,0.6925839831034554,0.7729297668079372,0.4970432271693042,0.8856348067522143,2.967255043122083,1.0946543619812317,0.3825912271647821,1.3074982540111615,0.7836692724960247,1.1480718978251039,3.522485412883087,-0.3823717155093879,1.3393611618830665,-0.30986674309003964,-1.6770782806169897,-0.3475007219996154,-0.3784906834488922,0.391759732005323,-0.7567065949845933,-0.5141589854099627,-0.10974213734732259,-1.2939904226724845,-0.6196605906278125,1
|
||||
-1.4237998628186126,-0.5243260468550159,-1.3862567471220215,-1.207633735616157,-0.8041462322043104,-0.08002739012416768,0.14796879813896632,-0.6464445311957104,1.0176997569770985,1.6976869002456694,-0.9050686205361039,-0.4645421735971602,-0.8190222222183363,-0.8193543805111487,-0.329692452730728,0.9577854433509364,1.2974591919495266,-0.502620707412263,-0.3306529045268636,0.41605751437343874,-1.243000413660571,-0.3914452849514812,-1.169376410996103,-1.0322155987619948,-0.3657426424930015,0.8199215464142163,1.0949927657562348,-0.4563663600240389,0.20240177942686458,1.0984333645601112,1
|
||||
-0.5366904015802078,-0.26662992399466695,-0.5675129803616464,-0.5533894130541868,-0.6467668913510857,-0.7350261012995897,-0.7064676995102891,-0.5346265127682297,0.7321347684464103,-1.0486956333781146,-0.16343916682366258,1.2352328085743414,-0.35174582111776553,-0.3145887319860869,-0.3561375302258246,0.0553351113752551,-0.37624222788221534,-0.0522591834631331,0.892866395288273,-0.6719235372010325,-0.4352490450788448,0.5798847156748652,-0.5424622090327313,-0.4725031754408664,-0.3328077566452486,-0.4255532183067731,-0.6194305952993403,-0.2152661617878205,1.0634644455983868,-0.8581363068028084,1
|
||||
1.9308325367743644,0.6305343555932128,1.9463281973659463,2.0124750394935407,0.21110480977041424,0.9288936446323481,1.8217526722521113,2.060109056115442,1.2053567494401216,-0.836605882744864,1.2643708094825332,2.2553817359484793,1.8724898481209509,1.2258294679952788,-0.8097106775659664,0.8777230969310442,0.9124345810552595,1.41744739692443,2.6335738049286492,-0.04220207821149993,1.6504373245426278,1.5461992429761184,1.8804287348933126,1.5556363849799641,-0.43631739788104423,0.8521917130510339,1.3223100332646156,2.0075683854070023,2.1375172427256577,-0.17544111932144804,0
|
||||
0.21588744466558607,0.0721927560624576,0.20582639146210713,0.12905509582511,-0.8758926964168099,-0.42619251209252546,0.21273610126148704,-0.45037581744336896,-1.279058650776863,-0.7808873889344342,-0.5629685187234891,0.36922169130047083,-0.4128511966463019,-0.41576260468608106,-1.0537266199070852,-0.14831862417825764,0.36787561454887246,-0.43466437031636745,-0.8567070962348213,-0.6349173789842136,0.09521454025840859,0.49796531803167965,0.13213279138982595,0.008029353232728903,-1.0432602942182119,0.2306068366418544,0.7699232890648607,-0.20467960917404895,-0.7278371685935341,-0.4793807575836972,1
|
||||
-0.4034907827756424,-0.4145665871182006,-0.4288586990498117,-0.4694938587601411,0.5837235432611375,-0.4591606189466547,-0.709419120918404,-0.7037473938247518,-0.32445568911713496,-0.35311314613177663,-0.7783282065505333,-0.4491283925871334,-0.7205347346017545,-0.6155350151446151,0.0128915057284779,-1.000710557033152,-0.7877619437721352,-0.9119671640017402,0.1229949518055603,-0.9698231108464234,-0.5292857715704484,-0.7207946999659222,-0.5530579420236615,-0.55059243793072,0.34470989507996114,-0.8734938647178383,-0.8259249070054266,-0.8863169968220542,-0.33280419066706374,-0.863480300442584,1
|
||||
-0.8164096010697949,-0.4121805119065312,-0.7994171480486937,-0.793443499080427,1.0774626518202741,-0.017484952121481222,-0.8999497695978196,-0.7799447138612067,-0.5773846789586007,0.6857671578175347,-0.4104839581470993,1.4928052017682094,-0.45382774258896724,-0.4768348332977139,-0.04520752816226469,-0.39161488077463,-0.8841590279052534,-0.2995559131316283,0.45547302240749943,0.10458901604854773,-0.7535271962811968,0.22545793403495948,-0.7663853662410569,-0.706334710047355,0.481154422163511,-0.42785823020940295,-0.9700660343924203,-0.7497163179346785,-0.5221287515166158,-0.05653726083643599,1
|
||||
-0.6066202014526043,-0.03279455325101804,-0.6529513579305586,-0.6267098974792351,-0.8774356311310566,-0.9124720881909327,-1.1098286252859881,-1.0934688087429127,-0.9445396642123425,-0.23808141697475915,-0.6149518916472584,-0.04046038291339824,-0.7255669419982222,-0.600450910487525,0.1615448958903087,-0.8883123503116331,-1.2081885247456998,-1.1087992764777215,0.01216892827158042,-0.37155688634118694,-0.5461641583766339,0.2756126672858891,-0.6293472195583589,-0.5763313568519565,-0.10226355571097634,-0.7659266425951126,-1.1552746579450504,-0.973229178764147,0.01671807551672564,-0.06522125050107203,1
|
||||
1.1382948048872013,-0.4670602417749389,1.1212375797004517,1.0755238491003742,0.4294300718364073,0.20650424444627963,0.842864571894012,1.2309211466130434,0.10797129351504944,-1.0199377010888602,-0.2867140226143153,-0.639164087408121,-0.2697927292324348,-0.026151218543194306,-0.8093099945736164,-0.5719494863029316,-0.22234512865214948,0.3237122673336853,-0.8567070962348213,-0.6133304533577361,0.9511898711435218,-0.05373674772855179,0.9374084987005232,0.8619943326957911,0.4952693732411193,0.04313253522796064,0.5379786980448586,1.3279800079423079,0.4863886207011936,-0.04518127435191309,0
|
||||
-0.5366904015802078,2.608590706067555,-0.6158466911006307,-0.555856929356953,-1.4074337054750046,-1.4932925589445636,-1.232968485146781,-1.3563805373890225,-0.34893268813405065,-0.39625004456565754,0.38758458616829156,5.0197216723519595,0.22695802947601793,0.02903453020225706,0.22525349167395065,-1.099505937906631,-1.5369533169470713,-2.2135923899154313,1.7248004119500147,-0.13595101236077425,-0.5919769225648515,2.112947728711629,-0.6809131201142197,-0.584402034818785,-1.733951900282523,-1.4041844384333146,-1.4159086547371023,-1.8428632507309033,-0.8407037337153825,-0.96034018516352,1
|
||||
-1.076148857738697,1.4752049805243552,-1.075261052771181,-0.9732196868533822,0.10309937977310327,-0.5633980156177988,-0.8428889557075988,-0.8561420338976616,0.45064927975187563,0.2669797688552693,-0.5817815489244722,0.6511316334575389,-0.7701379217955073,-0.6512217993333402,0.16515104282145837,-0.9357279146962296,-0.9275659020470668,-0.9580085876554683,0.272240663497986,-0.4548207423290292,-0.8813206963851712,1.6348059383860951,-0.9316788008995681,-0.8095085121638373,0.8857830197216223,-0.7305831267547883,-0.7651912859154012,-0.7951360436647309,0.9797247359918541,-0.022469301382865427,1
|
||||
-0.6931999536755716,-0.5863640023584336,-0.5391962609388071,-0.6735927072317902,1.0697479782490373,1.8040029515691633,1.4872582459990924,0.9403801458236339,3.6367386517871205,2.1398401091929546,-0.23522572943267733,0.5152469850796713,-0.2065306933911267,-0.35395456609117554,-0.5408523896991507,1.0837087454870782,1.0838071750696916,1.4918374700767412,5.399791352336783,0.7885861737560811,-0.5220521772249407,0.16192860525044758,-0.43897721682131263,-0.5128565652750086,0.3494148787724981,1.3393175618068065,1.1892744823055126,1.3416400758310454,5.28503806684947,1.4157329869217994,0
|
||||
-0.06050176435388696,-0.33344002992142424,-0.11102793449345826,-0.18326196763927893,0.32913931541033303,-0.3881337416800379,-0.48724267602975674,-0.3775856946443164,-0.2224681932133178,-0.16618658625162386,-0.6144568119051272,-0.45784934763228,-0.7219725081436024,-0.5040598026788032,-1.4151426790067385,-1.1039365726114212,-0.5797471832743539,-0.3572584833876108,-1.0177742504375384,-1.1301831297859712,-0.22788600717428192,-0.3145413606333882,-0.3029986434377083,-0.30607270817897214,-0.5257120880392316,-0.7705366664003722,-0.4083089600816328,-0.29295779790501547,-0.6422770305172933,-0.8153843576846017,1
|
||||
-0.4201407351262133,-0.4503577152932495,-0.45961651497461986,-0.45891878889114374,-0.7254565617776975,-1.0007102565358081,-0.7466398242318527,-0.6526394352637149,0.0508582958089125,-0.6370977274881624,-0.9803207413400367,-1.0232917352106297,-1.0440337815175342,-0.773366256556606,-1.1575035149257216,-1.076497729615089,-0.8289139153611271,-0.8287307037718563,-0.5404835090845321,-1.0598714291740157,-0.37738029031478076,-0.5452531335876671,-0.4499261409119406,-0.421679716893001,-0.40338251203329134,-0.6391509879504714,-0.3244387214335024,-0.16079664108147942,0.7266851787025487,-0.56822465184497,1
|
||||
0.7620058817643046,-0.7080538381535977,0.7941306484366164,0.5830780955340634,0.27513660041167703,1.1688820695263782,-0.14241827484833586,0.31531432536198317,0.8300427645140753,0.7037408654983192,-0.9540815150070865,-1.3851099631302046,-0.8765331638922528,-0.7148693628864274,-0.9082786936840536,-0.33176244704325414,-0.4371245968083953,0.19101646117010254,-0.058759726790166826,0.20943979766286752,0.2567648139747534,-1.0484722905386656,0.308728341238663,0.07564854700885898,-0.3563326751079295,0.1545414438550696,-0.19313841679125696,0.29322986537043577,0.5136950477468022,0.5206140522593513,1
|
||||
-0.9163093151732186,-0.5768197015117533,-0.9551591048743105,-0.8530163926757788,-1.0587304600551148,-1.3876006869710316,-1.0084964902740443,-0.9320296087307164,-1.1240376570030601,-0.05834434016691968,-1.1174578299103612,-0.4154614498547067,-1.1504290236142796,-0.9064007015323073,-0.3581409451875743,-1.2534121960730262,-1.007163962161665,-0.9692676257541964,0.05206629674381305,-0.6040789138035313,-1.0187589889498232,-0.8562124797434338,-1.059887170089824,-0.8849802574752599,-1.3208543320778465,-1.3268897059651275,-1.1509943836968008,-1.1523468189552188,-0.8880348739277705,-0.733220455473048,1
|
||||
-0.8863394009421913,0.196268667069292,-0.8833908677164245,-0.8311612482798508,0.784305056113286,-0.6736957260488932,-1.1508861764299863,-1.121500749650633,0.626067772706441,-0.2740288323363268,-0.34463835244365837,1.6104366884236767,-0.4380122336286402,-0.5415861118257101,2.449444782208515,-0.8820939156382434,-1.351092974030761,-1.2149559214085879,3.3532041177426244,-0.8594214054995808,-0.9464230454947431,0.061619138748587696,-0.9694702485672194,-0.8522612927448744,0.5329092427814085,-1.061813337162696,-1.338690193636927,-1.497605034843061,0.7667346050361076,-1.107968009462327,1
|
||||
-0.3335609829032453,-0.19504766764457077,-0.2726285229238008,-0.4582137842332104,2.0495115217960738,1.7094620569139392,-0.4418235799159889,0.28619827624236227,-0.31629668944482936,1.9277503585597042,0.37322727364648856,-0.005982188548864482,0.4368729665858129,0.0010737508378948454,-0.602557570521043,0.07010389372455586,-0.7449187952685271,0.2875225020163446,-0.23312600381696175,-0.03541761587175,-0.20618522413775797,-0.17410810753078387,-0.1783221852444293,-0.3318116271002086,0.6834687209425666,0.4703280745153572,-0.6952030178021339,0.02856605002614535,-0.5257696084560308,0.4758581055262286,1
|
||||
-0.29693108773199006,-1.1470916771008581,-0.290692637038371,-0.38348329049229596,-0.04733675486600917,0.09863065951916544,-0.620056639394926,-0.7065351006553539,-0.5488281801055316,1.9007897970385288,-0.919921012800038,-1.0764287171136164,-1.183569703753874,-0.7332646124682446,-0.6193862561997406,0.05144858970438669,0.2179245947862442,-0.7428805382690533,-0.49467541935715414,1.4460622514082275,-0.5268745734552792,-1.4212891410372464,-0.5996791671837547,-0.5471024150261454,-0.7938961585137944,-0.2872525041489827,-0.5772062682557988,-0.8439707863669677,-0.7988338789121161,1.2754531538776848,1
|
||||
0.7919757959953317,0.6782558598266105,0.8527169644838706,0.7180864875282629,1.6406338225205392,0.7931426164094628,1.716813244408027,1.1156959309481607,0.3364232843396006,0.6318460347751839,1.0069293435743423,0.5781189865679385,0.2823123108371624,0.8601319063087545,1.5158534100331347,1.1793171785904453,1.7546406845340814,0.1709110359938022,3.0266367683958304,1.7458121329644591,0.44001587072762305,-0.03367485442817958,0.3299198072205237,0.32365829966518134,0.5423192101664811,-0.1789169447253803,0.5183125731204694,-0.05510186579237236,-0.2454236241211159,-0.15206114714742866,0
|
||||
0.5388965202666571,0.4873698428930188,0.6281360863027303,0.6345434355631839,1.2934735118148961,1.4912907615557303,1.2626222832703495,1.2705685326482723,1.2175952489485795,1.228573129777211,4.964596802170643,0.08325549098286937,4.9284775113186825,5.23010739696523,0.5694401821025565,1.282698655035549,0.995865975509654,2.0869580552952347,0.0653654195678906,1.5163739520201829,1.7517076453797402,0.3742503093460517,1.862769179908429,2.0093393625746434,0.9704727261872733,1.2701672047279113,1.0197987586923938,1.8009598585898465,0.24063077729071639,1.5359728438167557,0
|
||||
0.056047902100108155,1.9357174963766446,0.06570745224909097,-0.0799787852520715,0.3129385009107363,0.41255491228458796,-0.5013439116463055,-0.023237181954460864,-1.0179706612630908,-0.01700481250111645,-0.013430004957928472,0.6491035043772719,0.22983357655971373,-0.16558721037336818,0.191996803308905,0.3413831063511819,-0.369477520223751,1.055549743751022,0.15698159902264708,1.2012048378736098,-0.14590527125852465,1.2970974011631664,-0.1468881773713363,-0.2620111690087195,-0.3281027729527123,-0.06520302419564176,-0.648929782685924,-0.053394357306280116,-1.1301518603988332,0.09376256028225882,1
|
||||
1.9674624319456198,1.4513442284076568,1.9707391623856354,2.005424992914209,0.4834327868350633,1.5349250206273726,2.940013450215635,2.2025918496795445,1.694896729778444,-0.121252317049664,0.6341342977495973,0.054861683859135875,0.14141050373606745,1.0665266066167427,-0.6987214886850305,0.7308125777722122,1.143562092719461,-0.11659654402729436,-0.5848139184981243,-0.08167531364277343,1.6215029471605955,1.3656422032727704,1.5660886561623826,1.6625183364325569,-0.16813332740648212,1.161831645304309,1.8654421304411293,1.1145414471807829,0.790400175142302,0.1899544457982232,0
|
||||
0.4123568824023198,-0.5625032502417343,0.4269897345404912,0.3296289210070933,-0.49941662614046767,0.007241128019115927,0.004988827701401324,-0.0929298527195112,-0.7854391706023884,-0.34951840459561995,-0.4758344841084092,-1.642479543416046,-0.42722893206478096,-0.2906749075297246,-0.522821655043403,-0.24859088328666692,-0.3875167406463229,-0.5528842703530141,-0.6660863357563759,-0.29322718478225396,0.44966066318830017,-0.8645716019519223,0.47119624709959335,0.35485037937481545,0.8481431501813331,0.7546128758397042,0.5084795106582749,0.29493737385652824,0.9906473068100983,1.0416534321374928,0
|
||||
0.3291071206494665,0.27978129947773867,0.2971234006357449,0.20378558956602447,0.04909666477444725,-0.29407767212561026,-0.11405183575923188,0.1771679646454836,-1.2219456530707251,-0.7772926473982763,-0.6679254240552899,0.9411540919356732,-0.6989681314740358,-0.45991120368244215,-0.5456605856073504,-0.6745536584138618,-0.3232520178909106,0.16487940844091198,-0.021817718945506867,-0.9525535703452412,0.025289794918498157,0.5130117380069587,-0.016207470483196776,-0.09427194315760978,-0.44572736526611684,-0.7382664997635544,-0.4326024085176429,-0.10632712037513833,-0.9135208725036721,-1.0565320706794854,1
|
||||
-0.869689448591621,-0.8440601252187817,-0.8130872884597197,-0.8145936388184217,-0.8936364456306534,0.3834654062368267,0.4181878248374834,-0.5024130116146065,0.09573279400659161,1.9259529877916266,-0.1817571172825145,-0.21285135473606567,0.0005086966349721724,-0.4183379396275355,1.443730471410144,3.4436047040384725,3.802655928134189,1.9019881436732704,-1.1153011511474407,5.5346259650630865,-0.9319558568037274,-1.083580603814317,-0.8698703584524751,-0.8219417187613839,-0.9820955062152411,0.35354080478211214,0.33148438633877214,-0.4304122310354374,-1.2994517080816061,1.5025728835681569,1
|
||||
-0.0738217262343432,-0.9275727576272279,-0.08612875017337573,-0.14977424638745396,-0.9684687792716474,-0.4872804747928237,-0.5362690649756648,-0.5910001397870704,0.022301796955843462,-0.5094844029545961,-1.123893866558066,-1.278227560600151,-1.0548170830813937,-0.8458435399089653,-0.62699923305439,0.579238232608338,-0.15977158281135348,-0.5335830621837656,-0.23017064318938857,0.9322934214980604,-0.3291563280113943,-0.9648810684537822,-0.2260029837036156,-0.37042000548206366,-0.16813332740648212,0.580200308540713,0.07004060793218667,-0.04314930638972711,0.9396753096582952,0.9735175132303509,1
|
||||
-0.00389192636194673,0.39669898484956306,-0.012895855114308177,-0.13496914857085787,0.04215345856033494,0.1507493578547375,-0.6282550321952449,-0.6225941505338932,-0.6793721748624179,0.9122358745954117,-0.47137876642922893,-0.25341393634139925,-0.3539024814305375,-0.4128193647529903,-0.19185750336234583,-0.05193288674071731,-0.06281077304002995,-0.3918398146908476,-0.7148497861113271,0.14961317521234396,-0.20618522413775797,-0.11057877874627257,-0.18326686064019676,-0.3014920531167181,-0.21988814802437964,-0.23961559149463285,-0.6194305952993403,-0.6740736920007941,-1.1319722888685406,0.20799042433246606,1
|
||||
-0.8397195343605939,-0.35014255640311354,-0.8565388061947665,-0.7870984571590285,-0.5133030385686933,-1.0290725249323753,-0.7766459418810205,-0.7059156102485533,-0.7568826717493193,-0.4807264706653417,-0.8694228791026622,0.7768756364340725,-0.8693442961830132,-0.7608574868409702,-0.555276977423749,-0.9670532793634303,-0.8813403997142265,-1.033001823563069,-0.9350241528655002,-1.046919273798129,-0.6884248471716244,1.8237221002979325,-0.6812663112139176,-0.6664175730762848,0.6693537698649583,-0.558475571358427,-0.36839829479390174,-0.35767236952790976,0.18601792319949922,-0.29100498178159967,1
|
||||
1.1016649097159459,0.7235912888483388,1.0528868776453215,1.0758763514293403,0.15633062741463485,-0.1365095143669039,0.25274425812704415,0.6653264052042356,0.328264284667295,-1.0792509364354466,0.26282449115124534,-0.8794973834197223,0.1802303893659609,0.4076087665960534,-0.915090304554003,-0.8028088735525246,-0.3824432099024744,-0.22818165375576185,-1.2261271746814204,-1.0987278953016753,1.3683271450678156,0.6551168155512603,1.2764719544102903,1.3287848961826245,1.1633770575812563,0.16760317796997184,0.8335489873496493,1.5448335856760167,0.6283820413383576,-0.40790484265169563,0
|
||||
-1.0195390197467569,1.2342113841456963,-1.0322977543365284,-0.9217543468242616,-1.0271002984130446,-0.716602747469341,-0.979146244048902,-1.10362845141444,0.7729297668079372,0.26518239808719163,0.7544386750874629,1.513086492570876,0.7158010337043074,-0.049329233016283974,0.5954845766053029,-0.28667879566117865,-0.8170756769588144,-1.0239543822337336,0.7273662001441967,-0.23401733163534383,-0.6932472434019634,1.0095435971911666,-0.722589669878545,-0.7006634228274214,-0.5021871695765513,-0.5500238610487843,-1.0576381318498476,-1.28553248087041,0.34257477159432154,-0.37049688717326557,1
|
||||
0.805295757875788,-0.796338620985384,0.7160155603736112,0.6934113245006024,-0.0743381123653361,-0.68993736692556,-0.3268821128555154,0.05698682572619685,-0.30813768977252376,-0.9408533872934103,-0.7946658380408607,-1.4224275382071114,-1.0224671783898156,-0.5029560877038941,0.24729105625319794,-0.8051407865550456,-0.14455099057980852,0.663493952813163,-0.930591111924141,-0.4856592075097113,0.3411567480056804,-1.2791840634929441,0.19217527833843062,0.22113887684330671,0.20356038430387563,-0.759011606887223,-0.28973379509634495,0.47422576489620866,-1.0391304369134713,-0.6350245723421676,1
|
||||
1.474623842368728,-0.10914896002445472,1.3946403879209701,1.4731464761746749,-0.7215992249920796,-0.2642609284266549,0.10648493056935165,0.44447807517987636,-0.6752926750262657,-1.3578434054875979,-0.5421751695539815,-1.4120840798977514,-0.5400941550998419,-0.19943446960391162,-1.5670015331073688,-1.0265947913611366,-0.7409727158010895,-0.862708872319804,-1.3369531982154004,-1.3997113154651346,1.3032247959582437,0.1585849563670523,1.2305571114495921,1.2720720239832897,-0.3610376588004658,0.07386602726302517,0.6305251682772784,0.839632580919939,0.6101777566412853,-0.8300803401939851,0
|
||||
-0.5433503825204359,-0.2618577735713272,-0.5743480505671594,-0.5738345481342483,-0.6706823794219181,-0.6979369810886942,-0.5959533645619878,-0.6343644682631017,0.7484527677910215,0.08544532127935214,-0.7288202323374195,-0.3846338878346532,-0.7794834498175188,-0.6560045642246126,-0.5043902373953054,-0.5260885305866826,-0.41288439436556446,-0.6204384989453835,-0.2582465691513305,-0.5380845983168712,-0.5582201489524807,-0.03200302998648224,-0.6272280729601734,-0.572841333947382,-0.44102238157358054,-0.43093157941290944,-0.29204745685215555,-0.4408280328005998,0.44087790895851264,-0.03248928945744489,1
|
||||
0.15261762573341772,-1.32843339318777,0.120876233193589,0.06384216496629291,0.2951947516968917,-0.4688571209625751,-0.29441647736625176,0.06937663386220592,1.1768002505870525,-1.3165038778217948,0.7663205888986105,-0.7298214572960414,0.8588595011181742,0.5131974991956836,0.12508274358646343,-0.6302473113659602,-0.20656081078239918,0.37196528775680654,0.431830137386917,-1.1678060573064035,0.20854085167136693,-1.4229609654789444,0.21336674432029137,0.10116933949855979,-0.06462368617068583,-0.6330042895434586,-0.4719346583664213,0.013198473651315604,0.34803605700344364,-1.4085676516997163,1
|
||||
0.35907703488049425,0.014926950982380522,0.34155135697157907,0.22634573861988544,-0.4099264127141246,0.06420807736264797,-0.25899942046887325,0.13628159779665402,0.3772182827011275,-0.5903660875181236,-0.39365124691464065,-0.4541987152878002,-0.285608238192762,-0.3484359912166303,-0.578917273972396,-0.09623923378861907,-0.6710707366636237,0.17292157851143217,-0.6675640160701625,-0.3339339588207546,0.08315854968256176,0.13016394085819222,0.16745190135959334,-0.037122818095203215,0.010656052909892596,0.5233433482758436,-0.3724472028665701,0.6996168850603791,0.1659932100327198,0.19463044023302709,1
|
||||
0.5755264154379124,0.08173705690913699,0.4865524891885328,0.47767989917305637,-1.2986568081205703,-0.9556215221617784,-0.5428277792159201,-0.4745359433085865,-0.9771756629015638,-1.325490731662187,-0.6803024176085682,-0.3511697580102529,-0.7435391112713211,-0.4474024339668065,-1.5830288528013667,-1.032502304300857,-0.7979090052598319,-1.173337691293646,-1.4197032957874385,-1.2405848351328137,0.48341743680067095,1.0463237349085157,0.4076218491540121,0.3528872414909924,-1.0667852126808928,-0.4163331706962537,-0.10868976270417395,-0.3798699798471083,-0.3419063330156,-0.9028922535359302,0
|
||||
0.7586758912941899,0.5971293026298342,0.7892484554326787,0.6581610916039445,0.4294300718364073,0.7955667419134427,0.47721625299978093,0.3822192892964315,1.523557736660031,-0.5202686275630672,0.3266897778861617,0.1887182031567362,0.1982025586390597,0.34359329805132977,-0.7612280354916224,-0.22293984025893435,-0.2860461257693562,-0.3576605918911368,-0.648354171990939,-0.6065459910179859,0.8595643427670865,1.047995559350213,0.8950255667368018,0.7594749098739164,0.39646471569785996,0.5425517807977589,0.3147103386091463,0.3973878830220602,1.1089751573410678,-0.37517288160806944,0
|
||||
-0.8164096010697949,-0.8703069525471504,-0.8287103060723204,-0.7870984571590285,0.08921296734487759,-0.6470303455051121,-0.6585890855564257,-0.46586307761338014,-0.2143091935410122,-0.5670002675331047,-0.9471503986172505,-0.36131040341158627,-1.0246238387025874,-0.7972800810129681,-0.6586531894500356,-0.5579580082878048,-0.7285707517605714,-0.4841237162500665,-0.6985953026596766,-1.090709894354698,-0.8644423095789858,-0.5669868513297367,-0.8628065364585216,-0.7957665469770755,-0.5680569412720577,-0.5384988015356351,-0.6067054556423825,-0.3955790579191566,-0.3546493323035502,-0.9456442026541367,1
|
||||
-0.9396192484640176,-1.0039271644006647,-0.962970613680611,-0.8632389602158096,-1.375032076475811,-1.1611873648992905,-0.7882876596574736,-1.1319391630052205,-1.0261296609353963,0.06028213052625442,-0.8996227433726615,-0.9813094632491093,-0.9383574261917129,-0.7858750262722416,-1.0088501247638908,-0.5983778336648379,-0.44332557882865437,-1.3755982685672286,-1.1566761999334598,0.11137347838829793,-0.77763917743289,-0.8461815330932474,-0.8324321018845215,-0.720076675234117,-0.89740579974959,-0.3610128850331375,-0.21338295715459876,-0.8941715358580784,-0.5112061806983725,0.6528778948438023,1
|
||||
1.8542427559617392,0.06980668085078734,1.7803336352320596,1.9243494572518958,0.6377262582597925,0.5628506935313539,1.0281482491812235,1.304640505022297,-0.04297020042259908,-0.9588270949741947,1.1321845183335197,-1.0906256206754832,0.8833016513295889,1.3487097352018174,-0.8525837577474107,-0.3410900990533388,0.012728462479489626,0.33376497992183585,-0.8995598253346266,-0.4973778242783705,2.361740768517581,-0.1406716186968306,2.0746838397270335,2.497942569215067,0.8763730523365497,0.6239955346906799,1.0811107952213717,1.5704462129673997,0.9251118819006369,0.5139340602096313,0
|
||||
-0.1670614593975387,2.787546346942797,-0.18035507514937563,-0.23225979136563332,-0.21474517136184068,-0.5168548059413809,-0.7707430990647908,-0.3453721934906932,-1.6788496347198252,-0.29559728155326787,-0.13076390384300765,1.5252552670524762,-0.20221737276558313,-0.19906656461227537,-0.3749696308662723,-0.771716700185576,-1.08958065046729,-0.37836917982272605,-0.6055014428911335,-0.2290831772064348,-0.20618522413775797,2.708117229956,-0.27085825336522007,-0.2644105597556145,-0.6527466477377089,-0.7129113688346262,-1.0108443228385804,-0.5173244129775302,-1.2284549977630241,-0.33776492612963843,1
|
||||
0.05937789257022221,-0.4431994896582396,-0.01387229371509555,-0.049311082631978975,-1.1405059999102223,-1.017436722513271,-0.7933706631936714,-0.34939888113489626,-0.5937026783032119,-0.7485347151090233,-1.07339573286069,1.0405324168687407,-0.9570484822357356,-0.7972800810129681,-0.563290637270748,-0.7507294831628858,-0.898815894498593,-0.3729407150251251,-0.37646099425424207,-1.179524674075063,-0.23753079963495946,-0.011941136686110024,-0.28039441305705715,-0.3104352368096902,-1.1514749191465439,-0.8588954560011827,-0.9265691933831832,-0.4920532873833658,-0.6331748881687571,-1.0498520786297654,1
|
||||
-1.0428489530375558,-0.970522111437286,-1.0630555702613365,-0.9439619935491561,-1.3349157739053819,-1.071252308701629,-0.8638768412764156,-1.1124561897113465,-1.5809416386521613,-0.8851348934829805,-0.5679193161448005,0.13598684706980302,-0.5480019095800054,-0.6107522502533426,-0.09208743826720864,-0.3558588814026393,-0.39935497904863554,-1.08527592902145,-0.44738964931598935,-0.6145639919649633,-0.9536566398402514,-0.784324028750434,-0.9383894317938238,-0.8411368447365434,-1.104425082221182,-0.8650421544081955,-0.8516643940388184,-1.260090604427636,-1.0391304369134713,-0.9429722058342489,1
|
||||
-1.2093484765432625,-0.681807010825229,-1.1480057285298553,-1.0535902178577623,0.8383077711119421,0.3761930297248865,-0.1301206856478572,-0.12824080590713674,-0.17759369501563754,1.9744819985297417,0.0024125467902680513,0.606512793691672,-0.698249244703112,-0.4290071843849894,1.487805600568638,1.5749650846848653,0.7202041384272283,0.8906852573053583,1.1012193195321547,2.614840081756087,-1.1152069135565965,-0.8027140976091083,-1.159487060204568,-0.9519450719567824,0.4293996015456122,0.008557356688513035,-0.3180761516050236,-0.17906698188266595,-0.47843846824364283,1.0162694623485575,1
|
||||
-0.21368132597913675,0.26069269778437903,-0.15447945222850504,-0.2826676244078543,-0.9561253015576695,0.6476950861706573,0.423106860517675,-0.47887237615618955,-0.7568826717493193,0.45210895796734435,-0.42682158963742667,-0.7269820765836681,0.5756181133741363,-0.3874339203300827,-0.7403925198894251,3.434277052028388,2.794150761384783,0.5368297742024701,-0.6616532948150169,2.946045197796614,-0.11214849764615428,0.014808054381052729,0.37583465018122125,-0.2035532853570975,-0.5163021206541596,2.5333137273690625,2.376182963036295,0.47422576489620866,-0.04699692092302771,2.8786512458104276,1
|
||||
-0.17039144986765337,-0.631699431380161,-0.1920723383588269,-0.2453023775373969,-1.8579706420352164,-0.54133847353158,0.09385940565686038,-0.48909396786839693,-1.4871131424206496,-0.6424898397923979,-1.0065599676729868,-0.06479793187659838,-0.967112897028671,-0.724066987677336,-0.3437163574629763,0.8015472721820202,1.2574346716369458,-0.12664925661544452,-1.131555634599091,0.44381213303605277,-0.39666987523613545,-0.4449436670858067,-0.436858070223127,-0.4247334869345036,-1.3443792505405274,0.13994303513841386,0.497489617318175,-0.3098621319173283,-1.497878411279695,-0.3691608887633212,1
|
||||
-1.10278878149961,-0.1711869155278715,-1.133359149518042,-0.9947223289203436,-1.0656736662692272,-1.2353656053210815,-0.9061805481260621,-1.0122536164113742,2.3884117019244,-0.7413452320367087,-0.9179406938315136,2.778639038657282,-0.9282930113987775,-0.7807243563893329,1.5799626888091265,-0.7056458317808103,-0.4134481200037698,0.020120347171548706,-0.37941635488181474,0.7003881633393297,-1.197187649472354,-0.35132149835073734,-1.2364827199386612,-1.004513541956935,-1.558926506920177,-1.302072411146813,-1.1853522607705866,-1.463454865121217,-0.31277947750028434,-0.965016179598324,1
|
||||
2.493600926223653,-0.9395031336855776,2.50289819981486,2.689279511109372,0.37542735683775125,1.3555397333328452,1.934890492896515,2.530921765283781,0.7606912672994794,0.004563636715824633,-0.12779342539022087,0.27795588268847005,-0.11595096025470847,0.17362119191533962,-0.9419360650414492,0.3390511933486606,0.4005717015647837,0.48656621126171895,-0.44147892806084343,0.623292000387624,1.635970135851612,-0.5970796912802947,1.686173630059592,1.5447300634031689,-0.5586469738869851,0.377359261109287,0.9116350716082532,1.5140984329263572,-0.2563461949393591,0.32422228599759034,0
|
||||
-0.293601097261876,0.4157875865429227,-0.3185211371608163,-0.36550567171500037,1.409193615383444,-0.4773415602265055,-0.7187652887107677,-0.5371044743954315,3.0737676743980513,-0.16798395701970156,0.2623294114091143,0.3043215607319371,0.21905027499585464,0.01615785549498502,0.09623356813726712,-0.8525563509396423,-0.43825204808480606,0.10456313291201064,1.4440411523305994,-1.1246322060534484,-0.42078185638782867,-0.21757554301492357,-0.47818142888775494,-0.4583249573910327,-0.06462368617068583,-0.9557059559116359,-0.9466980506587345,-0.7678159078872556,0.5919734719442128,-1.1660839402948888,1
|
||||
-1.2060184860731484,-0.5863640023584336,-1.180716421656239,-1.0655752970426258,-0.4986451587833443,-0.361710773686655,-0.5183965686709693,-0.6012217314992778,-0.47947668289093687,0.9589675145654518,-1.2516244400278989,-0.30208903426779954,-1.1355480674561536,-0.9938885085434296,1.3996553422516496,0.6569686660257094,-0.06393822431644064,-0.008027248075271824,0.4480846208385672,1.5626316497912067,-1.2237108287392164,-0.5636432024463415,-1.1753806596909635,-1.0239267943636305,0.7069936394052476,-0.07903309561142077,-0.38459392708457535,-0.41999642927027503,-0.32734290525794163,0.867305639639807,1
|
||||
-0.08048170717457133,-0.6436298074385106,-0.1378799960151169,-0.18079445133651312,-1.418234248474736,-0.8482327623354602,-0.92848017654293,-0.8226895519304376,-1.7685986311151844,-0.4088316399422064,-0.8912063877564321,-0.5040906906623603,-0.8046444867998572,-0.7281139425853358,-0.9215012324316019,-0.8253506992435623,-0.9286933533234776,-0.6140047628889675,-0.9586670378860827,-0.4967610549747571,-0.29781075251419276,-0.37138339165110895,-0.2924029104467782,-0.37107438477667126,-1.0432602942182119,-0.5892090633934916,-0.808572443836848,-0.37679646457214233,-0.9553907273069384,-0.10396520438944647,1
|
||||
-1.5273625664391621,-1.2258321590859647,-1.4682775895881772,-1.2876517642915706,3.229856578195259,0.6525433371786173,-0.6866275889335169,-0.6064873999570817,1.6744992305976807,2.723985608818433,-0.06640353736595994,-0.08507922267926517,-0.1296098089022637,-0.5412182068340738,3.479200072547882,0.2341151082352092,-0.2984480898098744,0.96306478794004,2.98969476055117,0.33587750490366486,-1.286401979733619,-1.265809467959363,-1.2898145759930095,-1.0911097352766888,2.537232295801821,-0.19351535344203605,-0.8377245819600603,-0.6028705881307493,1.4748812797522226,0.5353100347687346,1
|
||||
-0.5233704396997509,-0.6006804536284526,-0.5294318749309312,-0.5364693012637911,-0.2710622884318678,-0.6615750985289927,-0.6800688746932617,-0.6526394352637149,-0.2714221912471503,-0.478929099897264,-0.5778209109874232,-0.2980327761072662,-0.5954484364609864,-0.5393786818758921,-0.7704437443156714,-0.3263213167040381,-0.5075903015840666,-0.6121952746231004,-0.8685285387451123,-0.6491030729673275,-0.4328378469636755,-0.36803974276771373,-0.5173856409541967,-0.4705400375570433,-0.6339267129675642,-0.3886730278646957,-0.4308671622007851,-0.3641609017750602,-0.4602341835465705,-0.3818528736577884,1
|
||||
1.4446539281377009,-0.03995277888602715,1.3995225809249083,1.423796150119354,0.1717599745571083,0.3907377827487668,0.6198682877253331,1.1060938296427536,0.08349429449813377,-0.9282717919168614,0.1826215729260014,-1.2607856505098574,-0.015306812325354689,0.5356397036855005,-0.7836662830632197,-0.4506900101718323,-0.17950198014854138,0.08445770773570996,-1.0325510535754026,-0.5584379853361215,1.4310182960622186,-0.0687831677038308,1.2905995983981973,1.4356668476352172,0.5799590797067703,0.318197288941788,0.8127260315473546,1.18967182056884,-0.10707106042336598,0.011598658070705141,0
|
||||
-1.3635270353095466,0.2153572687626516,-1.3633104400035136,-1.158283409560836,0.5528648489761917,-1.0319814755371515,-1.1209948362800228,-1.110535769450265,-1.7808371306236424,1.2753047697472486,-0.15947852888661337,1.766602627604211,-0.313644822258796,-0.5257661971853475,1.744242715672605,-0.6030416596698801,-1.2377277481876612,-1.1580575681596577,-0.2552912085237573,1.4250920950853636,-1.2020100457026925,0.14688218527516855,-1.2555550393223354,-1.0049497948200068,0.024771003987500886,-1.0768727482598779,-1.2973913312957097,-1.4363054801923512,-1.7054072568263203,0.5393180299985668,1
|
||||
1.3480842045043913,1.2986354148607833,1.228645825787084,1.3247429956797452,-0.5156174406400644,-0.6135774135501869,-0.2985156737664113,0.11305070754163747,-1.0138911614269384,-1.2050668902009338,0.26728020883042564,0.5294438886415381,0.14141050373606745,0.42195706126987076,-0.5340407788292018,-0.831569133916952,-0.622590331777962,-0.5002080563911069,-0.8197650883901614,-0.37340719425202784,1.2091880694666404,1.5512147163012118,1.085748760573546,1.0757582356009765,0.020066020294965226,-0.41710150799713025,-0.21280454171564622,0.09686638946983332,-0.6677630290931948,-0.1554011431722891,0
|
||||
0.1026677686817056,1.1387683756789,0.13845212800776519,-0.043671045368513635,-0.046565287508884744,0.848897503001005,0.5952731093243757,0.6451929669832212,1.8295202243714825,0.4539063287354221,0.26480481011977,1.3650330697114088,0.6942344305765885,-0.12291023134355246,1.6440719675851185,1.1435611792184541,0.5420668367543318,1.0575602862686517,3.731490278071942,0.8706164911366956,0.2302416347078909,1.577963907368375,0.37583465018122125,-0.033850921622164666,1.1680820412737933,1.3139624308778781,0.7496787487015188,1.182841786624471,3.373588173656871,1.3890130187229204,0
|
||||
-0.33689097337336,0.11991426029585532,-0.35953155839389433,-0.4014609092695914,-0.2988351132883192,-0.4060722704094907,-0.938318247903313,-0.7090130622825557,0.3037872856503782,0.2993324426806803,-0.003528410115305748,-0.8166253819314553,0.020637526220842927,-0.28846747757990654,-0.34732250439412565,-0.6815493974214253,-1.1386247809911572,-0.906337644952376,0.36828988389410194,-0.6034621444999178,-0.3508571110479182,-0.17243628308908654,-0.32560287381835945,-0.43607606137437066,-0.4551373326511895,-0.5354254523321286,-1.0036719713955677,-0.7527898332096444,0.8049636028999594,-0.2976849738313196,1
|
||||
-0.3568709161940444,-1.4262624768662358,-0.4269058218482363,-0.4028709185854576,-0.6051076540664085,-1.402145439994912,-1.082232835120114,-0.9444194168667254,-1.307615149629931,-0.0853049016880951,-0.3877102900090671,-0.36922010682462636,-0.5681307391658761,-0.4617507286406239,0.7040696675321391,-1.2455614222978717,-1.188570872536153,-0.7241824928550941,-1.3428639194705458,-0.003345612083840439,-0.5485753564918031,-1.5483477986062695,-0.6236961619631963,-0.5586631158975482,-0.6997964846630707,-1.3863590130529773,-1.2563816766739688,-1.1615673647801164,-1.9802919557521133,-0.5755726430996616,1
|
||||
0.2658373017172982,0.26069269778437903,0.22974913718140227,0.2164756734088214,0.2651075247690692,-0.5716400423313314,-0.020426189979587783,0.2725694872927524,-0.8180751692916097,-0.4645501337526362,0.5222462760279605,0.13801497615006947,0.4505318152333678,0.4068729566127806,-0.42425363892531587,-0.837010264256168,-0.4106294918127429,0.01609926213628843,-0.8330642112142389,-0.7841755504587159,0.7631164181603136,0.9142496040143994,0.6725151739272677,0.6787681302056321,0.7211085904828559,-0.3671595834401506,0.2695939343708415,0.9045179033914424,0.2879619175031044,0.02362264376020069,0
|
||||
-0.9762491436352734,0.5517938736081067,-0.8853437449179992,-0.8882666255724366,2.1189435839372024,0.6355744586507568,0.4788559315598448,0.39956502068684396,0.44249028007957003,1.2393573543856797,-0.646636995143651,0.5193032432402046,-0.536499721245222,-0.639080934609341,0.5157486611276633,-0.36907305508359245,-0.07408528580413727,-0.1286597991330745,-0.9113812678449178,-0.19516086550768408,-0.7390600075901806,1.6598833050115611,-0.6053302247789174,-0.6823408025784057,2.814826333661455,0.2682553643848081,0.9110566561693006,0.5886288334643861,0.16963406697213387,0.9521415386712485,0
|
||||
1.794302927499685,1.773464381983092,1.8486843372871895,1.8996742942242353,-0.09439626365055181,1.8500613361447849,1.4839788888789647,0.9955147920288738,0.2711512869611569,0.14475855662593856,0.9336575417389341,-1.1474132349229502,0.6899211099510449,1.2445926225687325,-0.7059337825473295,0.8388578802223585,0.4343952398571061,-0.2748262401647788,-0.6365327294806481,0.33279365838559677,1.988005060666334,0.9175932528977946,2.0146413527784293,2.1511215430729806,0.9328328566469841,3.258624139396585,2.1072197839233255,1.2050393969436695,1.4584974235248582,2.0369722475457377,0
|
||||
0.32577713017935245,0.995603862978707,0.5060812612042844,0.1702978683141995,0.707158320400922,2.48275809268359,1.5495660312815174,1.3935373783981608,-0.20207069403255434,0.8834779423061586,-0.4337527060272626,-0.42539928234801316,0.7352109765192543,-0.3362951264926311,0.5225602719976122,2.241114899071738,1.5922877007309348,1.5722591707819433,0.8441029449333219,0.5893696886888733,0.042168181724682695,0.3959840270881218,0.5029834460723838,-0.09187255241071479,0.024771003987500886,1.766513101094203,1.2384397946164851,1.1060039047503218,0.23516949188159428,0.3476022581716097,0
|
||||
1.7676630037387724,-0.7390728159053065,1.7705692492241838,1.8820491777759063,-0.6398236851369723,0.5555783170194134,0.7231680370093535,1.6379263438809375,-0.18575269468794314,-1.8053887267391178,3.1328017562854393,-1.0918424981236432,3.165048262242222,3.1256908448053515,1.053465236861294,0.6344268403346718,0.911870855417054,3.403863404342914,1.7469656166568102,0.0034388502559097632,1.4768310602504362,-1.2708249412844561,1.491918525225871,1.4574794907888076,-0.8785858649794454,-0.25575067481304165,-0.10637610094836356,1.191379329054932,-0.7788091657453367,-1.288995794009733,0
|
||||
1.9008626225433372,1.4227113258676178,1.8389199512793137,2.001899969624543,0.6145822375460834,0.07584387978175262,1.4806995317588374,1.4508402410272023,-0.5039536819078525,-1.4189540116022634,0.4960070496950102,0.41181240198607083,0.2499624061455845,0.8034745375967578,2.052768619782066,-0.24081783994492956,1.2292483897266773,0.800210844012006,-0.49172005872958097,-0.9556374168633095,1.3345703714554455,0.927624199547981,1.2517485774314534,1.296065931452239,1.022227546805171,-0.38713635326294243,0.8844495459774799,0.6603441898802586,-1.051873436201422,-1.395875666805249,0
|
||||
1.0650350145446894,1.9357174963766446,1.0333581056295706,1.0850414119824716,0.2890230128399027,0.3737689042209063,0.4181878248374834,0.6355908656778145,0.026381296791995697,0.18070597198750746,2.7817902191144643,-0.04046038291339824,2.5036724329921833,2.9748497982344513,0.7866103639562283,-0.015399583034552647,-0.0030558553902606646,0.7177786007891741,0.10526278804012323,0.6541304655683061,1.701072484961184,1.5177782274672589,1.686173630059592,1.79121293103874,1.3609863726677764,0.07309768996214865,0.11052968865887033,0.812312445142464,0.25337377657866667,0.5874139727565489,0
|
||||
2.3504113360087455,1.0791164953871526,2.3857255677203515,2.6117289987367247,0.42171539826517057,1.5761351541950337,3.2138397697462926,2.701281627153904,1.707135229286902,-0.5076870321865183,3.1526049459706846,-0.7121767342977214,2.7344350864587725,3.809994129248948,-0.5985507405975433,1.2974674373848492,3.8285873074916363,1.5340588629469727,0.6313169797480807,1.014940508182289,2.3328063911355486,0.26558172063570334,2.152385881660522,2.58083061319871,-0.4692522837287978,0.6324472450003226,2.627793678980687,1.7514421124931727,0.4645434790647061,-0.22153306446451415,0
|
||||
-0.846379515300822,0.5303191967030777,-0.8570270254951599,-0.7987310340149256,-0.5896783069239351,-0.7231478863300871,-0.39132148026602337,-0.7681743961319982,-1.2219456530707251,0.6264539224709482,-0.6575287494705361,-0.37692699732963975,-0.698249244703112,-0.6596836141409761,0.9360651201027591,-0.529975052257551,-0.15977158281135348,-0.9198082798204974,-0.5995907216359881,-0.5424019834421667,-0.698069639632302,0.6250239756007022,-0.7194109499812663,-0.6733976188854336,1.8267797582288579,-0.11744996065525144,0.38874751479508196,-0.429387725943782,-0.07612377643834332,0.43511015402293807,1
|
||||
-0.27695114491130507,0.06503453042744765,-0.36246087419625717,-0.33801049005560696,-1.1289339895533665,-1.398509251738942,-1.2216219095111394,-1.2273097111321496,0.13244829253196624,-1.2212432271136393,0.18212649318387034,0.08528362006313582,0.019199752678995177,-0.05080085298282931,0.2861573065111429,-1.072300286210551,-1.4979435027832597,-1.3757993228189915,0.3195264335391508,-0.22599933068836645,-0.4039034695816433,-0.5285348891706902,-0.49866651267021994,-0.44218360145737584,-1.3631991853106722,-1.329041050407582,-1.4052368898884264,-1.6531590579260602,-0.7860908796241654,-1.2636118242207974,1
|
||||
2.62014056408799,0.4658951659879898,2.7958297800511303,3.05940695652428,-0.09439626365055181,2.436699708107968,2.366125954193299,2.0136472756054085,-0.26734269141099687,0.024334715164686774,3.959584925644436,0.36516543313993743,4.528057579914041,4.505334563441636,-0.4366748116881642,2.115191596935596,2.0308662472547128,0.924864480105069,-0.07353652992803071,0.7756340183801944,2.962129099194745,0.4628570047560284,3.233150646735405,3.3966234671429896,-0.18224827848409042,1.825675073261702,1.9429497992607805,1.3006598721648328,-0.06884206255951417,0.45247813335221015,0
|
||||
-0.0738217262343432,0.022085176617389627,-0.028030653426515582,-0.16845686982268288,-0.3597810345010875,0.4634615478681698,0.3504691003068478,0.13411338137285267,0.2507537877803935,0.0009688951796667468,-0.7070367236836497,-0.561689556541934,-0.5494396831218532,-0.5511516416082551,-1.1206406796295263,0.4432099741279383,0.5313560496284296,0.34783877754524595,-0.5803808775567648,0.3697998166024156,-0.184484441101234,0.014808054381052729,-0.1045052454076153,-0.25743051394646577,-0.7703712400511135,0.6286055584959395,0.7010918518294984,0.5596011892008186,-0.23086019636345861,0.43978614845774194,1
|
||||
-0.4934005254687238,-0.32389572907474484,-0.4181178744411485,-0.5473968734617549,0.784305056113286,0.873138758040806,0.03630668819862039,-0.48940371307179714,0.09981229384274497,1.6563473725798674,-0.9431897606802014,0.5842033738087383,-0.2618849747522712,-0.6957383033213377,1.2914709343171635,0.8209798805363631,1.2033170103692301,0.13271072815883117,0.3150933925977918,1.6335601197067757,-0.7294152151295031,-0.41819447601864396,-0.5209175519511733,-0.6784145268107594,0.6552388187873488,0.21524009062432214,-0.025976354933948797,-0.5844294964809537,-0.5731007486684189,0.7871457350431703,1
|
||||
-0.4700905921779248,-0.10437680960111419,-0.4366702078561121,-0.4976940450774674,0.3407113257671876,0.24771437801394142,0.079594202184305,-0.17284411519676882,0.5648752751641507,0.34606408265071786,0.1430151935555105,-0.25949832358219904,-0.051251150871552624,-0.14903148574973282,0.07058985662687049,-0.2548093179600566,-0.014330368154368183,-0.1286597991330745,-0.2833671344856993,0.14159517426536658,-0.22547480905911263,-0.12896884760494684,-0.29346248374587125,-0.3248315812910599,0.5423192101664811,0.02238742810429225,0.12903898270535416,-0.10974213734732259,0.2606554904574958,0.3803342192152359,1
|
||||
-0.6099501919227184,-1.0516486686340623,-0.585577094476216,-0.612609804320572,0.6068675639748466,-0.11299549697829699,-0.15209237835271228,-0.5048909732418083,-0.45499968387402007,-0.24706827081515137,-0.5129654647682445,-0.8975477322340956,-0.5178086652011992,-0.5323884870348016,-0.516410727165804,-0.6310246157001339,-0.22798238503420315,-1.0756253249368257,-0.8064659655660837,-0.5763242951409172,-0.517229780994602,-0.7876676776338293,-0.5113813922593362,-0.5327060705447758,0.8622581012589414,-0.14818345269031577,0.3482584340683983,-0.7247866940377323,-0.22539891095433648,0.08040257618281892,1
|
||||
1.3214442807434787,-1.3856991982678477,1.1993526677634567,1.300772837310018,-1.300199742834817,-0.8099315793725745,-0.504131365198414,-0.06226507758288914,-2.3111721093234916,-1.6849648852778658,0.575219808435992,-0.2554420654216657,0.42752743856380127,0.6110602269709509,-0.9647749956053965,-1.0970962944706926,-0.8869776560962803,-0.7183519195539668,-0.9926536851031696,-1.2627885300629051,0.9439562767980135,-1.1688436503408979,0.8031958808154067,0.8358191609114827,-1.526932617810931,-1.0382253820257838,-0.8097292747147532,-0.4186304224814013,-1.9802919557521133,-1.5428354918990839,1
|
||||
-0.9695891626950447,-0.4384273392348999,-0.8936434730246936,-0.8868566162565704,-0.46932939921264627,0.3810412807328465,0.3176755291055714,-0.23727111750401522,-1.2137866533984194,0.8259620777276498,-0.5436604087803747,0.4138405310663373,0.17088486134394956,-0.5956681455962526,0.7164908402949873,1.86489960133166,2.087802536713455,1.3410467812544884,-0.6764300979528808,0.9989045062883344,-0.8547975171183086,0.24384800289363376,-0.5021984236671965,-0.7643563408359054,0.3776447809277147,1.3316341887980403,1.3483387280174837,0.812312445142464,-0.6022276041837344,0.9027095975033219,1
|
||||
-1.4367868256520575,-0.746231041540316,-1.4560721070783327,-1.2108062565768563,-0.8172611772754116,-1.3262703117203352,-0.9620935870242383,-0.8400352833208501,-0.9608576635569538,0.3999852056930712,-0.7525840599597141,-0.6933151338512414,-0.9728639911960627,-0.7983837959878772,1.9485910417710788,-0.9318413930253611,-0.868374710035503,-0.2788473252000391,0.6047187340999256,0.11322378629913885,-1.3008691684246352,-1.0451286416552705,-1.3639847069295215,-1.0708239771438497,0.9093079381843032,-1.0736457315961958,-1.001705358903129,-0.6097006220751181,-0.2071946262572641,-0.0017613260287338431,1
|
||||
-0.566660315811235,-1.1828828052759066,-0.6241464192073252,-0.5699570225156161,-1.3804323479756766,-1.5383812933185932,-1.0488325828516143,-1.1999282351515697,-0.46315868354632567,-0.9552323534380381,-0.7718921699028285,-1.1607988868527102,-0.8125522412800208,-0.6813900086475203,-0.5745097610565467,-1.2919664910480424,-0.9038894252424413,-1.1980673642604955,0.004780526702648223,-1.4840853561994813,-0.7366488094750113,-1.4948494164719441,-0.8038236228090104,-0.6843039404622288,-1.4572988591613958,-1.395041224552883,-1.1778328600642027,-1.5266326791066285,-1.051873436201422,-1.4319476238737356,1
|
||||
-0.6465800870939742,0.41101543611958297,-0.5938768225829104,-0.6418674976247981,-0.7084842799209773,0.13378047932687667,-0.15504379976082713,-0.18213647129877555,-0.8099161696193041,1.052430794505527,-0.46048701210234405,0.4422343381900708,0.4526884755461398,-0.45733586874098775,-0.023169963583017383,2.267543246433644,0.9361110578598849,1.0696235413744324,-0.1503759062449233,2.873266419970204,-0.6426120829834072,0.31406462944493563,-0.42944105712947556,-0.6123222180553806,-0.9162257345197347,0.3566141539856187,-0.04795614161414863,0.12930905070558504,-0.7387597394117773,1.202641240535739,1
|
||||
-0.24698123068027794,0.40624328569624246,-0.1979309699635518,-0.30381776414584905,-0.6544815649223223,0.3228622686373242,0.5460827525224612,-0.26917487345423835,-0.9159831653592735,-0.2884077984809546,-0.25750431782857847,-0.7778881164983618,-0.18424520349248433,-0.2553560283326358,0.207623440010553,0.7308125777722122,1.064640503370709,0.30762792719264526,-0.6099344838324928,-0.0779746978210916,-0.2664651770169913,0.00812075661426219,-0.12216480039249901,-0.3004014209590386,0.18944543322626733,0.9221104074308056,1.1892744823055126,0.17370427134398206,-0.5603577493804686,-0.004433322848622567,1
|
||||
1.4546438995480435,0.22490156960933097,1.4434623179603485,1.4696214528850091,-0.046565287508884744,0.3252863941413044,0.6149492520451415,0.9357339677726306,0.030460796628149062,-0.7880768720067475,0.3935255430738651,-0.8087156785184152,0.43974851366950873,0.719960104495308,-0.9868125601846435,-0.6660033107379509,-0.2663157284321683,-0.12463871409781456,-0.893649104079481,-0.7261992359190332,1.681782900039829,0.37592213378774963,1.7250246510263358,1.6995998297936605,0.6175989492470596,0.17451821367786144,0.7728153662596238,1.4560431443992228,0.3498564854731507,0.1251585229159416,0
|
||||
-0.8730194390617351,0.2201294191859913,-0.7964878322463309,-0.8071910899101234,-1.1597926838383135,0.5458818150034931,0.28766941145640357,0.3744756592114259,3.298140165386449,0.09443217511974437,0.5910623601841882,1.4867208145274096,0.22192582207955017,0.012478805578621546,3.591391310405868,4.681850508377198,3.0286606268782172,4.797169369060535,2.134117858868847,1.9493460031569625,-0.9753574228767753,-0.5151602936371091,-0.9214362590083358,-0.8489893962718359,-1.3302642994629186,-0.3886730278646957,-0.521678386116347,-0.25248984678463043,0.15325021074476852,-0.7826523966409746,1
|
||||
-0.6032902109824902,-1.33559161882278,-0.5958296997844859,-0.6270623998082018,1.1391800403901657,-0.13311573866133172,-0.6130060215866515,-0.48971345827519736,-0.5284306809247693,0.7684462131491412,-0.573860273050374,-1.3546880269262045,-0.6141394925050092,-0.5813198509224352,0.2204452957657513,-0.8440060032637313,-0.5233746194538169,-0.6079731353360773,-0.017384678004147856,-0.6922769242202829,-0.5919769225648515,-1.6118771273907808,-0.6159259577698475,-0.6040334136570163,0.9892926609574186,-0.5507921983496609,-0.4777188127559475,-0.5805022269629417,-0.16350434298429017,-0.08592922585520361,1
|
||||
-0.6499100775640883,0.5947432274181648,-0.6592982088356776,-0.6503275535199959,0.1887322564138285,-0.41431429712302287,-0.6872834603575425,-0.7344121689613738,-0.40196618600403533,0.024334715164686774,-0.27433702906103685,-0.5055103810185471,-0.40853787602075814,-0.35137923114972114,0.4111704001243267,0.20846406520747662,-0.5025167708402181,-0.6632630545709036,-1.0281180126340432,0.3081228862410509,-0.538930564031126,0.12347664309140108,-0.5940281095885915,-0.5318335648186322,0.890488003414158,0.03852251142270104,-0.5465502499913097,-0.6054318508598876,-0.7879113080938729,0.2407223853760932,1
|
||||
1.8875426606628811,2.3222616806671676,2.1269693385116457,2.0583003422591957,-0.20317316100498614,2.683960509513938,1.6922180660070698,2.1871045895095333,0.43433128040726443,0.09263480435166542,2.353546242171032,0.054861683859135875,3.299480088405001,2.6510934055944695,-0.16861788980604886,1.9636172517717219,0.6407188234402712,0.8404216943646071,-0.055804366162594154,1.1691328340857003,2.2050128910315743,1.8153629780894445,2.6221300442584283,2.3976044107085515,-0.13990342525126556,2.289750802991177,1.0429353762504987,1.4714107207740523,-0.09614848960512275,1.248733185678806,0
|
||||
-0.13709154516651156,-1.1876549556992464,-0.13250958371078533,-0.27068254522299073,0.9154545068243072,0.48285455190001075,-0.28425047029385603,0.274737703716554,-0.030731700914141246,0.8241647069595722,-1.0318090345216746,-1.2141386816637239,-1.0540981963104696,-0.7910256961551504,-0.9323196732250506,-0.611592007345791,-0.7849433155811084,-0.4461244626668587,-0.40749228084375666,-0.3512034993219366,-0.25923158267148344,-1.1855618947578748,-0.33266669581231306,-0.36343995967291465,0.3870547483127873,0.11535624151036239,-0.34699692355265477,0.4366605782021807,0.6484067545051371,0.7651017612790944,1
|
||||
-0.8596994771812783,-0.20220589327957988,-0.786235226938061,-0.8237586993715529,0.05295400156006615,0.8949558875766271,1.3052539258320086,-0.4723677268847849,1.0911307540278465,2.675456598080315,-0.6159420511315207,0.9533228664172733,-0.1432686575498186,-0.6604194241242488,-0.0456082111546147,2.8567399317373185,3.4689303503166107,0.42826047825044794,0.03137877235080331,3.2803341603552107,-0.8017511585845832,0.42607686703867986,-0.6074493713771035,-0.771990765939662,0.17062549845612207,1.9201805612695257,2.885188549314604,0.2368820853293935,0.7958614605514231,3.199290864196977,1
|
||||
0.006098045048396046,-0.5768197015117533,-0.051953399145810736,-0.08350380854173728,-2.079381773529705,-1.0276180496299872,-0.868303973388588,-0.9416317100361233,0.10797129351504944,-1.1583352502308963,-1.0481466660120022,-1.2082571073309505,-0.8456210327425228,-0.7472450021504256,-1.3898996504886916,-0.7180827011275898,-0.9786394448684733,-1.2420982453965934,-0.9719661607101602,-0.7780078574225795,-0.184484441101234,-0.6037669890470853,-0.11156906740156888,-0.23539974436133945,-1.75183083831416,-0.2634340478218078,-0.615381687226672,-0.780451470684338,-0.3491880468944281,-0.32240094441528244,1
|
||||
-0.3235710114929031,-0.646015882650181,-0.36636662859940733,-0.37608074158399774,-1.2207386050510818,-1.0162246597612807,-0.5979209788340644,-0.6201161889066915,0.1732432908934931,-0.9228796796126271,-0.8565508058072526,-0.5341070010503073,-0.7730134688792032,-0.6839653435889747,-0.5925404957122943,-0.5066559222323398,-0.2285461106724085,-0.5207155900709333,-0.17845183220686472,-0.7428520071166018,-0.48829540361256984,-0.570330500213132,-0.4785346199874523,-0.49344331286831317,-1.005620424677922,-0.6476026982601141,-0.3955838204246751,-0.43673001243397847,0.2788597751545682,-0.8227323489392935,1
|
||||
-1.122768724320295,0.27500914905439894,-1.044503236846373,-1.0183399849611043,1.3089028589573686,0.8416251264890648,-0.1711126496494527,-0.4060822533571371,0.5526367756556928,2.8785594948731745,-0.16640964527644933,1.3954550059154092,-0.379063518412876,-0.5309168670682562,2.0447549599350667,1.1723214395828818,1.0511110880537804,0.8906852573053583,0.46286142397643165,2.1189575616507152,-1.1441412909386284,-0.4449436670858067,-1.1209892303375213,-0.986845301002527,-0.05050873509307754,-0.23039554388411343,-0.6668606612934553,-0.7951360436647309,-0.8880348739277705,0.5647019997875022,1
|
||||
-0.6166101728629471,-0.2642438487829975,-0.6807798580530039,-0.6242423811764691,-1.4197771831889836,-1.373540759047947,-1.2076190546081942,-1.1831710196476175,-1.6502931358667572,-0.19853926007703487,-0.6619844671497163,-0.531876059062014,-0.7924234116941501,-0.639080934609341,-0.820529118359415,-1.2049084056205865,-1.4702082013835556,-1.4192270411998005,-0.7503141136422007,-0.987709420651219,-0.6836024509412859,-0.5285348891706902,-0.7635598374434756,-0.6618369180140308,-1.4008390548509613,-1.236917408032476,-1.3711855729972855,-1.3654438780195248,-1.273965709505705,-0.7639484189017591,1
|
||||
1.8375928036111684,1.0648000441171337,1.907270653334443,1.8749991311965748,0.5760088696899008,1.4597771300039892,2.1267328844239812,1.3960153400253625,0.7810887664802428,-0.32435521384252225,0.7777074229676265,1.2778235192599419,1.0558344763513379,0.9590983490589305,1.535887559650632,0.7875557941668934,0.6700325566269504,0.9208433950698087,0.3136157122840054,0.36548243147712006,1.3852055318740009,0.8557357485549812,1.431876038277267,1.2873408741908028,0.7164036067903202,0.47570643562149373,0.5842519331610686,0.827680021517294,0.08953521430501518,-0.37851287763292896,0
|
||||
-0.3668608876043871,-0.6078386792634626,-0.42300006744508606,-0.4250785653103521,0.23733469991261782,-1.048223116413818,-0.6339939071554684,-0.4692702748507827,-0.8017571699469985,-0.9480428703657248,-0.6456468356593887,-0.6059027704917476,-0.7888289778395302,-0.5890458557467985,0.47487899590796867,-1.3040147082277351,-0.6434481803915606,-0.4720604611442864,0.41409797362148043,-0.8945772558055586,-0.5895657244496818,-0.94481917515341,-0.6600748452320567,-0.5931270920802212,-0.0693286698632228,-1.2621957052313166,-0.8149350136653267,-0.8385067592114728,-0.8880348739277705,-1.1827839204191881,1
|
||||
0.4056969014620917,0.7116609127899892,0.3527804008806363,0.31623383250636306,-0.36055250185821086,-0.6004871358286944,-0.3716453375452576,-0.3236900292526776,-0.695690174207029,-0.8923243765552937,-0.2807730657087417,-0.6856082433462279,-0.33880585924113454,-0.16301187543191378,-0.842165999946312,-0.9396144363670982,-0.633301118903864,-0.35947008015700394,-1.298533510056954,-1.0654223529065385,0.5292302009888886,1.049667383791911,0.47119624709959335,0.4431915841468564,0.36823481354264204,-0.22424884547710058,0.15275401570241168,0.769624732990159,-0.35646976077325726,-0.20550108354518737,0
|
||||
-0.2836111258515338,-0.14732616341117222,-0.36246087419625717,-0.349995569240471,-0.416869618928238,-1.4040847403980963,-0.8128828380584309,-0.4509953078501695,-1.303535649793779,-0.5705950090692614,-0.9075440192467595,2.3730132226039475,-1.0052138958876407,-0.7424622372591532,-0.9715866064753456,-1.3594365072543209,-0.7798697848372601,0.12667910060594093,1.030290664470408,-0.9741404959717189,-0.6281448942923912,-0.4349127204356209,-0.7028109682954756,-0.6127584709184525,-1.6026828552607635,-1.4498236741053854,-1.1363604730912995,-0.9868892466528847,-1.6089245479318368,-1.3437717288174347,1
|
||||
1.880882679722653,-0.03279455325101804,1.9267994253501948,2.0935505751558536,1.5249137189519915,1.6634036723383177,2.3694053113134266,1.9331135227213503,0.022301796955843462,0.6677934501367503,3.682340270051,-0.02220722119099791,3.356272143307994,3.62972068334714,-0.2888227875110334,0.7494678817923816,1.6413318312548022,1.270677793137437,-0.13264374247948674,0.8823351079053549,2.4171983251664755,0.1385230630666801,2.3572367194851727,2.674624978759149,0.866963084951477,1.3577576570278453,2.124572247091904,1.5380035517316482,0.17691578085096304,1.1679052818771967,0
|
||||
2.183911812503039,0.654395107709912,2.136733724519522,2.3614523451704534,-0.288034570288588,0.42467553980448847,0.3737525358597539,1.0549858710817168,-0.6875311745347235,-1.1205904641012499,1.0440603242341773,-0.5174763425921205,1.185952981888574,1.4016880539974506,-0.22791897267384112,-0.2586958396309251,-0.1981049262093186,0.7238102283420643,-0.7813454002317151,-0.8945772558055586,2.0265842305090436,0.16025678080875025,2.007577530784475,2.0791398206661325,0.0765258246053997,0.02085075350253898,0.14696986131288542,1.1708892272218254,-0.4766180397739348,-0.9656841788032966,0
|
||||
-0.4201407351262133,1.1769455790656185,-0.42397650604587417,-0.4465812073773135,-1.2500543646217799,-0.4918863132503861,-0.34131128418407697,-0.7257393032661676,-1.1117991574946022,-0.2902051692490323,-0.6055453765467668,-0.21487948381633215,-0.8075200338835531,-0.5824235658973441,-0.6442286017254376,0.04289824202847565,0.16324320788032323,-0.466229887843159,-0.8995598253346266,0.031193468918523766,-0.41113706392715155,0.9861380550073992,-0.48347929538321976,-0.4424017278889118,-0.39397254464821874,0.8491183638475274,0.8462741270066069,0.17199676285788978,-0.08158506184746443,0.9381135553668368,1
|
||||
-0.44678065888712637,-0.6484019578618503,-0.4288586990498117,-0.5174341754995957,1.586631107521883,0.3131657666214039,-0.2609670347409499,-0.34072601543968994,0.6383062722148988,0.7756356962214545,-0.5421751695539815,-0.1560637404885987,-0.7205347346017545,-0.583159375880617,1.1720674025968791,-0.522202008915814,-0.08535979856824479,0.12064747305305104,1.2223891052626394,-0.5405516755313259,-0.5630425451828193,-0.6706399667149925,-0.6247557352622893,-0.5994527585947623,1.2668866988170526,-0.459360059545344,-0.32328189055559714,-0.4066778630787558,0.5173359046862163,-0.4292808172107989,1
|
||||
1.045055071724005,1.1793316542772887,1.1114731936925757,0.9736506760290325,1.887503376800107,1.3094813487572237,2.7301345945274664,2.3698542595156655,1.8825537222414672,0.3622404195634246,1.1569385054400765,0.4584593708322042,1.0285167790562277,1.2302443278949151,0.5974879915670525,0.655414057357362,1.305351350884402,0.022130889689178666,0.189490565925948,0.3068893476338234,1.1995432770059624,1.1165403614598182,1.1210678705433135,1.1281085791695933,1.520955818214006,0.9297937804395717,1.8162768181301558,1.3109049230813858,1.1999965808264297,0.20131043228274706,0
|
||||
-0.033861840592973876,-0.774863944080355,-0.08124655716943747,-0.13109162295222543,-0.5449332002107636,-0.6884828916231718,-1.0599823970600482,-1.0485867287702204,-1.5564646396352444,-0.5975555705904381,-0.05402654381268153,-1.3966702988877246,-0.2395994848536288,-0.1839824599551853,-0.13816598238745256,-0.8416740902612102,-1.1005733004122948,-1.0762284876921149,-1.1034797086371495,-0.4887430540277797,-0.15313886560403292,-1.3226514989770837,-0.22812213030180123,-0.26222929544025547,-1.1232450169913266,-0.9818294241414407,-1.2124799448574648,-1.2773364401371676,-1.8419393920543627,-0.9155842384303983,1
|
||||
1.154944757237772,0.959812734803658,1.0235937196216949,1.0927964632197364,-0.6645106405649291,-0.79223546319352,-0.7589374134323312,-0.4776333953425887,-0.9078241656869679,-1.5699331561208485,0.16578886169354273,0.2941809153306035,0.006259790802363816,0.3704503624407826,-0.4210481749865162,-0.8805393069698959,-0.8345511717431808,-0.6713052246414238,-0.8315865309004525,-1.0968775873908345,0.9511898711435218,1.012887246074562,0.8420469017821507,0.8532692754343549,-0.3328077566452486,-0.6629694442776464,-0.7154475581654757,-0.43673001243397847,-0.7624253095179714,-1.112644003897131,0
|
||||
-0.6765500013250013,-0.3763893837314823,-0.7076319195746619,-0.6711251909290241,-0.8882361741307878,-0.9493187958514302,-0.7922228882016268,-0.6501614736365131,0.3609002833565163,-0.836605882744864,-0.7931805988144673,0.1339587179895361,-0.9592051425485075,-0.7527635770249707,0.3278283377155375,-0.5742813993054529,-0.7409727158010895,-0.4889490182923786,-0.2685903313478354,-0.9698231108464234,-0.6860136490564551,0.056603665423494494,-0.70669607039215,-0.6740519981800414,0.2741351396919184,-0.45398169843920766,-0.6547139370754503,-0.2822004944426348,0.41903276732202516,-0.783988395050919,1
|
||||
-0.7697897344881969,0.0006104997123606145,-0.773053305827429,-0.7522007265913373,-0.7540008539912733,-0.44510069102357025,-0.3336047949517769,-0.9140643869335034,0.9973022577963351,0.15554278123440973,-0.4000872835623455,0.5436407922034047,-0.2604472012104234,-0.5165685723944389,0.20081182914060366,-0.14909592851243159,0.9699345961522072,-0.4445160286527548,-0.15628662750006916,-0.010746843727204101,-0.6836024509412859,0.26223807175230807,-0.6332323216550334,-0.6681625845285719,-0.29046290341242303,-0.316449321582294,0.06483486898161299,-0.7049795955990628,0.2988844883213476,0.06904658969829508,1
|
||||
2.1506119078018973,0.5899710769948251,2.2392597776022165,2.259226669770146,1.6792071903767218,2.2282249147656796,2.9728070214169113,3.3021873217503375,3.1920731696464797,0.8798832007700007,1.0049490246058181,-0.30208903426779954,1.037862307078239,1.277336166824367,-0.5176127761428537,0.14938893581027438,0.2613314689280575,0.5388403167201005,1.1736256549076884,-0.00704622790552227,2.265292843910808,1.078088399300771,2.3572367194851727,2.42377958249286,1.3233465031274871,1.6466524821574513,1.675143451025716,2.7417970344266474,4.891825517392706,1.3756530346234814,0
|
||||
0.465636729924146,0.8047178460451152,0.4338248047460042,0.30847878126909856,-0.3597810345010875,0.23316962499006078,-0.351641259112479,-0.3456819386940935,-0.2428656923940812,0.24541131963832946,-0.8011018746885654,-1.3717243112004445,-0.8801275977468724,-0.5448972567504372,-1.3971119443509907,-0.6558983543936927,-0.5369040347707458,-1.0054573910715374,-1.1847521258954015,-0.48195859168802946,0.45689425753380847,0.4377796381305636,0.33345171821750025,0.3190776446029273,-0.045803751400541874,0.7300260822116527,0.6837393886609197,0.250542153218131,0.553744474080361,1.0630294066965962,0
|
||||
2.0806821079295,2.1981857696603333,2.0097967064171374,2.2486515999011485,0.1979898646993119,0.18953536591841913,1.1281686413451162,1.6763347491025649,-0.14087819649026403,-1.1637273625351319,1.9718397609879257,2.618416841316215,1.8940564512486695,2.380315331750122,-0.40381880631546857,0.14317050113688493,0.6897629539641384,1.160097954667784,-0.111956218086477,-0.5294498280662804,1.8770899473685454,2.1463842175455827,1.7885990489719177,1.9722578692135397,-0.6809765498929261,-0.3279743810954432,0.4436969814955812,0.9369605646271945,-0.5439738931531032,-1.0311481008905499,0
|
||||
0.9851152432619509,0.10082565860249658,0.8966567015193113,0.9063227311964164,-1.6033864141844119,-0.5660645536721769,-0.3885340267139149,-0.49807657876700345,0.23443578843578344,-1.640030616075906,0.5529412200400908,1.8010808219687444,0.6546956581757712,0.45138946060077806,-1.3358074465214487,0.3281689326702288,0.18579223340853807,0.018109804653918742,-0.6705193766977352,-1.1332669763040395,0.5581645783709199,0.44446693589735414,0.5630259330209885,0.44755411277757445,-2.0388348435588672,-0.49086188888128507,-0.32733079862826553,-0.4024090918635253,-0.625893174289929,-1.475367572196914,1
|
||||
1.684413241985919,0.5422495727614265,1.6387500381178621,1.7868735489549301,-0.39681146764302233,0.17741473839851865,0.5378843597221421,1.1064035748461538,-0.8343931686362197,-1.293138057836776,2.0871933409044803,-0.759432141867935,2.0975014074201486,2.270311739250855,-0.9347237711791502,-0.45613114051104836,-0.2578598438590879,0.5408508592377304,-0.8685285387451123,-1.0228652709571968,2.159200126843357,0.19536509408440086,2.1735773476423828,2.2667285517870095,-0.5539419901944488,-0.009882738532525559,0.13829362972859607,1.2118694308880384,-0.582202891016955,-1.0632120627292043,0
|
||||
-0.24365124021016388,-0.8822373286055001,-0.23064166308993542,-0.2967677175665175,-0.10751120872165307,-0.2569885519147147,0.29078480072052476,-0.27753799394604434,0.1446867920404241,0.047700535149705556,-0.47632956385054026,-0.7691671614532151,-0.538656381557994,-0.42496022947698964,0.7241038171496363,-0.17241505853764286,0.18071870266468976,-0.2963390451034205,1.1751033352214748,0.07560085877870627,-0.27369877136249954,-0.8211041664677826,-0.23624552559484788,-0.32614033988027535,0.7869783621783617,-0.07134972260265464,0.3245434010713408,-0.18282350055206875,1.780713262663039,0.3021783122335153,1
|
||||
-0.6599000489744304,-1.0468765182107227,-0.5821595593734599,-0.6707726886000576,1.540343066094464,0.824656247961204,-0.6246477393631046,-0.42621569157815153,0.8504402636948387,2.981009628653643,0.1435102732976416,-1.0508742907022564,0.3254455170925997,-0.34254951135044887,1.3595870430166548,1.944961947751553,0.03527748800770447,0.018109804653918742,1.7041128875570049,3.741677599458218,-0.6643128660199312,-1.4881621187051528,-0.6392365703498939,-0.6919383655659853,0.5329092427814085,0.12918631292614116,-0.8710413112437313,-0.8111866234339975,-0.2618074803484813,1.455812939220118,1
|
||||
-0.7298298488468276,1.289091114014104,-0.6671097176419779,-0.7638333034472344,2.1883756460783306,1.445232376980109,-0.49265361527796725,0.04707497921738989,1.4052522414116038,2.2009507153076213,-0.35404486754414977,1.6347742373868768,-0.2949537662147733,-0.4926547479380767,2.4454379522850154,0.9764407473711059,-0.4856050016940571,1.3370256962192277,-0.6114121641462794,1.521924875752706,-0.7053032339778098,1.133258605876794,-0.6441812457456614,-0.7397080540723483,2.151423633013855,0.6931458917695751,-0.6090191173981929,0.3905578490776912,-0.12345491665073133,1.1952932492810473,1
|
||||
0.6321362534298526,-0.2737881496296769,0.6623114373302946,0.55664042086157,0.14398714970065696,0.814959745945284,0.3991675535407432,0.6897962762728532,0.22627678876347782,-0.17697081086009378,0.6861176706733666,-0.3793607522259597,0.7158010337043074,0.7291577292862165,-0.4030174403307686,1.4163950005134276,0.03640493928411516,0.3639231176862863,0.05058861643002672,0.4857524456817809,1.0886281637081738,0.3123928050032383,1.1351955145312205,1.0299516849784367,0.4011696993903956,2.5048852472366274,0.8775085607100487,1.2477271090959743,1.6769488398897259,1.5359728438167557,0
|
||||
-0.16040147845731056,-0.49807921952664724,-0.222341934983241,-0.24917990315602934,-1.2238244744795763,-0.9362285181299377,-0.8753545911968624,-0.9001258527804934,-0.5569871797778372,-0.8617690734979617,-1.0337893534901992,-1.1348388346252967,-1.1015447231914506,-0.7770453064729694,-0.9547579207966476,-0.7686074828488811,-0.7189874159110801,-1.1110108732471144,-1.0089081685548202,-0.7909600127984662,-0.28334356382317666,-0.6204852334640623,-0.37434324557663834,-0.35624178743222995,-0.45984231634372513,-0.51698535711109,-0.6269499960057244,-0.6498270714982848,-0.23632148177257972,-0.39988885219203224,1
|
||||
-1.3435470924888622,-0.8011107714087237,-1.319858922268467,-1.1628659398374017,-0.024192734152298983,-0.27613914339615747,-0.8509233806519114,-0.6080361259740827,-1.6298956366859938,1.2771021405153262,-0.5812864691823412,0.08933987822366918,-0.42579115852293303,-0.7027284981624281,0.7834049000174289,-0.1529824501833,-0.938276689172969,-0.8462224236752377,-0.22130456130667056,0.08485239833291112,-1.1248517060172738,-0.40481988048506284,-1.0609467433889173,-0.982264645940273,0.5093843243187276,-0.08133810751405056,-0.92807307352446,-0.7282017110099166,-0.6714038860326099,0.6869458542973738,1
|
||||
-0.027201859652745162,-0.774863944080355,0.019326618711682075,-0.1374366648736237,0.42171539826517057,0.7858702398975227,0.04417714528692662,0.21371789864670995,-0.5080331817440059,0.692956640889848,-0.4382084237064429,-1.1184109890751366,-0.43945000717048815,-0.4043575499453544,-0.8253373142676144,-0.13510445049730452,-0.5453599193438262,-0.36268694818521174,-1.113823470833654,-0.13965162818245608,0.16031688936798047,-0.7609184865666665,0.20983483332331435,-0.031451530875269675,0.47174445477843835,0.9167320463246695,0.1915078501122373,0.5186209855346061,-0.5130266091680795,1.4157329869217994,0
|
||||
1.0583750336044613,0.4682812411996601,1.0626512636531973,1.0416836255195825,1.2857588382436593,0.2428661270059811,1.239666783429456,1.720628313188797,-0.2428656923940812,-0.19674188930895592,2.222350110506281,1.941021728507145,2.521644602265282,1.9436121066777832,-0.1289502735634039,-0.34342201205585987,1.0009395062535023,1.2927937608313673,-0.21391615973773837,0.2322602618965725,1.226066456272825,1.2937537522797706,1.3718335513286617,1.1673713368460559,0.6505338350948131,-0.2273221946806069,0.8514798659571806,1.2767547533595418,-0.4511320411980343,-0.3885328657075084,0
|
||||
1.9741224128858479,0.7426798905416976,1.9512103903698839,2.2451265766114825,0.23733469991261782,0.1725664873905583,1.1921161051876055,1.5855794045062994,-0.8343931686362197,-1.41176452852995,1.935698939812353,-0.3142578087493996,2.369959493600328,2.871836400576275,-0.11332363686175594,-0.26880079597518347,0.374640322207337,0.844442779399867,-0.9128589481587044,-0.8384512491767168,2.7523548631750128,0.9142496040143994,2.9117467460105217,3.427161167558016,0.9469478077245924,0.6155438243810372,1.6913390833163895,2.2346670140572646,-0.18716991309048467,-0.3778448784279572,0
|
||||
-1.735153971774284,-1.0945980224441207,-1.7387510820063332,-1.3955174769553438,-0.2972921785740714,-1.2804543396951114,-1.232968485146781,-1.3563805373890225,-0.2632631915748447,0.9769412222462337,-0.726839913368895,-0.7801190584866551,-0.8147089015927926,-0.845475634917329,0.9597054166514061,-1.1178503201931307,-1.5369533169470713,-2.2135923899154313,1.0893978770218635,0.026259314489614747,-1.6017866931977676,-1.3995554232951768,-1.6246397385064049,-1.238126950131888,-0.6997964846630707,-1.2625030401516675,-1.4159086547371023,-1.8428632507309033,-0.5075653237589585,-0.2222010636694868,1
|
||||
-0.23699125926993578,-0.09006035833109513,-0.1979309699635518,-0.3119253177120802,1.586631107521883,0.6670880902024979,0.7772774294914595,0.9171492555686176,1.3930137419031448,1.072201872954389,-0.3966217253674274,-0.5643261243462805,-0.4825832134259255,-0.3712461006980836,-0.09809768315245797,0.07554502406377164,0.10066966203952722,0.22921676900507323,-0.3409966667233684,0.17675102457134426,-0.05669094099725954,0.4244050425969819,-0.05505849144994123,-0.14705853958929851,2.2361133394795063,1.396174522071676,1.4796390326597297,1.7224144682296056,1.873555114618108,2.4110518023300447,0
|
||||
0.26916729218741225,-1.2067435573926055,0.3996494537184392,0.11636501198231308,0.6068675639748466,2.1336840201104565,1.1445654269457546,0.595014244032385,1.2216747487847328,2.202748086075699,0.8861298864943453,0.6876379569023386,1.6007506487116958,0.5558744782254994,1.281854542500765,2.3359460278409307,1.4383906015008692,0.96306478794004,1.003692418822253,1.2875525403795205,0.13379371010111796,-1.1822182458744794,0.3440474512084304,-0.03843157668441844,0.005951069217356934,0.9881874153061943,0.4460106432513917,0.0490561518592516,-0.0797646333777574,0.6862778550924011,1
|
||||
-0.3768508590147293,-0.5577310998183946,-0.3673430672001947,-0.4557462679304444,1.3320468796710787,0.3907377827487668,-0.5967732038420197,-0.42869365320535335,1.3603777432139235,0.7954067746703165,0.08014006630485633,-0.3426516158731331,-0.052688924413400375,-0.21047161935300193,0.2933696003734419,-0.5268658349208563,-0.42246773021505574,-0.36409432794755275,-0.24938048726861198,0.16811625432075314,-0.3508571110479182,-0.6137979356972717,-0.37893472987270843,-0.44218360145737584,0.7728634111007534,-0.28417915494547635,-0.5928234851075195,-0.4691726736697304,0.364419913230808,0.25141037265564437,1
|
||||
0.1293076924426187,0.8381228990084939,0.18239186504320531,0.023656899464102606,0.6608702789735027,0.48043042639603056,1.1658812482265846,0.5451452662849491,0.5689547750003029,-0.35670788766793327,-0.8144690277261062,1.377201844193009,-0.48402098696777335,-0.5813198509224352,-0.2659838569470861,0.2675391946046789,1.0815522725168703,0.3518598625805062,-0.7724793183489965,0.24644595587968612,-0.14831646937369436,1.4809980897499104,-0.002079826495290115,-0.21489585979696457,0.3258899603098172,0.29514716991548956,1.0331023137883042,0.48276330732666967,-0.3145999059699914,0.11380253643141777,0
|
||||
-1.1327586957306373,0.196268667069292,-1.1382413425219795,-1.006002403447274,0.9077398332530705,-0.8695650667704851,-0.4408397727799507,-0.40546276295033656,-0.20207069403255434,0.46648792411197093,0.023205895959775662,2.92060807427595,-0.036873415453073516,-0.40914031483662694,3.711596208110852,-0.662894093401256,-0.4856050016940571,0.06435228255940964,2.2198233170684576,0.12555917237141154,-1.0669829512532096,0.6768505332933304,-1.0835509737695679,-0.9248973944463303,0.9610627588022007,-1.0164046026808884,-0.7328000213340543,-0.6926855344991989,0.02217936092584776,-0.2890009841666845,1
|
||||
-0.37352086854461525,-1.3522941453044695,-0.3780838918088579,-0.41943852804688675,-0.5626769494246071,-0.3903154546336201,-0.5685707326089221,-0.5671497591252532,-0.7568826717493193,-0.07272330631154623,-0.20156030696775995,-1.039516767852763,-0.15980305328106967,-0.33703093647590376,-0.11332363686175594,0.41134049642681597,0.2314540101031731,-0.06432243856891323,-0.3587288304888055,0.6387112329779651,-0.41354826204232087,-1.5065521875638277,-0.4350921147246382,-0.4537443023287789,-0.5492370065019125,-0.10822991304473203,-0.39269174322991196,-0.4066778630787558,-0.5585373209107606,0.04833861434416443,1
|
||||
0.23253739701615697,-1.2830979641660423,0.20777926866368257,0.12588257486441046,0.23810616726974224,-0.1551752807475508,0.11517522693768993,-0.00929864780145084,-0.19391169436024874,-0.9714086903507436,0.24401146095026208,-1.1119209760182833,-0.0052423975324194716,0.10187971854625275,-0.7307761280730265,-0.33176244704325414,0.17395399500622521,-0.4748752206689685,-0.6424434507357938,-0.6632887669504414,0.20612965355619808,-1.3661189344612235,0.14626043537773312,0.0767391791665385,-0.41279247941836333,-0.3233643572901836,0.025502619132834616,-0.2743459554066106,-0.44567075578891213,-0.7566004276470675,1
|
||||
0.25251733983684194,-0.5219399716433457,0.20387351426053169,0.1512627425500043,-0.6807114550645259,-0.693331142631132,-0.38164737676164684,-0.4918816746989989,-1.5401466402906345,-1.4836593592530853,-0.726839913368895,-0.33656722863233285,-0.7888289778395302,-0.5283415321268018,-1.2989446112252534,-0.6574529630620402,-0.5222471681774062,-0.9783150670835316,-1.0635823401649167,-1.3182977673881333,0.13379371010111796,0.004777107730866919,0.05796266045331458,0.009119985390408421,-0.7938961585137944,-0.21426046056570464,-0.006310230009559688,-0.506225607817931,-0.7569640241088498,-1.0585360682944005,1
|
||||
-0.14042153563662563,2.188641468813654,-0.20232494366709602,-0.21498717724627103,-1.5478407644715093,-1.171368692016007,-1.0245653401626698,-1.010395145190973,-1.491192642256802,-0.7503320858771009,-0.98180598056643,-0.0445166410739316,-0.8398699385751311,-0.7148693628864274,-0.7351836409888758,-0.8051407865550456,-1.1137081077824798,-1.172332420034831,-0.785778441173074,-1.031500041207788,-0.2929883562838542,1.7083662138207936,-0.25602422717791773,-0.3189421676395904,-0.9538656040600245,-0.6852512260030682,-0.9569938454720912,-0.8557525949210039,-0.3218816198488205,-0.7479164379824315,1
|
||||
-0.33689097337336,-0.6746487851902191,-0.3736899181053144,-0.3908858394005938,-0.07588104707958387,-0.8094467542717786,-0.5934938467218921,-0.8561420338976616,0.9116327612371291,-0.7395478612686309,-0.6570336697284049,0.09542426546446944,-0.7349124700202336,-0.5923570006715255,-0.5043902373953054,-0.04726906073567495,-0.07746763963336954,-0.9409189762556128,0.9150315999950692,-0.7397681605985335,-0.48347300738223126,-0.2961512917747139,-0.5329260493408943,-0.5002052322459263,-0.25752801756467014,-0.4155648333953772,-0.26370510034347705,-0.8559233457696132,1.3347082875847656,-0.7472484387774597,1
|
||||
0.04938792115987944,0.5279331214914075,-0.01191941651352011,-0.06940371538307413,-0.34975195885847965,-0.6334552426828237,-0.9932474796654508,-0.7691036317421989,-1.0995606579861443,-0.6209213905754569,-0.5362342126484076,0.6714129242602053,-0.6479271707384351,-0.45144938887480623,0.24528764129144792,-0.6652260064037773,-1.1253208559295105,-0.19500770221486605,-1.0502832173408392,-0.2660893354232534,-0.1386716769130168,0.8139401375125395,-0.21505405961298762,-0.2428160430335601,-0.11167352309604767,-0.642224337153978,-1.0554979947257228,-0.48317424325568625,-1.1738421436718072,-0.37650888001801286,1
|
||||
-0.4867405445284957,-0.953819584955597,-0.5577485943537707,-0.5167291708416626,-1.2323106154079364,-1.4945046216965538,-1.060310332772061,-1.0131828520215749,-0.9812551627377172,-0.7665084227898064,-1.2471687223487187,-1.0088920187407362,-1.302114132279234,-0.932080469948524,-1.4071290191597394,-1.3570268638183822,-1.170926260060325,-1.4572262947830084,-0.37498331394045575,-1.2313332955786092,-0.6522568754440848,-0.8428378842098522,-0.7243556253770337,-0.6182116317068501,-1.2879194462300931,-1.207259588218639,-1.0548038961989796,-1.150980812166345,0.05494707338057846,-0.9336202169646411,1
|
||||
0.7153860151827065,-0.8416740500071119,0.7697196834169272,0.5996457049954927,-0.024964201509423408,1.0064656607597113,0.7412045011700554,0.8245354397519505,-0.01849320140568341,-0.36749211227640316,-0.14908185430185958,-0.8606357829732421,0.043641902890409506,-0.03939579824210261,-0.37577099685097226,0.7821146638276774,0.5572874289858767,0.7197891433068044,-0.7488364333284141,-0.14520255191497883,0.6883692765900645,-0.5736741490965273,0.704302372900058,0.5304421567612178,0.584664063399306,1.6358957599451787,1.4507182607120979,1.5397110602177402,0.269757632806032,0.6301659218747555,0
|
||||
1.474623842368728,0.36806608230952415,1.5020486340076027,1.5119217323609986,0.892310486110598,0.7082982237701594,1.339687175593349,1.571021379946489,0.29970778581422597,-0.43040008915914746,0.8796938498466408,-0.5059160068346004,0.4670662109646189,1.2147923182461886,-0.24074082842903943,-0.2812376653219629,0.10517946714517018,-0.11056491647440413,-0.6128898444600657,-0.3894431961459826,1.435840692292557,0.13183576529988955,1.3365144413588943,1.4531169621580895,0.8528481338738687,0.1437847216427969,0.7583549802858082,0.7354745632683151,0.36988119863993013,-0.2121810755949064,0
|
||||
0.7853158150551024,-0.06381353100272642,0.9161854735350623,0.6415934821425155,0.8768811389681246,2.051263752975133,1.9611253498575358,1.4474330437898,0.3649797831926685,0.9050463915230984,-0.3956315658831652,-0.5164622780519871,-0.07497441431204308,-0.22997058390972813,-0.8870424950895063,0.9655584866926737,0.6457923541841195,0.2171535138992931,-0.8655731781175395,0.4468959795541214,0.6377341161715084,-0.05373674772855179,0.7961320588214537,0.4453728484622154,0.25531520492177445,1.8110766645450467,1.491207341438782,1.1145414471807829,-0.1835290561510696,1.6361727245625521,0
|
||||
-0.9163093151732186,0.8118760716801251,-0.9053607362341448,-0.8625339555578765,0.03289585027485044,-0.33068196723570964,-0.4419875477719954,-0.6572856133147182,0.9932227579601828,0.6677934501367503,-0.431772387058738,0.5984002773706052,-0.4128511966463019,-0.6067052953453427,-1.3149719309192514,0.6313176229979768,0.4050815066704269,-0.15479685186226505,1.3864116200929295,0.8428618724740816,-0.9367782530340659,0.4762316002896101,-0.9380362406941265,-0.8511706605871949,-1.052670261603284,-0.43554160321816904,-0.5112669082151996,-0.7478380585999769,0.5428219032621178,-0.09928920995464259,1
|
||||
2.0007623366467615,0.2917116755360883,1.9756213553895732,2.082975505286856,0.6531556054022659,0.8585940050169256,1.0806179631032657,1.5648264758784847,0.06309679531737034,0.01355049055621561,0.6965143452581204,-0.6048887059516141,0.7805008430874631,0.9329770946527505,-0.6762832411134335,0.04989398103603906,0.1835373308557165,0.15482669585276182,-1.354685361980837,0.02132516006070546,1.8867347398292225,-0.030331205544784308,1.9828541538056383,1.7868504024080218,0.49997435693365494,0.7377094552204189,1.0047599572796255,0.9113479373358114,-0.5858437479563691,0.6381819123344189,0
|
||||
-1.2759482859455449,-0.35968685724979294,-1.2510200009129437,-1.1008255299392837,0.42171539826517057,-0.5410960609811818,-0.8212451987147563,-0.806582801353626,0.4220927808988066,0.2705745103914272,-0.5213818203844736,1.7098150133567442,-0.5681307391658761,-0.643495794508977,0.4111704001243267,-0.6139239203483122,-0.5842569883799968,-0.5965130429855862,0.18653520529837536,-0.3567544230544593,-1.1441412909386284,0.23883252956854056,-1.1435934607181726,-0.9659051635750802,0.4293996015456122,-0.727509777551282,-0.8056803666420849,-0.7331534856195839,0.042204074092627185,-0.3451129173843301,1
|
||||
-1.7141750318125648,-0.5243260468550159,-1.6972524414728616,-1.3704898115987165,0.6685849525447394,-0.516369980840585,-1.232968485146781,-1.3563805373890225,0.8096452653333119,1.649157889507554,0.7410715220499227,1.8396152744938115,0.43040298564749707,-0.20200980454536605,3.623445949793864,-0.21205757958050225,-1.5369533169470713,-2.2135923899154313,-0.16071966844142818,2.084418480648351,-1.3828499043403923,-0.43658454487731824,-1.4250867671772187,-1.1120498727041355,0.7022886557127106,-0.7981968092319301,-1.4159086547371023,-1.8428632507309033,-0.7751683088059221,0.45715412778701403,1
|
||||
2.0673621460490437,1.1506987517372498,2.180673461554962,2.1993012738458275,0.9848865689654356,2.1385322711184163,2.5104176674789147,2.608358066133837,1.8866332220776196,2.315982444464639,3.4892591706198575,1.158163903524208,3.7638809424218764,3.5487815851871454,0.47568036189266866,1.9379662087439895,2.7749840896858005,1.6788179242163355,1.1263398848665236,1.586068883328525,1.8746787492533756,0.6718350599682372,1.922811666857034,1.8959136181759737,0.17062549845612207,0.8007131138923009,1.4368362901772354,1.4406755680243928,0.7703754619755226,0.8606256475900871,0
|
||||
-0.35021093525381625,0.7856292443517556,-0.2330827595919042,-0.42261104900758606,1.0466039575353272,2.0439913764631927,1.54628667416139,0.7687813031399104,1.3726162427223814,1.9295477293277818,-0.3025565743625118,-0.20879509657553233,-0.22378397589330162,-0.3388704614340855,0.0826103463973688,1.258602220676164,1.102973846768674,0.800210844012006,-0.43409052649191177,1.3942536299046808,-0.1700172524102183,0.7922064197704694,0.03323928347447729,-0.26353805402947095,2.1937684862466797,2.300507525203449,2.2176971327632766,1.5328810262733712,0.97608387905244,2.838571293512109,0
|
||||
-0.823069582010023,-0.9824524874956356,-0.8057639989538127,-0.7793434059217639,-0.35823809978683974,-0.3401360567012321,-0.21948316717133534,-0.625072112161095,-2.527385600639584,0.06567424283049,-0.1624490073394004,-0.12969806244513166,-0.47898877957130576,-0.4256960394602623,0.23206510254389962,1.157552657233581,1.7974838330376897,1.2284564002672056,0.2825844256944908,0.8804847999945142,-0.8523863190031394,-1.2892150101431306,-0.8914150155340332,-0.7844239725372085,-0.8927008160570536,-0.5676956189689464,-0.4626800113431794,-0.7678159078872556,-1.92931995860031,-0.5034287289626883,1
|
||||
-0.7065199155560284,0.6114457538998541,-0.7476659022069525,-0.68804530271942,-0.6837973244930204,-1.1131896799204846,-0.9612737477442064,-1.0110146355977734,-1.1893096543815038,-0.5256607398673016,0.19301824751075522,0.0771711037420691,0.04795522351595308,-0.21599019422754714,-0.36855870298867294,-0.9817443312793135,-0.8785217715231998,-0.7167434855398628,0.6387053813170129,-0.979074650400628,-0.7053032339778098,0.05158819209840129,-0.755083251050731,-0.676887641790008,-1.0620802289883564,-1.142796088675091,-1.0964498078035685,-1.208523848147652,-0.7970134504424091,-1.0805800420584766,1
|
||||
-0.2270012878595936,-0.38354760936649224,-0.28825154053640223,-0.28725015468441967,-1.7808239063228513,-1.2203360271964048,-0.5220038615031096,-1.0141120876317757,-1.2219456530707251,-0.9803955441911358,-1.011015685352167,0.8701695741263397,-1.2187232668520553,-0.7645365367573336,-0.2066827740792938,-0.5206474002474666,0.19875792308726162,-1.131317352675178,-0.017384678004147856,-0.6824086153624646,-0.47382821492155414,0.40267132485491236,-0.5678919682109639,-0.4903895428268106,-0.9868004899077774,-0.646066023658361,-0.08670997602397429,-0.9942315331430811,-0.1889903415601917,-0.6564005469012709,1
|
||||
1.381384109205533,-0.5219399716433457,1.3409362648776542,1.2933702884017197,-0.44464244378468937,0.6695122157064781,0.5542811453227803,0.5807659646759747,-0.2714221912471503,-0.7197767828197689,-0.339687555022347,-1.1790520485751104,-0.4653299309237505,0.052580449666983,-1.0657471096775835,-0.52764313925503,0.14013045671390303,-0.2527102724708485,-1.0029974472996745,-0.5676895248903264,1.0789833712474959,-0.5669868513297367,1.0221743626279653,1.0146828347709236,-0.2245931317169166,0.24366857075675666,1.065493578369651,0.77816227542062,-0.052458206332148816,0.029634636604948927,0
|
||||
1.9707924224157343,0.6019014530531739,1.9365638113580699,2.139375877921509,-0.10828267607877749,0.848897503001005,0.8527026432543953,1.3356150253623194,1.254310747473954,-1.077453565667369,2.911501111552822,0.028496005815668825,2.8171070651150276,3.313322390539886,0.01088809076672824,0.7230395344304753,0.40564523230863203,1.2284564002672056,-0.11343389840026334,0.42469228462402986,2.368974362863089,0.5397609290741214,2.3289814315093595,2.578649348883351,0.19885540061133997,0.6808524949555493,0.6762199879545358,1.2648021939568963,0.362599484761101,0.049674612754107866,0
|
||||
-1.2060184860731484,-1.0325600669407031,-1.1636287461424561,-1.0627552784108931,0.2766795351259248,-0.09675385610163025,-0.6457995927879279,-0.7254295580627674,-0.6263386769924332,1.4820024080762635,-0.14462613662267929,2.711710779008482,-0.1252964882767198,-0.5522553565831642,4.2404977580127845,1.890550644359393,-0.06506567559285133,0.39207071293310686,2.51388169951195,2.097987405327851,-1.2116548381633696,-0.991630259520945,-1.1820912905852192,-1.0245811736582382,0.2317902864590935,-0.5477188491461545,-1.0016475173592336,-1.147224293496942,-0.7951930219727016,0.20531842751257828,1
|
||||
-0.31025104961244687,-0.7199842142119474,-0.3365852512753866,-0.3855983044660951,0.40628605112269817,-0.39152751738561004,-0.2237463314275012,-0.3125392019302696,-0.2306271928856234,0.5204090471543218,-0.78129868500332,-0.8281857176889754,-0.9613618028612794,-0.6133275851947969,0.7806001190709793,-0.18329731921607495,-0.22065395173753344,0.06234174004177967,0.9623173700362335,0.8447121803849228,-0.5220521772249407,-0.9163981596445498,-0.5491728399269871,-0.5265985304617706,0.8105032806410426,-0.2157971351674577,-0.11967965604427387,-0.03973428941754262,0.926932310370345,0.9374455561618642,1
|
||||
1.591173508822723,-0.45751594092825865,1.5313417920312302,1.6000473146026433,0.784305056113286,0.34952764918110535,1.1560431768662014,1.3275616500739136,0.7321347684464103,0.05848475975817548,1.7109327368848173,0.8296069925210061,1.672639325804091,2.065020753917776,0.5309746148369613,-0.10712149446705088,0.34701776593527367,1.0052861808102707,0.10526278804012323,0.7484961690211941,1.5298774187841613,-0.08550141212080775,1.4495355932621508,1.5752677638181956,0.9046029544917663,-0.04445791707197316,0.4766666615158806,1.0155059549874355,0.042204074092627185,0.18394245295347497,0
|
||||
-1.2359884003041754,-0.991996788342315,-1.2441849307074306,-1.0969480043206514,1.4014789418122071,-0.36292283643864487,-1.0552273292358632,-0.9568092250027342,3.9019061411370455,1.4011207235127348,0.7356256448864802,0.5456689212836716,0.5346415674314706,0.010271375628803406,0.29537301533519156,-0.8859804373091119,-1.1048576152626557,-0.5663549052211353,3.26454329891544,1.601488115918866,-1.177898064550999,-1.3310106211855723,-1.2184699738540796,-0.9994966340316093,-0.16813332740648212,-1.0466770923354267,-1.2905081875721736,-1.4024968121677257,1.2491481495085257,-0.10730520041430691,1
|
||||
2.097332060280071,0.11991426029585532,2.136733724519522,2.2098763437148246,1.3937642682409703,1.2925124702293629,2.264465883469342,2.5433115734197904,-0.255104191902539,-0.22909456313436694,0.3261946981440306,-0.3467078740336665,0.3160999890705884,0.6677175956829475,0.9256473623016604,0.3701433667156092,1.5894690725399083,1.6265438187579544,0.7052009954374007,0.400021512479484,1.4768310602504362,-0.05708039661194706,1.470727059244011,1.422579261743063,1.6668103126826284,0.4557296657987019,1.6543204952234218,1.8675526895474421,0.2934232029122265,-0.07056524414084762,0
|
||||
1.9341625272444791,0.5279331214914075,1.9512103903698839,2.0442002491005327,1.10832134610522,1.559166275667173,2.003756992419195,2.6052606140998353,1.152323251570137,-0.3261525846105999,1.8733188923038302,-0.7809303101187616,1.4497844268176652,2.195994930940314,-0.2511585862301381,1.3736432621338732,0.6232433286559048,1.9241041113672015,0.4081872523663346,0.7491129383248079,1.848155569986513,0.01982352770614593,1.7003012740474992,1.924270054275641,0.6270089166321322,1.456873168840928,1.1892744823055126,2.3063823704731368,1.3510921438121308,0.3856782128550124,0
|
||||
-0.4700905921779248,-0.4121805119065312,-0.46791624308131424,-0.5040390869988657,-0.4593003235700384,-0.4674026456601869,-0.6412084928197492,-0.6225941505338932,-1.0628451594607697,-0.24167615851091578,-1.0595335000810182,-0.792896271692335,-0.9455462939009525,-0.8252408603773302,-1.1943663502219168,-0.6745536584138618,-0.7781786079226439,-0.7869114194051514,-0.6468764916771528,-1.1196980516245392,-0.44489383753952194,-0.1791235808558771,-0.4075432089482201,-0.47882884195540776,-0.16342834371394646,0.12073460261649852,-0.2428821445411825,-0.04485681487581912,0.2988844883213476,-0.3471169149992462,1
|
||||
-0.08714168811480004,1.0003760134020465,-0.1388564346159043,-0.1758594187309807,-0.21397370400471732,-0.6814529276616295,-0.7453280813838016,-0.5996730054822766,-0.4998741820717003,-0.6820319966901223,-0.10501975725218866,0.3327153678556706,-0.3610913491397772,-0.11408051154428031,-0.3641511900728236,-0.10867610313539824,-0.39766380213401953,-0.3912366519355587,0.16732536121915195,-0.47702443725912047,-0.13384928068267823,0.6149930289505164,-0.23942424549212707,-0.211623963323926,-0.44572736526611684,-0.6391509879504714,-0.8091508592758007,-0.6178966628083608,-0.41654390027359656,-0.8200603521194056,1
|
||||
1.7743229846790005,-0.11153503523612414,1.7315117051926812,1.8644240613275775,0.7765903825420504,0.7543566083457816,0.9363262498176498,1.4294678219925872,0.5322392764749294,-0.3944526737975786,1.7837094589780946,0.0426929093775358,1.6309438930905018,2.5076104588562957,-0.1277482245863539,0.05222589403856037,0.12321868756774206,0.8786220021995778,-0.1799295125206516,-0.46160520466877913,2.4678334855850315,0.45616970698923787,2.3219176095154053,2.87530129577218,1.473905981288644,0.8929135899974946,0.827764832960123,1.7275369936878822,1.212739580114381,0.07572658174801504,0
|
||||
-0.7597997630778547,-0.16164261468119212,-0.7886763234400305,-0.7416256567223399,-0.7833166135619714,-0.8976849226166542,-0.6808887139732936,-0.8059633109468255,-1.1036401578222967,-0.5777844921415747,-0.9189308533157757,-0.8241294595284421,-0.9096019553547547,-0.7891861711969687,-0.02717679350651705,-0.4180432281365363,-0.3644039894799027,-0.7062886644481865,0.22199953282924845,-0.3629221160905958,-0.755938394396366,-0.2326219629902026,-0.7656789840416611,-0.7235666981386913,0.14710057999344245,-0.4155648333953772,-0.3400559382852233,-0.42768021745769,0.6174594705201144,-0.2121810755949064,1
|
||||
-0.20369135456879456,-1.020629690882354,-0.2584701632123814,-0.25164741945879515,-1.6728184763255403,-1.0916149629350618,-0.69826930670997,-0.5361752387852309,-1.633975136522146,-1.5501620776719862,0.19054284880009953,-0.038432253833131334,0.0954017503969343,0.0739189391818908,-0.9198985004622022,-0.9333960016937084,-0.7714139002641794,-0.03818538583972266,-1.3369531982154004,-1.1850755978075858,0.10968172894942428,-0.5118166447537132,0.004983995498663467,0.008247479664264857,-1.4337739406987149,-0.8535170948950465,-0.635047812151061,-0.13364725615261358,-1.5361074091435472,-1.3190557582334719,1
|
||||
2.207221745793838,2.0931984603468576,2.166026882543149,2.4531029507017643,-0.2810913640744746,0.28650038607762274,1.3150919971923918,1.2268944589688409,-1.3810461466806792,-1.0576824872185067,0.7762221837412332,0.03458039305646909,0.8617350482018701,1.3122871410298196,-0.7039303675855798,-0.13743636349982583,0.41184621432889107,-0.020090503181052297,-0.9985644063583152,-0.2895265689605721,2.0651634003517527,2.000935491117886,2.0605561957391263,2.2798161376791635,-0.41279247941836333,0.31666061434003495,0.9822017551604735,0.8259725130312016,-0.78973173656358,0.0984385547170627,0
|
||||
-0.14708151657685434,0.6066736034765136,-0.188166583955676,-0.2118146562855719,-1.0502443191267548,-0.8550203137466044,-0.7230284529669336,-0.7272880292831687,-0.010334201733377811,-1.0666693410588977,-0.6372304800431595,-0.7006163985402013,-0.7162214139762108,-0.508106757586803,-1.4011187742744904,-0.8836485243065908,-0.7533746798416077,-0.8301380835341973,-0.8773946206278308,-1.276974224046019,0.006000209997143052,0.8089246641874462,-0.06565422444087135,-0.08489250660156604,-1.019735375755531,-0.23500556768937303,-0.2099124645208831,0.05588618580362035,0.22424692106335103,-0.6911365055598141,0
|
||||
-0.35021093525381625,-0.7891803953503741,-0.3487907337852311,-0.4095684628358227,-0.37289597957218984,-0.31250102595585894,-0.27621604534954336,-0.4029848013231349,-0.33261468878943945,-0.4807264706653417,-1.0758711315713458,-1.3881521567506045,-0.9872417266145418,-0.8351742951515114,-0.7628307674610224,-0.34419931639003354,0.3334883506183449,-0.5327788451767138,-0.550827271281037,-0.6583546125215324,-0.4376602431940141,-1.0133639772630145,-0.39341556496031294,-0.48210073842844636,0.07182084091286273,0.2006416819076664,0.5946634110622159,-0.17240769878690637,0.2460920626998375,-0.2529290270981969,1
|
||||
-0.9895691055157296,-1.5956738168947986,-1.0200922718266838,-0.9143517979159635,-0.7756019399907346,-1.172580754767997,-1.0303042151228932,-0.9323393539341166,-1.376966646844527,-0.2686367200320912,-0.9501208770700372,-0.2939765179467328,-0.9354818791080172,-0.8554090696915103,-1.3217835417892003,-0.7911493085399188,-0.9326394327909151,-0.32508980310553,1.4292643491927348,0.04414562429441044,-1.0935061305200726,-1.7707004493520595,-1.128053052331475,-0.9480187961891361,-1.7857067209004212,-1.2280046953423074,-1.2490936421431658,-1.2974850402730553,-1.3249377066575079,-1.0271401056607177,1
|
||||
0.34575707300003744,-0.9800664122839657,0.31323463754873965,0.2249357293040192,-1.0996182299826684,-0.2446255118444163,-0.3247505307274323,-0.3586912372369028,-0.4060456858401887,-0.9192849380764705,-0.6070306157731602,-1.4978739399930319,-0.5336241741615262,-0.4058291699118999,-1.4047249212056399,-0.3644092290785501,-0.2347470926926677,-0.5249377293579565,-1.2202164534262747,-0.6028453751963041,0.3073999743933096,-1.2022801391748517,0.269877320271919,0.1740235676315515,-1.1561799028390802,0.33971073336633334,0.4066783934026132,0.11564898281684732,-0.33280419066706374,0.06169859844360341,1
|
||||
1.3680641473250756,0.3871546840028837,1.3555828438894677,1.2993628279941518,0.6454409318310292,0.8440492519930447,0.7362854654898641,1.3768111374145489,0.8382017641863798,-0.20033663084511255,0.4281811250230446,-0.605699957583721,0.35420098792955795,0.5691190579244078,0.181979728500156,0.414449713763511,-0.12256569068979903,0.7620105361770354,-0.8271534899590933,-0.012597151638045017,1.2477672393093489,-0.00023836559422628315,1.1917060904828483,1.1390149007463886,0.8057982969485069,1.0650211453938556,0.49344070924550676,1.5277585008150947,0.3443952000640286,0.21533841558715774,0
|
||||
-1.1294287052605232,0.06026238000410797,-1.1045542107948085,-1.0116424407107392,0.35922654233815554,-0.23759554788287407,-0.7418847564076675,-0.9843765481053542,1.7560892273207345,0.5401801256031864,-0.06046258046038641,0.7342849257484725,-0.1914340712017237,-0.412451459761354,0.3278283377155375,-0.015399583034552647,0.08657652108439297,-0.4817110652289105,1.0879201967080772,0.05833131827752431,-1.052515762562194,-0.35132149835073734,-1.0644786543858937,-0.9248973944463303,-0.4316124141885086,-0.6629694442776464,-0.9539282436456422,-1.2959482826355724,-0.08158506184746443,-0.41992882834119116,1
|
||||
-0.869689448591621,-1.4501232289829347,-0.8238281130683829,-0.8346862715695167,2.1960903196495676,0.3761930297248865,0.062377577303634996,0.3627053414822175,0.9442687599263504,1.3184416681811282,-0.5496013656859485,-0.3775354360537197,-0.5458452492672335,-0.6732960988315208,-0.056827334940413005,-0.35896809873933405,-0.3525657510775898,0.12667910060594093,0.19835664780866655,0.22485903025320858,-0.7390600075901806,-0.8160886931426894,-0.6862109866096845,-0.765010720130513,1.4080362095931382,0.061572630448999445,-0.11620916341055802,0.4076329339386132,0.8595764569911765,0.6909538495272051,1
|
||||
-0.9729191531651588,-0.3382121803447639,-0.9395360872617091,-0.9076542536655985,0.12624340048681237,0.046996786284389226,-0.37000565898519366,-0.49281091030919966,-0.6834516746985713,0.4089720595334622,-1.0719104936342967,0.8336632506815395,-1.0088083297422605,-0.8921995688551445,1.0915301211345396,0.885496140272781,0.9440032167947602,0.49259783881460917,-0.9631000788274416,0.10952317047745676,-1.0332261776408393,0.18366232299251772,-0.9864234213527074,-0.9146454521641428,0.5517291775515538,0.12380795182000505,-0.18793267784068343,-0.15908913259538718,-1.0591551500802512,0.06503859446846386,1
|
||||
-1.7528029212658887,-1.7292940287483127,-1.7426568364094834,-1.4050350398374414,0.1763887786998495,-1.0390114394986936,-0.8950307339176281,-1.1148102532571882,-0.4223636851847988,1.8091238878665314,-1.0461663470434777,-1.2013614684580438,-1.094355855482211,-0.9572451713764499,1.3355460634756575,-0.9201818280127553,-0.42021282766223417,-1.0591388762922596,0.17175840216051094,-0.35058673001832286,-1.5427123393761193,-1.6737346317335946,-1.570248309152963,-1.203881100380751,1.9867492037750887,-0.8527487575941698,-0.7403194220404385,-1.0883152507267613,0.6356637552171868,0.5647019997875022,1
|
||||
-0.5566703444008921,-1.1804967300642368,-0.5494488662470762,-0.5678420085418165,-1.0919035564114319,-0.4206170234333714,-0.11159231791913597,-0.5714861919728563,-0.5733051791224484,-0.04756011555844976,-0.4981130725043103,-0.691692630587028,-0.33880585924113454,-0.5290773421100745,-0.9503504078807982,0.611885014643634,0.911870855417054,-0.0281326732515725,-0.07796957086938971,0.7805681728091037,-0.6691352622502698,-1.023394923913201,-0.5901430074919172,-0.647658699964197,-1.3396742668479913,0.06310930505075271,0.36329723548116644,-0.2822004944426348,-0.3528289038338432,0.42976616038316245,1
|
||||
-0.7065199155560284,-0.21413626933792954,-0.7339957617959265,-0.6767652281924893,0.3430257278385587,-0.8833825821431716,-0.792714791769646,-0.26762614743723717,-0.6834516746985713,0.19149019659597613,1.3752686717199074,1.8923466305807448,1.1284420402146573,0.5433657085098637,-0.4731369639920095,-0.959047044721441,-0.8198943051498412,0.665504495330793,-0.5892469594394834,-0.3690898091267323,-0.6136777056013755,-0.33794690281715567,-0.6802067379148244,-0.5959627356901878,-0.8174210769764753,-1.1920465096612818,-1.0619184060980968,-0.6202871746888898,-1.6253084041592016,-0.8454443219083402,0
|
||||
-1.3785119924250602,-0.8034968466203936,-1.3930918173275346,-1.1744985166932989,-0.3752103816435599,-1.1803379563807332,-1.052111939971742,-0.9205690362049082,1.2012772496039694,0.236424465797936,-0.4892016371459498,0.4807687907151379,-0.5882595687517469,-0.6604194241242488,2.8140663052469677,-0.9108541760026707,-1.0664115267370493,-0.30920651721625275,-0.25972424946511685,0.5579144542045774,-1.243000413660571,-0.7575748376832713,-1.2809847985005678,-1.0287255758574203,0.7352235415604642,-1.0847866224589067,-1.1820552927685568,-0.9619596227559386,-0.05427863480185585,-0.003765323643649922,1
|
||||
0.7486859198838471,0.3919268344262234,0.8820101225074973,0.6193858354176208,1.6792071903767218,2.584571363850754,1.590557995283113,1.8278001535652744,1.5398757360046422,2.1128795476717794,0.9999982271845067,-0.20068258025446561,0.9242781972722544,0.7298935392694893,0.0998397150684168,0.20380023920243454,0.26020401765164675,0.3940812554507372,-0.42079140366783424,0.4845189070745535,1.2188328619273174,1.01455907051626,1.1457912475221512,1.0648519140241812,2.2502282905571143,1.447653121230409,1.3512308052122468,1.6968018409382226,1.5203919914949036,2.163892096490413,0
|
||||
0.39903692052186357,1.5992808915311896,0.388908629109776,0.3296289210070933,0.5528648489761917,0.051117799641155474,0.7920345365320338,0.6733797804926417,-0.5692256792862951,0.5096248225458531,1.4168553700589226,0.6774973115010055,1.15432196396792,1.067998226583288,1.4998260903391367,0.14938893581027438,1.2320670179177038,1.296814845866627,0.21608881157410312,0.9316766521944466,0.6280893237108313,1.3054565233716542,0.5948131319937793,0.48681687045403704,1.6432853942199475,0.00548400748500671,0.9145271488030163,0.7627946990457906,-0.39469875863710907,0.8399176722359564,0
|
||||
-0.0904716785849141,1.417939175444278,-0.09686957478203892,-0.1423716974791557,-0.02727860358079346,-0.2538371887595405,0.18125427290826165,0.03406568067458039,-0.724246673060098,-0.5562160429246349,0.4420433578027166,0.2394214301634034,0.2104236337447672,0.3237264285029673,-0.36254845810342395,-0.5836090513155373,-0.04477155261745807,-0.2189331581746638,-0.751791793955987,-0.6176478384830316,0.26158721020509196,1.6481805339196776,0.14979234637470965,0.17380544120001556,-0.21518316433184398,-0.3118392977770344,0.4170898713037606,0.1788267968022588,-0.4001600440462312,-0.5234687051118482,0
|
||||
-0.3868408304250715,-0.3262818042864143,-0.44204062016044365,-0.429308593257951,-1.2554546361216454,-1.2208208522972008,-1.0030855510258339,-0.7879980891496124,-1.336171648483,-1.1439562840862685,-0.35553010677054325,-0.584810228056974,-0.33017921799004707,-0.4084045048533543,0.22445212568925063,-0.8276826122460834,-1.233499805901121,-1.0830643322520568,-0.04989364490744829,-1.3423517702290655,-0.502762592303586,-0.7442002421496896,-0.5470536933288009,-0.523544760420268,-1.1420649517614712,-1.0667306958883065,-1.2152563389644373,-1.2261111855544016,-1.2848882803239485,-1.4399636143333996,1
|
||||
-0.2270012878595936,-0.7677057184453451,-0.291180856338765,-0.30240775482998283,-0.7810022114906002,-1.0441021030570519,-1.2090127813842486,-1.2553726265602096,-0.6304181768285854,-0.5148765152588316,-0.8758589157503669,-1.2137330558476704,-0.9807717456762263,-0.6931629683798832,-1.2600783609673085,-1.129198963472067,-1.4733650649575056,-1.7338769452089027,-0.930591111924141,-0.475790898651893,-0.3605019035085954,-0.8294632886762711,-0.43650487912342917,-0.4142634182207803,-0.8597659302093008,-0.7705366664003722,-1.3511261255744087,-1.4159861292078537,-0.4001600440462312,0.1365145094004645,1
|
||||
-0.6898699632054576,-0.3930919102131716,-0.7208138406852945,-0.6845202794297542,0.42171539826517057,-0.9687117998832708,-0.8471521199637647,-0.8753462365084754,-0.2795811909194547,-0.7197767828197689,-0.8976424244041369,1.5293115252130096,-1.1195168924645496,-0.7310571825184266,0.422389523910125,-1.058075616895172,-0.6597962238995163,-0.9590138589142833,1.721845051322442,-0.8440021729092395,-0.8041623566997526,0.17864684966742453,-0.8755214160476382,-0.735781778304702,0.21297035168894826,-1.0363813725036801,-0.9067295438271082,-1.107610096619603,0.5992551858230419,-1.0718960523938403,1
|
||||
2.103992041220299,1.859363089603208,2.1318515315155833,2.153475971080172,0.29442328433976833,1.7288550609457798,1.4577440319179438,2.5618962856238037,0.3609002833565163,-0.2884077984809546,3.0144776979160977,1.4603551364839424,3.277913485277283,2.548080007936293,0.6660047832588941,1.8928825573619137,1.7912828510174308,2.885143434794363,2.5656005104944746,0.5733336867949185,1.997649853127012,1.4040941654318173,1.9651945988207546,1.8413820102919978,-0.15401837632887386,0.8199215464142163,0.7259637157044614,1.831695011339506,0.7285056071722558,-0.36648889194343337,0
|
||||
-1.1960285146628062,2.04547695611346,-1.1895043690633267,-1.0634602830688265,-0.3806106531434255,-0.4606150942490429,-0.24932531696449672,-0.5082981704792108,-0.7895186704385406,-0.09608912629656627,-0.7293153120795507,2.1641159273364794,-0.8132711280509447,-0.7314250875100629,2.1128710686345578,0.38646675773325706,1.171184648991524,1.246551282925876,-0.19322863534472912,0.9754672727510154,-1.2212996306240471,1.5879948540185602,-1.2287125157453123,-1.0234905415005586,0.34470989507996114,-0.49086188888128507,-0.25907777683185595,-0.28442025547455446,-1.1738421436718072,0.06837859049332337,1
|
||||
-0.9096493342329904,-1.4214903264428962,-0.935630332858559,-0.8501963740440462,0.17793171341409728,-1.0775550350119771,-0.9079841945421323,-0.8031756041162235,0.17732279072964535,-0.13563128319429055,-0.7035711654887317,-0.7918822071522018,-0.8190222222183363,-0.6938987783631559,0.8984009188218638,-1.0418299563109414,-0.8627374536534493,-0.5585137894023783,0.6121071356688573,-1.0715900459426748,-0.9440118473795738,-1.5232704319808041,-0.9927808611472658,-0.842009350462687,0.14239559630090548,-1.1154432807638837,-1.0043082283784157,-0.9027090782885393,-0.021510922347126166,-0.9409682082193328,1
|
||||
-0.9396192484640176,-0.9729081866489558,-0.9053607362341448,-0.8783965603613726,0.6222969111173201,-0.11178343422630707,-0.3480339662803386,-0.321521812828876,-0.04297020042259908,1.305860072804582,-1.02537299787397,-0.708728914861268,-0.872219843266709,-0.8660783144489642,0.2561060820848966,-0.2812376653219629,0.01780199322333794,-0.18294444710908592,0.5529999231174018,-0.2710234898521627,-0.9608902341857593,-0.9214136329696431,-0.8688107851533821,-0.8437543619149742,0.5046793406261919,-0.10669323844297876,-0.08613156058502172,-0.00729162818179088,0.7831184612634728,0.6007739568559889,1
|
||||
-0.22367129738947894,2.1528503406386053,-0.2516350930068684,-0.29853022921135036,-0.6575674343508169,-0.6499392961098883,-0.7431964992557186,-0.3419649962532908,-0.6467361761731966,-0.7179794120516899,-0.6540631912756181,0.862057057805273,-0.7399446774167013,-0.6067052953453427,-0.7227624682260275,-0.6737763540796882,-0.6924923109154277,-0.38058077659211925,-0.3690725926853104,-1.2418183737400412,-0.3701466959692729,1.9658271778422347,-0.41955170633794064,-0.43018664772290116,-1.1232450169913266,-0.7436448608696907,-0.8016314585694166,-0.4840279974987325,-0.7241963116541196,-1.1607399466551132,1
|
||||
-0.00389192636194673,-0.6746487851902191,-0.07392326766353115,-0.10359644129283203,-0.6020217846379141,-0.9856806784111317,-0.9866887654251956,-0.709632552689356,-1.4789541427483441,-0.5346475937076938,-0.5590078807864399,0.3874748530228707,-0.5976050967737582,-0.5003807527624399,-0.45630827831331183,-1.123135989665512,-1.24077186663397,-0.9988226007633582,-0.6350550491668615,-0.7829420118514887,-0.19171803544674226,0.02818264991463381,-0.26909229786673183,-0.2888407200876358,-0.7421413378958962,-1.0302346740966672,-1.110216095250641,-0.8941715358580784,-0.9262638717916228,-0.7131804793238892,1
|
||||
-0.6632300394445445,-0.40025013584818153,-0.6754094457486723,-0.6609026233889933,2.103514236794729,-0.5692159168273512,-0.2608030668849434,0.9369729485862315,0.9320302604178925,-0.5490265598523216,1.3564556415189242,2.2736348976708802,1.0443322880165546,0.5334322737356826,2.9663258423399483,-0.5828317469813636,-0.822712933340868,1.6265438187579544,1.040634426666913,-0.2185980990450028,-0.8451527246576311,-1.0735496571641312,-0.8794065181443127,-0.7730813980973416,0.22708530276655653,-1.1617740200067435,-1.002168091254291,-0.31532615907282335,-1.1847647144900504,-1.4346196206936235,1
|
||||
-1.7594629022061168,0.4635090907763204,-1.7270338187968828,-1.4145526027195388,2.2423783610769856,-0.14426671597964022,-0.7410649171276357,-1.0695874535607557,0.16916379105733975,1.0362544575928228,-0.04462002871218989,1.8152777255306114,-0.054126697955248444,-0.5868384257969803,2.064789109552564,0.7175984040912593,0.1542235976690373,-0.35203107284177265,2.0439793597278766,-0.19022671107877506,-1.528727390308137,0.27226901840249385,-1.4939590316182654,-1.20606236469611,1.5444807366766868,-0.5000819364918044,-0.8952769181358462,-1.368517393294491,0.1841974947297922,-0.3130489555456756,1
|
||||
-0.9795791341053874,-0.10676288481278445,-0.9590648592774608,-0.892144151191069,0.39857137755146144,-0.5086127792278488,-0.42231140505122955,-0.44820760101956747,-1.2260251529068773,0.78102780852569,0.06132703610387304,1.158163903524208,0.3232888567798278,-0.3149566369777232,1.0987424149968381,-0.0814704514393183,-0.41513929691838586,0.10858421794727056,0.15550391870886074,-0.40424565943271024,-0.8451527246576311,0.02818264991463381,-0.7628534552440798,-0.7730813980973416,0.2459052375367018,-0.5415721507391417,-0.5991860549359985,-0.4961513077499871,-1.1283314319291262,-0.2996889714462357,1
|
||||
0.27582727312764094,0.6090596786881838,0.26929490051329885,0.11918503061404555,1.4246229625259161,0.9919209077358311,0.8871358930157353,1.1596797498309923,0.9809842584517239,1.0380518283609004,0.2742113252202613,-0.0445166410739316,0.11984390060834862,0.21151540605388294,-1.24925992017386,0.478965973499929,-0.08705097548286082,0.343817692509986,-0.2316483235031754,0.4635487507516894,0.47377264433999383,0.8841567640638414,0.40055802716005856,0.3461253221133793,0.2694301559993827,1.4914483473803757,0.6588675247859571,1.2887073127621873,1.5058285637372462,1.8432524781038644,0
|
||||
-0.846379515300822,-0.10199073438944477,-0.8433568850841339,-0.8174136574501544,0.7457316882571035,-0.2567461393643168,-0.5275787686073266,-0.552901479768843,0.5730342748364563,0.05489001822201884,-0.6149518916472584,-0.3284547123112661,-0.7744512424210511,-0.594196525629707,0.7212990362031867,-0.4646814881869591,-0.35369320235400054,0.012078177101028504,0.6800804301030319,-1.3195313059953606,-0.8282743378514458,-0.39813258271827173,-0.8903554422349401,-0.7595575593421154,0.8105032806410426,-0.5953557618005044,-0.4765619818780424,-0.38430950191094815,0.3443952000640286,-0.9336202169646411,1
|
||||
1.7643330132686579,0.8238064477384739,1.829155565271438,1.8503239681689143,-0.7717446032051167,1.1446408144865772,0.5936334307643119,0.7412139800372906,-0.07968569894797373,-1.1709168456074452,0.33906677143944014,-0.20068258025446561,0.9091815750828514,0.7313651592360346,-0.5019861394412057,1.1342335272083695,-0.011511739963341256,0.2412800241108537,-0.825675809645307,0.025025775882387292,1.797520409567957,1.111524888134725,2.1912369026272662,1.8784635036531012,0.053000906142718775,2.4987385488296154,0.8196670168147863,1.0735612435145705,0.5865121865350907,0.6949618447570372,0
|
||||
-0.5433503825204359,0.8118760716801251,-0.578742024270703,-0.5519794037383204,-1.0271002984130446,-1.0564651431273504,-0.9519275799518426,-0.9657918359013408,-0.9894141624100217,-0.36749211227640316,-0.7095121223943054,-0.06682606095686483,-0.7126269801215911,-0.5997151005042524,-0.6734784601669839,-0.8035861778866983,-1.0064874913958184,-1.2985944901419977,-0.5404835090845321,-0.5905099891240311,-0.4183706582726594,1.0998221170428406,-0.41036873774580146,-0.4448011186358068,-0.25752801756467014,-0.4186381825988835,-0.7044576648253759,-0.761156624791496,0.4172123388523181,0.01493865409556558,1
|
||||
-1.2259984288938333,-0.37161723330814256,-1.2197739656877415,-1.0641652877267596,-1.1335627936961088,-0.8850794699959577,-0.2862180845659327,-1.024643424547383,0.7239757687741047,0.24181657810217158,-0.052046224844156934,1.521199008891943,0.1284705418594361,-0.42496022947698964,-0.8401625849845623,0.684951622055963,1.7179985180507324,-0.06030135353365296,0.866268149640118,0.7750172490765806,-1.0669829512532096,-0.15738986311380754,-1.0228021046215678,-0.9229342565625072,-1.6845495715108934,-0.731351464055665,-0.3024589347533027,-1.2331119703473794,-0.005127066119760817,-0.24825303266339305,1
|
||||
-0.7897696773088818,1.167401278218939,-0.7574302882148284,-0.7740558709872651,-0.20240169364786278,0.15802173436667766,0.5903540736441841,-0.08487647743110528,-1.6258161368498405,0.7001461239621612,-0.635745240816766,3.512821765713819,-0.45454662935989126,-0.639080934609341,0.5702415480872566,0.5776836239399906,1.6977043950753392,0.33376497992183585,-0.7178051467388997,0.8521134120282865,-0.8258631397362765,1.964155353400536,-0.7798066280295683,-0.7691551223296953,-0.05991870247815016,0.12918631292614116,0.6837393886609197,-0.19460530910610485,-1.381370989218432,0.3683102335257404,1
|
||||
0.30912717782878213,-1.0349461421523733,0.22584338277825208,0.20308058490809155,-0.8110894384184226,-1.1010690524005842,-0.6728542890289808,-0.5693179755490548,-0.5202716812524637,-1.4962409546296342,-0.73773166769578,-1.1129350405584166,-0.6407383030291955,-0.5011165627457126,-0.027577476498866705,-0.8098046125600881,-0.7015119211267137,-0.0904594912981038,-0.5818585578705511,-0.9729069573644916,-0.07115812968827566,-1.3092769034435028,-0.09390951241668517,-0.14531352813701115,-0.8080111095914027,-1.0279296621940375,-0.7790732564502643,-0.4845402500445602,-0.9772358689434254,-1.3618077073516779,1
|
||||
-0.007221916832060791,-0.5028513699499869,0.04520224163255197,-0.15576678597988594,0.568294196118664,1.3603879843408055,0.3904772571724049,0.3788120920590291,1.3032647455077866,1.322036409717286,-0.5491062859438175,0.04472103845780225,-0.45670328967266305,-0.428639279393353,-0.3272883547766283,0.9321344003232042,0.6666502027977182,0.6715361228836833,-0.05137132522123463,0.7423284759850574,-0.03740135607590486,0.25387894954381957,0.0014520845016869272,-0.16734429772213746,0.7022886557127106,1.5529153314505046,1.2656253202472587,0.9813557852655914,1.3820394277971535,1.6094527563636725,0
|
||||
-0.5133804682894088,1.8665213152382178,-0.43374089205374927,-0.5135566498809635,0.6300115846885569,0.9628314016880697,0.5460827525224612,0.05667708052279675,0.6383062722148988,1.3597811958469328,0.18856252983157493,1.2920204228218084,0.05298743091242085,0.003649085779349253,0.9300548752175101,1.2484972643319052,0.5843462596197342,0.44233427587385804,-0.14150982436220477,1.4281759416034316,-0.0615133372275981,2.3286130816906296,-0.09390951241668517,-0.1263365285933877,2.2314083557869693,1.8110766645450467,1.1435796626282553,0.6483916304776131,0.6265616128686505,2.584731595622758,0
|
||||
0.2991372064184394,1.1697873534306094,0.3596154710861493,0.15937029611623546,1.694636537519194,1.2682712151895619,0.8445042504540762,1.4403089041115946,0.6791012705764257,0.8511252684807475,-0.047095427422845566,0.22116826844100307,-0.0850388291049783,0.033081485110256804,-0.029580891460616716,0.0553351113752551,-0.23192846450164076,0.16688995095854192,-0.10900085745890434,-0.08167531364277343,0.3387455498905107,1.3338775388805149,0.3617070061933141,0.21437695746569366,1.586825589909513,0.8199215464142163,0.33321963265563015,0.9130554458219035,0.8195270306576177,0.4878820912157241,0
|
||||
-0.7864396868387677,-0.06858568142606611,-0.8150401656612944,-0.7546682428941033,0.0004942212756578998,-0.9902865168686937,-0.735162074311406,-0.6507809640433135,0.5444777759833872,-0.49151069527381286,-0.20948158284185808,-0.4316864824968401,-0.2769815969416745,-0.39994269004571836,0.6215289711080498,-1.0622730602997101,-0.7764874310080278,-0.47045202713018214,1.8385817961115671,-0.5985279900710085,-0.7390600075901806,-0.4917547514533417,-0.7964066097153589,-0.6993546642382061,-0.29046290341242303,-1.1347285470158865,-0.8909388023437017,-0.7644008909150714,0.7922206036120091,-0.7646164181067309,1
|
||||
0.23919737795638507,1.0146924646720656,0.1921562510510811,0.14668021227343894,-0.6490812934224568,-0.7083607207558086,0.1427218267467621,0.2762864297335551,-0.6508156760093489,-1.3740197424003036,0.24005082301321315,0.9229009302132734,0.24852463260373675,-0.048961328024647706,0.6151180432304505,-0.386173750435414,0.37351287093092633,0.9550226178695195,-0.34542970766472797,-0.2993948778183904,-0.02775656361522774,1.0530110326753064,-0.07624995743180148,-0.14967605676772922,0.005951069217356934,-0.5899774006943682,0.1313526444611647,0.47764078186839315,-0.7169145977752904,-0.8982162591011262,0
|
||||
-0.09713165952514223,0.6687115589799312,-0.1403210925170857,-0.21886470286490348,-1.2091665946942263,-0.31492515145983907,-0.5652913754887945,-0.6929063117057439,-0.6181796773201276,-0.5777844921415747,-0.14462613662267929,1.5090302344103428,0.016324205595299353,-0.2789019477973616,-0.5372462427680014,0.1299563274559318,0.21003243585136896,-0.2193352666781895,0.08309758333332716,-0.21428071391970724,-0.2664651770169913,0.773816350911795,-0.23659871669454574,-0.360604316062948,-1.4384789243912506,-0.475495142863753,-0.5754710219389408,-0.7860862486884422,-0.7733478803362146,-0.7726324085663951,1
|
||||
-0.33023099243313125,-0.796338620985384,-0.290692637038371,-0.3753757369260644,-1.3156290899772904,0.0053018276159315925,0.5952731093243757,-0.30634429786226514,-1.4463181440591228,-0.4411843137676174,-0.3758283761979198,0.44020620910980435,-0.15908416651014579,-0.40656497989517254,-0.14377554428035189,1.3386645670960562,2.931699817106893,1.3531100363602682,-0.14150982436220477,0.20943979766286752,-0.48347300738223126,-0.9565219462452937,-0.4322665859270569,-0.5043496344451084,-1.4968207221786993,-0.0244811472491813,0.5183125731204694,-0.10632712037513833,-1.5870794062953497,-0.7038284904542814,1
|
||||
0.23253739701615697,0.5947432274181648,0.3601036903865426,0.07653224880908943,0.784305056113286,2.211256036237819,1.103573462944159,1.3641115840751399,1.8988717215860784,1.3364153758619126,-0.5580177213021777,-0.38280857166241317,-0.32946033121912316,-0.4889756980217132,-0.9315183072403506,0.6344268403346718,-0.025604880918475507,0.5046610939203897,-0.7680462774076372,0.21869133721707212,0.41349269146076056,1.3037846989299569,0.6371960639575003,0.15286530377256877,1.0081125957275625,3.2993460163430455,1.7879344616214772,2.7691171702041224,2.536191077591542,3.0523310391031417,0
|
||||
-0.6432500966238601,-0.9729081866489558,-0.6251228578081126,-0.6922753306670189,1.586631107521883,0.6064849526029955,-1.040962125763308,-0.8028658589128232,2.743328187669684,0.7199172024110234,-0.03075779593251824,-0.24732954910059898,-0.0814443952503586,-0.2829489027053615,-0.39139763355262025,0.13850667513184256,-1.0963453581257545,-0.098501661368624,1.1233845242389509,-0.1495199370402744,-0.7462936019356885,-1.2858713612597352,-0.7511981489540567,-0.7211673073917965,-0.08344362094083109,-0.3564028612278779,-1.2353273546960934,-1.0290647062593619,0.46090262212529204,-0.3945448585522566,1
|
||||
-0.9396192484640176,-0.45751594092825865,-0.9170779994435954,-0.9044817327048993,1.8643593560863978,0.27922800956568256,-0.5667670861928519,-0.03438800927686888,0.6831807704125779,3.2272494238803824,-0.9372488037746277,-0.28789213070593256,-0.8988186537908953,-0.8108925657035129,2.3412603742740283,0.08487267607385636,-0.5222471681774062,0.36995474523917654,0.36385684295274295,3.0570636724470703,-1.0163477908346539,-0.7809803798670387,-0.9987851098421263,-0.9067929006288503,1.6526953616050188,-0.24422561529989245,-0.6894188634126077,-0.21833967706278645,-0.1653247714539972,2.3375718897831272,1
|
||||
0.6054963296689395,0.3036420515944371,0.545138805235787,0.5058800854903827,0.05681133834568397,-0.18402237424491386,-0.15192841049670594,0.25088732305473677,-0.6875311745347235,-1.1349694302458775,0.013304301117152938,-0.0445166410739316,-0.11666984702563234,0.2442589503095172,-0.8617994665714597,0.018801807669090703,-0.4354334198937793,-0.2498955129461664,-0.6306220082255025,-0.5713901407120082,1.013881022137924,1.2385835457037477,0.8808979227488956,0.9645137555176657,0.48585940585604664,0.9205737328290525,0.26265294910341014,0.788407326337173,1.0306967331436572,0.30084231382357096,0
|
||||
-0.27695114491130507,-1.2401486103559842,-0.3575786811923196,-0.3260254108707434,-0.9036655212732613,-1.4115995294604344,-1.1582155395934717,-1.0829064973069653,-1.3606486474999158,-1.1906879240563073,0.14994630994534647,-0.696560140379668,-0.000929076906875579,-0.048961328024647706,-1.053325936914735,-1.3740498287367866,-1.3773625887711312,-1.2443098421659866,-0.815332047448802,-0.6682229213793507,-0.28334356382317666,-1.3393697433940608,-0.3672794235826852,-0.33682853502553456,-1.386724103773353,-1.3554718535577375,-1.3104056786721439,-1.239771253443139,-1.390473131566968,-1.0692240555739527,1
|
||||
-0.7331598393169416,-0.6841930860368984,-0.7100730160766314,-0.7141304750629468,1.3551909003847877,-0.07154295086023726,-0.5313500292954734,-0.38625856033952277,0.2711512869611569,0.3963904641569133,0.0202354175069889,-0.036404124752864885,-0.010274604928887241,-0.24910164347481792,0.8899865759825155,-0.7359607008135852,-0.49349716062893234,0.13271072815883117,0.26337458161526794,-0.08845977598252336,-0.6233224980620525,-0.6388753023227365,-0.6282876462592664,-0.6042515400885523,1.0128175794200995,-0.6698844799855359,-0.5540696506976939,-0.16694367163141133,-0.12163448818102429,-0.10463320359441819,1
|
||||
1.880882679722653,3.2051095089850286,1.853566530291127,2.1147007148938486,-0.851205740988853,0.4222514143005083,0.6444634661262904,0.6993983775782603,-1.462636143403733,-1.5591489315123785,1.8416337888074372,0.3022934316516702,1.5482719144342474,2.7798601526671893,-0.4959758945559568,0.3149547589892756,-0.03518821676796679,-0.046227555910242864,-0.9483232756895777,-0.6787079995407824,2.892204353854834,3.3434105178011144,2.678640620210056,3.5994810484713797,0.45762950370083005,1.3431592483111896,0.8948610238786273,0.9318380391689179,-0.2872934789243828,-0.40924084106164,0
|
||||
-1.026199000686985,0.7021166119433098,-1.037179947340466,-0.9277468864166936,-0.5572766779247416,-0.9248351282612312,-0.6403886535397173,-0.9214982718151088,0.9361097602540448,-0.3656947415083255,-0.2946352984884137,0.9107321557316733,-0.2360050509990088,-0.5202476223108023,-0.09369017023660829,-0.07058819076088649,0.14915006692518898,-0.11257545899203443,-0.19175095503094228,-0.4110301217724602,-0.7583495925115353,1.1081812392513293,-0.7300066829721964,-0.735781778304702,-0.03639378401546924,-0.5016186110935578,-0.30130210387539746,-0.5647931488908934,0.1714544954418409,-0.34644891579427445,1
|
||||
0.7953057864654451,0.39908506006123334,0.8234238064602438,0.6719086824336414,1.671492516805485,0.8804111345527461,1.1904764266275414,1.2727367490720738,0.6587037713956623,0.1735164889151942,0.34797820679780067,0.12178994350793604,0.5044483230526646,0.3704503624407826,-0.03198498941471638,-0.1211129724821777,0.2940275559439691,0.5850827946255913,-0.6468764916771528,-0.3499699607147094,0.8137515785788698,0.8306583819295158,0.8985574777337794,0.6416866368445285,1.3139365357424144,0.45957135230308493,0.6646516791754833,0.8601226827530455,0.42267362426144023,0.012934656480649502,0
|
||||
-0.7498097916675119,2.446337591674002,-0.7403426127010455,-0.7331656008271419,-0.12834082736399213,-0.23856519808446608,-0.058958636141087574,-0.7316244621307718,0.0508582958089125,-0.025991666341508676,-0.2659206734448077,2.543376065346348,-0.30070486038216493,-0.412451459761354,1.2357759983805208,0.13928397946601626,0.8729737863808837,-0.360877459919345,0.7406653229682743,-0.7576544704033291,-0.6715464603654395,2.2400063862806525,-0.6470067745432427,-0.652239355026451,0.44821953631575745,-0.24422561529989245,0.2747996733214152,-0.6757812004868864,0.023999789395554798,-0.6417045643918876,1
|
||||
-0.2003613640986805,-1.2687815128960227,-0.2072071366710336,-0.2865451500264868,-0.8951793803449012,-0.23832278553406783,-0.4005036802023807,-0.4692702748507827,-0.6916106743708756,-1.05408774568235,-0.9105144976995465,-1.3003341675750575,-0.7018436785577317,-0.7019926881791555,-1.0040419288556914,-0.12888601582391507,0.05726278789771377,-0.5110649859863092,-0.7577025152111326,-0.45852135815071104,-0.401492271466474,-1.3443852167191532,-0.2743901643621966,-0.4430561071835194,-0.6809765498929261,0.2582669794734124,0.24182999330111576,-0.27656571643853034,-0.2454236241211159,-0.5749046438946899,1
|
||||
-0.8363895438904798,-0.035180628462687456,-0.8721618238073672,-0.8004935456597586,-0.6251658053516232,-1.1030083528037682,-0.8396095985874712,-0.6833042104003371,0.9238712607455869,-0.40523689840604976,-0.5030638699256217,1.62666172106581,-0.44160666748326005,-0.6199498750442511,-0.09569358519835795,-0.6558983543936927,-0.7612668387764828,-0.21832999541937453,2.1311624982412742,-0.26423902751241246,-0.8547975171183086,0.12180481864970374,-0.8854107668391726,-0.8016559606285448,-0.9068157671346626,-1.0588168216892773,-0.9804196707496724,-0.7836957368079132,0.7212238932934265,-0.7926723847155541,1
|
||||
-0.7231698679065988,-0.8559905012771314,-0.7325311038947451,-0.7148354797208799,1.5249137189519915,-0.5520046257490924,-0.5761132539852156,-0.34970862633829636,0.9075532614009757,0.5851143948051463,-0.11195087364202436,-0.8770636285234021,-0.15333307234275415,-0.36094476093226596,1.105554025866787,-0.8875350459774594,-0.6062422882700061,0.040225772347849034,-0.030683800828225402,-0.1581547072908655,-0.6860136490564551,-1.2123110858250374,-0.7134067012864057,-0.677105768221544,0.7022886557127106,-0.9480225829028697,-0.787171072595601,-0.5000785772679991,-0.19263119849960578,-0.25025703027830914,1
|
||||
1.1949046428791408,1.346356919094181,1.2725855628225242,1.2743351626375246,0.7457316882571035,1.5688627776830937,2.3070975260310016,1.874261934075308,-1.0138911614269384,0.33168511650609134,3.568471929360839,0.48279691979540434,3.428160820400389,3.2360623422962544,-0.24154219441373945,1.0844860498212516,1.080988546878665,0.940948820246109,-1.224649494367634,1.0877192860086995,1.744474051034232,1.1566641480605615,1.7991947819628482,1.8173881028230483,0.30707002553967194,1.1380131889771339,1.412542841741225,1.0957588538337688,-1.2939904226724845,0.7477337819498232,0
|
||||
0.3557470444103796,-0.06381353100272642,0.38109712030347564,0.23410078985715033,-1.0687595356977226,0.5119440579477718,0.250940611710974,-0.25306812287742675,-0.1735141951794853,0.5617485748201262,0.27124084676747456,1.4948333308484762,0.5051672098235884,0.18723367660588422,-0.39540446347611957,2.050675337199178,1.4524837424560035,0.8565060345056474,2.04250167941409,3.7077552877594666,0.08315854968256176,0.009792581055959527,0.09681368142005853,-0.037340944526738924,-1.4761187939315403,0.1322596621296477,0.030129942644455572,-0.4077023681704112,-0.034253921635076436,0.692957847142121,1
|
||||
-0.5200404492296369,-1.5861295160481186,-0.5460313311443201,-0.5604394596335183,0.5837235432611375,-0.6247283908684954,-0.5792286432493369,-0.21032328480819593,0.7035782695933414,-0.40523689840604976,-0.6496074735964379,-1.0269423675551097,-0.6457705104256632,-0.6221573049940692,0.5081356842730143,-0.8230187862410412,-0.5882030678474343,0.28149087446345433,-0.07353652992803071,-0.6836421539696916,-0.5799209319890046,-1.6336108451328504,-0.6141600022713593,-0.6057784251093035,0.3494148787724981,-0.8320036504705013,-0.6975166795579444,-0.23934203144172062,-0.0797646333777574,-0.9416362074243045,1
|
||||
-0.6499100775640883,-1.9392686473752632,-0.6783387615510351,-0.6358749580323663,-0.5025024955689632,-1.046283816010634,-0.8056682523941501,-0.8000781520822212,-0.7568826717493193,-1.149348396390504,-0.5694045553711939,-0.2574701945019326,-0.6608671326150662,-0.5662357462653451,-0.24114151142138945,-0.804363482220872,-0.7612668387764828,-1.041043993633589,-1.2970558297431676,-0.9247989516826273,-0.5075849885339245,-0.8812898463688986,-0.5904961985916151,-0.5176553467687985,0.2976600581545993,-0.5945874244996279,-0.5401876801628308,-0.6687804156939082,-0.7478618817603135,-0.6136485977830644,1
|
||||
-1.716839024188656,-0.7653196432336752,-1.669423941350416,-1.3824748907835802,1.5249137189519915,-0.3289850793829236,-0.5554533041284114,-0.7604307660469927,-0.5610666796139906,2.610751250429493,-0.9936878943775772,-1.1875701907122302,-0.8729387300376329,-0.9335520899150693,0.5946832106206028,-0.02006340903959501,0.3002285379642281,-0.1226281715801846,-0.39271547770589227,0.2772844210603685,-1.5135368421825701,-0.9682247173371774,-1.408486785491428,-1.18315908938484,1.9444043505422623,0.011630705892019574,0.004679663330540226,-0.04997934033409586,0.10045778512325942,1.3288930902754426,1
|
||||
0.4156868728724345,2.5704135026808363,0.3259283393589776,0.339851488547124,-0.9283524767012181,-1.2007006106141662,-0.46461511190087607,-0.5079884252758106,0.2670717871250047,-1.5932989761058671,0.4994726078899283,0.9229009302132734,0.3412610260529269,0.40613714662950806,0.021706531560176896,-0.6310246157001339,-0.13384020345390654,-0.38661240414500947,1.739577215087879,-0.9907932671692873,0.3266895593146647,1.9223597423580943,0.20277101132936076,0.22811892265245548,-0.7656662563585771,-1.0466770923354267,-0.5210999706773943,-0.7201764211252834,0.6593293253233803,-1.3464437256373225,0
|
||||
0.1792575494943308,0.174793990164263,0.21705543537116434,0.06842469524285828,0.1763887786998495,0.4489167948442891,0.3063617470411311,0.4522217052648819,0.3772182827011275,0.3766193857080512,-0.38473981155628034,1.377201844193009,-0.13823645015335118,-0.27559080287263454,0.4921083645790163,0.5100581468668776,0.33517952753296115,0.6494201551897526,-0.7562248348973463,0.6757173911947839,0.10244813460391601,0.9109059551310041,0.1815795453475005,-0.0009138304602431894,0.565844128629162,0.5202699990723371,0.4315502572775762,0.829387530003386,-0.2781913365758466,0.7831377398133381,0
|
||||
-0.5533403539307781,0.23921802087935004,-0.5157617345199053,-0.599214715819842,1.10832134610522,0.47558217538807024,0.10746873770539002,-0.6854724268241387,1.3766957425585347,1.2824942528195618,-0.9214062520264313,-0.7626771483963615,-1.1377047277689256,-0.8005912259376953,-0.2022752611634445,-0.03172297405220077,0.6987825641754244,-0.22436162297226478,-0.9660554394550146,0.28160180618566405,-0.6619016679047619,-0.20754459636473718,-0.6791471646157314,-0.679505158968439,0.4293996015456122,-0.026017821850934354,0.6287899219604205,-0.461830387179534,-0.2945751928032119,0.43978614845774194,1
|
||||
2.706720316310958,0.6830280102499502,2.7909475870471914,3.0276817469172874,0.8537371182544156,2.419730829580107,2.7809646298894446,3.292894965648331,0.1528457917127297,-0.07272330631154623,3.1724081356559304,-0.9573775401019626,3.589191457087355,3.526707285688964,-1.1214420456142262,0.45253762613802273,0.47892956527533026,0.7439156535183651,-0.6734747373253078,0.27111672802423203,2.83433559909077,0.06496278763198296,3.201363447762614,3.054164969631621,-0.07873863724829543,1.1802717405253476,1.3350351729215735,2.3097973874453217,-0.23632148177257972,0.2627663591401682,0
|
||||
-0.04385181200331606,1.1292240748322206,-0.07294682906274308,-0.11663902746459562,-1.1420489346244689,-0.6669081746377489,-0.46281146548480584,-0.6303377806188989,-0.05520869993105692,-1.3506539224152847,0.33411597401812876,-0.23313264553873247,0.1874192570752006,0.20562892618770132,-0.9719872894676955,0.33283275867527085,0.36336580944322927,-0.18897607466197583,0.9224200015640008,-0.1661727082378429,-0.2158300165984355,0.15524130748365703,-0.2245902193048247,-0.26353805402947095,-1.7593588122222183,-0.6967762855162174,-0.6298420732004875,-0.8002585691230074,-0.37831490240974475,-1.242235849661694,1
|
||||
0.3890469491115214,0.007768725347370569,0.3527804008806363,0.277811078649006,-0.23788919207555087,-0.23298970942531166,-0.005505115083007137,-0.013635080649054006,-0.9200626651954269,-0.47713172912918506,0.09301213960026582,0.05283355477886897,0.04436078966133338,0.1526506073920681,-0.7311768110653765,-0.47323183586287015,0.13562065160826006,-0.3190581755526397,-1.2143057321711292,-1.010529884884924,0.40384789900008256,0.4427951114556562,0.33345171821750025,0.30577193227923716,-0.30457785449003133,-0.1904420042385295,0.24182999330111576,0.06954625369235809,-1.0718981493682018,-0.819392352914433,0
|
||||
0.3557470444103796,-0.35014255640311354,0.33276340956449063,0.19391552435496043,1.6560631696630115,0.8464733774970251,1.2904968187914345,1.3148620967345042,0.6954192699210369,0.06387687206241106,4.598237792993602,0.5679783411666048,4.205996306540109,2.4855361593581153,1.2914709343171635,0.9647811823584999,2.170670205529644,3.417937201966325,4.720058407995041,-0.2895265689605721,0.6377341161715084,-0.6656244933898993,0.6018769539877329,0.31536949526681685,0.47174445477843835,-0.1420367542833029,0.5246751429489485,1.00355339558479,0.9888268783403902,-0.6904685063548415,0
|
||||
0.9051954719792121,2.157622491061945,0.8917745085153731,0.8284197164948023,-0.824204383489525,0.16286998537463798,0.28389815076825664,0.285888531038962,-0.8017571699469985,-0.9570297242061158,0.4415482780605852,-0.19662632209393224,0.6158757725458774,0.5227630289782285,-0.3501272853405753,1.1598845702361023,1.1294689517643268,0.9168223100345488,-0.9690108000825872,0.3303265811711421,0.7414156351237896,1.4559207231244444,0.7890682368275,0.6482304297906056,-0.8080111095914027,0.5725169355319469,0.5524390840186743,0.5783837825478331,-1.1884055714294648,-0.24090504140870136,0
|
||||
0.9218454243297819,0.5589520992431158,0.9747717895823165,0.9923332994642615,1.301188185386133,1.2149404541019995,1.267541318950541,1.4839829777910263,0.8504402636948387,0.268777139623347,2.176307694488085,-0.5481010917041473,2.075215917521506,2.5112895087726588,-0.2920282514498327,-0.2773511436510942,0.008218657373846657,0.058320655006519395,-0.7473587530146277,-0.34256872907134545,2.54499182527045,1.0279336660498408,2.5656194683068008,3.0279897978473125,2.325508029637693,0.9443921891562275,1.2997518311454632,1.7343670276322507,1.3510921438121308,0.9240855720624253,0
|
||||
-0.6632300394445445,-0.16402868989286154,-0.6207288841045691,-0.6728877025738571,-0.12371202322124987,0.48043042639603056,-0.14487779268843154,-0.38316110830552064,0.7362142682825638,0.2400192073340939,-0.35107438909136296,0.7931006690762059,-0.3459947269503739,-0.4738915933646231,0.8395005189464215,1.518221868290184,1.814959327822056,1.3752260040541993,1.2105676627523483,0.8749338762619912,-0.640200884868238,0.2822999650526803,-0.64135571694808,-0.6448230563542301,0.4435145526232218,0.5356367450898694,0.20712506696395835,0.10028140644201758,0.9578795943553676,0.12315452530102551,1
|
||||
-0.18038142127799553,-0.7581614175986656,-0.1730317856434693,-0.36339065774120083,0.9694572218229632,1.4040222434124472,0.6838157515678219,0.8078091987683386,0.6342267723787466,1.2968732189641883,-0.4020676025308701,-0.3162859378296661,-0.7428202245003972,-0.7866108362555142,0.006881260843228571,1.0386250941050026,0.7066747231102997,0.566987911966921,0.23677633596711287,0.7688495560404445,-0.09044771460963033,-0.37138339165110895,-0.27191782666431313,-0.46225123315867905,1.05986741634546,1.876385335119559,1.394033547694741,1.0735612435145705,1.1945352954173085,1.3222130982257227,1
|
||||
0.20589747325524388,-1.9440407977986027,0.20729104936328852,0.06207965332146002,1.1468947139614025,0.34710352367712516,0.21683529766164658,0.43332724785746835,0.28338978646961477,0.39818783492499105,-0.3679071003238217,-0.6387584615920677,-0.46029772352728293,-0.3734535306479016,-1.1855513243902178,-0.7483975701603646,0.08770397236080366,0.19905863124062273,-0.09422405432104045,-0.3382513439460499,-0.049457346651751694,-1.5767688141151297,-0.05505849144994123,-0.17737811357278907,0.010656052909892596,-0.43093157941290944,0.06483486898161299,0.24200461078767002,0.03310193174409099,-0.11665718928391373,1
|
||||
-1.1294287052605232,-0.10199073438944477,-1.1314062723164664,-1.0179874826321376,0.892310486110598,-0.6981793936390921,-0.856334319900122,-0.8050340753366249,-1.2423431522514885,0.7540672470045146,-1.0828022479611816,0.7931006690762059,-1.1022636099623746,-0.8925674738467809,0.8407025679234712,-1.0125255829125925,-0.5177373630717632,-0.36409432794755275,-0.2700680116616217,-0.024315768406704238,-1.1682532720903216,-0.1456870920219238,-1.1866827748812887,-0.984664036687168,0.481154422163511,-1.0025745312651093,-0.9287093305073079,-0.7282017110099166,-1.197507713778001,-0.22620905889931803,1
|
||||
1.8875426606628811,0.995603862978707,1.897506267326568,1.9419745737002247,0.44485941897888076,0.8779870090487663,1.8102749223316643,1.8061179893272585,0.8259632646779219,-0.5328502229396148,1.205456320168928,3.3749089882556853,2.0234560700149813,1.3155982859545463,1.7883178448310997,1.4443779565436812,2.6735134748088343,4.704684413249554,1.1736256549076884,1.7785009060559824,1.1850760883149467,0.8406893285797022,1.3294506193649414,1.0604893853934632,-0.2810529360273511,0.050047570935850244,0.7988440610124918,1.2733397363873573,-0.536692179274274,-0.3865288680925923,0
|
||||
-0.5733202967514631,-0.24038309666629823,-0.5733716119663714,-0.5914596645825773,-0.3366370137873773,-0.4169808351774009,-0.7548382170321718,-0.8833996117968814,-1.3157741493022366,0.18609808429174055,-0.7317907107902064,0.03660852213673554,-0.6400194162582716,-0.6652021890155212,-0.7476048137517245,-0.44524887983261624,-0.74942860037417,-1.175951396566565,-0.7680462774076372,-0.9241821823790135,-0.618500101831714,0.41103044706340086,-0.5484664577275918,-0.6094865744454139,-0.4833672348064061,-0.053677964682492564,-0.47887564363385277,-0.8712909221444429,-0.8461650191245041,-0.3016929690611518,1
|
||||
0.6321362534298526,0.9240216066286099,0.7648374904129897,0.5622804581250354,1.563487086808174,1.930057477776128,2.264465883469342,1.5796942456416951,1.2624697471462598,2.0679452784698196,0.9148445115379513,-0.20271070933473206,0.7402431839157216,0.8936112605476618,0.7701823612698806,1.3503241321086616,1.8172142303748775,0.5810617095903311,-0.7074613845423952,1.620607964330889,1.033170607059279,0.850720275229888,0.9162170327186631,0.9710575484637428,2.560757214264502,1.9793425334370247,2.838915314198394,1.6302090099806266,0.7339668925813778,2.8986912219595875,0
|
||||
|
@ -0,0 +1,155 @@
|
||||
mean radius,mean texture,mean perimeter,mean area,mean smoothness,mean compactness,mean concavity,mean concave points,mean symmetry,mean fractal dimension,radius error,texture error,perimeter error,area error,smoothness error,compactness error,concavity error,concave points error,symmetry error,fractal dimension error,worst radius,worst texture,worst perimeter,worst area,worst smoothness,worst compactness,worst concavity,worst concave points,worst symmetry,worst fractal dimension,target
|
||||
0.1792575494943308,-0.5959083032051129,0.20094419845816955,0.06384216496629291,0.17561731134272615,0.4440685438363291,0.07992213789631787,-0.04832654342987912,0.5118417772941659,0.4161615426057755,-0.08967228524612322,-0.8139888141271087,0.07814846789475936,-0.08096906229700941,-0.881432933196607,0.6328722316663244,0.6277531337615476,0.2855119594987146,-0.14889822593113697,0.010223312595659966,0.18442887051967413,-0.6522498978563176,0.2486858542900588,0.07695730559807445,-0.07873863724829543,0.7853463678747687,0.7560413185299977,0.5715537486034641,0.3316522007760783,0.38968620808484367,1
|
||||
-1.1860385432524634,-0.6412437322268404,-1.207080263877503,-1.0511227015549962,-0.06893784086547157,-1.1064021285093404,-1.0670330148683225,-1.1861755481205998,0.40169528171804314,0.03691631054123564,-0.7763478875820086,-0.4156642627627333,-0.871500956495785,-0.7862429312638779,0.12388069460941377,-1.176925449590333,-0.9664629710832373,-1.1087992764777215,-0.6114121641462794,-0.4628387432760066,-1.1224405079021045,-0.6087824623721785,-1.1739678952921724,-0.9639420256912571,-0.1210834904811203,-1.125354831945192,-1.1623313263002724,-1.4363054801923512,-0.34554718995501404,-0.5221327067019038,1
|
||||
0.6154863010792823,-1.8509838645434773,0.6232538932987921,0.4374946336708665,0.6994436468296853,0.8319286244731442,0.7198886798892258,0.5674469209297651,-0.010334201733377811,0.14116381508978318,-1.011015685352167,-1.591776316409379,-1.0246238387025874,-0.7531314820166072,-0.29763781334273204,-0.3255440123698644,0.3436354121060416,-0.06834352360417316,-1.1803190849540421,-0.6787079995407824,0.2664096064354314,-1.8743535647373153,0.2875368752568027,0.05994344393827383,1.083392334808141,0.48415814593113643,0.9000667628292007,0.6364390710749676,-0.5712803201987118,0.00024267158618130916,1
|
||||
0.5255765583862009,-1.7054332766316134,0.6086073142869787,0.4011868937873086,2.350383791074298,1.452504753492049,2.0988583489028962,2.0415243439114286,0.7321347684464103,1.5970341372332808,0.26579496960403215,-1.0417477098410564,0.17016597457302568,0.37891217724841864,-0.554475611439049,0.06388545905116615,0.8887581042506338,0.44032373335622804,-0.2685903313478354,0.5005549089685082,0.6956028709355719,-1.3995554232951768,0.7290257498788953,0.6002426148527069,1.0363424978827804,0.9482338756606106,1.9562533543566907,1.2767547533595418,0.6283820413383576,1.2821331459274048,0
|
||||
-1.3981589361987339,0.0721927560624576,-1.415061685845255,-1.189303614509895,-0.7964315586330737,-1.0976752766950122,-0.8497756056598668,-1.0585605243197078,-0.8425521683085253,0.098026916655901,-0.35404486754414977,0.3874748530228707,-0.36971799039086467,-0.5923570006715255,0.2657224739012956,-0.8673251332889428,-0.21952650046112276,-0.28045575921414295,0.3387362776183742,0.4919201387179171,-1.1995988475875232,0.02985447435633174,-1.245312497431103,-1.0090941970191891,-0.5257120880392316,-1.0712638859634784,-0.8750902193163997,-1.186155486979844,-0.580382462547248,-0.17410512091150368,1
|
||||
0.18591753043455891,-0.9204145319922185,0.1921562510510811,0.05996463934766046,0.34456866255280544,0.15802173436667766,0.1586267087793811,0.3571299278210135,-0.255104191902539,-0.17876818162817149,-0.6268338054584056,-0.877266441431429,-0.32227146350988345,-0.4834571231471681,-0.4290618348335152,0.04523015503099696,0.21848832042444954,0.7881475889062259,-0.7680462774076372,-0.510946748957871,-0.013289374924211624,-0.929772755178131,0.14979234637470965,-0.13069905722410577,0.024771003987500886,0.29668384451724306,0.37891445233288745,0.8874428185305205,-0.32734290525794163,-0.3324209324898628,1
|
||||
-0.8863394009421913,3.524843587348795,-0.9395360872617091,-0.8329237599246838,-1.3449448495479897,-1.450627950074514,-1.151525651068411,-1.1570904735213188,0.23851528827193566,-0.6335029859520057,-0.7095121223943054,0.9634635118186069,-0.7758890159628989,-0.6946345883464285,-0.9687818255288958,-1.210660457693472,-1.3552645437534807,-1.5261879031377188,-0.08535797243832191,-0.5072461331361892,-0.8547975171183086,2.736538245464861,-0.9154320103134753,-0.77635329457038,-1.4648268330694534,-1.275718441726745,-1.2818319559878844,-1.3302692032060255,0.07315135807765084,-0.5835886335593259,1
|
||||
-1.484738688421701,2.109900986828547,-1.502452940615742,-1.2400639498810824,-1.0803315460545773,-1.1119776171684947,-1.232968485146781,-1.3563805373890225,-0.1816731948517909,-0.218310338525897,0.8430579489289364,3.559468734559953,0.7546209193342008,-0.19244427476282122,1.9285568921535814,-0.8665478289547691,-1.5369533169470713,-2.2135923899154313,1.5223582089612782,-0.01999838328140868,-1.3056915646549736,1.475982616424817,-1.3371421833524981,-1.0823846780152526,-1.1185400332987903,-1.2547428334128135,-1.4159086547371023,-1.8428632507309033,-0.720555454714705,-0.8093723648398535,1
|
||||
0.8718955672780704,-0.17834514116288144,0.8087772274484297,0.7579192507014866,0.12547193312968902,-0.2642609284266549,-0.2717889132373711,0.14123752105105764,-1.1893096543815038,-1.0558851164504277,-0.1401704189434993,0.5416126631231383,-0.16124082682291774,-0.027990743501376175,0.19239748630125503,-0.33720357738247014,-0.5042079477548344,-0.13670196920359468,-0.413403002098902,-0.8359841719622622,0.536463795334396,0.006448932172564257,0.45353669211470965,0.39738503352431664,0.12828064522329718,-0.5146803452084602,-0.45400377975889,-0.2851032588689913,-0.8680101607609911,-1.143371967325842,1
|
||||
-0.010551907302174852,-0.9204145319922185,-0.05097696054502336,-0.12580408801772675,-0.005677517581332124,-0.4533427177371024,-0.498556458094197,-0.2069160875707935,1.3195827448523967,-0.5885687167500459,-0.5906929842828327,-0.5120003940754004,-0.5307486270778304,-0.5493121166500734,-1.0184665165802895,-0.5424119216043305,-0.7156050620818479,-0.11659654402729436,-0.6586979341874439,-1.0876260478366298,-0.22306361094394336,-0.6137979356972717,-0.2115221486160106,-0.3420635693823962,-0.5915818597347386,-0.4801051666690126,-0.573735775622083,-0.13655002057897014,0.15325021074476852,-0.8474483195232563,1
|
||||
-0.31358104008256094,-0.6841930860368984,-0.33463237407381113,-0.4071009465330565,0.2743651330545537,-0.1750531098801876,-0.6925304317497466,-0.6160895012624885,-0.21022969370485994,0.03511893977315669,-1.0961694009987222,-0.5414082657392671,-1.1292218638720228,-0.845475634917329,-1.5585871902680202,-0.7414018311528012,-0.6276638625218103,-0.7442879180313944,-0.15333126687249599,-0.853870481767058,-0.4931177998429088,-0.3998044071599697,-0.5180920231535919,-0.5364142198808862,-0.6527466477377089,-0.3003142382638852,-0.36897671023285444,-0.410605132596768,0.7758367473846437,-0.2315530525390936,1
|
||||
2.573520697506392,0.7736988682934068,2.654246182936933,2.7633050001923536,1.6560631696630115,2.74213952160946,3.374528268632547,3.481839539722467,1.5317167363323367,0.7648514716129833,1.272292085356631,-0.5091610133630269,1.1428197756331369,1.7162468218465232,-0.62579718407734,1.1559980485652337,1.1227042441058623,0.3759863727920668,0.10526278804012323,0.4142072064625981,2.4895342686215556,0.5564791734910978,2.3890239184579634,2.735700379589202,0.8998979707992306,2.587865675731302,2.663655436195749,2.2927223025843997,1.7424842647991863,1.262093169778245,0
|
||||
-0.5600003348710069,-0.9132563063572084,-0.5870417523773974,-0.5822946040294463,-0.6560244996365691,-0.7304202628420277,-0.9060165802700557,-0.8322916532358444,-0.6059411778116697,-0.09249438476040962,-0.5431653290382437,-0.7395564768813214,-0.4380122336286402,-0.564028316315527,-0.5504687815155497,-0.6380203547076974,-0.944477671193228,-1.1797714273500621,-0.9468455953757914,-0.7965109365309889,-0.5196409791097714,-0.6739836155983877,-0.46793888699652214,-0.5316154383870962,-0.25752801756467014,-0.3233643572901836,-0.7408978374793911,-0.8941715358580784,-0.3819557593491588,-0.14671715350765308,1
|
||||
-0.566660315811235,-0.2857185256880265,-0.5977825769860605,-0.6062647623991736,0.7148729939721576,-0.6063050370382467,-0.8246885236908904,-0.4454198941889655,0.4628877792603335,0.8169752238872589,-0.005508729083830348,0.6876379569023386,-0.11379429994193652,-0.3642559058569931,-0.538448291745051,-0.8237960905752149,-0.8993796201367983,0.8404216943646071,0.36385684295274295,0.031810238222137494,-0.74147120570535,-0.7508875399164802,-0.7847513034253357,-0.7233485717071555,-0.8033061258988663,-1.0857086272199588,-1.1278577661386961,-0.8385067592114728,-1.1720217152020995,-0.5374966884162589,1
|
||||
-0.05051179294354418,0.8524393502785129,0.1740921369365109,-0.1578817999536855,1.3783349210984979,3.2415093754293602,2.256267490669023,1.1293247198977705,1.152323251570137,2.698822418065335,-0.7679315319657792,-0.005982188548864482,-0.3646857829943969,-0.5566702164828001,-0.13936803136450257,2.8738406270891406,1.5641014188206668,1.0595708287862817,-0.018862358317934192,2.9213744256520684,-0.21100762036809695,1.103165765926236,0.15685616836866323,-0.2816425478469508,1.6009405409871211,4.130686975891541,2.6000297379109605,1.927315486560669,1.3201448598271073,4.0944097988594255,0
|
||||
-0.37352086854461525,-0.0471110045210371,-0.3985891024253969,-0.44587620271938017,0.1177572595584523,-0.38934580443202815,-0.7922228882016268,-0.8047243301332246,-0.11232169763719499,0.004563636715824633,-0.7223841956897149,0.22928078476206976,-0.7428202245003972,-0.6284116898518869,-0.46832876808381013,-0.4607949665160907,-0.6750168161310612,-0.20365303504067517,-0.09570173463482678,-0.754570623885261,-0.5196409791097714,0.09672745202423833,-0.5841387587970571,-0.539031737059317,-0.05991870247815016,-0.39174637706820203,-0.6899972788515603,-0.42358219709106865,-0.23086019636345861,-0.629680578702392,1
|
||||
0.2458573588966132,1.188875955123968,0.22144940907470786,0.13963016569410736,-0.4238128251423503,-0.23080799647172973,-0.7243401958149848,-0.4404639709345619,-0.4142046855124932,-0.5652028967650271,0.024196055444037825,-0.12361367520433184,-0.20796846693297477,-0.021368453651922022,-0.7648341824227721,-0.32709862103821175,-0.9050168765188522,-0.48331949924301437,0.16437000059157927,-0.28582595313889003,0.049401776070190966,0.6183366778339118,-0.05152658045296419,-0.050428530418893135,-0.9209307182122709,-0.4478350000321948,-0.8844027078835369,-0.656827856291263,-0.6349953166384652,-0.6243365850626165,1
|
||||
0.951815338560809,0.6090596786881838,0.979653982586254,0.8686049819969922,0.06684041398829182,0.9216212681204079,0.9773182138192453,0.5076660966735219,0.4465697799157223,-0.9426507580614892,0.4667973449092734,-0.5115947682593471,0.3160999890705884,0.39914695178841736,-0.4010140253690189,0.2022456305340869,0.5460129162217691,0.18900591865247257,1.204656941497203,-0.42644935436280146,0.9897690409862311,0.6032902578586328,1.0292381846219183,0.8772631829033043,1.1869019760439372,1.141854875481517,1.7127404545576368,1.2528496345542508,3.626627730946177,0.3021783122335153,0
|
||||
2.2305316790846357,0.7402938153300281,2.180673461554962,2.3508772753014564,-0.3343226117160073,0.9507107741681693,1.4561043533578801,1.6050933523205135,-0.08784469862027933,-2.0785890834870338,2.4401851970439803,0.6247659554140719,3.2067436949558115,2.8460830511617314,0.5397896406686599,1.0666080501352568,1.5573367111622023,3.345557671331643,1.776519222932538,-0.6114801454468952,1.7685860321859248,0.40601497373830764,1.9051521118721504,1.8086630455616122,-0.6245167455824916,0.43882624517941615,0.8173533550589757,1.4355530425661163,0.06951050113823576,-1.5468434871289156,0
|
||||
0.6221462820195104,0.289325600324418,0.6134895072909162,0.4871974620551538,0.5605795225474274,0.6016367015950351,0.6477428232464179,0.6451929669832212,0.6056702735256775,0.22024812888523174,-0.0985837206044838,-0.5091610133630269,-0.23312950391531298,-0.0791295373388278,-0.8057038476424667,0.10508258876237289,-0.1930313954654703,-0.4770868174383613,-0.2981439376235631,-0.13903485887884234,0.8812651258036105,0.8156119619542368,0.7608129488516863,0.5697049144376803,1.1351471554260397,1.6374324345469322,0.8838711305385274,0.6825418001994571,2.0428549623008805,1.6428527166122713,0
|
||||
-0.7930996677789959,-0.1401679377761631,-0.8179694814636572,-0.7603082801575687,-0.13759843564947555,-0.8647168157625249,-0.8004212810019459,-0.7155177115539603,0.19364079007425655,-0.44298168453569636,0.12618248232305182,-0.6673550816238278,0.08318067529122714,-0.27044013298972586,-0.15900149798964988,-0.9124087846710182,-0.8351148973813862,-0.36891962998986483,0.4702498255453633,-1.1690395959136308,-0.7077144320929791,-0.493426575895039,-0.7501385756549636,-0.6934652505867368,-0.6009918271198107,-0.9987328447607262,-0.9471029414660014,-0.7254696974321693,-0.23814191024228676,-1.1313479816363465,1
|
||||
0.11265774009204838,2.102742761193538,0.12282911039516375,0.002859262055074533,-1.003184810342212,0.2016559934383196,0.5755969666036098,0.008976319199162348,-1.8134731293128636,-0.09249438476040962,-0.15749820991808905,2.3365068991591467,-0.3330547650737429,-0.16117235047373205,-0.18825135643119617,0.4711929301581919,0.6333903901436014,-0.18093390459145597,-1.1655422818161782,0.1434454821762075,-0.03740135607590486,2.529232014694349,-0.06565422444087135,-0.1370247237386469,-1.080900163758501,0.05926761854636965,0.35635625021373507,-0.43946202601172607,-1.7855061094934386,-0.25693702232802906,1
|
||||
-0.4634306112376967,-0.5219399716433457,-0.5294318749309312,-0.498751552064367,-0.7810022114906002,-1.3876006869710316,-1.1596256631551263,-1.1574311932450592,-2.331569608504255,-0.9120954550041559,-0.9684388275288893,-0.9265499780819092,-1.0936369687112872,-0.7965442710296956,-0.7407932028817752,-1.5061138351129004,-1.3892571997372645,-1.532018476438846,-0.8581847765486076,-1.2412016044364274,-0.618500101831714,-0.9531782973618984,-0.70210458609608,-0.6164666202545627,-0.9726855388301691,-1.4241612082561068,-1.303811742668084,-1.3674928882028354,-1.736354540811343,-1.3404317327925745,1
|
||||
2.197231774383495,0.5780407009364754,2.07326521546833,2.407277647936109,-0.9013511192018901,-0.29335043447441617,0.24962886886292296,0.508905077487123,-1.303535649793779,-1.80359135597104,1.585182482383509,-0.26558271082299933,1.851642131764156,1.8085909747472453,0.473676946930919,0.6950565784002212,0.8628267248931867,1.1460241570443737,-0.9350241528655002,0.3556141226193015,2.0048834474725195,0.12682029197479694,2.025237085769359,2.0137018912053617,-0.3892675609556824,-0.029091171054440895,0.41072730147528175,0.6244865116723222,-1.15199700203532,-0.7038284904542814,0
|
||||
0.742025938943619,-0.23561094624295853,0.7355443323893621,0.6694411661308752,0.15247329062901704,0.4392202928283688,0.31603585054550754,0.4844352064185052,0.3037872856503782,0.12139273664091979,1.6718214372564575,0.3246028515346039,1.4124023147296199,1.4620244726258107,-0.002735130973170079,-0.23382210093736616,0.19199321542879708,0.13271072815883117,-0.1459428653035643,0.04784624011609227,0.9680682579497072,-0.023643907777993765,0.870302189757965,0.8859882401647404,0.015361036602428258,-0.0867164686201869,0.2048114052081478,0.233467068357209,-0.14347962981751075,-0.015121310128173754,0
|
||||
1.8375928036111684,-0.20459196849125016,1.8145089862596246,1.839748898299917,0.6531556054022659,1.178578571542298,1.4331488535169865,1.575048067590692,0.43433128040726443,-0.5184712567949883,0.5133348406696,-0.35867383560723964,0.24061687812357316,0.6923672301225823,-0.4498973504357125,-0.030945669718027095,0.1874834103231541,0.800210844012006,-0.5183183043777361,-0.8581878668923534,1.9012019285202382,0.5414327535158188,1.6967693630505225,1.7475876447315593,0.975177709879809,1.0757778676061283,1.0805323797824191,2.002445859948726,1.309222289008864,-0.2629490151727773,0
|
||||
-0.5067204873491806,0.6591672581332518,-0.5006269362076978,-0.5533894130541868,-0.5796492312813273,-0.027423866687799465,-0.24670183126839462,-0.1963847506551859,0.5852727743449141,0.4017825764611489,-0.3436481929593959,0.6693847951799388,-0.26260386152319537,-0.4926547479380767,0.13429845241051241,0.1975818045290448,-0.01320291687795749,0.386039085380217,-0.023295399259293203,0.6825018535345339,-0.5003513941884167,0.850720275229888,-0.45557719850710376,-0.5499380586361121,-0.031688800322933586,0.08769609867880418,-0.008045476326417528,0.21468447501019478,0.1841974947297922,0.721681812955916,1
|
||||
-0.7564697726077406,-0.7199842142119474,-0.7115376739778128,-0.757488261525836,1.0466039575353272,0.514368183451752,-0.0692886110694895,0.036543642301782295,0.4057747815541954,0.25080343194256505,-0.6020798183518488,-0.8884211513728956,-0.6479271707384351,-0.6788146737060659,-0.3577402621952243,-0.1817427105477276,-0.05379116282874401,0.40815505307414723,-0.18584023377579692,-0.8477027887309216,-0.7872839698935671,-0.959865595128689,-0.7921683165189867,-0.7658832258566567,0.49056438954858234,-0.1374267304780433,-0.08439631426816388,0.0439336264009751,-0.15258177216604693,-0.5034287289626883,1
|
||||
-0.4967305159388379,-0.37161723330814256,-0.4586400763738325,-0.5646694875811173,0.6917289732584485,0.8270803734651845,-0.2668698775571796,-0.46431435159637907,-0.030731700914141246,0.7324987977875722,-0.5268276975479164,-0.6063083963078009,-0.3244281238226554,-0.5570381214744365,-0.02477269555241739,1.1396746575475856,1.1446895439958717,-0.10051220388625395,-0.2006170369136608,2.1757003375831707,-0.41595946015749014,-0.3814143383012954,-0.32242415392108026,-0.4936614392998491,0.5470241938590168,0.9559172486693767,0.4384912425450075,-0.16882193096611273,-0.09432806113541571,2.0035722872971387,1
|
||||
-0.19370138315845178,0.6042875282648441,-0.23405919819269225,-0.2713875498809236,-0.7262280291348219,-0.7721152215104853,-0.6846599746614404,-0.6055581643468809,0.11613029318735504,-0.8707559273383539,-0.5203916609002115,0.7444255711498057,-0.3884090464348874,-0.4915510329631676,-0.5124038972423044,-0.15065053718077895,-0.525065796368433,-0.9270462328839655,-0.21391615973773837,-0.8637387906248764,-0.41113706392715155,0.6333830978091908,-0.40330491575184785,-0.448509267971917,-0.8033061258988663,-0.5239003928189796,-0.714869142726523,-0.8842679866387435,-0.42564604262213274,-1.0171201175861382,1
|
||||
-0.8497095057709361,-1.1637942035825475,-0.8907141572223308,-0.798378531685959,-0.11136854550727196,-1.3783890100559073,-1.208586464958632,-1.253142461095728,0.6831807704125779,-0.6460845813285546,-0.6421812774644708,0.2191401393607366,-0.7212536213726786,-0.6346660747097048,0.6607959043583445,-1.0408194606765155,-1.453127314545933,-1.5434785687893373,0.5677767262552657,-1.0666558915137658,-0.893376686961018,-1.0735496571641312,-0.9532234579811262,-0.8044916042385116,-0.24341306648706057,-1.240144424696158,-1.387248169737,-1.6531590579260602,-0.20537419778755706,-1.1988159013385158,1
|
||||
0.8219457102263589,1.0146924646720656,0.9259498595429381,0.7660268042677177,0.16867410512861383,1.3119054742612035,1.736489387128793,1.3610141320411375,1.5847502342023214,0.0674716135985677,0.3167881830435393,-0.304117163348066,0.290220065317326,0.4105520065291441,-0.4575103272903615,1.304463176392413,1.885988758235933,1.1158660192799228,1.8075505095220525,0.4493630567685758,0.8378635597305626,0.9393269706398648,0.8808979227488956,0.7376622667203261,0.49056438954858234,1.7795748352091056,2.683321561120138,1.995615826004357,3.5556310206275947,0.9574855323110241,0
|
||||
-0.9928990959858437,-1.4501232289829347,-1.0420621403444041,-0.9034242257179995,-1.549383699185757,-1.4157205428172008,-1.182302417640809,-1.1523203973889553,-1.405523145697596,-0.7862795012386685,-0.42286095170037774,-0.8326476016655621,-0.5465641360381575,-0.5813198509224352,-0.25436405016893776,-1.2634394219838672,-1.433509662336386,-1.494622385610927,-0.4976307799847268,-0.42644935436280146,-0.8547975171183086,-1.205623788058247,-0.9285000810022894,-0.7783164324542031,-0.6574516314302451,-1.1674597160332303,-1.308670432355286,-1.1678851461786577,-0.24178276718170183,-0.33108493407991846,1
|
||||
0.6554461867206517,1.1721734286422787,0.6671936303342328,0.562632960454002,-0.865863620774202,0.11196334979105585,0.39654406784464097,0.3050927336497759,0.24667428794424126,-1.5142146623104187,0.17866093498895222,-0.190541934853132,0.24061687812357316,0.08238075398952656,1.1989131630843255,0.6896154480610057,1.3104248816282502,1.7914083052036183,1.488371561744191,-0.2185980990450028,0.22541923847755233,0.37592213378774963,0.269877320271919,0.10836751173924451,-0.8456509791316918,-0.32643770649369014,-0.07282800548911142,0.06783874520626584,-0.1125323458324881,-1.2649478226307418,0
|
||||
-0.6266001442732893,-0.8082689970437332,-0.6387929982191386,-0.6337599440585667,0.15401622534326373,-0.5801244815952614,-0.5523379148642903,-0.7793252234544062,1.193118249931664,-0.38187107842103096,-0.693669570646109,0.1684369123540694,-0.8103955809672488,-0.6688812389318847,-0.3236822078454787,-0.33176244704325414,-0.4055559610688946,-0.8007841627767986,-0.0026078748662834617,-0.46222197397239284,-0.538930564031126,-0.08550141212080775,-0.5855515231958476,-0.5647706559805538,0.3117750092322076,-0.26573905972443757,-0.10464085463150556,-0.5396927741453381,0.9251118819006369,-0.17143312409161587,1
|
||||
1.1283048334768584,1.5229264847577537,1.0919444216768248,1.0776388630741733,-0.919866335772858,0.37134477871692617,0.7412045011700554,0.42031794931465905,-1.303535649793779,-1.390196079313009,0.7069110198428742,1.0283636423871407,0.5137938510746759,0.8844136357567532,0.5337793957834109,1.6083891710543348,1.248978787063865,1.2887726757961073,-0.5611710334775418,0.23596087771825436,1.0789833712474959,1.679945198311933,1.0045148076430814,0.9972327202480512,0.589369047091843,1.3623676808331049,1.4969914958283084,1.1264940065834284,-0.675044742972024,-0.1580731399921769,0
|
||||
2.1939017839133808,0.389540759214554,2.180673461554962,2.3826024849084484,-0.28340576614584573,0.8658663815288659,1.2642619618304132,1.7875332771232455,1.5480347356769466,-1.3686276300960678,2.3089890653792295,1.143966999962341,1.868895414266331,2.430350410612664,-0.7367863729582759,0.6608551876965781,0.7703757202275063,1.2023193475380154,1.2445543099694356,-0.39314381196766446,1.766174834070756,0.2906590872611681,1.6826417190626153,1.784669138092663,-1.005620424677922,0.14224804704104385,0.37255188250440835,0.9113479373358114,0.6356637552171868,-1.1988159013385158,0
|
||||
0.026077987869081005,-0.47421846740994794,0.06814854875106044,-0.07292873867273991,1.10832134610522,0.7834461143935428,0.37211285729969024,0.26854279964854955,0.49552377794955477,-0.09069701399233068,0.28609323903140865,-0.7344861541806549,-0.003804623990571401,0.05147673469207393,-0.17062130476779852,0.3421604106853556,0.22130694861547628,0.484555668744089,0.13038335337449197,-0.40794627525439203,0.11691532329493255,-0.5586277291212483,0.13213279138982595,-0.0017863361863867538,0.9469478077245924,0.7015976020792177,0.4402264888618655,0.5032534091597761,0.3589586278216869,-0.14938915032754085,0
|
||||
1.5245736994204406,-0.12346541129447378,1.516695213019416,1.5929972680233118,0.2705077962689348,0.23559375049404094,0.9560023925384158,1.3678285265159424,1.409331741247756,-0.2848130569447967,1.6460772906656387,0.6146253100127387,1.5914051206896844,1.7018985271727058,-0.12253934568580459,-0.45846305351356936,0.04486082385719575,0.6413779851192327,0.5855088900207022,0.24582918657607267,1.6938388906156758,0.37926578267114486,1.6897055410565684,1.6930560368475833,0.41057966677546825,-0.1996620518490489,0.4101488860363289,0.9608656834324855,1.500367278328124,0.2661063551650287,0
|
||||
1.2182145761699399,0.06742060563911792,1.2237636327831458,1.1580093940785536,-0.42844162928509255,0.5870919485711549,0.46573850307933407,0.9629915456718505,-1.1444351561838235,-1.239216934794424,0.14796599097682187,-0.6971685791037479,0.37361093074450485,0.23506132551860862,-0.2751995657711351,0.25665693392624706,-0.007565660495903633,0.4905872962969792,-0.5611710334775418,-0.43076673948809674,1.0886281637081738,0.0716500853987735,1.2411528444405229,0.8990758260568946,0.33059494400235284,0.8229948956177229,0.6131727051086997,1.4679957038018678,0.1040986420626735,-0.20950907877501862,0
|
||||
-1.403153921903905,-0.2236805701846089,-1.4145734665448608,-1.1871886005360954,-0.9352956829153304,-1.0011950816366042,-0.9904600261133424,-1.1776885295474335,-0.4346021846932566,0.4161615426057755,-0.12680326590595845,0.28404026992927034,-0.2108440140166706,-0.4915510329631676,1.684140266820113,-0.7631663525096652,-0.9557521839573353,-1.4226449634797715,1.0627996313737085,-0.23278379302811666,-1.1465524890537977,-0.13231249648834212,-1.1743210863918703,-0.9741939679734445,0.3635298298501064,-0.8404553607801439,-1.0452021999123662,-1.4159861292078537,0.33893391465490746,-0.204165085135243,1
|
||||
1.3880440901457611,-0.688965236460239,1.472755475983976,1.3497706610363724,0.8691664653968879,2.8851629263442864,1.5282502100006878,1.9888676593333905,1.4909217379708097,0.8852753130742363,3.036756286311999,-1.2603800246938042,2.6905829934324115,3.695943581841682,0.4660639700762693,2.79844210667429,1.0888807058135404,1.9482306215787617,0.9120762393674959,2.2805511191974905,1.563634192396532,-1.086924252697712,1.6155354101200572,1.7083248870550967,0.7869783621783617,2.5240936797585434,0.773972197137529,1.7463195870348962,1.6023112726317292,1.936772366799941,0
|
||||
-1.072818867268583,-0.9275727576272279,-1.1006484563916583,-0.9640546263002511,-0.5642198841388549,-1.274151613384763,-1.232968485146781,-1.3563805373890225,0.5771137746726085,-0.3692894830444821,-0.1797767983139899,1.527283396132743,-0.29711042652754527,-0.45476053379953335,0.7757919231627799,-0.9497193927113564,-1.5369533169470713,-2.2135923899154313,1.9080327708595275,-1.4521367062722945,-1.052515762562194,-1.0384413438884799,-1.1005041465550562,-0.9129004407118556,-1.104425082221182,-1.2829408123549852,-1.4159086547371023,-1.8428632507309033,-0.2927547643335039,-1.3471117248422946,1
|
||||
0.12264771150239057,0.7426798905416976,0.31176997964755826,0.07970476976978896,0.7457316882571035,2.550633606795033,2.26774524058947,1.3238447076331106,0.6627832712318145,1.997847818514762,1.665385400608753,0.19480259039753647,2.016267202305742,0.9727108337494754,1.0538659198536442,3.7444214813636996,2.352189861031773,1.5018901826648918,-0.4045369202161835,1.7001712044970498,0.4255486820366074,0.6852096555018189,0.5206430010572675,0.2894124499140444,1.5491857203692236,2.995084445195907,2.587883013692956,1.2050393969436695,-0.048817349392734743,2.097092175993215,0
|
||||
1.288144376042337,2.145692115003596,1.3311718788697784,1.2637600927685273,0.3653982811951445,0.8682905070328456,1.5512057098415815,1.2123364344090304,-0.29997869010021816,-0.4753343583611074,0.11133009005911775,-0.1925700639333989,0.21905027499585464,0.3535267328255111,-0.826539363244664,-0.17396966720599022,0.5471403674981801,0.018109804653918742,-1.0887029054992854,-0.4936772084566887,1.3562711544919697,2.194867126354815,1.4495355932621508,1.3309661604979837,0.42469461785307655,1.085766252517524,2.2853717391207335,1.5209284668707261,0.1841974947297922,0.5974339608311284,0
|
||||
-0.8763494295318491,-1.0158575404590142,-0.9107311485384765,-0.8216436853977533,-0.9391530197009493,-1.2363352555226734,-1.2170029350074396,-1.265284473069017,-0.05520869993105692,-0.17876818162817149,-0.7565446978967632,-0.35664570652697297,-0.747133545125941,-0.7089828830202459,-0.46472262115266083,-1.1864862929006696,-1.4820633515550146,-1.6222918354804352,-0.4045369202161835,-0.8180978621574664,-0.7583495925115353,-0.5602995535629461,-0.7868704500235219,-0.7288017324955531,-0.6809765498929261,-1.0522091209017383,-1.3839916908156966,-1.558221586099334,-0.10160977501424487,-0.5094407218074365,1
|
||||
0.25251733983684194,-0.9060980807221989,0.28003572512196206,0.10155991416571661,1.3860495946697335,0.9288936446323481,0.4011351678128197,0.8316595794301556,1.3440597438693134,0.29753507191260264,0.7143372159748409,-0.8817283254080156,0.8955227264352961,0.30974603882078616,-0.5083970673188051,1.689228821808401,0.9637336141319479,1.049518116198132,0.669736667906527,0.9156406503004919,0.10485933271908572,-1.1989364902914563,0.17804763435052398,-0.050646656850429086,-0.15872336002140952,0.5686752490275638,0.0902851482955285,0.5425261043398967,0.5100541908073871,0.1952984394379988,1
|
||||
-0.3701908780745012,2.4797426446373807,-0.42397650604587417,-0.4060434395461569,-0.9622970404146585,-1.2906356668118277,-0.9055246767020366,-0.8920724774920876,-1.009811661590785,-0.9768008026549779,-0.6253485662320122,0.3955873693439374,-0.7845156572139864,-0.5732259411064355,0.8246752482294739,-0.7818216565298343,-0.7883256694103405,-0.3427825772606743,-0.11343389840026334,-1.0055957304560148,-0.49070660172773956,1.770223718163607,-0.5742494080055223,-0.5063127723289315,-0.3610376588004658,-0.987207785247577,-0.9154057754113976,-0.7333242364681933,-0.8443445906547971,-1.1333519792512625,1
|
||||
-0.44012067794689763,0.007768725347370569,-0.39614800592342814,-0.4839464542477707,-0.5889068395668118,0.19923186793433945,0.4559004317189511,0.0037106507413584428,-1.034288660607702,0.00636100748390233,-0.03471843386956716,0.6207096972535385,0.46275289033907535,-0.2520448834079087,1.2325705344417213,1.5516459546596537,1.9981701602388013,1.7391341997452372,0.9830048944292432,0.5233753732022135,-0.6112665074862061,-0.4984420492201322,-0.5417558268333361,-0.6094865744454139,-1.0103254083704583,-0.26650739702531434,-0.03465258651823815,-0.26085663836648226,-1.3649871329910666,-0.6630805389509908,1
|
||||
-0.8730194390617351,0.18911044143428205,-0.9146369029416266,-0.8283412296481182,-0.7810022114906002,-1.247243820290584,-1.1498859725083472,-1.1809408541831359,-0.610020677647822,0.29214295960836706,-1.152608491601672,-0.18040128945179884,-1.1409397182380834,-0.9200867672211792,-1.0324904213125379,-1.2816283434035323,-1.3201444364932864,-1.396306856498818,-0.7192828270526863,-0.6546539966998502,-0.9584790360705899,0.17028772745893606,-0.9881893768511962,-0.8526975456079463,-0.9538656040600245,-1.211331775913285,-1.269396024050403,-1.359296847469593,-0.5712803201987118,-0.37918087683790064,1
|
||||
-1.333890120125531,0.08650920733247668,-1.2734780887310573,-1.144888321060106,0.40628605112269817,0.033664096012498826,-0.22391029928350764,-0.41816231628974576,0.6464652718872044,0.25439817347872046,-0.9253668899634806,0.10150865270526925,-0.7478524318968648,-0.830391530260239,0.9140275555235121,-0.03327758272054814,0.17057164117699314,0.022130889689178666,-0.5390058287707458,0.131726865407548,-1.2405892155454017,0.23716070512684265,-1.1351168743254285,-1.015637989965266,1.1680820412737933,-0.0360062067623305,0.11342176585363345,-0.17821322763961994,-0.45295246966774133,0.20665442592252264,1
|
||||
0.13596767338284682,-0.5290981972783556,0.012979767806562416,0.033526964675167054,-2.3871972490220412,-1.6685568328823248,-1.114091789542154,-1.1627897852638829,-1.1362761565115191,-1.4459145731234389,-1.1734018407711795,-0.9170177714046557,-1.2396428718859422,-0.8671820294238732,-1.3161739798963012,-1.4518579925875752,-1.26489932394916,-1.488188649554511,-0.6468764916771528,-1.2183811402027227,-0.23994199775012875,-0.7960267998423177,-0.35032625079719676,-0.31021711037815425,-2.1362280059943664,-1.4177840086588307,-1.1922932460380182,-1.2737506723163738,-0.7515027386997282,-1.3765036898610619,1
|
||||
-0.7364898297870557,0.23444587045601034,-0.7237431564876574,-0.7292880752085097,0.491147460406299,-0.025484566284615467,-0.5443034899199776,-0.6882601336547406,0.2956282859780737,0.5042327102416175,-0.7946658380408607,-0.6032662026874007,-0.8449021459715987,-0.6990494482460647,-0.611372596352742,-0.39783331544801975,-0.4996981426491914,-1.1484069640750334,-0.7754346789765695,-0.4227487385411194,-0.6160889037165447,0.5681819445829815,-0.6131004289722662,-0.6025065286362649,1.1257371880409672,0.4726330864179872,0.17936112589423228,-0.4563663600240389,0.6101777566412853,0.5139340602096313,1
|
||||
1.1049949001860595,1.3081797157074628,1.1798238957477059,1.0797538770479729,0.9154545068243072,2.1191392670865756,1.5413676384811983,1.1042353584223523,0.5730342748364563,0.5509643502116551,1.1064403717427007,-0.26558271082299933,0.817164068404585,1.292420271481457,-0.3833839737056213,2.6251032401535523,0.8600080967021602,0.05228902745362951,-0.6601756145012303,1.8148902949691876,1.7878756171072798,1.4057659898735146,1.6685140750747083,1.863194653445588,1.2904116172797335,3.876367329301381,2.3819671174258215,1.3996953643581802,0.8049636028999594,3.4798505302852063,0
|
||||
0.38571695864140676,-0.5481867989717152,0.42454863803852244,0.23374828752818366,0.27745100248304816,0.9894967822318506,0.03302733107849266,0.5460745018951498,-0.4835561827270891,1.2375599836176019,0.023700975701906744,-0.6685719590719877,-0.18999629765987597,0.01836528544480316,-1.0633430117234837,-0.3263213167040381,-0.4117569430891538,-0.19500770221486605,-1.3576407226084097,-0.07365731269579603,0.20612965355619808,-0.8328069375596663,0.1886433673414541,0.06561473115820737,-0.8268310443615472,-0.1328167066727837,-0.34236960004103384,-0.10461961188904609,-1.2630431386874614,0.2460663790158688,1
|
||||
-0.8097496201295667,0.46112301556465013,-0.7920938585427867,-0.7811059175665968,1.1546093875326393,-0.04754410837083454,-0.4801920582214823,-0.6647194981963237,0.22627678876347782,1.4820024080762635,-0.2084914233575959,2.0322875371191453,-0.35318359465961363,-0.3576336160075389,1.4397236414866448,-0.4141567064656679,-0.07915881654798558,-0.7044791761823196,-0.23312600381696175,0.38213520267468853,-0.6739576584806087,1.1282431325517008,-0.7003386305975916,-0.6581287686779203,1.1586720738887206,-0.51698535711109,-0.40078955937524874,-0.7966728013022139,-0.1980924839087279,0.4478021389174063,1
|
||||
2.1339619554513263,-1.1208448497724894,2.2002022335707134,2.375552438329117,0.3908567039802247,0.9022282640885673,2.013595063779578,1.874261934075308,0.09165329417043937,-0.5346475937076938,1.9307481423910415,-0.7922878329682551,2.0629948424157987,2.211079035597404,1.8884885929185868,0.17270806583548592,1.6695181131650707,1.576280255817203,-0.32178682264414554,1.0846354394906308,1.5998021641240716,-1.4614129276379901,1.6897055410565684,1.6319806360175304,0.2976600581545993,-0.2296272065832369,0.8977531010733905,0.9318380391689179,-0.9226230148522082,-0.33576092851472233,0
|
||||
-0.34022096384347406,-1.3642245213628186,-0.352208268887988,-0.41697101174412077,1.4014789418122071,-0.17553793498098344,-0.6098906323225303,-0.30324684582826283,-0.993493662246175,0.531193271762793,-0.7228792754318459,-0.26355458174273244,-0.6860281695974046,-0.6537971342747946,-0.34732250439412565,-0.17319236287181655,-0.4647471530804585,-0.18093390459145597,-1.1404217164818096,-0.15383732216556995,-0.4497162337698609,-0.7241383488493179,-0.40824959114761533,-0.49584270361520816,1.1116222369633588,-0.09055815512456997,-0.3799666035729542,0.12930905070558504,-0.889855302397478,0.2487383758357566,1
|
||||
-0.6099501919227184,0.8786861776068816,-0.5509135241482577,-0.6178973392550707,-1.9968347663174744,0.2840762605736429,0.06942819511190941,-0.43395932166315715,-2.380523606538087,0.8601121223211385,-1.2268704529213421,0.5314720177218046,-0.5681307391658761,-0.9121032289026707,-0.6951153417538812,1.8042698632661107,0.8898855555270445,1.1379819869738539,0.7332769213993421,2.4680489874960387,-0.8041623566997526,0.5514637001660051,-0.6003855493831499,-0.738181169051597,-2.027072384327527,0.6647174116371406,0.2684371034929364,0.0217360160817766,-1.2375571401115604,0.7804657429934504,1
|
||||
1.264834442751538,0.40624328569624246,1.3360540718737166,1.2006621758835097,1.2549001439587135,1.71915855892986,1.8086352437716007,1.908333906449332,0.7525322676271738,-0.025991666341508676,2.198586282883986,0.46251562899273757,2.136321293050042,2.191580071040678,0.9056132126841631,2.110527770930554,1.3978023555500827,1.4878163850414814,-0.28927785574084464,0.9939703518594252,1.1006841542840198,-0.05039309884515652,1.0080467186400581,1.036495477924514,0.5046793406261919,0.8829252050860984,0.6565538630301465,0.7440121056987761,-0.7424005963511919,-0.29568097621640355,0
|
||||
-0.7131798964962566,-1.1971992565459262,-0.7711004286258544,-0.6901603166932193,-1.3194864267629083,-1.2649399364696388,-0.8648606484124539,-0.5005545403942052,1.2828672463270232,-0.121252317049664,0.9638574060089333,0.19480259039753647,0.8257907096556725,0.12836887794406937,0.5037281713571646,-0.6193650506875281,-0.6834727007041418,1.4978690976296318,1.3997107429170073,-0.8335170947478078,-0.6257336961772219,-1.1955928414080605,-0.6943343819027311,-0.6393698955658326,-1.2926244299226293,-1.151631967635172,-1.0263458566025108,-0.42733871576047144,0.41903276732202516,-0.9970801414369793,1
|
||||
-1.2326584098340614,-0.35968685724979294,-1.2163564305849845,-1.0927179763730523,0.8383077711119421,-0.2560189017131227,-0.943073315727498,-0.7632184728775947,0.5036827776218603,1.3076574435726596,-0.5966339411884063,0.09136800730393609,-0.666618226782458,-0.7097186930035186,0.4496359673899217,-0.6520118327228241,-1.0558698573026088,-0.680754774474285,0.9800495338016706,0.2495298023977545,-1.141730092823459,-0.4298972471105277,-1.1450062251169635,-0.984227783824096,0.44821953631575745,-0.6983129601179707,-1.0357740282574384,-0.8909272697345031,0.3352930577154924,0.41173018184891963,1
|
||||
-0.03719183106308794,0.7760849435050762,0.029091004719557195,-0.12051655308322806,1.910647397513816,0.7543566083457816,1.0379863205416067,0.6650166600008355,0.19364079007425655,1.2519389497622284,1.247043018507943,1.9065435341426118,1.6805470802842546,0.565072103016408,2.8140663052469677,0.8621770102475701,1.0928267852809774,1.9281251964024613,1.0568889101185632,0.5856690728671914,0.11691532329493255,1.4375306542657702,0.25574967628401185,-0.04344848460974437,2.0055691385452326,0.5940303799564919,0.7872757522334394,1.0137984465013434,0.38080376945817335,0.7697777557138983,0
|
||||
0.39237693958163544,0.18911044143428205,0.5011990682003461,0.29085366482076963,0.6685849525447394,1.4476565024840888,1.5544850669617092,1.3740234305839472,0.2793102866334625,0.18609808429174055,0.542544545455337,-0.4209373983714265,0.8178829551755089,0.4708884251575043,0.9909586900547019,1.147447700889323,1.2066993641984622,1.5079218102177816,-0.7030283436010358,0.1008884002268659,0.5605757764860897,-0.19751364971455138,0.6760470849242443,0.43228526257006117,1.130442171733503,1.4246030022041105,1.593586874133396,1.7685171973540945,-0.06702163408980713,0.03564662944969624,0
|
||||
-0.4101507637158705,-0.20697804370291958,-0.35855511979310695,-0.4846514589057038,0.9540278746804898,0.9167730171124476,0.08156181645638173,0.21526662466371113,-0.5937026783032119,1.2105994220964265,-0.6674303443131588,-1.09265374975575,-0.6270794543816405,-0.586470520805344,-0.4298632008182152,0.20457754353660823,-0.05097253463771708,-0.138712511721225,-0.31735378170278605,0.1274094802822527,-0.3677354978541032,-0.5452531335876671,-0.32030500732289413,-0.42124346402992907,1.0457524652678518,1.1472332365876532,0.655975447591194,0.5596011892008186,0.6538680399142591,1.4357729630709593,1
|
||||
-0.27695114491130507,-0.10676288481278445,-0.2413824876985986,-0.3915908440585271,1.000315916107909,0.8440492519930447,0.3416148360825032,0.37912183726242943,1.0136202571409452,0.5761275409647528,-0.2802779859666107,0.6856098278220722,0.015605318824375158,-0.4698446384566234,0.4127731320937264,1.3161227414050185,1.3448121455587778,1.558185373158533,1.309572243776037,1.4546970216588182,-0.41354826204232087,-0.09386053432929563,-0.35809645499054554,-0.513947197432688,0.1518055636859781,0.2375218723497436,0.07235426968799691,0.3051824247730812,0.44087790895851264,0.0910905634623701,1
|
||||
-0.1337615546963975,0.42533188738960204,-0.07978189926825607,-0.22520974478630174,0.491147460406299,0.7252671022980203,0.5100098242010573,0.3283236239047927,-0.2714221912471503,0.42874313798232433,-0.7634758142865992,-1.177429545310897,-0.7356313567911577,-0.5820556609057078,-0.5648933692401477,0.00014650364892152982,0.18184615394110046,0.3237122673336853,-0.88182766156919,-0.10449577787647814,-0.09044771460963033,0.10174292534933153,0.10387750341401211,-0.1885025615811202,1.4080362095931382,1.4415064228233958,1.4935210031945925,2.012690910865279,-0.11617320277190217,1.68961266096031,0
|
||||
-0.7531397821376266,-0.20459196849125016,-0.6666214983415846,-0.7553732475520364,1.7177805582329033,1.2779677172054817,0.43950364611831294,0.36704177432982066,0.6954192699210369,1.9313451000958621,0.21232635745386957,1.1520795162834079,0.3297588377181436,-0.2388003037090003,3.130605869203427,0.7517997947949023,1.2596895741897671,1.4878163850414814,-0.2464251266410393,1.147545908459223,-0.6136777056013755,-0.0019101900359242152,-0.5728366436067314,-0.6515849757318432,2.207883437324288,0.4065560785425985,0.426922933765955,0.5749687655756486,-0.38377618781886585,0.7276938058006643,1
|
||||
0.4789566918046028,-0.42172481275321055,0.6427826653145436,0.31799634415119593,2.9521283296307455,3.219692245893539,2.7809646298894446,2.4906548888417523,2.4944786976643702,2.5442485320105934,1.4455699951025287,-0.2290763873781991,1.0730877588535128,0.9241473748534782,1.3515733831696555,1.8260343846229745,1.272091538230285,2.0628315450836743,-0.13264374247948674,3.271082620801005,0.44001587072762305,-0.4599900870610857,0.5453663780361048,0.22244763543252194,2.1373086819362452,1.6551041924670942,1.1458933243840657,1.963173164768605,0.7048400370660612,2.4912117069266815,0
|
||||
2.2272016886145223,-0.3024210521697158,2.0927939874840815,2.477778113729425,-0.8095465037041759,-0.41067810886705275,0.19191218354867665,0.8171015548703451,0.10389179367889721,-0.9228796796126271,0.8727627334568046,-0.8884211513728956,0.5964658297309309,1.4620244726258107,-0.6217903541538407,-0.7235238314668059,-0.48842362988508403,0.48053458370882907,-0.8640954978037533,0.10828963187022957,2.190545702340558,-0.3346032539337604,1.922811666857034,2.463042340169322,-0.3422177240303212,-0.37100126994453364,-0.01845695422756472,1.3331025334005844,-0.21993762554521437,0.48187009837097683,0
|
||||
0.21921743513570013,2.028774429631771,0.3269047779597657,0.12588257486441046,1.4400523096683897,1.549469773651253,1.454464674797816,0.9245831404502226,2.106926213229865,1.6114131033779076,0.013799380859284019,-0.28180774346513277,0.22336359562139824,-0.06588495763991949,-0.46872945107616015,1.5555324763305223,1.135669933784586,-0.02210104569868226,-0.17254111095171937,1.3011214650590208,0.3749135216180512,1.959139880075444,0.6972385509061045,0.25385784157369223,1.7279751006855986,3.2486357544851887,2.6480382193440284,1.0803912774589388,2.452451367985009,3.493210514384646,0
|
||||
-1.056168914918012,0.32273065328779665,-1.0025163770125076,-0.9806222357616804,1.000315916107909,0.8076873694333432,0.15223196239513218,-0.46834103924058196,-0.4835561827270891,1.224978388241053,-0.23473064969054624,0.6430191171364722,-0.24319391870824852,-0.5003807527624399,0.8515210087169202,1.9791633384551959,2.600229141842136,1.2948043033489973,1.1145184423562324,2.6234748520066766,-1.0163477908346539,-0.03367485442817958,-0.9835978925551261,-0.9083197856496017,0.1141656941456889,0.1545414438550696,0.04979606756884484,-0.3744059526916135,-0.48389975365276394,0.3476022581716097,1
|
||||
1.574523556472152,0.289325600324418,1.5655171430587944,1.6599727105269617,-0.06430903672272932,0.26710738204578205,1.2101525693483073,1.0382596300981048,-0.36525068747866185,-0.8653638150341183,2.4045394556105384,1.3731455860324755,2.202458875975046,2.1779675863501335,1.5919831785796246,0.3755844970548253,1.3273366507744115,1.6285543612755844,0.47172750585914963,0.5307766048455771,1.3032247959582437,0.309049156119843,1.2552804884284299,1.2568031737757763,0.12828064522329718,-0.17814860742450378,0.5773109478936372,0.701324393546471,-0.9644928696554746,-0.5074367241925204,0
|
||||
-0.823069582010023,-1.960743324280292,-0.8150401656612944,-0.7747608756451982,-0.11599734965001422,-0.696482505786306,-0.6571133748523682,-0.5439188688702364,-0.48763568256324247,-0.121252317049664,-1.1209233881052791,-1.4425060161017516,-1.0533793095395456,-0.8771154641980545,-0.29523371538863236,-0.5517395736144152,-0.6834727007041418,-0.9147819235264223,-0.930591111924141,-0.7095464647214648,-0.7438824038205192,-1.5784406385568273,-0.7282407274737082,-0.6899752276821622,1.1163272206558945,0.031607475714811435,-0.20007940205868846,-0.3132771488895126,0.2642963473969099,0.22869839968659766,1
|
||||
-0.3002610782021041,0.07457883127412787,-0.26921098782104463,-0.3845407974791955,0.04292492591745829,0.4101307867806078,-0.06764893250942586,-0.44263218735836346,-0.10416269796488939,0.6462250009198104,-0.4892016371459498,-1.228132772317564,-0.0742555275411192,-0.5036918976871669,-0.42064749199416623,0.7898877071694147,0.9394934116891169,-0.2410491258685941,1.1485050895733195,0.7497297076284211,-0.3580907053934261,-0.5786896224216205,-0.18185409624140636,-0.4199347054407138,-0.106968539403512,0.6946825663713282,0.5732620398209687,-0.15960138514121486,1.3201448598271073,0.6582218884835788,1
|
||||
0.3291071206494665,-0.5648893254534036,0.4201546643349782,0.2094256268294898,1.617489801806829,1.680372550866178,1.538088281361071,1.407475912551171,1.5113192371515731,1.0560255360416848,0.2940145149055068,-0.4523733991155602,0.30244114042303316,0.2516170501422441,0.0834117123820688,0.2519931079212047,0.1604245796892965,0.34180714999235606,-0.5493495909672507,0.32539242674223284,0.7004252671659106,0.3274392249785173,0.8031958808154067,0.5849737646451937,2.668971839192834,1.6374324345469322,1.304957570096037,1.6182564505779813,1.3001201466603278,1.6495327086619913,0
|
||||
0.49560664415517314,0.8882304784535618,0.49631687519640855,0.3705191911672165,-0.2494612024324054,0.19438361692637912,0.6067508592448223,0.9614428196548491,-0.28366069075560807,-0.1500102493389171,-0.26889115189759444,-0.6706000881522544,-0.3546213682014614,-0.18030341003882183,1.2441903412198696,0.15949389215453277,1.0172875497614584,1.330994068666338,0.7347546017131283,-0.7490197001527382,0.1265601157556097,0.0716500853987735,0.1109413254079657,0.008901858958872468,-0.2528230338721332,-0.2703490835296974,0.2302616845220633,0.6774192747411806,-0.5731007486684189,-0.9035602527409028,0
|
||||
-0.4767505731181535,-0.6269272809568214,-0.35074361098680656,-0.5160241661837295,-0.0072204522955788275,1.345843231316925,1.2986952115917536,0.14464471828846026,1.2053567494401216,2.057161053861348,0.12321200387026507,0.0710867165012693,1.750997983834802,-0.15271053566609616,0.18318177747720601,4.067002780045791,4.742950292660746,3.2570938005559213,1.859269320504577,3.8674985373954014,-0.5124073847642635,-0.7324974710578058,-0.23094765909938306,-0.5370685991754939,-0.6386316966601006,1.3154991054796314,1.4160133343749406,0.4486131376048262,0.6556884683839662,1.442452955120679,1
|
||||
0.10599775915181966,0.3561357062511753,0.11599404018965075,-0.016528366038087303,-0.4569859214986673,0.368920653212946,-0.40279923018647007,-0.4091797053911393,-1.1444351561838235,-0.30817887692981677,-0.0961083218938281,-0.31222967966913273,0.12990831540128417,-0.12254232635191606,-1.0697539396010827,0.8155387501971469,0.053316708430276145,0.5006400088851294,-0.5375281484569595,-0.3777245793773234,0.13138251198594825,0.309049156119843,0.27340923126889555,0.0036668246020108335,-0.7421413378958962,0.829909931325612,0.03707092791188693,0.44349061214654917,-0.6131501750019777,-0.21552107161976686,1
|
||||
0.48561667274483095,-1.1399334514658486,0.6086073142869787,0.2866236368731705,0.9308838539667806,2.8584975458005046,2.1726438841057685,1.665493666983557,2.9962571775111497,1.5305314188143786,0.35441424344550554,-0.9377046880233758,0.5864014149379954,0.38884561202259976,0.00487784588147891,2.401239591911523,2.0968221469247412,2.3141493597874296,2.5094486585705917,0.6399447715851925,0.5219966066433803,-1.058503237188852,0.7325576608758719,0.3360915062627277,0.372939797235179,2.7699616160390597,2.231000687859187,2.2432045564877257,3.2698237508835586,1.1792612683617205,0
|
||||
-0.550010363460664,0.124686410719195,-0.5611661294565268,-0.5713670318314823,0.0483251974173239,-0.35662011012829675,-0.5464350720480605,-0.08425698702430487,0.7851682663163951,-0.30098939385750223,-0.06838385633448453,0.3124340770530038,-0.18712075057618013,-0.2612425081988173,0.29537301533519156,-0.3574134900709867,-0.7471736978213486,0.07842608018282007,-0.6956399420321039,-0.011363613030817829,-0.35326830916308755,0.4929498447065864,-0.43120701262796385,-0.41099152174774173,0.5564341612440894,-0.23577390499024978,-0.6194305952993403,0.0012459142486701158,-0.3692127600612085,-0.004433322848622567,1
|
||||
1.1349648144170865,0.7379077401183579,1.1895882817555816,1.1446143055778233,-0.404526141214259,0.7689013613696619,0.35702781454710303,0.9688767045364546,1.311423745180091,-1.2877459455325404,2.314930022284803,0.9350697046948734,2.571966676229959,2.082312288524684,-0.023971329567717387,2.908819322126958,1.0776061930494325,2.107063480471535,1.1425943683181743,1.530559646003297,1.0813945693626654,0.3057055072364472,1.184642268488895,1.0212266277170006,-0.8315360280540836,0.39810436823295586,-0.08670997602397429,0.7662097160179745,0.3571381993519788,-0.46535277427928556,0
|
||||
-1.5147086026527283,0.6925723110966304,-1.5146584231255869,-1.2657966198956427,-0.21860250814745957,-0.9582880602161564,-0.5777529325452794,-0.9592871866299362,-0.3856481866594253,0.7109303485706324,-0.32632040198480616,1.4339894584404758,-0.3215525767389596,-0.6063373903537065,1.6681129471261151,-0.31466175169143257,0.7156943333215856,0.3639231176862863,2.6380068458700077,0.7811849421127174,-1.4612138430833954,-0.06042404549534233,-1.4657037436424514,-1.158292676189747,-0.9773905225227054,-1.1671523811128797,-0.9535811943822706,-1.405058074896864,-0.7933725935029945,-0.5261407019317359,1
|
||||
-0.04718180247343012,-0.2690159992063372,-0.09345203967928208,-0.13426414391292454,-1.2184242029797108,-0.7713879838592912,-0.7605770919923951,-0.9447291620701256,-1.279058650776863,-1.0792509364354466,-0.5802963096980789,-0.8407601179866288,-0.7155025272052868,-0.47352368837298686,-1.5782206568931674,-0.5027694005614711,-0.5335216809415135,-1.041848210640641,-0.9527563166309371,-0.8514034045526034,-0.13626047879784753,-0.493426575895039,-0.2531986983803364,-0.2201308941538262,-1.5979778715682271,-0.40327143658135123,-0.5112669082151996,-0.8151138929520095,-0.9481090134281098,-0.7793124006161151,1
|
||||
-1.8933285191047053,-0.5243260468550159,-1.8710585124130488,-1.4847005661838881,-0.7123416167065962,-0.8763526181816294,-0.9725875298086468,-1.1731043005371105,-0.07152669927566813,0.5797222825009107,-1.044186028074953,-0.43655399228948005,-1.0598492904778611,-0.9615496597785952,0.8779660862120168,-0.4607949665160907,-0.6417570034769445,-1.0239543822337336,0.8869556740331273,-0.4776412065627339,-1.6736403970298137,-0.5770177979799226,-1.663490759473149,-1.2752084434929916,-0.06462368617068583,-0.7620849560907296,-1.0179588327376976,-1.405058074896864,0.4263144812008543,-0.5154527146521838,1
|
||||
-0.7131798964962566,-1.0373322173640434,-0.6700390334443408,-0.6947428469697849,-1.098846762625544,0.024937244198170498,-0.1301206856478572,-0.5389629456158329,-1.1729916550368926,1.0380518283609004,-0.8654622411656131,-1.0754146525734831,-0.8794087109759486,-0.7836675963224236,0.08220966340501916,1.3036858720582392,0.7275325717238981,0.8585165770232774,0.42296405550419847,2.1374606407591243,-0.8330967340817848,-1.3059332545601068,-0.8161853112984288,-0.7700276280558388,-1.1185400332987903,0.3412474079680864,0.14002887604545408,-0.03973428941754262,-0.485720182122471,1.1345053216285979,1
|
||||
1.4446539281377009,-0.08051605748441576,1.4776376689879136,1.4449462898573486,1.509484371809518,1.2828159682134421,1.672541923286304,1.9269186186533456,1.2461517478016486,0.2328297242617806,2.3094841451213606,0.8539445414842063,1.65969936392746,2.3718535169424855,-1.1530960020098722,0.5613602329223427,0.051061805877454756,-0.35947008015700394,1.034723705411767,1.0914199018303812,1.1320297297812216,-0.21423189413152832,1.085748760573546,1.0779394999163354,-0.14460840894380123,-0.03984789326671357,0.10127504163562809,0.41958549334125866,0.27339848974544606,-0.12934917417838193,0
|
||||
-0.3602009066641584,-0.3763893837314823,-0.3409792249789308,-0.40463343023029047,-1.1412774672673456,-0.16075076940670488,-0.02124602925961983,-0.09169087190591035,-0.867029167325441,-0.7736979058621197,-0.016400483410715233,0.1887182031567362,0.07167848695644385,-0.13873014598391517,-0.5432564876532507,0.9624492693559791,1.0251797086963332,0.5689984544845509,-0.15480894718628282,0.4382612093035303,-0.5220521772249407,-0.7274819977327133,-0.4817133398847315,-0.5143834502957599,-1.681256082926118,-0.41249148419187065,-0.3163409052881658,-0.4263142106688161,-1.6071041194621292,-0.7532604316222079,1
|
||||
-0.7264998583767135,0.01731302619404994,-0.7667064549223102,-0.7204755169843452,-0.5472476022821348,-1.0436172779562558,-0.9734073690886788,-1.0007930438855661,0.6097497733618298,-0.09429175552848733,-1.02537299787397,0.523359501400738,-1.049065988914002,-0.8484188748504198,-0.28561732357223374,-1.0321136521337702,-0.9495512019370763,-0.677940014949603,0.5544776034311881,-1.045685735190902,-0.7945175642390754,0.19034962075930825,-0.827840617588452,-0.7497418699229997,-0.41279247941836333,-0.9695360273274147,-0.9580928348061011,-0.8625826288653726,1.121718156629019,-0.8167203560945452,1
|
||||
-0.30692105914233225,-0.17834514116288144,-0.28581044403443273,-0.3450605366349385,-1.6759043457540348,-0.40219366960312236,-0.5677508933288902,-0.7731303193864019,0.35682078352036406,-0.5058896614184394,-0.6510927128228313,0.2576745918858033,-0.12313982796394818,-0.5198797173191659,-1.2612804099443584,1.1458930922209756,0.4090275861378645,-0.07236460863943343,0.9726611322327383,0.21499072139539027,-0.4280154507333365,-0.13398432093004006,-0.2842795151537315,-0.4469823829511658,-1.7777082486231095,-0.023712809948304558,-0.48813029065709485,-0.7145416431211792,0.6119981851109922,-0.6236685858576437,1
|
||||
-0.7464798011973979,-0.16880084031620207,-0.7256960336892321,-0.742330661380273,1.4631963303820987,0.1483252323507573,-0.07371574318166191,-0.2769185035392439,0.0590172954812181,0.6102775855582415,-0.30305165410464285,0.9837448026212737,-0.29711042652754527,-0.5047956126620758,0.7064737654862391,0.0553351113752551,0.12321868756774206,0.5971460497313714,-0.6040237625773471,0.2982545773832326,-0.6667240641351005,0.6434140444593771,-0.6657259028272194,-0.665545067350141,1.7750249376109604,0.23905854695149706,0.24587890137378401,0.2368820853293935,-0.1179936312416092,0.6121299433405117,1
|
||||
-0.3935008113653002,-1.6386231707048564,-0.4469228131643819,-0.4515162399828455,-0.5696201556387205,-0.9124720881909327,-0.8460043449717201,-0.6123725588216858,-0.8303136688000675,0.1699217473790363,-0.7025810060044694,-1.0673021362524164,-0.7485713186677888,-0.6243647349438872,-0.2587715630847871,-0.7585025265046229,-1.0253723002756985,-0.5587148436541411,-0.3853270761369606,0.6522801576574655,-0.5437529602614646,-1.4196173165955484,-0.5735430258061265,-0.5669519202959128,0.015361036602428258,-0.5700006308715762,-0.8730657652800654,-0.4386082717686801,-0.1744269138025334,0.8572856515652275,1
|
||||
-0.8530394962410501,1.9190149698949555,-0.8921788151235122,-0.8015510526466584,-2.0369510688879036,-1.3926913505293899,-0.9652089762883596,-1.2595851613264526,0.3364232843396006,-0.9929771395676846,-1.218949177047244,-0.5663542534265472,-1.0850103274601997,-0.9468334601131414,-1.2516640181279595,-0.46001766218191703,-0.6163893497577028,-1.5852978531560422,-0.6453988113633664,-0.8045289374779663,-0.9223110643430499,1.394063218781631,-0.8666916385551964,-0.8169248108360581,-1.8369910431490653,-0.7044596585249835,-0.7860142417176957,-1.4871892330778986,-0.03971520704419855,-0.7305484586531603,1
|
||||
-0.4734205826480389,-1.4811422067346434,-0.5470077697451075,-0.5139091522099299,-1.659703531254439,-1.3369364639378476,-1.1153543420334033,-1.000483298682166,-0.7079286737154868,-0.30098939385750223,-0.1961144298043175,0.6369347298956719,-0.3308981047609709,-0.35836942599081156,1.4477373013336434,-0.9606016533897884,-1.1752669474745063,-0.626269072246511,1.3228713666001146,0.9033052642282189,-0.654668073559254,-1.5132394853306184,-0.7459002824585919,-0.6387155162712249,-1.7259534280052113,-1.307066603602511,-1.3190819102564333,-1.3852509764581944,-1.075539006307616,-0.7699604117465073,1
|
||||
0.9651353004412665,-0.05665530536771647,0.9405964385547515,0.9278253732633773,-0.5079027670688278,-0.09117836744247618,0.14796879813896632,0.6805039201708466,0.43433128040726443,-1.161929991767053,1.1475319903395849,0.4442624672703377,1.1219720592763416,1.2140565082629162,-0.2619770270235868,0.17970380484304932,-0.05660979101977094,1.0113178083631607,0.1732360824742978,0.08423562902929739,0.9994138334469083,0.1485540097168665,0.9303446767065692,0.9448823766794344,-0.6715665825078534,-0.1766119328227505,-0.07514166724492181,0.6740042577689961,-0.11071191736278005,-0.6363605707521119,0
|
||||
-0.7864396868387677,-0.9800664122839657,-0.7891645427404239,-0.7641858057762009,0.46800343969258984,-0.42425321168934144,-0.5233156043511608,-0.4491368366297681,0.39353628204573754,-0.022396924805352034,-0.5496013656859485,-0.27166709806379913,-0.63426832209088,-0.5783766109893443,-0.04600889414696435,-0.7857081782007029,-0.35031084852476846,-0.19098661717960613,-0.4385235674332708,-0.3530538072327775,-0.7848727717783979,-0.705748279990643,-0.8292533819872429,-0.7307648703793762,0.36823481354264204,-0.5892090633934916,-0.3724472028665701,-0.20228909729351985,-0.37649447394003666,-0.24825303266339305,1
|
||||
-0.34022096384347406,-0.24754132230130818,-0.3341441547734178,-0.4116834768096221,0.31679583769635405,-0.0029401990976005666,-0.5952974931379623,-0.6393203915175053,-0.2795811909194547,-0.32974732614675656,-0.5035589496677527,-0.1560637404885987,-0.5681307391658761,-0.5147290474362571,-0.594543910674044,-0.4491354015034849,-0.369477520223751,-0.5691696647458174,-0.33360826515443676,-0.3135805718015043,-0.401492271466474,-0.09887600765438882,-0.44074317231980137,-0.4465461300880939,-0.10226355571097634,-0.15970851220346496,-0.41467152991011164,-0.48949202465422753,-0.16714519992370525,-0.17544111932144804,1
|
||||
-0.43346069700666956,-0.15209831383451275,-0.49818583970572905,-0.47266637972084025,-0.8720353596311909,-1.2949990927189918,-1.202470463929594,-1.265811039914797,-0.36525068747866185,-0.5849739752138893,-0.47187384617136025,0.3611091749794041,-0.6091072851085415,-0.4374689991926253,-0.1577994490126002,-1.1177725897597133,-1.4321003482408725,-1.6257097577604063,0.8825226330917683,-0.8273494017116713,-0.5799209319890046,-0.38977346050978384,-0.6639599473287312,-0.573059460378918,-1.2832144625375568,-1.2957720452796246,-1.3836388573979355,-1.6930806063308956,-0.6659426006234878,-1.1687559371147764,1
|
||||
0.046057930689765374,-0.8058829218320633,-0.02168380252139592,-0.0584761431851101,-1.2014519211229906,-0.9641059614257088,-0.8907675696614622,-0.53493625797163,-0.8058366697831507,-1.0684667118269766,-0.7575348573810254,-1.048643348713963,-0.6917792637647963,-0.5551985965162548,-0.7772553551856204,-1.0221641566563466,-1.0175928864684645,-0.05024864094550279,-1.1862298062091878,-0.7724569336900567,-0.23994199775012875,-1.0200512750298056,-0.2765093109603827,-0.30083767382211046,-1.3020343973077013,-1.0233196383887777,-1.0538205899527602,-0.4399742785575538,-1.337680705945458,-0.9823841589275951,1
|
||||
-0.526700430169865,-0.7486171167519858,-0.5470077697451075,-0.5618494689493847,-1.1135046424108943,-0.5587921771602368,-0.6026760466582495,-0.844061970965053,-0.48763568256324247,-1.269772237851757,-0.638715719269553,-0.6823632368178012,-0.633549435319956,-0.5894137607384347,-0.31286376705203034,-0.02084071337376869,-0.3435461408663039,-0.9202103883240232,0.07570918176439546,-1.0062124997596285,-0.6160889037165447,-0.9732401906622706,-0.6254621174616846,-0.6110134594661651,-1.0103254083704583,-0.5369621269338819,-0.5928234851075195,-1.0206979146775101,-0.7078124554267542,-1.2522558377362736,1
|
||||
-0.12710157375616937,-1.509775109274682,-0.21208932967497185,-0.20053458175864122,-1.6566176618259436,-1.4409314480585937,-1.187746150460221,-1.219504132006464,-1.719644633081352,-1.5196067746146529,-0.7070367236836497,-0.9847572826855627,-0.7615112805444201,-0.5132574274697118,-1.3778791607181933,-1.4490596969845502,-1.4225170123913813,-1.5617745056997707,-0.729626589249191,-1.1042788190341981,-0.22547480905911263,-1.416273667712153,-0.3135943764286384,-0.2794612835315918,-1.9216807496147164,-1.3563170245887017,-1.3361451657055357,-1.4655038753045277,-1.09920457641381,-1.328407747103079,1
|
||||
-0.3335609829032453,2.3580528088422166,-0.3678312865005887,-0.38348329049229596,-1.0803315460545773,-0.9051997116789924,-0.21718761718724597,-0.6306475258222991,-0.8996651660146634,-0.8491874781214128,-0.770406930676435,0.38139046578207086,-0.7665434879408877,-0.6442316044922498,0.655186342465445,-0.0667016690900178,0.6604492207774593,-0.681558991481337,-0.4119253217851157,-0.34256872907134545,-0.4858842054974006,1.7267562826794678,-0.5481132666278941,-0.5041315080135724,-0.39397254464821874,-0.5600122459601803,-0.005153399131654409,-0.7341779907112393,-0.9080595870945505,-0.6270085818825042,1
|
||||
0.23586738748627104,0.8691418767602023,0.31030532174637687,0.11989003527197886,-0.8103179710612993,0.9070765150965276,0.4542607531588875,-0.1991724574857879,-1.3565691476637636,-0.06014171093499862,-0.7020859262623383,-0.12969806244513166,-0.2475072393337921,-0.5445293517588009,-1.0156617356338398,1.865676905665834,2.17123393116785,1.015338893398421,-0.4961530996709405,0.6473460032285562,-0.10250370518547673,0.31072098056154035,0.05443074945633804,-0.2035532853570975,-1.3396742668479913,0.631678907699446,0.7022486827074038,0.0439336264009751,-1.1155884326411754,-0.1179931876938581,1
|
||||
-1.6662231690429214,-0.8464462004304516,-1.6254842043149755,-1.3468721555579557,-0.9491820953435561,-0.45091859223312225,-0.4588762369406526,-0.6188772080930905,0.5852727743449141,0.7918120331341612,0.8460284273817233,0.056889812939402325,1.2283673013730874,-0.15307844065773255,1.664106117202616,0.5131673642035723,0.27486088424498656,0.8142846416354165,1.2755855965589498,0.5042555247901901,-1.4284215487170928,-1.2892150101431306,-1.3805846886153121,-1.144768837434521,-1.3914290874658888,-0.8458337218862803,-0.8698266388219309,-1.0297477096537988,-0.7951930219727016,-0.5007567321428005,1
|
||||
-0.5566703444008921,-0.24276917187796848,-0.572395173365584,-0.5805320923846135,-0.2255457143615719,-0.5777003560912816,-0.5128216615667522,-0.7285270100967697,-0.3734096871509663,-0.4753343583611074,-0.5669291566605383,-0.7977637814849752,-0.49911760915717635,-0.5802161359475261,-0.37817509480507194,-0.6613394847329087,-0.4095020405363322,-0.7887209076710183,-0.05284900553502097,-0.8612717134104217,-0.3894362808906276,-0.22927831410680732,-0.37116452567935965,-0.4410929692996963,0.2694301559993827,-0.1374267304780433,-0.020192200544422723,-0.33530400836010216,0.6320228982777717,-0.4747047631488933,1
|
||||
1.3980340615561027,0.6687115589799312,1.3360540718737166,1.4132210802503566,-1.6604749986115623,-0.22208114465740142,0.5755969666036098,0.43332724785746835,-0.06744719943951588,-1.5106199207742608,1.3317016544123674,0.26984336636740336,1.2535283383554259,1.545906810718897,-0.4995820414871061,2.3763658532179637,1.9074103324877367,0.6896310055423536,0.24564241784983087,1.0359106645051528,0.9294890881069978,-0.11893790095476105,0.8738341007549415,0.8750819185879453,-2.0162509218346933,-0.2964725517595021,0.0503744830077974,-0.2751997096496566,-0.9135208725036721,-1.083920038083336,0
|
||||
-0.7597997630778547,1.3010214900724528,-0.7715886479262477,-0.7257630519188439,-1.5810138608278261,-0.9381678185331217,-0.9092959373901833,-0.9496850853245292,0.6056702735256775,-0.543634447548086,-0.5743553527925054,1.245373453975675,-0.4365744600867923,-0.5934607156464344,-0.26237771001593674,0.07632232839794532,-0.6372471983713016,-0.8066147360779258,1.803117468580694,-0.7064626182033966,-0.8355079321969541,1.0379646127000273,-0.8112406359026614,-0.7641382144043695,-1.6760806008643283,-0.759011606887223,-0.9971937184792985,-1.0206979146775101,0.6793540384901606,-0.9590041867535766,1
|
||||
0.28581724453798313,1.5229264847577537,0.22779625997982753,0.16042780310313542,-0.9630685077717818,-0.5682462666257592,-0.5598804362405838,-0.4187818066965463,0.21811778909117222,-0.8995138596276071,-0.31740896662644585,0.4320936927887376,-0.2812949175672181,-0.2549881233409994,-0.8020977007113174,-0.8292372209144309,-0.43937949936121673,0.3377860649570958,-0.15333126687249599,-0.45050335720373363,0.1458497006769648,1.1499768502937708,0.10740941441098915,-0.0009138304602431894,-1.1797048213017611,-0.7474865473740738,-0.48408138258442646,0.026858541540053103,-0.27090962269701746,-0.8180563545044895,1
|
||||
-0.25697120209062074,0.8357368237968236,-0.1471561627225987,-0.33025543881834246,0.383142030408988,1.2779677172054817,0.19437170138877236,0.22393949035891744,0.2589127874526991,2.030200492340173,-0.8619966829706952,-0.5063216326506537,-0.7744512424210511,-0.7082470730369733,-0.611372596352742,0.6235445796562398,-0.11298235484030775,-0.5440378832754418,0.7982948552059435,0.5190579880769179,-0.32674512989622456,0.6266958000424002,-0.17231793654956878,-0.40902838386391865,0.1800354658411947,1.5775021250785561,0.413040963231092,0.07979130460891133,2.2886128057113577,1.723012621208909,1
|
||||
-0.4734205826480389,0.20342689270430195,-0.46889268168210163,-0.5350592919479247,-0.8272902529180195,0.14105285583881716,-0.11306802862319351,-0.39648015205173015,-0.022572701241835646,0.12319010740899748,-0.014915244184321715,-0.2676108399032658,0.007697564344211887,-0.22150876910209222,-0.09889904913715762,0.8785004012652177,1.1193218902766302,0.607198762319522,1.1322506061216695,0.7984544826138992,-0.5895657244496818,-0.3914452849514812,-0.5731898347064291,-0.6009796436155137,-1.226754658227123,-0.14664677808856272,-0.31460565897130777,-0.5408880300856026,-0.33826547607618485,-0.2783129968871324,1
|
||||
0.5355665297965431,0.22251549439766072,0.6037251212830411,0.428682075446702,1.6020604546643566,1.4694736320199098,1.8676636719338982,1.4663275011972137,0.5811932745087607,1.0128886376078026,1.3851702665625303,0.322574722454337,1.514484236200821,1.1982365936225532,0.19720568220945434,0.5357091898946101,1.2658905562100262,1.0816867964802122,-0.1799295125206516,0.5400281443997814,1.2767016166913812,0.668491411084842,1.3329825303619178,1.1608275438999789,1.7420900517632067,1.2017851849498926,1.7960322777668143,1.778762248270648,0.5755896157168475,1.3422530743748826,0
|
||||
1.521243708950326,0.6854140854616205,1.472755475983976,1.5929972680233118,-0.07202371029396605,0.03657304661727482,0.6575808946068008,0.7644448702923073,-0.3856481866594253,-0.8150374335279229,1.1321845183335197,0.06094607109993568,0.8610161614309462,1.2512149124181864,-0.31086035209028035,-0.6349111373710025,0.07248338012925871,-0.37434809478746617,-0.7118944254837544,-0.7101632340250785,1.5949797678937332,0.9995126505409808,1.4565994152561037,1.664699600747916,0.7258135741753915,-0.05675131388599889,0.8775085607100487,0.5117909515902371,0.4335961950796835,-0.38118487445281674,0
|
||||
0.32577713017935245,-0.5004652947383167,0.2370724266873093,0.17840542188043104,-0.4623861929985329,-0.6021840236814805,-0.6843320389494276,-0.4652435872065797,-0.8711086671615944,-0.858174331961805,-0.3188942058528391,-1.0214664190383895,-0.6874659431392526,-0.38338696542208284,-0.4090276852160179,-0.4460261841667899,-0.7133501595290265,-0.5486621310659909,-0.6247112869703569,-0.7329836982587835,0.09762573837357745,-0.8144168687009921,-0.07271804643482493,-0.10757765548129995,-0.43631739788104423,-0.6137958570215432,-0.7102418192149021,-0.48180823646681253,-0.629534031229343,-0.9042282519458745,1
|
||||
0.4356668156931188,-1.3904713486911873,0.3718209535959939,0.31270880921669725,-1.2037663231943607,-0.6361217807372018,-0.6766255497171276,-0.5333875319546288,-0.26734269141099687,-1.1439562840862685,-0.9352684848061033,-1.5402618377706054,-0.8844409183724162,-0.6114880602366153,-0.7071358315243795,-0.5859409643180584,-0.6626148520905432,-0.3729407150251251,-0.48285397684686293,-0.9803081890078554,0.07110255910671492,-1.6185644251575715,0.004983995498663467,-0.016837059962364044,-0.8691758975943727,-0.4701167817576167,-0.6281068268836296,-0.446462810804704,-0.698710313078218,-0.944976203449165,1
|
||||
1.5345636708307822,-0.3620729324614632,1.526459599027292,1.5683221049956513,0.4602887661213531,0.8755628835447865,1.2117922479083714,1.488009665435229,0.18548179040195095,0.9284122115081185,2.1045211318790704,-0.2574701945019326,1.6410083078834372,2.2600103994850373,0.479687191816168,0.7580182294682923,0.9631698884937427,0.9489909903166296,-0.5271843862604546,1.1709831419965415,1.6504373245426278,-0.4232099493437371,1.4848547032319181,1.6865122439015063,0.47644943847097404,0.5686752490275638,0.6276330910825153,0.9967233616404214,-0.6568404582749516,0.8445936666707603,0
|
||||
1.8509127654916258,-0.051883154944376786,1.8584487232950646,1.9172994106725643,1.054318631106564,1.193123324566179,2.4661463463571915,2.341977191209645,0.1487662918765763,-0.11765757551350611,0.9836605956941789,0.478740661634871,0.7639664473562121,1.2287727079283695,-0.5965473256357936,0.46186527814810746,0.8622629992549816,0.15080561081750155,-0.37941635488181474,-0.08969331458975081,1.9421922964781173,0.8323302063712138,1.7497480280051736,1.9918892480517711,0.956357775109665,1.0573377723850894,2.017565390885669,1.6746042306190236,0.7194034648237195,0.5533460133029784,0
|
||||
-0.12377158328605531,-0.035180628462687456,-0.09442847828007014,-0.22908727040493418,0.8228784239694686,0.4634615478681698,0.1738757193879746,0.3103584021075796,0.07941479466198154,-0.18236292316432937,-0.7605053358338122,0.3246028515346039,-0.7586357334607242,-0.5537269765497095,-0.5348421448139017,-0.21905331858806565,0.3255961916834697,0.5348192316848401,-0.9734438410239465,-0.5504199843891442,-0.2664651770169913,0.2990182094696566,-0.24825402298456892,-0.3307209949425291,0.5517291775515538,0.16990818987260187,0.572683624382016,0.6381465795610601,-0.3728536170006226,-0.3304169348749467,1
|
||||
-0.7597997630778547,-1.4787561315229736,-0.766218235621916,-0.7419781590513064,-0.416869618928238,-0.49285596345197813,-0.5449593613440031,-0.318734105998274,-0.6793721748624179,0.7217145731791036,-0.6718860619923389,-1.2835006962088442,-0.7859534307558343,-0.6839653435889747,-0.24995653725308845,-0.7064231361149842,-0.5825658114653807,-0.8295349207789082,-0.4769432555917171,-0.4967610549747571,-0.6860136490564551,-1.3794935299948046,-0.7557896332501267,-0.6856126990514442,0.565844128629162,-0.38252632945768283,-0.30419418107016055,-0.4001893308316056,-0.17988819921165553,0.38434221444506805,1
|
||||
0.006098045048396046,0.04833200394575833,-0.0636706623552613,-0.07116622702790702,-1.1821652371948992,-1.0259211617772013,-0.7418847564076675,-0.71520796635056,-0.8466316681446776,-1.05408774568235,-0.17631124011907207,-0.4980063034215603,-0.36828021684901663,-0.21819762417736516,-1.2312291855181121,-0.899194610990065,-0.674453090492856,-0.951976960102578,-1.3472969604119052,-0.7027620023817148,0.12173771952527111,0.16861590301723872,0.0014520845016869272,0.008029353232728903,-1.1608848865316164,-0.717521392639886,-0.44821962536936377,-0.45124383456576217,-0.937186442609866,-0.3858608688876206,1
|
||||
1.7110531657468315,1.324882242189152,1.5606349500548569,1.5965222913129775,-0.3813821205005499,0.6064849526029955,1.1740796410269037,1.2055220399342255,0.6791012705764257,-0.9911797687996058,0.9024675179846727,-1.030998625715643,0.3498876673040144,0.8575565713673001,-1.1639144428033208,-0.30844331701804284,0.5544688007948498,0.19905863124062273,-0.01442931737657467,-0.01198038233443129,2.086864183388277,0.835673855254609,1.7144289180354062,1.736681323154764,-0.29046290341242303,0.6585707132301275,1.9128721964352442,1.4970233480654351,1.975499108921713,0.7397177914901598,0
|
||||
-0.24032124974004984,0.35852178146284475,-0.2916690756391584,-0.2974727222244504,-1.6882478234680138,-1.0382842018474998,-0.9378263443352938,-0.9673405619183418,-0.29997869010021816,-0.5256607398673016,-0.2154225397474319,0.6105690518522053,-0.17418078869954878,-0.3042873922202693,0.41076971713197674,-0.14520940684156292,-0.7809972361136708,-1.0949265331060742,0.1658476809053656,-0.40424565943271024,-0.3388011204720714,0.5096680891235634,-0.32030500732289413,-0.38939700502568736,-0.9068157671346626,-0.5400354761373884,-0.9706444498313729,-1.1265634408152263,-0.3346246191367708,-0.5020927305527448,1
|
||||
-0.11378161187571313,-1.1160726993491499,-0.1256745135052723,-0.20018207942967495,0.19721839734218855,-0.34643878301158026,-0.1402866927202528,0.12451128006744559,0.40169528171804314,-0.7449399735728653,-0.481775441013983,-0.7774824906823085,-0.36684244330716886,-0.3966315451209913,0.6752204920829431,-0.6053735726724013,-0.19134021855085426,0.4302710207680779,0.009213567644007745,-0.6515701501817821,-0.19171803544674226,-1.0284103972382934,-0.16454773235622,-0.25219547958960387,0.6081889818619869,-0.44245663892605847,-0.03349575564033303,0.3564076793558472,0.1932996370783284,-0.6156525953979803,1
|
||||
1.1915746524090274,4.830026728132227,1.1407663517162032,1.0487336720989142,0.22267682012726878,0.8295044989691643,1.0904560344636485,1.3727844497703459,0.09165329417043937,-0.3854658199571876,0.8386022312497561,-0.6405837777643077,0.3117866684450445,0.539318753601864,-0.7680396463615717,0.4245546701077691,-0.07013920633669965,0.5488930293082506,-1.1049573889509359,-0.3684730398231186,1.5925685697785643,3.25313199794944,1.301195331389127,1.2677094953525716,0.25531520492177445,1.0650211453938556,0.4587357829083493,1.6848492815355771,-0.03243349316536939,0.21066242115235387,0
|
||||
-1.333890120125531,-0.42172481275321055,-1.3237646766716171,-1.1551108886001369,1.054318631106564,-0.563882840718595,-0.9450409299995746,-0.7517579003517865,0.6015907736895242,0.18789545505982075,-0.7600102560916812,0.34488414233727066,-0.7557601863770284,-0.8097888507286038,1.178879013466828,-0.7693847871830549,-1.0873821204782892,-0.7002570368952964,0.34908003981487906,-0.5454858299602351,-1.322569951461159,-0.36636791832601634,-1.316657099570033,-1.0802034136998935,0.49056438954858234,-0.8466020591871568,-1.0565391425158377,-0.8887075087025833,0.21514477871481485,-0.534824691596371,1
|
||||
-0.010551907302174852,0.13423071156587524,-0.06611175885723007,-0.10747396691146448,-0.647538358708209,-0.7825389611775997,-1.0129236223862166,-0.6461347859923102,-0.9445396642123425,-0.9120954550041559,-0.1253180266795652,1.0263355133068737,-0.1705863548449291,-0.1733132151977314,-0.37697304582802194,-0.8890896546458068,-1.2093159760221104,-0.7983715117556426,0.059454698312745254,-0.6355341482878274,-0.06633573345793667,0.4344359892471683,-0.12216480039249901,-0.1695255620374965,-0.9068157671346626,-0.9280458130800778,-1.1409877966029207,-0.8371407524225989,-0.6513791728658295,-0.848116318728228,1
|
||||
2.4236711263512563,0.9550405843803182,2.302728286653408,2.752729930323356,-0.07356664500821275,0.16044585987065782,0.5657588952432271,1.3173400583617059,-0.07152669927566813,-1.6220569083951215,1.6064709112951476,-0.09116360992006498,1.24705835741711,2.1945233109737683,-0.8209298013517647,-0.7616117438413177,-0.5701638474248626,-0.12664925661544452,-1.3162656738223908,-0.8446189422128533,3.1984265144813397,1.701678916054003,2.954129677974242,3.9004955239909265,0.42469461785307655,0.19295830889890025,0.40899205515842374,1.5875212978283217,-0.08886677572629359,-0.43729680767046325,0
|
||||
-1.0062190578663006,0.5828128513598151,-1.050850087751492,-0.925631872442894,-1.6141869571841432,-1.2923325546646138,-1.232968485146781,-1.3563805373890225,-0.5121126815801581,-0.4178184937825986,-0.2520584406651357,0.2678152372871369,-0.32586589736450317,-0.5029560877038941,1.1227833945378356,-0.8820939156382434,-1.5369533169470713,-2.2135923899154313,1.5223582089612782,-0.6959775400419647,-1.0235813851801618,-0.1072351298628773,-1.069423329781661,-0.9041753834504195,-1.4572988591613958,-1.240144424696158,-1.4159086547371023,-1.8428632507309033,-0.7515027386997282,-1.0612080651142883,1
|
||||
-0.9462792294042462,-0.9800664122839657,-0.9453947188664348,-0.8826265883089714,-1.1852511066233937,-0.6009719609294902,-0.6515384677481513,-0.7139689855369591,0.88307626238406,0.11779799510476315,-1.0050747284465933,-0.2858640016256661,-0.9254174643150818,-0.8337026751849661,-0.593341861696994,-0.26102775263344635,-0.5656540423192197,-0.8142547976449199,-0.1385544637346321,-0.8729903301790809,-0.9198998662278806,-0.7659339598917597,-0.8698703584524751,-0.828267385275925,-1.0150303920629946,-0.2818741430428466,-0.5176294780436786,-0.689612019224233,0.602896042762456,-0.5969486176587648,1
|
||||
-1.5679884501745545,-1.2353764599326444,-1.5053822564181047,-1.2767241920936065,-1.3904614236182844,-0.1956581766640182,-0.2511289633805669,-0.6811359939765355,2.261947207003667,1.4065128358169703,0.21084111822747606,2.216847283423413,0.028545280701006516,-0.3981031650875366,0.7858089979715283,1.3207865674100607,0.8938316349944821,0.9228539375874387,3.2778424217395177,1.5206913371454784,-1.4214290741831017,-1.0334258705633868,-1.3692825734249863,-1.1271005964801128,-1.539165575411525,-0.5154486825093367,-0.6078622865202878,-0.9742536838558025,0.7485303203390351,0.20665442592252264,1
|
||||
0.24252736842649913,-0.7987246961970539,0.12917596130028342,0.14738521693137185,-1.4699225614020208,-1.4649302905479966,-0.9957069975055466,-0.7749887906068033,-0.6304181768285854,-1.6633964360609248,-0.25354367989152926,-0.5282254267175338,-0.44160666748326005,-0.20017027958718442,-0.6995228546697305,-1.2722229609600304,-1.236769414602712,-0.9421253017661909,-0.7089390648561814,-1.5182543756196774,0.13379371010111796,-0.6121261112555738,-0.02327129247715036,0.030496375680926863,-1.410249022236034,-1.2601980282490375,-1.1413926874101874,-0.8502885677655089,-0.6204318888808068,-1.6604033519741515,1
|
||||
-0.06716174529411509,-0.646015882650181,-0.11102793449345826,-0.16775186516474955,-0.1900582159338838,-0.5583073520594406,-0.9456968014236001,-0.7740595549966025,-0.6344976766647388,-0.04576274479037082,-0.8045674328834834,-1.4031603119445781,-0.8592798813900778,-0.6287795948435233,-1.1815444944667186,-1.1784023278252629,-1.1379483102253107,-1.1928399537146575,-1.359118402922196,-1.0234820402608107,-0.013289374924211624,-0.8712588997187128,-0.09744142341366221,-0.11652083917427204,-0.21988814802437964,-0.6030391348092705,-0.7183396353602388,-0.3566478644362544,-0.1179936312416092,-0.2662890111976368,1
|
||||
-0.7964296582491099,-1.061192969480742,-0.7833059111356989,-0.7691208383817332,0.7225876675433943,-0.32243994052217717,-0.3626271054649065,-0.7464922318939826,-0.030731700914141246,0.7073356070344771,-0.8110034695311882,-0.012066575789664743,-0.7198158478308306,-0.7358399474096989,-0.7291733961036269,-0.09701653812279275,0.8058904354344446,-0.5975183142444012,-0.19322863534472912,0.15886471476654854,-0.8451527246576311,-0.5870487446301089,-0.7882832144223123,-0.7835514668110648,0.194150416918803,-0.26036069861830125,0.08565782478390738,-0.5740136947157912,0.127764212168867,0.6675738773531865,1
|
||||
-0.9329592675237894,-1.0325600669407031,-0.9678528066845492,-0.8826265883089714,0.41400072469393384,-0.9248351282612312,-0.8455124414037009,-0.5563086770062454,-0.8996651660146634,0.878085830001923,-0.7916953595880738,1.2839079065007417,-0.856404334306382,-0.5614529813740727,3.2788585763729077,-0.0915754077835767,-0.7178599646346694,0.9690964154929299,1.6376172734366172,0.8811015692981279,-1.0983285267504113,-1.4363355610125252,-1.1425338874190796,-0.9386393596330922,-0.44572736526611684,-1.171608737457964,-1.1881286548775594,-1.107610096619603,-1.7636609678569515,-0.5795806383294937,1
|
||||
1.5811835374123802,1.4489581531959865,1.6973363541651163,1.638822570788967,0.8614517918256511,2.257314420813441,2.569446095641212,2.496849792909757,1.6173862328915427,0.02972682746892111,2.2946317528574265,0.5963721482903384,2.1607634432614566,2.5995867067653813,-0.21189165297984314,0.8823869229360863,1.3921650991680288,0.11461584550016081,0.04911093611624038,0.7423284759850574,1.7468852491494007,1.4375306542657702,1.9828541538056383,1.8392007459766386,0.8481431501813331,1.4660932164514477,2.1315132323593353,1.3126124315674779,1.0434397324316074,1.0697093987463162,0
|
||||
0.12597770197250463,-0.20697804370291958,0.0578959434427906,0.03528947631999994,-2.2737915475248647,-1.0516168921193902,-0.8271480415309861,-0.9307906279171154,-0.6181796773201276,-1.0684667118269766,-0.679312258124306,-1.0200467286822028,-0.6522404913639788,-0.507003042611894,-1.4455945864253346,-0.6698898324088196,-0.9286933533234776,-1.1594649479219987,-1.2867120675466628,-0.8631220213212627,0.07592495533705348,-0.025315732219691106,0.050898838459360995,-0.015528301373148574,-1.7231304377896894,-0.1397317423806731,-0.5106884927762471,-0.5571093607034784,-0.4274664710918398,-0.3370969269246667,1
|
||||
-0.13043156422628344,0.7784710187167465,-0.1525265750269303,-0.21886470286490348,-0.5950785784238007,-0.45091859223312225,-0.45395720126046124,-0.3082027690826664,0.09165329417043937,-0.8312137704406284,-0.6604992279233228,0.3671935622202039,-0.5990428703156061,-0.5202476223108023,-0.9303162582633009,-0.6660033107379509,-0.3559481049068221,0.16688995095854192,-0.49172005872958097,-0.8637387906248764,-0.18207324298606473,1.0714011015339806,-0.18927110933505728,-0.2792431571000561,-0.6997964846630707,-0.4900935515804085,-0.09596462304721635,0.3461626284392942,0.00033421928936130257,-0.8441083234983967,1
|
||||
-0.8030896391893381,-0.717598139000277,-0.8306631832738959,-0.7768758896189978,-0.34512315471573846,-0.8901701335543157,-0.8087836416582713,-0.6371521750937037,-0.6222591771562809,0.3442667118826402,-0.9728945452080696,-0.8324447887575354,-1.062724837561557,-0.8127320906616946,0.967318393506055,-1.0757981557143328,-1.007051217034024,-0.9439347900320578,-0.3232645029579319,-0.21428071391970724,-0.8186295453907686,-0.7726212576585503,-0.8719895050506612,-0.7656650994251207,1.0363424978827804,-0.9441808963984867,-0.8477311690539405,-0.7247866940377323,-0.03607435010478347,0.38901820887987193,1
|
||||
0.21588744466558607,-1.2067435573926055,0.18678583874674953,0.07441723483529028,1.1314653668189292,-0.07663361441859551,-0.10241011798277874,0.6554145586954284,-0.5569871797778372,-0.10687335090503619,-0.30305165410464285,-0.9139755777842556,-0.30573706777863274,-0.317899876910814,-0.25797019710008706,-0.7678301785147075,-0.6265364112453994,0.07038391011229987,0.34464699887351957,0.1274094802822527,-0.025345365500058028,-1.417945492153851,-0.044462758459011105,-0.16778055058520935,0.17062549845612207,-0.6691161426846594,-0.6217442570551507,-0.017536679098344124,-0.4820793251830569,-0.24758503345842134,1
|
||||
2.2338616695547504,0.5255470462797371,2.3320214446770358,2.45662797399143,1.0234599368216182,1.6682519233462774,2.354648204272852,2.115863192727482,0.2507537877803935,0.07466109667088099,1.1049551325163074,0.08933987822366918,1.1773263406374868,1.4991828767810815,-0.04440616217756469,0.42921849611281143,0.7529002254431401,0.7599999936594051,-1.2660245431536532,0.2285596460748904,1.9180803153264236,0.8941877107140277,2.0782157507240098,2.035514534358952,0.7211085904828559,0.9589905978728832,1.5797049035985333,1.76510218038191,-0.7114533123661688,0.5466660212532585,0
|
||||
-0.4834105540583816,-0.4861488434682976,-0.5582368136541647,-0.5139091522099299,-1.5169820701865633,-1.4797174561222752,-1.0129236223862166,-0.8301234368120429,-1.2831381506130153,-1.1134009810289365,0.052415600745512755,2.0850188932060796,-0.05844001858079202,-0.11702375147737099,0.2324657855362496,-0.9015265239925863,-0.9755389538583437,0.03821522983021907,2.1562830635756423,-0.24388564049316214,-0.7245928188991645,-0.8695870752770148,-0.7981725652138473,-0.6781964003792236,-2.210566748336438,-1.442678137207233,-1.2865171210434005,-1.359296847469593,-1.7654813963266591,-1.5020875403957934,1
|
||||
-0.3269010019630172,-0.7438449663286462,-0.3072920932517598,-0.3908858394005938,-0.6529386302080746,-0.011909463462327146,-0.43050979785154864,-0.39988734928913255,-0.03481120075029348,0.098026916655901,-0.7570397776388944,-0.8127719366789485,-0.6321116617781081,-0.6512217993333402,-0.5821227379111957,-0.5253112262525087,-0.6857276032569632,-0.6887969445448052,0.1924459265535207,-0.9062958725742178,-0.34362351670241,-0.60042334016369,-0.2539050805797316,-0.399212694444803,0.005951069217356934,0.15300476925331652,-0.20702038732612,-0.11486466280559933,1.2345847217508674,-0.041841278327052644,1
|
||||
2.2505116219053214,-0.402636211059851,2.1855556545589008,2.509503323336417,-0.05968023257998707,0.29134863708558306,1.2708206760706686,1.4130513262123752,-0.8792676668339,-1.2625827547794426,1.220308712432862,-1.0433702131052698,1.114783191567102,1.5701885401668954,-0.2267169236967911,-0.2672461873068358,-0.025604880918475507,0.263395991804784,-1.031073373261616,-1.0148472700102196,2.282171230716993,-0.37472704053450423,2.2053645466151734,2.441229697015732,1.1821969923514017,0.5425517807977589,0.9897211558668574,1.7633946718958182,-0.3309837621973567,-0.7519244332122635,0
|
||||
0.12264771150239057,0.6400786564398921,0.17555679483769232,0.034936973991033286,0.23116296105562886,0.344679398173145,0.9297675355773943,0.37757311124542825,0.40169528171804314,-0.09968386783272291,-0.4020676025308701,-0.3102015505888662,0.06377073247628026,-0.346964371250085,-0.36014436014932394,0.5877885802842491,1.177385631011783,0.12064747305305104,0.08014222270575448,0.41050659064091627,-0.0036445824635340713,0.8273147330461206,0.41821758214494226,-0.059371714111865224,0.6364188840172048,1.451494807734792,1.5837538116712013,0.6279015286445067,1.311042717478571,1.3088531141262838,0
|
||||
-0.5633303253411209,-1.3713827469978286,-0.5348022872352628,-0.5896971529377444,0.8768811389681246,-0.011909463462327146,-0.764840256248561,-0.4636948611895787,0.3812977825372797,0.522206417922402,-0.825360782052991,-0.7213033151589213,-0.4279478188357048,-0.7027284981624281,-0.0015330819961200737,0.16882154416461723,-0.9630806172540051,-0.5862592761456727,1.0169915416463304,0.4851356763781672,-0.618500101831714,-1.2708249412844561,-0.4584027273046851,-0.6142853559392036,0.5470241938590168,0.18143324938575106,-0.8424097470155766,-0.44492605316722117,1.0889504441742883,0.7083218288564771,1
|
||||
-0.33023099243313125,-1.4119460255962166,-0.3976126638246095,-0.3778432532288306,-1.9814054191750008,-1.4130540047628226,-0.8624011305723582,-0.993668904207361,-1.833870628493627,-1.077453565667369,-1.0595335000810182,-1.4256725447355383,-1.0447526682884583,-0.7969121760213318,-0.8197277523747151,-0.6947635711023784,-0.6056785626318009,-1.0263670332548898,-0.5242290256328819,-0.7866426276731706,-0.5509865546069729,-1.6503290895498273,-0.598972784984359,-0.5449211507107864,-1.6426752166473213,-0.9234357892748182,-0.7299079441392912,-0.9266141970938301,-1.0227465806861065,-0.8454443219083402,1
|
||||
-0.33023099243313125,-1.175724579640897,-0.2482175579041116,-0.3908858394005938,-0.5889068395668118,0.9458625231602089,1.0199498563809044,-0.12359462785613325,-0.7772801709300828,0.4107694303015399,-0.8154591872103683,-1.4840826622472187,-0.126015375047644,-0.6618910440907941,-0.5112018482652547,2.606447936133383,3.0619204395323334,0.5408508592377304,-1.04585017639948,2.5895525403079267,-0.36532429973893393,-1.2892150101431306,0.022643550483547173,-0.40946463672699035,-0.26693798494974147,2.689286199447015,3.0535074420498174,0.8225574960590171,-0.42200518568271767,2.404371810280325,1
|
||||
-0.22367129738947894,1.482363206159365,-0.2897161984375836,-0.3002927408561833,-0.5649913514959782,-1.0552530803753604,-0.7784495882970907,-0.7158274567573605,-0.6834516746985713,-1.0720614533631332,-0.7862494824246313,0.3611091749794041,-0.9016942008745912,-0.6166387301195241,-0.4042194893078186,-1.1120205376868277,-0.6857276032569632,-0.9165914117922892,-0.9261580709827819,-0.9426852614874229,-0.3749690921996115,1.4743107919831187,-0.46158144720196376,-0.42298847548221646,-0.10226355571097634,-0.9879761225484536,-0.6119111945929561,-0.8175044048325386,-0.7769887372756291,-0.9302802209397817,1
|
||||
-0.4001607923055283,1.14592660131391,-0.35855511979310695,-0.43741614682418234,1.3089028589573686,0.742235980825881,0.6165889306052054,0.772498245580713,0.4832852784410969,0.7360935393237301,0.2885686377420643,0.012270973173535399,0.2578701606257481,0.07796589408989055,0.40235537429262774,0.3180639763259704,0.13900300543749236,0.38000745782732676,-0.5005861406122994,0.15084671381957115,0.2856991913567857,1.347252134414096,0.26281349827796546,0.13410643066048103,2.541937279494357,1.3154991054796314,0.9116350716082532,1.0872213114033078,0.932393595779466,1.4224129789715192,0
|
||||
0.0527179116299935,-0.7295285150586267,-0.012407635813914143,-0.04190853372368074,-0.8218899814181538,-0.8879884206007337,-0.6535060820202278,-0.44449065857876474,-0.2958991902640659,-0.5076870321865183,0.10885469134846205,-0.2554420654216657,0.05442520445426892,-0.058894762798828805,0.48048855780086797,-0.7336287878110641,-0.630482490712837,-0.39485562846729255,0.046155575488667194,-0.3246824192665498,-0.05910213911242882,-0.6405471267644345,-0.11156906740156888,-0.1675624241536734,-0.5445320228093768,-0.8427603726827737,-0.7698186094270223,-0.5702571760463885,-0.26544833728789535,-0.6323525755222799,1
|
||||
1.2282045475802827,-0.9514335097439268,1.2188814397792083,1.1703469755923839,0.2496781776265968,0.48770280290797074,0.38621409291623904,1.1070230652529545,-0.19391169436024874,-0.056546969398840734,1.1539680269872894,-0.708728914861268,1.5001065007823422,0.9844837934818383,-0.4607157912291612,0.61732614498285,0.38365993241862295,0.5086821789556496,-0.07205884961424437,0.23781118562909526,0.9897690409862311,-0.9849429617541544,1.078684938579593,0.8729006542725862,-0.26223300125720583,0.35584581668474213,0.023767372815976774,0.6432691050193365,-0.20901505472697113,-0.17477312011647633,0
|
||||
-1.4577657656137768,-1.5741991399897695,-1.4497252561732132,-1.2308988893279513,0.5528648489761917,-0.7432681280131219,-0.7482795027919165,-0.7133494951301587,0.11613029318735504,1.302265331268424,-0.4451395400962789,-0.3957885977761198,-0.473956572174838,-0.6858048685471564,1.1336018353312838,-0.6271380940292653,-0.41795792510941276,0.6433885276368627,0.07866454239196814,-0.23956825536786658,-1.3683827156493762,-1.630267196249455,-1.3855293640110795,-1.1166305277663895,0.0624108735277901,-0.9226674519739415,-0.9030276850178114,-0.7795977164412918,-0.7660661664573859,-0.27230100404238505,1
|
||||
-0.07715171670445727,-1.4024017247495368,-0.10516930288873333,-0.19101701887654382,0.09461323884474318,-0.2053546786799385,-0.5954614609939687,-0.5625035810742499,-1.7400421322621153,0.29394033037644474,-0.777338047066271,-1.4974683141769787,-0.8463399195134467,-0.6232610199689782,-1.059336181799984,-0.42270705414157866,-0.6056785626318009,-0.8747721274255843,-0.8906937434519083,-0.38327550310984615,-0.13626047879784753,-1.5149113097723157,-0.16419454125652264,-0.26310180116639903,0.001246085524819967,0.09614780898844705,-0.3984758976194382,-0.4672944143350288,-0.8934961593368926,0.35895824465613263,1
|
||||
0.7287059770631628,0.14616108762422403,0.6867224023499838,0.6860087755923046,-0.2741481578603623,-0.27492708064416754,0.3688335001795625,0.6997081227816604,0.046778795972759135,-1.4189540116022634,1.8822303276621901,-0.3162859378296661,1.7689701531079012,1.6522313533017998,1.6200309880441213,-0.027836452381332095,0.43608641677172233,1.4234790244773197,-0.6261889672841433,-0.8686729450537853,0.9319002862221667,-0.14234344313852854,0.8632383677640119,0.8641755970111501,0.890488003414158,-0.23346889308761998,0.22042862205986852,0.7525496481292371,-0.4019804725159382,-1.1981479021335442,0
|
||||
2.090672079339843,0.14854716283589428,2.0049145134132,2.2944769026668035,-1.1597926838383135,-0.24098932358844624,0.6608602517269285,1.0367109040811036,0.5771137746726085,-1.9491783881853895,1.1153518071010613,-0.9849600955935893,0.9343426120651895,1.490353156981809,-0.8978609358829549,-0.6706671367429933,-0.045899003893868764,0.2935541295692348,0.3239594744805103,-1.0900931250510844,1.7251844661128768,-0.39813258271827173,1.6190673211170337,1.8108443098769713,-1.2079347234569784,-0.6237842419329391,0.09144197917343362,0.5903363419504781,0.3352930577154924,-1.501419541190821,0
|
||||
|
117
example/example_data_processor.py
Normal file
117
example/example_data_processor.py
Normal file
@ -0,0 +1,117 @@
|
||||
from function.data_processor_date import DataProcessor
|
||||
import numpy as np
|
||||
|
||||
# 创建处理器实例
|
||||
processor = DataProcessor()
|
||||
|
||||
# 定义数据预处理方法
|
||||
process_methods = [
|
||||
# 缺失值处理
|
||||
{
|
||||
'method_name': 'SimpleImputer',
|
||||
'params': {
|
||||
'strategy': 'mean',
|
||||
'missing_values': np.nan
|
||||
}
|
||||
},
|
||||
# 异常值检测
|
||||
{
|
||||
'method_name': 'IsolationForest',
|
||||
'params': {
|
||||
'contamination': 0.1,
|
||||
'random_state': 42
|
||||
}
|
||||
},
|
||||
# 数据标准化
|
||||
{
|
||||
'method_name': 'StandardScaler',
|
||||
'params': {
|
||||
'with_mean': True,
|
||||
'with_std': True
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
# 定义特征工程方法
|
||||
feature_methods = [
|
||||
# 类别特征编码
|
||||
{
|
||||
'method_name': 'OneHotEncoder',
|
||||
'params': {
|
||||
'sparse': False,
|
||||
'handle_unknown': 'ignore'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['categorical_feature1', 'categorical_feature2']
|
||||
},
|
||||
# 数值特征离散化
|
||||
{
|
||||
'method_name': 'KBinsDiscretizer',
|
||||
'params': {
|
||||
'n_bins': 5,
|
||||
'encode': 'onehot',
|
||||
'strategy': 'uniform'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['numeric_feature1', 'numeric_feature2']
|
||||
},
|
||||
# 特征选择
|
||||
{
|
||||
'method_name': 'SelectKBest',
|
||||
'params': {
|
||||
'k': 10,
|
||||
'score_func': 'f_classif'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['feature1', 'feature2', 'feature3', 'feature4']
|
||||
},
|
||||
# 降维
|
||||
{
|
||||
'method_name': 'PCA',
|
||||
'params': {
|
||||
'n_components': 2,
|
||||
'random_state': 42
|
||||
},
|
||||
|
||||
# columns 要处理的列名, 现并不能通过列的序号来获得列, 注意文件的列名
|
||||
'columns': ['feature5', 'feature6', 'feature7']
|
||||
}
|
||||
]
|
||||
|
||||
# 数据集划分参数
|
||||
split_params = {
|
||||
# 'test_size': 0,
|
||||
'val_size': 0.3
|
||||
}
|
||||
|
||||
# 处理数据集
|
||||
result = processor.process_dataset(
|
||||
input_path='dataset/dataset_raw/breast_cancer.csv',
|
||||
output_dir='dataset/dataset_processed',
|
||||
process_methods=process_methods,
|
||||
# feature_methods=feature_methods,
|
||||
feature_methods=[],
|
||||
split_params=split_params
|
||||
)
|
||||
|
||||
# 打印处理结果
|
||||
print("\n数据处理结果:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print("\n处理记录:")
|
||||
record = result['process_record']
|
||||
print(f"输入文件: {record['input_file']}")
|
||||
print(f"处理时间: {record['timestamp']}")
|
||||
print("\n输出文件:")
|
||||
for key, path in record['output_files'].items():
|
||||
print(f"{key}: {path}")
|
||||
|
||||
print("\n处理步骤:")
|
||||
for step in record['steps']:
|
||||
if 'shape' in step:
|
||||
print(f"{step['step']}: 数据形状 {step['shape']}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
34
example/example_experiment_list.py
Normal file
34
example/example_experiment_list.py
Normal file
@ -0,0 +1,34 @@
|
||||
from function.model_manager import ModelManager
|
||||
|
||||
# 创建模型管理器实例
|
||||
manager = ModelManager()
|
||||
|
||||
# 获取实验列表
|
||||
result = manager.get_experiments(
|
||||
page=2,
|
||||
page_size=10,
|
||||
include_deleted=False
|
||||
)
|
||||
|
||||
# 打印结果
|
||||
print("\nMLFlow实验列表:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print(f"\n总数: {result['total_count']}")
|
||||
print(f"当前页: {result['page']}")
|
||||
print(f"每页数量: {result['page_size']}")
|
||||
print("\n实验列表:")
|
||||
for exp in result['experiments']:
|
||||
print(f"\n实验ID: {exp['experiment_id']}")
|
||||
print(f"名称: {exp['name']}")
|
||||
print(f"存储位置: {exp['artifact_location']}")
|
||||
print(f"状态: {exp['lifecycle_stage']}")
|
||||
print(f"创建时间: {exp['creation_time']}")
|
||||
print(f"最后更新: {exp['last_update_time']}")
|
||||
print(f"运行次数: {exp['runs_count']}")
|
||||
if exp['tags']:
|
||||
print("标签:")
|
||||
for tag_name, tag_value in exp['tags'].items():
|
||||
print(f" {tag_name}: {tag_value}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
5
example/example_get_all_dataset.py
Normal file
5
example/example_get_all_dataset.py
Normal file
@ -0,0 +1,5 @@
|
||||
from function.get_all_dataset import DatasetHistory
|
||||
|
||||
|
||||
t = DatasetHistory()
|
||||
print(t.get_dataset())
|
||||
14
example/example_method_reader_date_feature.py
Normal file
14
example/example_method_reader_date_feature.py
Normal file
@ -0,0 +1,14 @@
|
||||
from function.method_reader_date_feature import MethodReader
|
||||
|
||||
# 创建方法读取器实例
|
||||
reader = MethodReader()
|
||||
|
||||
# 获取所有预处理方法
|
||||
methods = reader.get_preprocessing_methods()
|
||||
print("预处理方法列表:")
|
||||
print(methods)
|
||||
|
||||
# 获取特定方法的详细信息
|
||||
method_details = reader.get_method_details('KBinsDiscretizer')
|
||||
print("\nKBinsDiscretizer方法详情:")
|
||||
print(method_details)
|
||||
14
example/example_method_reader_date_process.py
Normal file
14
example/example_method_reader_date_process.py
Normal file
@ -0,0 +1,14 @@
|
||||
from function.method_reader_date_process import MethodReader
|
||||
|
||||
# 创建方法读取器实例
|
||||
reader = MethodReader()
|
||||
|
||||
# 获取所有预处理方法
|
||||
methods = reader.get_preprocessing_methods()
|
||||
print("预处理方法列表:")
|
||||
print(methods)
|
||||
|
||||
# 获取特定方法的详细信息
|
||||
method_details = reader.get_method_details('StandardScaler')
|
||||
print("\nStandardScaler方法详情:")
|
||||
print(method_details)
|
||||
9
example/example_method_reader_metric.py
Normal file
9
example/example_method_reader_metric.py
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
from function.method_reader_metric import MethodReader
|
||||
|
||||
|
||||
|
||||
method_reader = MethodReader()
|
||||
|
||||
|
||||
print(method_reader.get_metrics())
|
||||
14
example/example_method_reader_model.py
Normal file
14
example/example_method_reader_model.py
Normal file
@ -0,0 +1,14 @@
|
||||
from function.method_reader_model import MethodReader
|
||||
|
||||
# 创建方法读取器实例
|
||||
reader = MethodReader()
|
||||
|
||||
# 获取所有预处理方法
|
||||
methods = reader.get_models()
|
||||
print("模型列表:")
|
||||
print(methods)
|
||||
|
||||
# 获取特定方法的详细信息
|
||||
method_details = reader.get_model_details('SVC')
|
||||
print("\nSVC方法详情:")
|
||||
print(method_details)
|
||||
6
example/example_model_delete.py
Normal file
6
example/example_model_delete.py
Normal file
@ -0,0 +1,6 @@
|
||||
from function.model_manager import ModelManager
|
||||
|
||||
# 创建模型管理器实例
|
||||
manager = ModelManager()
|
||||
back = manager.delete_model('7970364d490f4e0aa0375c2db26215f3')
|
||||
print(back)
|
||||
41
example/example_model_manager.py
Normal file
41
example/example_model_manager.py
Normal file
@ -0,0 +1,41 @@
|
||||
from function.model_manager import ModelManager
|
||||
|
||||
# 创建模型管理器实例
|
||||
manager = ModelManager()
|
||||
|
||||
# 获取所有已训练模型
|
||||
result = manager.get_finished_models(
|
||||
page=1,
|
||||
page_size=10,
|
||||
experiment_name='breast_cancer_classification_3'
|
||||
)
|
||||
|
||||
# 打印结果
|
||||
print("\n已训练模型列表:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print(f"\n总数: {result['total_count']}")
|
||||
print(f"当前页: {result['page']}")
|
||||
print(f"每页数量: {result['page_size']}")
|
||||
print("\n模型列表:")
|
||||
for model in result['models']:
|
||||
'''
|
||||
'run_id': run['run_id'],
|
||||
'experiment_id': run['experiment_id'],
|
||||
'''
|
||||
print(f"run_id", model['run_id'])
|
||||
print(f"experiment_id", model['experiment_id'])
|
||||
print(f"算法: {model['algorithm']}")
|
||||
print(f"任务类型: {model['task_type']}")
|
||||
print(f"数据集: {model['dataset']}")
|
||||
|
||||
print(f"训练开始时间: {model['training_start_time']}")
|
||||
print(f"训练结束时间: {model['training_end_time']}")
|
||||
print("模型参数:")
|
||||
for k, v in model['parameters'].items():
|
||||
print(f" {k}: {v}")
|
||||
print("评估指标:")
|
||||
for metric_name, metric_value in model['metrics'].items():
|
||||
print(f" {metric_name}: {metric_value:.4f}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
8
example/example_model_predict.py
Normal file
8
example/example_model_predict.py
Normal file
@ -0,0 +1,8 @@
|
||||
from function.model_manager import ModelManager
|
||||
|
||||
model_manager = ModelManager()
|
||||
|
||||
print(model_manager.predict(run_id = "33939ea6d8ce4d43a268f23f7361651e",\
|
||||
data_path="/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_145614/test_breast_cancer_20250219_145614.csv",\
|
||||
output_path="predictions/pred_breast_cancer_20250219_145614.csv" ,\
|
||||
metrics= ["accuracy", "f1", "precision", "recall"] ))
|
||||
56
example/example_model_trainer.py
Normal file
56
example/example_model_trainer.py
Normal file
@ -0,0 +1,56 @@
|
||||
from function.model_trainer import ModelTrainer
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
# 创建训练器实例
|
||||
trainer = ModelTrainer()
|
||||
|
||||
# 加载数据
|
||||
train_data = pd.read_csv('/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629/train_breast_cancer_20250219_144629.csv')
|
||||
val_data = pd.read_csv('/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629/val_breast_cancer_20250219_144629.csv')
|
||||
|
||||
# 准备特征和标签
|
||||
X_train = train_data.drop('target', axis=1)
|
||||
y_train = train_data['target']
|
||||
X_val = val_data.drop('target', axis=1)
|
||||
y_val = val_data['target']
|
||||
|
||||
# 模型配置
|
||||
model_config = {
|
||||
'algorithm': 'XGBClassifier',
|
||||
'task_type': 'classification',
|
||||
'dataset' : '/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629',
|
||||
'params': {
|
||||
'n_estimators': 100,
|
||||
'learning_rate': 0.1,
|
||||
'max_depth': 6,
|
||||
'random_state': 42
|
||||
}
|
||||
}
|
||||
|
||||
# 训练模型, 删除训练实验时要删除 mlruns/.trash/ 回收站里的文件
|
||||
# 模型文件 直接在 mlruns/文件夹下
|
||||
for i in range(3, 4):
|
||||
result = trainer.train_model(
|
||||
{
|
||||
'features': X_train,
|
||||
'labels': y_train
|
||||
},
|
||||
{
|
||||
'features': X_val,
|
||||
'labels': y_val
|
||||
},
|
||||
model_config,
|
||||
f'breast_cancer_classification_{i}'
|
||||
)
|
||||
|
||||
# 打印结果
|
||||
print("\n训练结果:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print(f"\nMLflow运行ID: {result['run_id']}")
|
||||
print("\n评估指标:")
|
||||
for metric_name, metric_value in result['metrics'].items():
|
||||
print(f"{metric_name}: {metric_value:.4f}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
152
example_data_manager.py
Normal file
152
example_data_manager.py
Normal file
@ -0,0 +1,152 @@
|
||||
from function.data_manager import DataManager
|
||||
import numpy as np
|
||||
|
||||
|
||||
data_manager = DataManager()
|
||||
|
||||
print('----------------------------预处理方法----------------------------------------------------------------------------------------------------------')
|
||||
# 获取所有预处理方法
|
||||
methods = data_manager.get_preprocessing_methods()
|
||||
print("预处理方法列表:")
|
||||
print(methods)
|
||||
|
||||
# 获取特定方法的详细信息
|
||||
method_details = data_manager.get_preprocessing_method_details('StandardScaler')
|
||||
print("\nStandardScaler方法详情:")
|
||||
print(method_details)
|
||||
print('----------------------------预处理方法end----------------------------------------------------------------------------------------------------------')
|
||||
|
||||
print('----------------------------特征工程方法----------------------------------------------------------------------------------------------------------')
|
||||
methods = data_manager.get_feature_engineering_methods()
|
||||
print("特诊工程方法")
|
||||
print(methods)
|
||||
|
||||
# 获取特定方法的详细信息
|
||||
method_details = data_manager.get_feature_engineering_method_details('KBinsDiscretizer')
|
||||
print("\nKBinsDiscretizer方法详情:")
|
||||
print(method_details)
|
||||
print('----------------------------特征工程方法end----------------------------------------------------------------------------------------------------------')
|
||||
|
||||
print('----------------------------获取数据集----------------------------------------------------------------------------------------------------------')
|
||||
print('获取数据集')
|
||||
print(data_manager.get_dataset())
|
||||
print('----------------------------获取数据集end----------------------------------------------------------------------------------------------------------')
|
||||
|
||||
print('----------------------------处理数据集----------------------------------------------------------------------------------------------------------')
|
||||
|
||||
# 定义数据预处理方法
|
||||
process_methods = [
|
||||
# 缺失值处理
|
||||
{
|
||||
'method_name': 'SimpleImputer',
|
||||
'params': {
|
||||
'strategy': 'mean',
|
||||
'missing_values': np.nan
|
||||
}
|
||||
},
|
||||
# 异常值检测
|
||||
{
|
||||
'method_name': 'IsolationForest',
|
||||
'params': {
|
||||
'contamination': 0.1,
|
||||
'random_state': 42
|
||||
}
|
||||
},
|
||||
# 数据标准化
|
||||
{
|
||||
'method_name': 'StandardScaler',
|
||||
'params': {
|
||||
'with_mean': True,
|
||||
'with_std': True
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
# 定义特征工程方法
|
||||
feature_methods = [
|
||||
# 类别特征编码
|
||||
{
|
||||
'method_name': 'OneHotEncoder',
|
||||
'params': {
|
||||
'sparse': False,
|
||||
'handle_unknown': 'ignore'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['categorical_feature1', 'categorical_feature2']
|
||||
},
|
||||
# 数值特征离散化
|
||||
{
|
||||
'method_name': 'KBinsDiscretizer',
|
||||
'params': {
|
||||
'n_bins': 5,
|
||||
'encode': 'onehot',
|
||||
'strategy': 'uniform'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['numeric_feature1', 'numeric_feature2']
|
||||
},
|
||||
# 特征选择
|
||||
{
|
||||
'method_name': 'SelectKBest',
|
||||
'params': {
|
||||
'k': 10,
|
||||
'score_func': 'f_classif'
|
||||
},
|
||||
|
||||
# columns 要处理的列名
|
||||
'columns': ['feature1', 'feature2', 'feature3', 'feature4']
|
||||
},
|
||||
# 降维
|
||||
{
|
||||
'method_name': 'PCA',
|
||||
'params': {
|
||||
'n_components': 2,
|
||||
'random_state': 42
|
||||
},
|
||||
|
||||
# columns 要处理的列名, 现并不能通过列的序号来获得列, 注意文件的列名
|
||||
'columns': ['feature5', 'feature6', 'feature7']
|
||||
}
|
||||
]
|
||||
|
||||
# 数据集划分参数
|
||||
split_params = {
|
||||
# 'test_size': 0,
|
||||
'val_size': 0.3
|
||||
}
|
||||
|
||||
# 处理数据集
|
||||
result = data_manager.process_dataset(
|
||||
input_path='dataset/dataset_raw/breast_cancer.csv',
|
||||
output_dir='dataset/dataset_processed',
|
||||
process_methods=process_methods,
|
||||
# feature_methods=feature_methods,
|
||||
feature_methods=[],
|
||||
split_params=split_params
|
||||
)
|
||||
|
||||
# 打印处理结果
|
||||
print("\n数据处理结果:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print("\n处理记录:")
|
||||
record = result['process_record']
|
||||
print(f"输入文件: {record['input_file']}")
|
||||
print(f"处理时间: {record['timestamp']}")
|
||||
print("\n输出文件:")
|
||||
for key, path in record['output_files'].items():
|
||||
print(f"{key}: {path}")
|
||||
|
||||
print("\n处理步骤:")
|
||||
for step in record['steps']:
|
||||
if 'shape' in step:
|
||||
print(f"{step['step']}: 数据形状 {step['shape']}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
|
||||
print('----------------------------处理数据集end----------------------------------------------------------------------------------------------------------')
|
||||
|
||||
|
||||
|
||||
@ -1,8 +1,35 @@
|
||||
from function.model_manager import ModelManager
|
||||
import pandas as pd
|
||||
|
||||
# 创建模型管理器实例
|
||||
manager = ModelManager()
|
||||
|
||||
|
||||
|
||||
# 获取所有预处理方法
|
||||
print("--------------------------------------------获取预处理方法---------------------------------------------------")
|
||||
methods = manager.get_models()
|
||||
print("模型列表:")
|
||||
print(methods)
|
||||
print("--------------------------------------------获取预处理方法 end ---------------------------------------------------")
|
||||
|
||||
|
||||
print("--------------------------------------------获取方法详细信息---------------------------------------------------")
|
||||
# 获取特定方法的详细信息
|
||||
method_details = manager.get_model_details('SVC')
|
||||
print("\nSVC方法详情:")
|
||||
print(method_details)
|
||||
print("--------------------------------------------获取方法详细信息 end ---------------------------------------------------")
|
||||
|
||||
|
||||
|
||||
print("--------------------------------------------评价指标 ---------------------------------------------------")
|
||||
# 获取评价指标
|
||||
print(manager.get_metrics())
|
||||
print("--------------------------------------------评价指标 end ---------------------------------------------------")
|
||||
|
||||
|
||||
print("--------------------------------------------获取所有已训练模型 ---------------------------------------------------")
|
||||
# 获取所有已训练模型
|
||||
result = manager.get_finished_models(
|
||||
page=1,
|
||||
@ -38,4 +65,68 @@ if result['status'] == 'success':
|
||||
for metric_name, metric_value in model['metrics'].items():
|
||||
print(f" {metric_name}: {metric_value:.4f}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
print(f"错误信息: {result['message']}")
|
||||
|
||||
print("--------------------------------------------获取所有已训练模型 end ---------------------------------------------------")
|
||||
|
||||
|
||||
print("--------------------------------------------模型训练---------------------------------------------------")
|
||||
# 加载数据
|
||||
train_data = pd.read_csv('/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629/train_breast_cancer_20250219_144629.csv')
|
||||
val_data = pd.read_csv('/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629/val_breast_cancer_20250219_144629.csv')
|
||||
|
||||
# 准备特征和标签
|
||||
X_train = train_data.drop('target', axis=1)
|
||||
y_train = train_data['target']
|
||||
X_val = val_data.drop('target', axis=1)
|
||||
y_val = val_data['target']
|
||||
|
||||
# 模型配置
|
||||
model_config = {
|
||||
'algorithm': 'XGBClassifier',
|
||||
'task_type': 'classification',
|
||||
'dataset' : '/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629',
|
||||
'params': {
|
||||
'n_estimators': 100,
|
||||
'learning_rate': 0.1,
|
||||
'max_depth': 6,
|
||||
'random_state': 42
|
||||
}
|
||||
}
|
||||
|
||||
# 训练模型, 删除训练实验时要删除 mlruns/.trash/ 回收站里的文件
|
||||
# 模型文件 直接在 mlruns/文件夹下
|
||||
for i in range(3, 4):
|
||||
result = manager.train_model(
|
||||
{
|
||||
'features': X_train,
|
||||
'labels': y_train
|
||||
},
|
||||
{
|
||||
'features': X_val,
|
||||
'labels': y_val
|
||||
},
|
||||
model_config,
|
||||
f'breast_cancer_classification_{i}'
|
||||
)
|
||||
|
||||
# 打印结果
|
||||
print("\n训练结果:")
|
||||
print(f"状态: {result['status']}")
|
||||
if result['status'] == 'success':
|
||||
print(f"\nMLflow运行ID: {result['run_id']}")
|
||||
print("\n评估指标:")
|
||||
for metric_name, metric_value in result['metrics'].items():
|
||||
print(f"{metric_name}: {metric_value:.4f}")
|
||||
else:
|
||||
print(f"错误信息: {result['message']}")
|
||||
|
||||
print("-------------------------------------------模型训练 end ---------------------------------------------------")
|
||||
|
||||
print("--------------------------------------------模型预测 ---------------------------------------------------")
|
||||
print(manager.predict(run_id = "33939ea6d8ce4d43a268f23f7361651e",\
|
||||
data_path="/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_145614/test_breast_cancer_20250219_145614.csv",\
|
||||
output_path="predictions/pred_breast_cancer_20250219_145614.csv" ,\
|
||||
metrics= ["accuracy", "f1", "precision", "recall"] ))
|
||||
|
||||
print("-------------------------------------------模型预测 end ---------------------------------------------------")
|
||||
BIN
function/__pycache__/data_manager.cpython-39.pyc
Normal file
BIN
function/__pycache__/data_manager.cpython-39.pyc
Normal file
Binary file not shown.
BIN
function/__pycache__/model_manager_new.cpython-39.pyc
Normal file
BIN
function/__pycache__/model_manager_new.cpython-39.pyc
Normal file
Binary file not shown.
618
function/data_manager.py
Normal file
618
function/data_manager.py
Normal file
@ -0,0 +1,618 @@
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
from typing import Dict, List, Tuple, Optional
|
||||
import logging
|
||||
from pathlib import Path
|
||||
import datetime
|
||||
from sklearn.preprocessing import StandardScaler, MinMaxScaler, RobustScaler, Normalizer, Binarizer, LabelEncoder, KBinsDiscretizer, FunctionTransformer, PowerTransformer, QuantileTransformer, PolynomialFeatures, OneHotEncoder
|
||||
from sklearn.feature_extraction import FeatureHasher, DictVectorizer
|
||||
from sklearn.feature_selection import SelectKBest, RFE
|
||||
from sklearn.decomposition import PCA
|
||||
from sklearn.experimental import enable_iterative_imputer # noqa
|
||||
from sklearn.impute import SimpleImputer, IterativeImputer, KNNImputer, MissingIndicator
|
||||
from sklearn.ensemble import IsolationForest
|
||||
from sklearn.svm import OneClassSVM
|
||||
from sklearn.neighbors import LocalOutlierFactor
|
||||
from sklearn.covariance import EllipticEnvelope
|
||||
from sklearn.model_selection import train_test_split
|
||||
import json
|
||||
import yaml
|
||||
import os
|
||||
|
||||
|
||||
class DataManager:
|
||||
"""数据处理类"""
|
||||
|
||||
def __init__(self, config: Dict = None):
|
||||
"""初始化数据处理器"""
|
||||
self.config = config or {}
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self._setup_logging()
|
||||
|
||||
self.method_config = self._load_method_config()
|
||||
self.parameter_config = self._load_parameter_config()
|
||||
|
||||
self.dataset_processed_path = 'dataset/dataset_processed'
|
||||
|
||||
# 数据预处理方法
|
||||
self.preprocessing_methods = {
|
||||
# 缺失值处理
|
||||
'SimpleImputer': SimpleImputer,
|
||||
'IterativeImputer': IterativeImputer,
|
||||
'KNNImputer': KNNImputer,
|
||||
'MissingIndicator': MissingIndicator,
|
||||
# 异常值处理
|
||||
'IsolationForest': IsolationForest,
|
||||
'OneClassSVM': OneClassSVM,
|
||||
'LocalOutlierFactor': LocalOutlierFactor,
|
||||
'EllipticEnvelope': EllipticEnvelope,
|
||||
# 数据缩放
|
||||
'StandardScaler': StandardScaler,
|
||||
'MinMaxScaler': MinMaxScaler,
|
||||
'RobustScaler': RobustScaler,
|
||||
'Normalizer': Normalizer,
|
||||
'Binarizer': Binarizer
|
||||
}
|
||||
|
||||
# 特征工程方法
|
||||
self.feature_engineering_methods = {
|
||||
# 特征编码
|
||||
'LabelEncoder': LabelEncoder,
|
||||
'OneHotEncoder': OneHotEncoder,
|
||||
# 特征离散化
|
||||
'KBinsDiscretizer': KBinsDiscretizer,
|
||||
# 特征变换
|
||||
'FunctionTransformer': FunctionTransformer,
|
||||
'PowerTransformer': PowerTransformer,
|
||||
'QuantileTransformer': QuantileTransformer,
|
||||
'PolynomialFeatures': PolynomialFeatures,
|
||||
# 特征提取
|
||||
'FeatureHasher': FeatureHasher,
|
||||
'DictVectorizer': DictVectorizer,
|
||||
# 特征选择和降维
|
||||
'PCA': PCA,
|
||||
'SelectKBest': SelectKBest,
|
||||
'RFE': RFE
|
||||
}
|
||||
|
||||
def _load_method_config(self) -> Dict:
|
||||
"""加载方法配置文件"""
|
||||
try:
|
||||
config_path = Path('date_preprocessing/method.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Method config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config_process = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded method config")
|
||||
|
||||
config_path = Path('date_feature/method.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Method config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config_feature = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded feature config")
|
||||
|
||||
config = {**config_process, **config_feature}
|
||||
|
||||
return config
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading method/feature config: {str(e)}")
|
||||
raise
|
||||
|
||||
def _load_parameter_config(self) -> Dict:
|
||||
"""加载参数配置文件"""
|
||||
try:
|
||||
config_path = Path('date_preprocessing/parameter.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Parameter config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config_process = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded process parameter config")
|
||||
|
||||
config_path = Path('date_feature/parameter.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Parameter config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config_feature = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded feature parameter config")
|
||||
|
||||
config = {**config_process, **config_feature}
|
||||
|
||||
|
||||
return config
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading parameter config: {str(e)}")
|
||||
raise
|
||||
|
||||
|
||||
|
||||
def _setup_logging(self):
|
||||
"""设置日志"""
|
||||
log_dir = Path('.log')
|
||||
log_dir.mkdir(exist_ok=True)
|
||||
|
||||
file_handler = logging.FileHandler(
|
||||
log_dir / f'data_processing_{datetime.datetime.now():%Y%m%d_%H%M%S}.log'
|
||||
)
|
||||
file_handler.setFormatter(
|
||||
logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
||||
)
|
||||
self.logger.addHandler(file_handler)
|
||||
self.logger.setLevel(logging.INFO)
|
||||
|
||||
def process_dataset(
|
||||
self,
|
||||
input_path: str,
|
||||
output_dir: str,
|
||||
process_methods: List[Dict],
|
||||
feature_methods: List[Dict],
|
||||
split_params: Dict
|
||||
) -> Dict:
|
||||
"""
|
||||
处理数据集
|
||||
|
||||
Args:
|
||||
input_path: 输入数据路径
|
||||
output_dir: 输出目录
|
||||
cleaning_methods: 数据清洗方法列表,每个方法是一个字典,包含method_name和params
|
||||
feature_methods: 特征工程方法列表,每个方法是一个字典,包含method_name和params
|
||||
split_params: 数据集划分参数,包含test_size和val_size
|
||||
|
||||
Returns:
|
||||
处理结果字典
|
||||
"""
|
||||
# try:
|
||||
|
||||
# 数据集名
|
||||
file_name = input_path.split("/")[-1].split(".")[0]
|
||||
|
||||
# 生成时间戳
|
||||
timestamp = datetime.datetime.now().strftime('%Y%m%d_%H%M%S')
|
||||
|
||||
# 创建输出目录
|
||||
output_path = Path(output_dir+'/'+file_name+'_'+timestamp)
|
||||
output_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
# 记录处理过程
|
||||
process_record = {
|
||||
'input_file': input_path,
|
||||
'timestamp': datetime.datetime.now().isoformat(),
|
||||
'process_methods': process_methods,
|
||||
'feature_methods': feature_methods,
|
||||
'split_params': split_params,
|
||||
'steps': []
|
||||
}
|
||||
|
||||
# 读取数据
|
||||
self.logger.info(f"Loading data from {input_path}")
|
||||
df = pd.read_csv(input_path)
|
||||
process_record['steps'].append({
|
||||
'step': 'load_data',
|
||||
'shape': df.shape
|
||||
})
|
||||
|
||||
|
||||
|
||||
# 数据预处理
|
||||
for method in process_methods:
|
||||
df = self._apply_process_methods(df, method)
|
||||
process_record['steps'].append({
|
||||
'step': 'cleaning',
|
||||
'method': method['method_name'],
|
||||
'params': method['params'],
|
||||
'shape': df.shape
|
||||
})
|
||||
|
||||
# 特征工程
|
||||
for method in feature_methods:
|
||||
df = self._apply_feature_method(df, method)
|
||||
process_record['steps'].append({
|
||||
'step': 'feature_engineering',
|
||||
'method': method['method_name'],
|
||||
'params': method['params'],
|
||||
'shape': df.shape
|
||||
})
|
||||
|
||||
# 数据集划分
|
||||
train_data, val_data, test_data = self._split_dataset(
|
||||
df,
|
||||
test_size=split_params.get('test_size', 0),
|
||||
val_size=split_params.get('val_size', 0)
|
||||
)
|
||||
|
||||
|
||||
|
||||
# 保存处理后的数据集
|
||||
train_path = output_path / f'train_{file_name}_{timestamp}.csv'
|
||||
val_path = output_path / f'val_{file_name}_{timestamp}.csv'
|
||||
test_path = output_path / f'test_{file_name}_{timestamp}.csv'
|
||||
|
||||
if train_data is not None:
|
||||
train_data.to_csv(train_path, index=False)
|
||||
|
||||
if val_data is not None:
|
||||
val_data.to_csv(val_path, index=False)
|
||||
if test_data is not None:
|
||||
test_data.to_csv(test_path, index=False)
|
||||
|
||||
# 记录输出文件路径
|
||||
process_record['output_files'] = {
|
||||
'train': str(train_path) if train_data is not None else "",
|
||||
'validation': str(val_path) if val_data is not None else "",
|
||||
'test': str(test_path) if test_data is not None else ""
|
||||
}
|
||||
|
||||
# 保存处理记录
|
||||
record_path = output_path / f'process_record__{file_name}_{timestamp}.json'
|
||||
with open(record_path, 'w', encoding='utf-8') as f:
|
||||
json.dump(process_record, f, indent=2, ensure_ascii=False)
|
||||
|
||||
self.logger.info(f"Data processing completed. Results saved to {output_path}")
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'message': 'Data processing completed successfully',
|
||||
'process_record': process_record
|
||||
}
|
||||
|
||||
# except Exception as e:
|
||||
# error_msg = f"Error processing dataset: {str(e)}"
|
||||
# self.logger.error(error_msg)
|
||||
# return {
|
||||
# 'status': 'error',
|
||||
# 'message': error_msg
|
||||
# }
|
||||
|
||||
def _apply_process_methods(self, df: pd.DataFrame, method: Dict) -> pd.DataFrame:
|
||||
"""应用数据预处理方法"""
|
||||
try:
|
||||
method_name = method['method_name']
|
||||
params = method['params']
|
||||
|
||||
if method_name not in self.preprocessing_methods:
|
||||
raise ValueError(f"Unknown preprocessing method: {method_name}")
|
||||
|
||||
processor = self.preprocessing_methods[method_name](**params)
|
||||
|
||||
# 分离特征和标签
|
||||
features = df.drop('target', axis=1)
|
||||
target = df['target']
|
||||
|
||||
# 根据不同类型的方法进行处理
|
||||
if method_name in ['IsolationForest', 'OneClassSVM', 'LocalOutlierFactor', 'EllipticEnvelope']:
|
||||
# 异常值检测方法
|
||||
mask = processor.fit_predict(features) != -1
|
||||
features = features[mask]
|
||||
target = target[mask]
|
||||
else:
|
||||
# 其他预处理方法
|
||||
features = pd.DataFrame(
|
||||
processor.fit_transform(features),
|
||||
columns=features.columns,
|
||||
index=features.index
|
||||
)
|
||||
|
||||
# 重新组合特征和标签
|
||||
df = pd.concat([features, target], axis=1)
|
||||
|
||||
self.logger.info(f"Applied preprocessing method {method_name}")
|
||||
return df
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error applying preprocessing method {method_name}: {str(e)}")
|
||||
raise
|
||||
|
||||
def _apply_feature_method(self, df: pd.DataFrame, method: Dict) -> pd.DataFrame:
|
||||
"""应用特征工程方法"""
|
||||
try:
|
||||
method_name = method['method_name']
|
||||
params = method.get('params', {})
|
||||
columns = method.get('columns', df.drop('target', axis=1).columns) # 排除target列
|
||||
|
||||
if method_name not in self.feature_engineering_methods:
|
||||
raise ValueError(f"Unknown feature engineering method: {method_name}")
|
||||
|
||||
processor = self.feature_engineering_methods[method_name](**params)
|
||||
|
||||
# 分离特征和标签
|
||||
features = df.drop('target', axis=1)
|
||||
target = df['target']
|
||||
|
||||
# 根据不同类型的特征工程方法进行处理
|
||||
if method_name in ['LabelEncoder', 'OneHotEncoder']:
|
||||
# 编码方法
|
||||
df_temp = features[columns].copy()
|
||||
if method_name == 'LabelEncoder':
|
||||
for col in columns:
|
||||
df_temp[col] = processor.fit_transform(df_temp[col])
|
||||
else: # OneHotEncoder
|
||||
encoded = processor.fit_transform(df_temp)
|
||||
if isinstance(encoded, np.ndarray):
|
||||
encoded = pd.DataFrame(
|
||||
encoded,
|
||||
columns=[f"{col}_{i}" for col in columns for i in range(encoded.shape[1]//len(columns))],
|
||||
index=features.index
|
||||
)
|
||||
df_temp = encoded
|
||||
|
||||
# 更新特征数据框
|
||||
features = features.drop(columns=columns)
|
||||
features = pd.concat([features, df_temp], axis=1)
|
||||
|
||||
elif method_name in ['KBinsDiscretizer']:
|
||||
# 离散化方法
|
||||
transformed = processor.fit_transform(features[columns])
|
||||
if processor.encode == 'onehot':
|
||||
feature_names = [f"{col}_{i}" for col in columns for i in range(processor.n_bins_)]
|
||||
else:
|
||||
feature_names = [f"{col}_binned" for col in columns]
|
||||
|
||||
df_temp = pd.DataFrame(
|
||||
transformed,
|
||||
columns=feature_names,
|
||||
index=features.index
|
||||
)
|
||||
features = features.drop(columns=columns)
|
||||
features = pd.concat([features, df_temp], axis=1)
|
||||
|
||||
elif method_name in ['PCA', 'SelectKBest', 'RFE']:
|
||||
# 降维和特征选择方法
|
||||
transformed = processor.fit_transform(features[columns])
|
||||
n_features = transformed.shape[1]
|
||||
df_temp = pd.DataFrame(
|
||||
transformed,
|
||||
columns=[f"feature_{i}" for i in range(n_features)],
|
||||
index=features.index
|
||||
)
|
||||
features = features.drop(columns=columns)
|
||||
features = pd.concat([features, df_temp], axis=1)
|
||||
|
||||
else:
|
||||
# 其他特征工程方法
|
||||
transformed = processor.fit_transform(features[columns])
|
||||
df_temp = pd.DataFrame(
|
||||
transformed,
|
||||
columns=[f"{col}_transformed" for col in columns],
|
||||
index=features.index
|
||||
)
|
||||
features = features.drop(columns=columns)
|
||||
features = pd.concat([features, df_temp], axis=1)
|
||||
|
||||
# 重新组合特征和标签
|
||||
df = pd.concat([features, target], axis=1)
|
||||
|
||||
self.logger.info(f"Applied feature engineering method {method_name}")
|
||||
return df
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error applying feature engineering method {method_name}: {str(e)}")
|
||||
raise
|
||||
|
||||
def _split_dataset(
|
||||
self,
|
||||
df: pd.DataFrame,
|
||||
test_size: float = 0,
|
||||
val_size: float = 0
|
||||
) -> Tuple[pd.DataFrame, pd.DataFrame, pd.DataFrame]:
|
||||
"""划分数据集"""
|
||||
try:
|
||||
# 首先划分训练集和测试集
|
||||
if test_size > 0:
|
||||
train_val_data, test_data = train_test_split(
|
||||
df,
|
||||
test_size=test_size,
|
||||
random_state=42
|
||||
)
|
||||
else:
|
||||
train_val_data = df
|
||||
test_data = None
|
||||
if val_size > 0:
|
||||
# 再划分训练集和验证集
|
||||
val_size_adjusted = val_size / (1 - test_size)
|
||||
train_data, val_data = train_test_split(
|
||||
train_val_data,
|
||||
test_size=val_size_adjusted,
|
||||
random_state=42
|
||||
)
|
||||
else:
|
||||
train_data = train_val_data
|
||||
val_data = None
|
||||
|
||||
self.logger.info(
|
||||
f"Dataset split - Train: {len(train_data) if train_data is not None else 0}, "
|
||||
f"Val: {len(val_data) if val_data is not None else 0} , Test: {len(test_data) if test_data is not None else 0}"
|
||||
)
|
||||
|
||||
return train_data, val_data, test_data
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error splitting dataset: {str(e)}")
|
||||
raise
|
||||
|
||||
def get_preprocessing_methods(self) -> Dict:
|
||||
"""获取预处理方法列表"""
|
||||
try:
|
||||
methods = []
|
||||
|
||||
# 数据缩放方法
|
||||
scaler_methods = list(self.method_config.get('data_scaler_methods', {}).keys())
|
||||
if scaler_methods:
|
||||
methods.append({
|
||||
"name": "data_scaler",
|
||||
"description": "数据缩放处理",
|
||||
"method": scaler_methods
|
||||
})
|
||||
|
||||
# 缺失值处理方法
|
||||
missing_methods = list(self.method_config.get('missing_value_handling_methods', {}).keys())
|
||||
if missing_methods:
|
||||
methods.append({
|
||||
"name": "missing_value_handler",
|
||||
"description": "缺失值处理",
|
||||
"method": missing_methods
|
||||
})
|
||||
|
||||
# 异常值检测方法
|
||||
outlier_methods = list(self.method_config.get('outlier_detection_methods', {}).keys())
|
||||
if outlier_methods:
|
||||
methods.append({
|
||||
"name": "outlier_detector",
|
||||
"description": "异常值检测",
|
||||
"method": outlier_methods
|
||||
})
|
||||
|
||||
return {
|
||||
"status": "success",
|
||||
"methods": methods
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting preprocessing methods: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
def get_preprocessing_method_details(self, method_name: str) -> Dict:
|
||||
"""获取指定方法的详细信息"""
|
||||
try:
|
||||
# 在各个方法类别中查找方法原理和优缺点
|
||||
method_info = None
|
||||
for category in ['data_scaler_methods', 'missing_value_handling_methods', 'outlier_detection_methods']:
|
||||
if method_name in self.method_config.get(category, {}):
|
||||
method_info = self.method_config[category][method_name]
|
||||
break
|
||||
|
||||
if method_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in method config")
|
||||
|
||||
# 查找方法参数信息
|
||||
parameter_info = None
|
||||
for category in ['data_scaler_methods', 'missing_value_handling_methods', 'outlier_detection_methods']:
|
||||
if method_name in self.parameter_config.get(category, {}):
|
||||
parameter_info = self.parameter_config[category][method_name]
|
||||
break
|
||||
|
||||
if parameter_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in parameter config")
|
||||
|
||||
# 组合返回信息
|
||||
return {
|
||||
"status": "success",
|
||||
"method": {
|
||||
"name": method_name,
|
||||
"description": parameter_info.get('description', ''),
|
||||
"principle": method_info.get('principle', ''),
|
||||
"advantages": method_info.get('advantages', []),
|
||||
"disadvantages": method_info.get('disadvantages', []),
|
||||
"applicable_scenarios": method_info.get('applicable_scenarios', []),
|
||||
"parameters": parameter_info.get('parameters', [])
|
||||
}
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting method details: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
def get_feature_engineering_methods(self) -> Dict:
|
||||
"""获取特征工程方法列表"""
|
||||
try:
|
||||
methods = []
|
||||
|
||||
|
||||
# 获取特征工程方法
|
||||
feature_engineering_methods = list(self.method_config.get('feature_engineering_methods', {}).keys())
|
||||
if feature_engineering_methods:
|
||||
methods.append({
|
||||
"name": "feature_engineering_methods",
|
||||
"description": "特征工程方法",
|
||||
"method": feature_engineering_methods
|
||||
})
|
||||
|
||||
return {
|
||||
"status": "success",
|
||||
"methods": methods
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting preprocessing methods: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
def get_feature_engineering_method_details(self, method_name: str) -> Dict:
|
||||
"""获取指定方法的详细信息"""
|
||||
try:
|
||||
# 在各个方法类别中查找方法原理和优缺点
|
||||
method_info = None
|
||||
for category in ['feature_engineering_methods']:
|
||||
if method_name in self.method_config.get(category, {}):
|
||||
method_info = self.method_config[category][method_name]
|
||||
break
|
||||
|
||||
if method_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in method config")
|
||||
|
||||
# 查找方法参数信息
|
||||
parameter_info = None
|
||||
for category in ['feature_engineering_methods']:
|
||||
if method_name in self.parameter_config.get(category, {}):
|
||||
parameter_info = self.parameter_config[category][method_name]
|
||||
break
|
||||
|
||||
if parameter_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in parameter config")
|
||||
|
||||
# 组合返回信息
|
||||
return {
|
||||
"status": "success",
|
||||
"method": {
|
||||
"name": method_name,
|
||||
"description": parameter_info.get('description', ''),
|
||||
"principle": method_info.get('principle', ''),
|
||||
"advantages": method_info.get('advantages', []),
|
||||
"disadvantages": method_info.get('disadvantages', []),
|
||||
"applicable_scenarios": method_info.get('applicable_scenarios', []),
|
||||
"parameters": parameter_info.get('parameters', [])
|
||||
}
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting method details: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
def get_dataset(self):
|
||||
back = list()
|
||||
|
||||
dataset_files_path = os.listdir(self.dataset_processed_path)
|
||||
|
||||
for dataset_file in dataset_files_path:
|
||||
path = os.path.join(self.dataset_processed_path, dataset_file)
|
||||
# 指定要查看的文件夹路径
|
||||
folder_path = Path(path)
|
||||
|
||||
# 获取文件夹下所有以 .json 结尾的文件
|
||||
json_files = list(folder_path.glob('*.json'))
|
||||
|
||||
for json_file in json_files:
|
||||
with open(json_file.as_posix(), 'r', encoding='utf-8') as f:
|
||||
json_data = json.load(f)
|
||||
|
||||
back.append(json_data)
|
||||
return back
|
||||
79
function_old/method_reader_metric.py
Normal file
79
function_old/method_reader_metric.py
Normal file
@ -0,0 +1,79 @@
|
||||
import yaml
|
||||
from typing import Dict, List
|
||||
import os
|
||||
import logging
|
||||
from pathlib import Path
|
||||
|
||||
class MethodReader:
|
||||
"""方法配置读取器"""
|
||||
|
||||
def __init__(self):
|
||||
"""初始化方法读取器"""
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self.method_config = self._load_metrics()
|
||||
|
||||
|
||||
def _load_metrics(self) -> Dict:
|
||||
"""加载方法配置文件"""
|
||||
try:
|
||||
config_path = Path('model/metrics.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Method config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded method config")
|
||||
return config
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading method config: {str(e)}")
|
||||
raise
|
||||
|
||||
|
||||
|
||||
def get_metrics(self) -> Dict:
|
||||
"""获取预处理方法列表"""
|
||||
try:
|
||||
metrics = []
|
||||
|
||||
# 分类方法
|
||||
classification_metrics = self.method_config.get('classification', {})
|
||||
if classification_metrics:
|
||||
metrics.append({
|
||||
"name": "classification_metrics",
|
||||
"description": "分类方法评价指标",
|
||||
"metric": classification_metrics
|
||||
})
|
||||
|
||||
# 回归方法
|
||||
regression_metrics = self.method_config.get('regression', {})
|
||||
if regression_metrics:
|
||||
metrics.append({
|
||||
"name": "regression_metrics",
|
||||
"description": "回归方法评价指标",
|
||||
"metric": regression_metrics
|
||||
})
|
||||
|
||||
# 聚类方法
|
||||
clustering_metrics = self.method_config.get('clustering', {})
|
||||
if clustering_metrics:
|
||||
metrics.append({
|
||||
"name": "clustering_metrics",
|
||||
"description": "聚类方法评价指标",
|
||||
"metric": clustering_metrics
|
||||
})
|
||||
|
||||
return {
|
||||
"status": "success",
|
||||
"metric": metrics
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting preprocessing methods: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
|
||||
135
function_old/method_reader_model.py
Normal file
135
function_old/method_reader_model.py
Normal file
@ -0,0 +1,135 @@
|
||||
import yaml
|
||||
from typing import Dict, List
|
||||
import os
|
||||
import logging
|
||||
from pathlib import Path
|
||||
|
||||
class MethodReader:
|
||||
"""方法配置读取器"""
|
||||
|
||||
def __init__(self):
|
||||
"""初始化方法读取器"""
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self.method_config = self._load_model_config()
|
||||
self.parameter_config = self._load_parameter_config()
|
||||
|
||||
def _load_model_config(self) -> Dict:
|
||||
"""加载方法配置文件"""
|
||||
try:
|
||||
config_path = Path('model/model.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Method config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded method config")
|
||||
return config
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading method config: {str(e)}")
|
||||
raise
|
||||
|
||||
def _load_parameter_config(self) -> Dict:
|
||||
"""加载参数配置文件"""
|
||||
try:
|
||||
config_path = Path('model/parameter.yaml')
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(f"Parameter config file not found at {config_path}")
|
||||
|
||||
with open(config_path, 'r', encoding='utf-8') as f:
|
||||
config = yaml.safe_load(f)
|
||||
|
||||
self.logger.info("Successfully loaded parameter config")
|
||||
return config
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading parameter config: {str(e)}")
|
||||
raise
|
||||
|
||||
def get_models(self) -> Dict:
|
||||
"""获取预处理方法列表"""
|
||||
try:
|
||||
models = []
|
||||
|
||||
# 分类方法
|
||||
classification_algorithms = list(self.method_config.get('classification_algorithms', {}).keys())
|
||||
if classification_algorithms:
|
||||
models.append({
|
||||
"name": "classification_algorithms",
|
||||
"description": "分类方法",
|
||||
"method": classification_algorithms
|
||||
})
|
||||
|
||||
# 回归方法
|
||||
regression_algorithms = list(self.method_config.get('regression_algorithms', {}).keys())
|
||||
if regression_algorithms:
|
||||
models.append({
|
||||
"name": "regression_algorithms",
|
||||
"description": "回归方法",
|
||||
"method": regression_algorithms
|
||||
})
|
||||
|
||||
# 聚类方法
|
||||
clustering_algorithms = list(self.method_config.get('clustering_algorithms', {}).keys())
|
||||
if clustering_algorithms:
|
||||
models.append({
|
||||
"name": "clustering_algorithms",
|
||||
"description": "聚类方法",
|
||||
"method": clustering_algorithms
|
||||
})
|
||||
|
||||
return {
|
||||
"status": "success",
|
||||
"models": models
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting preprocessing methods: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
def get_model_details(self, method_name: str) -> Dict:
|
||||
"""获取指定方法的详细信息"""
|
||||
try:
|
||||
# 在各个方法类别中查找方法原理和优缺点
|
||||
method_info = None
|
||||
for category in ['classification_algorithms', 'regression_algorithms', 'clustering_algorithms']:
|
||||
if method_name in self.method_config.get(category, {}):
|
||||
method_info = self.method_config[category][method_name]
|
||||
break
|
||||
|
||||
if method_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in method config")
|
||||
|
||||
# 查找方法参数信息
|
||||
parameter_info = None
|
||||
for category in ['classification_algorithms', 'regression_algorithms', 'clustering_algorithms']:
|
||||
if method_name in self.parameter_config.get(category, {}):
|
||||
parameter_info = self.parameter_config[category][method_name]
|
||||
break
|
||||
|
||||
if parameter_info is None:
|
||||
raise ValueError(f"Method {method_name} not found in parameter config")
|
||||
|
||||
# 组合返回信息
|
||||
return {
|
||||
"status": "success",
|
||||
"method": {
|
||||
"name": method_name,
|
||||
"description": parameter_info.get('description', ''),
|
||||
"principle": method_info.get('principle', ''),
|
||||
"advantages": method_info.get('advantages', []),
|
||||
"disadvantages": method_info.get('disadvantages', []),
|
||||
"applicable_scenarios": method_info.get('applicable_scenarios', []),
|
||||
"parameters": parameter_info.get('parameters', [])
|
||||
}
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting method details: {str(e)}")
|
||||
return {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
454
function_old/model_manager.py
Normal file
454
function_old/model_manager.py
Normal file
@ -0,0 +1,454 @@
|
||||
import mlflow
|
||||
from mlflow.tracking import MlflowClient
|
||||
import pandas as pd
|
||||
from typing import Dict, List, Optional
|
||||
import logging
|
||||
from pathlib import Path
|
||||
from datetime import datetime
|
||||
import yaml
|
||||
import json
|
||||
import time
|
||||
import os
|
||||
import numpy as np
|
||||
from sklearn.metrics import (
|
||||
accuracy_score, precision_score, recall_score, f1_score, roc_auc_score,
|
||||
mean_absolute_error, mean_squared_error, r2_score, explained_variance_score,
|
||||
adjusted_rand_score, homogeneity_score, completeness_score, silhouette_score
|
||||
)
|
||||
import torch
|
||||
from torch.utils.data import DataLoader, TensorDataset
|
||||
|
||||
class ModelManager:
|
||||
"""模型管理类"""
|
||||
|
||||
def __init__(self, config: Dict = None):
|
||||
"""初始化模型管理器"""
|
||||
self.config = config or {}
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self._setup_logging()
|
||||
self._metrics_map()
|
||||
|
||||
# 初始化MLflow客户端
|
||||
self.mlflow_uri = self.config.get('mlflow_uri', 'http://10.0.0.202:5000')
|
||||
mlflow.set_tracking_uri(self.mlflow_uri)
|
||||
self.client = MlflowClient()
|
||||
|
||||
def _setup_logging(self):
|
||||
"""设置日志"""
|
||||
log_dir = Path('.log')
|
||||
log_dir.mkdir(exist_ok=True)
|
||||
|
||||
file_handler = logging.FileHandler(
|
||||
log_dir / f'model_manager_{datetime.now():%Y%m%d_%H%M%S}.log'
|
||||
)
|
||||
file_handler.setFormatter(
|
||||
logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
||||
)
|
||||
self.logger.addHandler(file_handler)
|
||||
self.logger.setLevel(logging.INFO)
|
||||
|
||||
def _metrics_map(self):
|
||||
self.metrics_map={
|
||||
'accuracy' : accuracy_score,
|
||||
'precision' : precision_score,
|
||||
'recall' : recall_score,
|
||||
'f1' : f1_score,
|
||||
'mae' : mean_absolute_error,
|
||||
'mse' : mean_squared_error,
|
||||
# 'rmse' : np.sqrt(mean_absolute_error), # 这里要特殊处理一下
|
||||
'r2': r2_score,
|
||||
'explained_variance' : explained_variance_score,
|
||||
'adjusted_rand' : adjusted_rand_score,
|
||||
'homogeneity' : homogeneity_score,
|
||||
'completeness': completeness_score,
|
||||
'silhouette' : silhouette_score
|
||||
}
|
||||
|
||||
def get_finished_models(
|
||||
self,
|
||||
page: int = 1,
|
||||
page_size: int = 10,
|
||||
experiment_name: Optional[str] = None
|
||||
) -> Dict:
|
||||
"""
|
||||
获取已训练完成的模型列表
|
||||
|
||||
Args:
|
||||
page: 页码
|
||||
page_size: 每页数量
|
||||
experiment_name: 实验名称过滤
|
||||
|
||||
Returns:
|
||||
模型列表信息
|
||||
"""
|
||||
try:
|
||||
# 获取所有实验
|
||||
if experiment_name:
|
||||
experiment = mlflow.get_experiment_by_name(experiment_name)
|
||||
if experiment is None:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'Experiment {experiment_name} not found'
|
||||
}
|
||||
experiments = [experiment]
|
||||
else:
|
||||
experiments = mlflow.search_experiments()
|
||||
|
||||
# 获取所有运行记录
|
||||
all_runs = []
|
||||
for exp in experiments:
|
||||
runs = mlflow.search_runs(
|
||||
experiment_ids=[exp.experiment_id],
|
||||
filter_string="status = 'FINISHED'"
|
||||
)
|
||||
all_runs.extend(runs.to_dict('records'))
|
||||
|
||||
# 计算分页
|
||||
total_count = len(all_runs)
|
||||
start_idx = (page - 1) * page_size
|
||||
end_idx = start_idx + page_size
|
||||
page_runs = all_runs[start_idx:end_idx]
|
||||
|
||||
# 格式化模型信息
|
||||
models = []
|
||||
for run in page_runs:
|
||||
print(run.keys())
|
||||
# 收集所有参数
|
||||
params = {}
|
||||
metrics = {}
|
||||
for key, value in run.items():
|
||||
if key.startswith('params.'):
|
||||
params[key.replace('params.', '')] = value
|
||||
elif key.startswith('metrics.'):
|
||||
metrics[key.replace('metrics.', '')] = value
|
||||
|
||||
# 转换时间为本地时间
|
||||
start_time = pd.to_datetime(run['start_time']).tz_convert('Asia/Shanghai')
|
||||
end_time = pd.to_datetime(run['end_time']).tz_convert('Asia/Shanghai')
|
||||
|
||||
# 构建模型信息
|
||||
model_info = {
|
||||
'run_id': run['run_id'],
|
||||
'experiment_id': run['experiment_id'],
|
||||
'algorithm': params['algorithm'], # 从配置或其他地方获取
|
||||
'task_type': params['task_type'], # 从配置或其他地方获取
|
||||
'dataset': params['dataset'], # 从配置或其他地方获取
|
||||
'training_start_time': start_time.strftime('%Y-%m-%d %H:%M:%S'), # 格式化为本地时间字符串
|
||||
'training_end_time': end_time.strftime('%Y-%m-%d %H:%M:%S'),
|
||||
'metrics': metrics,
|
||||
'parameters': {
|
||||
k: v for k, v in params.items()
|
||||
if k not in ['principle', 'advantages', 'disadvantages']
|
||||
},
|
||||
'algorithm_info': {
|
||||
'principle': params.get('principle', ''),
|
||||
'advantages': params.get('advantages', ''),
|
||||
'disadvantages': params.get('disadvantages', '')
|
||||
},
|
||||
'mlflow_run_id': run['run_id'],
|
||||
'model_path': f"models/{run['run_id']}"
|
||||
}
|
||||
models.append(model_info)
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'models': models,
|
||||
'total_count': total_count,
|
||||
'page': page,
|
||||
'page_size': page_size
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
error_msg = f"Error getting finished models: {str(e)}"
|
||||
self.logger.error(error_msg)
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': error_msg
|
||||
}
|
||||
|
||||
def get_experiments(
|
||||
self,
|
||||
page: int = 1,
|
||||
page_size: int = 10,
|
||||
include_deleted: bool = False
|
||||
) -> Dict:
|
||||
"""
|
||||
获取MLflow中保存的实验列表
|
||||
|
||||
Args:
|
||||
page: 页码
|
||||
page_size: 每页数量
|
||||
include_deleted: 是否包含已删除的实验
|
||||
|
||||
Returns:
|
||||
实验列表信息
|
||||
"""
|
||||
try:
|
||||
# 获取所有实验
|
||||
experiments = mlflow.search_experiments()
|
||||
|
||||
# 过滤已删除的实验
|
||||
if not include_deleted:
|
||||
experiments = [exp for exp in experiments if exp.lifecycle_stage == 'active']
|
||||
|
||||
# 计算分页
|
||||
total_count = len(experiments)
|
||||
start_idx = (page - 1) * page_size
|
||||
end_idx = start_idx + page_size
|
||||
page_experiments = experiments[start_idx:end_idx]
|
||||
|
||||
# 格式化实验信息
|
||||
experiment_list = []
|
||||
for exp in page_experiments:
|
||||
# 获取实验的运行次数
|
||||
runs = mlflow.search_runs(
|
||||
experiment_ids=[exp.experiment_id],
|
||||
filter_string="status = 'FINISHED'"
|
||||
)
|
||||
|
||||
# 获取最后更新时间并转换为本地时间
|
||||
if len(runs) > 0:
|
||||
last_update_time = pd.to_datetime(runs['end_time'].max())
|
||||
else:
|
||||
last_update_time = pd.to_datetime(exp.creation_time)
|
||||
|
||||
# 创建时间转换为本地时间
|
||||
creation_time = pd.to_datetime(exp.creation_time)
|
||||
|
||||
experiment_info = {
|
||||
'experiment_id': exp.experiment_id,
|
||||
'name': exp.name,
|
||||
'artifact_location': exp.artifact_location,
|
||||
'lifecycle_stage': exp.lifecycle_stage,
|
||||
'creation_time': creation_time.strftime('%Y-%m-%d %H:%M:%S'),
|
||||
'last_update_time': last_update_time.strftime('%Y-%m-%d %H:%M:%S'),
|
||||
'tags': exp.tags,
|
||||
'runs_count': len(runs)
|
||||
}
|
||||
experiment_list.append(experiment_info)
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'experiments': experiment_list,
|
||||
'total_count': total_count,
|
||||
'page': page,
|
||||
'page_size': page_size
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
error_msg = f"Error getting experiments: {str(e)}"
|
||||
self.logger.error(error_msg)
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': error_msg
|
||||
}
|
||||
|
||||
def delete_model(self, run_id: str) -> Dict:
|
||||
"""
|
||||
删除指定的训练好的模型
|
||||
|
||||
Args:
|
||||
run_id: MLflow运行ID
|
||||
|
||||
Returns:
|
||||
删除操作的结果信息
|
||||
"""
|
||||
try:
|
||||
# 获取运行信息
|
||||
run = self.client.get_run(run_id)
|
||||
if not run:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'未找到运行ID为 {run_id} 的模型'
|
||||
}
|
||||
|
||||
# 获取实验ID
|
||||
experiment_id = run.info.experiment_id
|
||||
|
||||
# 获取模型信息
|
||||
run_data = mlflow.get_run(run_id)
|
||||
model_name = run_data.data.params.get('algorithm', 'Unknown')
|
||||
|
||||
# 获取工件列表
|
||||
artifacts = []
|
||||
for artifact in self.client.list_artifacts(run_id):
|
||||
artifacts.append(artifact.path)
|
||||
|
||||
# 删除运行记录
|
||||
self.client.delete_run(run_id)
|
||||
|
||||
# 记录日志
|
||||
self.logger.info(f"已删除模型 - Run ID: {run_id}, 实验ID: {experiment_id}, 模型: {model_name}")
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'message': '模型删除成功',
|
||||
'details': {
|
||||
'run_id': run_id,
|
||||
'experiment_id': experiment_id,
|
||||
'model_name': model_name,
|
||||
'deleted_artifacts': artifacts
|
||||
}
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
error_msg = f"删除模型时发生错误: {str(e)}"
|
||||
self.logger.error(error_msg)
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': error_msg
|
||||
}
|
||||
|
||||
def predict(
|
||||
self,
|
||||
run_id: str,
|
||||
data_path: str,
|
||||
output_path: str,
|
||||
batch_size: int = 32,
|
||||
device: str = 'cuda' if torch.cuda.is_available() else 'cpu',
|
||||
return_proba: bool = True,
|
||||
metrics: List[str] = None
|
||||
) -> Dict:
|
||||
"""
|
||||
使用指定的模型进行预测
|
||||
|
||||
Args:
|
||||
run_id: MLflow运行ID
|
||||
data_path: 输入数据路径
|
||||
output_path: 预测结果保存路径
|
||||
batch_size: 批处理大小
|
||||
device: 计算设备 ('cuda' or 'cpu')
|
||||
return_proba: 是否返回概率预测
|
||||
metrics: 评估指标列表
|
||||
|
||||
Returns:
|
||||
预测结果信息
|
||||
"""
|
||||
# try:
|
||||
start_time = time.time()
|
||||
|
||||
# 获取模型信息
|
||||
run = self.client.get_run(run_id)
|
||||
if not run:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': f'未找到运行ID为 {run_id} 的模型'
|
||||
}
|
||||
|
||||
# 加载模型
|
||||
model = mlflow.pyfunc.load_model(f"runs:/{run_id}/model")
|
||||
model_name = run.data.params.get('algorithm', 'Unknown')
|
||||
|
||||
# 加载数据
|
||||
try:
|
||||
data = pd.read_csv(data_path)
|
||||
if 'label' in data.columns:
|
||||
y_true = data.pop('label').values
|
||||
has_labels = True
|
||||
elif 'target' in data.columns:
|
||||
y_true = data.pop('target').values
|
||||
has_labels = True
|
||||
else:
|
||||
has_labels = False
|
||||
X = data.values
|
||||
except Exception as e:
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': '数据加载失败',
|
||||
'details': {
|
||||
'error_type': type(e).__name__,
|
||||
'error_message': str(e)
|
||||
}
|
||||
}
|
||||
|
||||
# 创建预测ID
|
||||
pred_id = f"pred_{datetime.now():%Y%m%d_%H%M%S}"
|
||||
|
||||
# 进行预测
|
||||
if isinstance(model, torch.nn.Module):
|
||||
# PyTorch模型预测
|
||||
model.to(device)
|
||||
model.eval()
|
||||
|
||||
dataset = TensorDataset(torch.FloatTensor(X))
|
||||
dataloader = DataLoader(dataset, batch_size=batch_size)
|
||||
|
||||
predictions = []
|
||||
probas = []
|
||||
|
||||
with torch.no_grad():
|
||||
for batch in dataloader:
|
||||
batch = batch[0].to(device)
|
||||
outputs = model(batch)
|
||||
|
||||
if return_proba:
|
||||
proba = torch.softmax(outputs, dim=1)
|
||||
probas.append(proba.cpu().numpy())
|
||||
|
||||
preds = outputs.argmax(dim=1)
|
||||
predictions.append(preds.cpu().numpy())
|
||||
|
||||
predictions = np.concatenate(predictions)
|
||||
if return_proba:
|
||||
probas = np.concatenate(probas)
|
||||
else:
|
||||
# 其他模型预测
|
||||
predictions = model.predict(X)
|
||||
if return_proba and hasattr(model, 'predict_proba'):
|
||||
probas = model.predict_proba(X)
|
||||
else:
|
||||
probas = []
|
||||
|
||||
# 计算评估指标
|
||||
metrics_results = {}
|
||||
if has_labels and metrics:
|
||||
for metric in metrics:
|
||||
if metric in self.metrics_map.keys():
|
||||
metrics_results[metric] = float(self.metrics_map[metric](y_true, predictions))
|
||||
|
||||
# 保存预测结果
|
||||
results_df = pd.DataFrame({
|
||||
'prediction': predictions
|
||||
})
|
||||
if return_proba and len(probas) > 0:
|
||||
for i in range(probas.shape[1]):
|
||||
results_df[f'probability_{i}'] = probas[:, i]
|
||||
|
||||
# 确保输出目录存在
|
||||
os.makedirs(os.path.dirname(output_path), exist_ok=True)
|
||||
results_df.to_csv(output_path, index=False)
|
||||
|
||||
# 计算执行时间
|
||||
execution_time = time.time() - start_time
|
||||
|
||||
# 记录日志
|
||||
self.logger.info(
|
||||
f"预测完成 - Run ID: {run_id}, 模型: {model_name}, "
|
||||
f"样本数: {len(predictions)}, 耗时: {execution_time:.2f}s"
|
||||
)
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'prediction': {
|
||||
'id': pred_id,
|
||||
'run_id': run_id,
|
||||
'model_name': model_name,
|
||||
'output_file': output_path,
|
||||
'prediction_time': datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
|
||||
'samples_count': len(predictions),
|
||||
'metrics': metrics_results,
|
||||
'execution_time': f"{execution_time:.2f}s"
|
||||
}
|
||||
}
|
||||
|
||||
# except Exception as e:
|
||||
# error_msg = f"预测过程发生错误: {str(e)}"
|
||||
# self.logger.error(error_msg)
|
||||
# return {
|
||||
# 'status': 'error',
|
||||
# 'message': '模型预测失败',
|
||||
# 'details': {
|
||||
# 'error_type': type(e).__name__,
|
||||
# 'error_message': str(e)
|
||||
# }
|
||||
# }
|
||||
298
function_old/model_trainer.py
Normal file
298
function_old/model_trainer.py
Normal file
@ -0,0 +1,298 @@
|
||||
import numpy as pd
|
||||
import numpy as np
|
||||
from typing import Dict, List, Optional
|
||||
import logging
|
||||
from pathlib import Path
|
||||
import datetime
|
||||
import yaml
|
||||
import mlflow
|
||||
from sklearn.metrics import (
|
||||
accuracy_score, precision_score, recall_score, f1_score, roc_auc_score,
|
||||
mean_absolute_error, mean_squared_error, r2_score, explained_variance_score,
|
||||
adjusted_rand_score, homogeneity_score, completeness_score, silhouette_score
|
||||
)
|
||||
|
||||
class ModelTrainer:
|
||||
"""模型训练类"""
|
||||
|
||||
def __init__(self, config: Dict = None):
|
||||
"""初始化模型训练器"""
|
||||
self.config = config or {}
|
||||
self.logger = logging.getLogger(__name__)
|
||||
self._setup_logging()
|
||||
self._load_metrics()
|
||||
self._load_parameters()
|
||||
self._load_model_info()
|
||||
|
||||
# with open("confg/config.yaml", 'r', encoding='utf-8') as f:
|
||||
# config = yaml.safe_load(f)
|
||||
|
||||
# 初始化MLflow
|
||||
mlflow.set_tracking_uri(self.config.get('mlflow_uri', 'http://10.0.0.202:5000'))
|
||||
|
||||
def _setup_logging(self):
|
||||
"""设置日志"""
|
||||
log_dir = Path('.log')
|
||||
log_dir.mkdir(exist_ok=True)
|
||||
|
||||
file_handler = logging.FileHandler(
|
||||
log_dir / f'model_training_{datetime.datetime.now():%Y%m%d_%H%M%S}.log'
|
||||
)
|
||||
file_handler.setFormatter(
|
||||
logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
||||
)
|
||||
self.logger.addHandler(file_handler)
|
||||
self.logger.setLevel(logging.INFO)
|
||||
|
||||
def _load_metrics(self):
|
||||
"""加载评估指标配置"""
|
||||
try:
|
||||
with open('model/metrics.yaml', 'r', encoding='utf-8') as f:
|
||||
self.metrics_config = yaml.safe_load(f)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading metrics config: {str(e)}")
|
||||
raise
|
||||
|
||||
def _load_parameters(self):
|
||||
"""加载模型参数配置"""
|
||||
try:
|
||||
with open('model/parameter.yaml', 'r', encoding='utf-8') as f:
|
||||
self.parameter_config = yaml.safe_load(f)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading parameter config: {str(e)}")
|
||||
raise
|
||||
|
||||
def _load_model_info(self):
|
||||
"""加载模型信息配置"""
|
||||
try:
|
||||
with open('model/model.yaml', 'r', encoding='utf-8') as f:
|
||||
self.model_info = yaml.safe_load(f)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error loading model info: {str(e)}")
|
||||
raise
|
||||
|
||||
def _get_model_class(self, algorithm_name: str):
|
||||
"""获取模型类"""
|
||||
# 分类算法
|
||||
from sklearn.linear_model import LogisticRegression
|
||||
from sklearn.svm import SVC, OneClassSVM
|
||||
from sklearn.tree import DecisionTreeClassifier
|
||||
from sklearn.ensemble import (
|
||||
RandomForestClassifier, GradientBoostingClassifier,
|
||||
AdaBoostClassifier, IsolationForest
|
||||
)
|
||||
from sklearn.naive_bayes import GaussianNB
|
||||
from sklearn.neighbors import KNeighborsClassifier
|
||||
from sklearn.neural_network import MLPClassifier
|
||||
import xgboost as xgb
|
||||
import lightgbm as lgb
|
||||
from catboost import CatBoostClassifier
|
||||
|
||||
# 回归算法
|
||||
from sklearn.linear_model import (
|
||||
LinearRegression, Ridge, Lasso,
|
||||
ElasticNet
|
||||
)
|
||||
from sklearn.svm import SVR
|
||||
from sklearn.tree import DecisionTreeRegressor
|
||||
from sklearn.ensemble import (
|
||||
RandomForestRegressor, GradientBoostingRegressor,
|
||||
AdaBoostRegressor
|
||||
)
|
||||
from catboost import CatBoostRegressor
|
||||
from sklearn.neural_network import MLPRegressor
|
||||
|
||||
# 聚类算法
|
||||
from sklearn.cluster import (
|
||||
KMeans, AgglomerativeClustering,
|
||||
DBSCAN, SpectralClustering
|
||||
)
|
||||
from sklearn.mixture import GaussianMixture
|
||||
|
||||
algorithm_map = {
|
||||
# 分类算法
|
||||
'LogisticRegression': LogisticRegression,
|
||||
'SVC': SVC,
|
||||
'SVDD': OneClassSVM, # SVDD使用OneClassSVM实现
|
||||
'DecisionTreeClassifier': DecisionTreeClassifier,
|
||||
'RandomForestClassifier': RandomForestClassifier,
|
||||
'XGBClassifier': xgb.XGBClassifier,
|
||||
'AdaBoostClassifier': AdaBoostClassifier,
|
||||
'CatBoostClassifier': CatBoostClassifier,
|
||||
'LGBMClassifier': lgb.LGBMClassifier,
|
||||
'GaussianNB': GaussianNB,
|
||||
'KNeighborsClassifier': KNeighborsClassifier,
|
||||
'MLPClassifier': MLPClassifier,
|
||||
'GradientBoostingClassifier': GradientBoostingClassifier,
|
||||
|
||||
# 回归算法
|
||||
'LinearRegression': LinearRegression,
|
||||
'Ridge': Ridge,
|
||||
'Lasso': Lasso,
|
||||
'ElasticNet': ElasticNet,
|
||||
'SVR': SVR,
|
||||
'DecisionTreeRegressor': DecisionTreeRegressor,
|
||||
'RandomForestRegressor': RandomForestRegressor,
|
||||
'XGBRegressor': xgb.XGBRegressor,
|
||||
'AdaBoostRegressor': AdaBoostRegressor,
|
||||
'CatBoostRegressor': CatBoostRegressor,
|
||||
'LGBMRegressor': lgb.LGBMRegressor,
|
||||
'MLPRegressor': MLPRegressor,
|
||||
|
||||
# 聚类算法
|
||||
'KMeans': KMeans,
|
||||
'KMeansPlusPlus': KMeans, # KMeans++使用KMeans实现,通过init参数控制
|
||||
'AgglomerativeClustering': AgglomerativeClustering,
|
||||
'DBSCAN': DBSCAN,
|
||||
'GaussianMixture': GaussianMixture,
|
||||
'SpectralClustering': SpectralClustering
|
||||
}
|
||||
|
||||
if algorithm_name not in algorithm_map:
|
||||
raise ValueError(f"Unknown algorithm: {algorithm_name}")
|
||||
|
||||
return algorithm_map[algorithm_name]
|
||||
|
||||
def _get_algorithm_info(self, algorithm_name: str) -> Dict:
|
||||
"""获取算法信息"""
|
||||
for category in ['classification_algorithms', 'regression_algorithms', 'clustering_algorithms']:
|
||||
if algorithm_name in self.model_info.get(category, {}):
|
||||
return self.model_info[category][algorithm_name]
|
||||
raise ValueError(f"Algorithm {algorithm_name} not found in model info")
|
||||
|
||||
def train_model(
|
||||
self,
|
||||
train_data: Dict,
|
||||
val_data: Dict,
|
||||
model_config: Dict,
|
||||
experiment_name: str
|
||||
) -> Dict:
|
||||
"""
|
||||
训练模型
|
||||
|
||||
Args:
|
||||
train_data: 训练数据,包含特征和标签
|
||||
val_data: 验证数据,包含特征和标签
|
||||
model_config: 模型配置,包含算法名称和参数
|
||||
experiment_name: MLflow实验名称
|
||||
|
||||
Returns:
|
||||
训练结果字典
|
||||
"""
|
||||
try:
|
||||
# 检查实验是否存在且被删除
|
||||
experiment = mlflow.get_experiment_by_name(experiment_name)
|
||||
if experiment and experiment.lifecycle_stage == 'deleted':
|
||||
# 如果实验被删除,则创建一个新的实验名称
|
||||
timestamp = datetime.datetime.now().strftime('%Y%m%d_%H%M%S')
|
||||
new_experiment_name = f"{experiment_name}_{timestamp}"
|
||||
self.logger.info(f"Original experiment was deleted, creating new experiment: {new_experiment_name}")
|
||||
experiment_name = new_experiment_name
|
||||
|
||||
# 设置MLflow实验
|
||||
mlflow.set_experiment(experiment_name)
|
||||
|
||||
with mlflow.start_run() as run:
|
||||
# 记录基本信息
|
||||
mlflow.log_param('algorithm', model_config['algorithm'])
|
||||
mlflow.log_param('task_type', model_config['task_type'])
|
||||
# mlflow.log_param('dataset', experiment_name.split('_')[0]) # 从实验名称提取数据集名称
|
||||
mlflow.log_param('dataset', model_config['dataset']) # 直接写数据集路径
|
||||
|
||||
# timestamp = datetime.datetime.now().strftime('%Y%m%d_%H%M%S')
|
||||
# mlflow.log_param('start_time', timestamp)
|
||||
|
||||
# 记录模型参数
|
||||
for param_name, param_value in model_config['params'].items():
|
||||
mlflow.log_param(param_name, param_value)
|
||||
|
||||
# 记录算法信息
|
||||
algorithm_info = self._get_algorithm_info(model_config['algorithm'])
|
||||
mlflow.log_param('principle', algorithm_info['principle'])
|
||||
mlflow.log_param('advantages', str(algorithm_info['advantages']))
|
||||
mlflow.log_param('disadvantages', str(algorithm_info['disadvantages']))
|
||||
|
||||
# 特殊处理KMeans++
|
||||
if model_config['algorithm'] == 'KMeansPlusPlus':
|
||||
model_config['params']['init'] = 'k-means++'
|
||||
|
||||
# 获取模型类和信息
|
||||
model_class = self._get_model_class(model_config['algorithm'])
|
||||
|
||||
# 创建模型实例
|
||||
model = model_class(**model_config['params'])
|
||||
|
||||
# 训练模型
|
||||
self.logger.info(f"Starting training {model_config['algorithm']}")
|
||||
model.fit(train_data['features'], train_data['labels'])
|
||||
|
||||
# timestamp = datetime.datetime.now().strftime('%Y%m%d_%H%M%S')
|
||||
# mlflow.log_param('end_time', timestamp)
|
||||
|
||||
# 在验证集上评估
|
||||
val_predictions = model.predict(val_data['features'])
|
||||
metrics = self._calculate_metrics(
|
||||
val_data['labels'],
|
||||
val_predictions,
|
||||
model_config['task_type']
|
||||
)
|
||||
|
||||
# 记录指标
|
||||
for metric_name, metric_value in metrics.items():
|
||||
mlflow.log_metric(metric_name, metric_value)
|
||||
|
||||
# 保存模型
|
||||
mlflow.sklearn.log_model(model, "model")
|
||||
|
||||
self.logger.info(f"Training completed. Run ID: {run.info.run_id}")
|
||||
|
||||
return {
|
||||
'status': 'success',
|
||||
'run_id': run.info.run_id,
|
||||
'metrics': metrics,
|
||||
'algorithm_info': algorithm_info
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
error_msg = f"Error training model: {str(e)}"
|
||||
self.logger.error(error_msg)
|
||||
return {
|
||||
'status': 'error',
|
||||
'message': error_msg
|
||||
}
|
||||
|
||||
def _calculate_metrics(
|
||||
self,
|
||||
true_labels: np.ndarray,
|
||||
predictions: np.ndarray,
|
||||
task_type: str
|
||||
) -> Dict:
|
||||
"""计算评估指标"""
|
||||
metrics = {}
|
||||
|
||||
if task_type == 'classification':
|
||||
metrics['accuracy'] = accuracy_score(true_labels, predictions)
|
||||
metrics['precision'] = precision_score(true_labels, predictions, average='weighted')
|
||||
metrics['recall'] = recall_score(true_labels, predictions, average='weighted')
|
||||
metrics['f1'] = f1_score(true_labels, predictions, average='weighted')
|
||||
if len(np.unique(true_labels)) == 2: # 二分类问题
|
||||
metrics['roc_auc'] = roc_auc_score(true_labels, predictions)
|
||||
|
||||
elif task_type == 'regression':
|
||||
metrics['mae'] = mean_absolute_error(true_labels, predictions)
|
||||
metrics['mse'] = mean_squared_error(true_labels, predictions)
|
||||
metrics['rmse'] = np.sqrt(metrics['mse'])
|
||||
metrics['r2'] = r2_score(true_labels, predictions)
|
||||
metrics['explained_variance'] = explained_variance_score(true_labels, predictions)
|
||||
|
||||
elif task_type == 'clustering':
|
||||
metrics['adjusted_rand'] = adjusted_rand_score(true_labels, predictions)
|
||||
metrics['homogeneity'] = homogeneity_score(true_labels, predictions)
|
||||
metrics['completeness'] = completeness_score(true_labels, predictions)
|
||||
if len(np.unique(predictions)) > 1: # 确保有多个簇
|
||||
metrics['silhouette'] = silhouette_score(
|
||||
true_labels.reshape(-1, 1),
|
||||
predictions
|
||||
)
|
||||
|
||||
return metrics
|
||||
72
main.py
Normal file
72
main.py
Normal file
@ -0,0 +1,72 @@
|
||||
from fastapi import FastAPI, HTTPException, Depends, BackgroundTasks
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
from fastapi.security import OAuth2PasswordBearer
|
||||
from typing import Optional, Dict, List
|
||||
import uvicorn
|
||||
from pathlib import Path
|
||||
import logging
|
||||
import yaml
|
||||
from datetime import datetime
|
||||
|
||||
# 导入API路由
|
||||
from api.data_api import router as data_router
|
||||
from api.model_api import router as model_router
|
||||
from api.system_api import router as system_router
|
||||
|
||||
# 创建FastAPI应用
|
||||
app = FastAPI(
|
||||
title="机器学习平台API",
|
||||
description="提供数据处理、模型训练和系统监控功能的API服务",
|
||||
version="1.0.0"
|
||||
)
|
||||
|
||||
# 配置CORS
|
||||
app.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=["*"],
|
||||
allow_credentials=True,
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"],
|
||||
)
|
||||
|
||||
# 设置日志
|
||||
logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler(f'.log/server_{datetime.now():%Y%m%d_%H%M%S}.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
# 加载配置
|
||||
def load_config():
|
||||
try:
|
||||
with open('config/config.yaml', 'r', encoding='utf-8') as f:
|
||||
return yaml.safe_load(f)
|
||||
except Exception as e:
|
||||
logger.error(f"Error loading config: {str(e)}")
|
||||
return {}
|
||||
|
||||
config = load_config()
|
||||
|
||||
# 注册路由
|
||||
app.include_router(data_router, prefix="/api", tags=["数据处理"])
|
||||
app.include_router(model_router, prefix="/api", tags=["模型管理"])
|
||||
app.include_router(system_router, prefix="/api", tags=["系统监控"])
|
||||
|
||||
# 健康检查
|
||||
@app.get("/health")
|
||||
async def health_check():
|
||||
return {"status": "healthy", "timestamp": datetime.now().isoformat()}
|
||||
|
||||
if __name__ == "__main__":
|
||||
uvicorn.run(
|
||||
"main:app",
|
||||
host=config.get('host', '0.0.0.0'),
|
||||
port=config.get('port', 8000),
|
||||
reload=True,
|
||||
workers=config.get('workers', 4)
|
||||
)
|
||||
@ -0,0 +1,20 @@
|
||||
artifact_path: model
|
||||
flavors:
|
||||
python_function:
|
||||
env:
|
||||
conda: conda.yaml
|
||||
virtualenv: python_env.yaml
|
||||
loader_module: mlflow.sklearn
|
||||
model_path: model.pkl
|
||||
predict_fn: predict
|
||||
python_version: 3.9.19
|
||||
sklearn:
|
||||
code: null
|
||||
pickled_model: model.pkl
|
||||
serialization_format: cloudpickle
|
||||
sklearn_version: 1.5.2
|
||||
mlflow_version: 2.20.1
|
||||
model_size_bytes: 96534
|
||||
model_uuid: 4f7ee305cfe34dd3bbad3e03db1b81ee
|
||||
run_id: 307d0d9cebfe46b4848f365a7f8f6b28
|
||||
utc_time_created: '2025-02-21 03:33:23.487185'
|
||||
@ -0,0 +1,15 @@
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
- python=3.9.19
|
||||
- pip<=24.0
|
||||
- pip:
|
||||
- mlflow==2.20.1
|
||||
- cloudpickle==3.1.0
|
||||
- numpy==1.26.4
|
||||
- pandas==2.2.2
|
||||
- psutil==6.0.0
|
||||
- scikit-learn==1.5.2
|
||||
- scipy==1.13.1
|
||||
- xgboost==2.1.4
|
||||
name: mlflow-env
|
||||
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
python: 3.9.19
|
||||
build_dependencies:
|
||||
- pip==24.0
|
||||
- setuptools==60.2.0
|
||||
- wheel==0.43.0
|
||||
dependencies:
|
||||
- -r requirements.txt
|
||||
@ -0,0 +1,8 @@
|
||||
mlflow==2.20.1
|
||||
cloudpickle==3.1.0
|
||||
numpy==1.26.4
|
||||
pandas==2.2.2
|
||||
psutil==6.0.0
|
||||
scikit-learn==1.5.2
|
||||
scipy==1.13.1
|
||||
xgboost==2.1.4
|
||||
@ -0,0 +1,20 @@
|
||||
artifact_path: model
|
||||
flavors:
|
||||
python_function:
|
||||
env:
|
||||
conda: conda.yaml
|
||||
virtualenv: python_env.yaml
|
||||
loader_module: mlflow.sklearn
|
||||
model_path: model.pkl
|
||||
predict_fn: predict
|
||||
python_version: 3.9.19
|
||||
sklearn:
|
||||
code: null
|
||||
pickled_model: model.pkl
|
||||
serialization_format: cloudpickle
|
||||
sklearn_version: 1.5.2
|
||||
mlflow_version: 2.20.1
|
||||
model_size_bytes: 96534
|
||||
model_uuid: ab2ef994a0394e9a954176ab47a35449
|
||||
run_id: 3ed116cdfd054ac8b1cef841e8939943
|
||||
utc_time_created: '2025-02-21 03:27:30.842040'
|
||||
@ -0,0 +1,15 @@
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
- python=3.9.19
|
||||
- pip<=24.0
|
||||
- pip:
|
||||
- mlflow==2.20.1
|
||||
- cloudpickle==3.1.0
|
||||
- numpy==1.26.4
|
||||
- pandas==2.2.2
|
||||
- psutil==6.0.0
|
||||
- scikit-learn==1.5.2
|
||||
- scipy==1.13.1
|
||||
- xgboost==2.1.4
|
||||
name: mlflow-env
|
||||
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
python: 3.9.19
|
||||
build_dependencies:
|
||||
- pip==24.0
|
||||
- setuptools==60.2.0
|
||||
- wheel==0.43.0
|
||||
dependencies:
|
||||
- -r requirements.txt
|
||||
@ -0,0 +1,8 @@
|
||||
mlflow==2.20.1
|
||||
cloudpickle==3.1.0
|
||||
numpy==1.26.4
|
||||
pandas==2.2.2
|
||||
psutil==6.0.0
|
||||
scikit-learn==1.5.2
|
||||
scipy==1.13.1
|
||||
xgboost==2.1.4
|
||||
@ -0,0 +1,20 @@
|
||||
artifact_path: model
|
||||
flavors:
|
||||
python_function:
|
||||
env:
|
||||
conda: conda.yaml
|
||||
virtualenv: python_env.yaml
|
||||
loader_module: mlflow.sklearn
|
||||
model_path: model.pkl
|
||||
predict_fn: predict
|
||||
python_version: 3.9.19
|
||||
sklearn:
|
||||
code: null
|
||||
pickled_model: model.pkl
|
||||
serialization_format: cloudpickle
|
||||
sklearn_version: 1.5.2
|
||||
mlflow_version: 2.20.1
|
||||
model_size_bytes: 96534
|
||||
model_uuid: a5121dde7992439c86606f7fc45a1201
|
||||
run_id: c5457499fc434691890f5050d27dbcb2
|
||||
utc_time_created: '2025-02-21 02:59:22.229841'
|
||||
@ -0,0 +1,15 @@
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
- python=3.9.19
|
||||
- pip<=24.0
|
||||
- pip:
|
||||
- mlflow==2.20.1
|
||||
- cloudpickle==3.1.0
|
||||
- numpy==1.26.4
|
||||
- pandas==2.2.2
|
||||
- psutil==6.0.0
|
||||
- scikit-learn==1.5.2
|
||||
- scipy==1.13.1
|
||||
- xgboost==2.1.4
|
||||
name: mlflow-env
|
||||
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
python: 3.9.19
|
||||
build_dependencies:
|
||||
- pip==24.0
|
||||
- setuptools==60.2.0
|
||||
- wheel==0.43.0
|
||||
dependencies:
|
||||
- -r requirements.txt
|
||||
@ -0,0 +1,8 @@
|
||||
mlflow==2.20.1
|
||||
cloudpickle==3.1.0
|
||||
numpy==1.26.4
|
||||
pandas==2.2.2
|
||||
psutil==6.0.0
|
||||
scikit-learn==1.5.2
|
||||
scipy==1.13.1
|
||||
xgboost==2.1.4
|
||||
@ -0,0 +1,15 @@
|
||||
artifact_uri: mlflow-artifacts:/433321862082712659/307d0d9cebfe46b4848f365a7f8f6b28/artifacts
|
||||
end_time: 1740108805766
|
||||
entry_point_name: ''
|
||||
experiment_id: '433321862082712659'
|
||||
lifecycle_stage: active
|
||||
run_id: 307d0d9cebfe46b4848f365a7f8f6b28
|
||||
run_name: fun-vole-49
|
||||
run_uuid: 307d0d9cebfe46b4848f365a7f8f6b28
|
||||
source_name: ''
|
||||
source_type: 4
|
||||
source_version: ''
|
||||
start_time: 1740108803134
|
||||
status: 3
|
||||
tags: []
|
||||
user_id: admin-root
|
||||
@ -0,0 +1 @@
|
||||
1740108803464 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740108803476 0.9612318007520749 0
|
||||
@ -0,0 +1 @@
|
||||
1740108803468 0.9617833147244911 0
|
||||
@ -0,0 +1 @@
|
||||
1740108803472 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740108803480 0.9607692307692308 0
|
||||
@ -0,0 +1 @@
|
||||
['计算效率高,支持并行计算。', '具有内置的缺失值处理能力。']
|
||||
@ -0,0 +1 @@
|
||||
XGBClassifier
|
||||
@ -0,0 +1 @@
|
||||
/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629
|
||||
@ -0,0 +1 @@
|
||||
['参数较多,调优较复杂。']
|
||||
@ -0,0 +1 @@
|
||||
0.1
|
||||
@ -0,0 +1 @@
|
||||
6
|
||||
@ -0,0 +1 @@
|
||||
100
|
||||
@ -0,0 +1 @@
|
||||
XGBoost(Extreme Gradient Boosting)是一种基于梯度提升树(GBDT)的改进算法,具有更强的正则化和并行处理能力。
|
||||
@ -0,0 +1 @@
|
||||
42
|
||||
@ -0,0 +1 @@
|
||||
classification
|
||||
@ -0,0 +1 @@
|
||||
[{"run_id": "307d0d9cebfe46b4848f365a7f8f6b28", "artifact_path": "model", "utc_time_created": "2025-02-21 03:33:23.487185", "model_uuid": "4f7ee305cfe34dd3bbad3e03db1b81ee", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.9.19", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}]
|
||||
@ -0,0 +1 @@
|
||||
fun-vole-49
|
||||
@ -0,0 +1 @@
|
||||
d222cfe96807a8e9c61e17497d77f5f40a125bd7
|
||||
@ -0,0 +1 @@
|
||||
/home/admin-root/haotian/MLPlatform/example_model_manager_new.py
|
||||
@ -0,0 +1 @@
|
||||
LOCAL
|
||||
@ -0,0 +1 @@
|
||||
admin-root
|
||||
@ -0,0 +1,15 @@
|
||||
artifact_uri: mlflow-artifacts:/433321862082712659/3ed116cdfd054ac8b1cef841e8939943/artifacts
|
||||
end_time: 1740108453229
|
||||
entry_point_name: ''
|
||||
experiment_id: '433321862082712659'
|
||||
lifecycle_stage: active
|
||||
run_id: 3ed116cdfd054ac8b1cef841e8939943
|
||||
run_name: worried-wasp-551
|
||||
run_uuid: 3ed116cdfd054ac8b1cef841e8939943
|
||||
source_name: ''
|
||||
source_type: 4
|
||||
source_version: ''
|
||||
start_time: 1740108450493
|
||||
status: 3
|
||||
tags: []
|
||||
user_id: admin-root
|
||||
@ -0,0 +1 @@
|
||||
1740108450818 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740108450831 0.9612318007520749 0
|
||||
@ -0,0 +1 @@
|
||||
1740108450822 0.9617833147244911 0
|
||||
@ -0,0 +1 @@
|
||||
1740108450827 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740108450836 0.9607692307692308 0
|
||||
@ -0,0 +1 @@
|
||||
['计算效率高,支持并行计算。', '具有内置的缺失值处理能力。']
|
||||
@ -0,0 +1 @@
|
||||
XGBClassifier
|
||||
@ -0,0 +1 @@
|
||||
/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629
|
||||
@ -0,0 +1 @@
|
||||
['参数较多,调优较复杂。']
|
||||
@ -0,0 +1 @@
|
||||
0.1
|
||||
@ -0,0 +1 @@
|
||||
6
|
||||
@ -0,0 +1 @@
|
||||
100
|
||||
@ -0,0 +1 @@
|
||||
XGBoost(Extreme Gradient Boosting)是一种基于梯度提升树(GBDT)的改进算法,具有更强的正则化和并行处理能力。
|
||||
@ -0,0 +1 @@
|
||||
42
|
||||
@ -0,0 +1 @@
|
||||
classification
|
||||
@ -0,0 +1 @@
|
||||
[{"run_id": "3ed116cdfd054ac8b1cef841e8939943", "artifact_path": "model", "utc_time_created": "2025-02-21 03:27:30.842040", "model_uuid": "ab2ef994a0394e9a954176ab47a35449", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.9.19", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}]
|
||||
@ -0,0 +1 @@
|
||||
worried-wasp-551
|
||||
@ -0,0 +1 @@
|
||||
d222cfe96807a8e9c61e17497d77f5f40a125bd7
|
||||
@ -0,0 +1 @@
|
||||
/home/admin-root/haotian/MLPlatform/example_model_manager_new.py
|
||||
@ -0,0 +1 @@
|
||||
LOCAL
|
||||
@ -0,0 +1 @@
|
||||
admin-root
|
||||
@ -0,0 +1,15 @@
|
||||
artifact_uri: mlflow-artifacts:/433321862082712659/c5457499fc434691890f5050d27dbcb2/artifacts
|
||||
end_time: 1740106765431
|
||||
entry_point_name: ''
|
||||
experiment_id: '433321862082712659'
|
||||
lifecycle_stage: active
|
||||
run_id: c5457499fc434691890f5050d27dbcb2
|
||||
run_name: respected-lark-937
|
||||
run_uuid: c5457499fc434691890f5050d27dbcb2
|
||||
source_name: ''
|
||||
source_type: 4
|
||||
source_version: ''
|
||||
start_time: 1740106761872
|
||||
status: 3
|
||||
tags: []
|
||||
user_id: admin-root
|
||||
@ -0,0 +1 @@
|
||||
1740106762207 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740106762219 0.9612318007520749 0
|
||||
@ -0,0 +1 @@
|
||||
1740106762211 0.9617833147244911 0
|
||||
@ -0,0 +1 @@
|
||||
1740106762215 0.961038961038961 0
|
||||
@ -0,0 +1 @@
|
||||
1740106762223 0.9607692307692308 0
|
||||
@ -0,0 +1 @@
|
||||
['计算效率高,支持并行计算。', '具有内置的缺失值处理能力。']
|
||||
@ -0,0 +1 @@
|
||||
XGBClassifier
|
||||
@ -0,0 +1 @@
|
||||
/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629
|
||||
@ -0,0 +1 @@
|
||||
['参数较多,调优较复杂。']
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user