Commit b886d1a3 authored by Eric Duminil's avatar Eric Duminil
Browse files

Reading and testing LoadProfile too

parent 116ddee4
...@@ -2,6 +2,7 @@ from simstadtpy.results import ( ...@@ -2,6 +2,7 @@ from simstadtpy.results import (
GreenWaterResults, GreenWaterResults,
HeatDemandResults, HeatDemandResults,
KPI, KPI,
LoadProfileResults,
PhotovoltaicResults, PhotovoltaicResults,
SimStadtResults, SimStadtResults,
create_simstadt_results, create_simstadt_results,
...@@ -13,6 +14,7 @@ __all__ = [ ...@@ -13,6 +14,7 @@ __all__ = [
"KPI", "KPI",
"SimStadtResults", "SimStadtResults",
"HeatDemandResults", "HeatDemandResults",
"LoadProfileResults",
"PhotovoltaicResults", "PhotovoltaicResults",
"GreenWaterResults", "GreenWaterResults",
"create_simstadt_results", "create_simstadt_results",
......
...@@ -64,6 +64,9 @@ class Providers(str, Enum): ...@@ -64,6 +64,9 @@ class Providers(str, Enum):
HEAT_DEMAND_WITH_REFURBISHMENT = ( HEAT_DEMAND_WITH_REFURBISHMENT = (
"de.hftstuttgart.simstadtworkflows.energy.HeatDemandAnalysisWithRefurbishmentStrategyWorkflowProvider" "de.hftstuttgart.simstadtworkflows.energy.HeatDemandAnalysisWithRefurbishmentStrategyWorkflowProvider"
) )
HEAT_DEMAND_WITH_HISTORIC_REFURBISHMENT = (
"de.hftstuttgart.simstadtworkflows.energy.HeatDemandAnalysisWithHistoricAndFutureRefurbishmentWorkflowProvider"
)
HEAT_DEMAND_WITH_SHADOW = ( HEAT_DEMAND_WITH_SHADOW = (
"de.hftstuttgart.simstadtworkflows.shadow.HeatDemandCalculationWithShadowProcessingProvider" "de.hftstuttgart.simstadtworkflows.shadow.HeatDemandCalculationWithShadowProcessingProvider"
) )
...@@ -73,6 +76,7 @@ class Providers(str, Enum): ...@@ -73,6 +76,7 @@ class Providers(str, Enum):
"de.hftstuttgart.simstadtworkflows.economics.PhotovoltaicPotentialFinancialAnalysisWorkflowProvider" "de.hftstuttgart.simstadtworkflows.economics.PhotovoltaicPotentialFinancialAnalysisWorkflowProvider"
) )
GREEN_WATER = "de.hftstuttgart.simstadtworkflows.greenwater.GreenWaterWorkflowProvider" GREEN_WATER = "de.hftstuttgart.simstadtworkflows.greenwater.GreenWaterWorkflowProvider"
LOAD_PROFILE = "de.hftstuttgart.simstadtworkflows.energy.LoadProfileProvider"
def detect_decimal(csv_path: Path, line_number: int, check: str = "") -> str: def detect_decimal(csv_path: Path, line_number: int, check: str = "") -> str:
...@@ -315,6 +319,7 @@ class HeatDemandResults(SimStadtResults): ...@@ -315,6 +319,7 @@ class HeatDemandResults(SimStadtResults):
Providers.HEAT_DEMAND, Providers.HEAT_DEMAND,
Providers.HEAT_DEMAND_WITH_SHADOW, Providers.HEAT_DEMAND_WITH_SHADOW,
Providers.HEAT_DEMAND_WITH_REFURBISHMENT, Providers.HEAT_DEMAND_WITH_REFURBISHMENT,
Providers.HEAT_DEMAND_WITH_HISTORIC_REFURBISHMENT,
] ]
csv_identifier = "DIN18599" csv_identifier = "DIN18599"
...@@ -424,6 +429,36 @@ class PhotovoltaicResults(SimStadtResults): ...@@ -424,6 +429,36 @@ class PhotovoltaicResults(SimStadtResults):
return self._prepare_kpis(sums, averages) return self._prepare_kpis(sums, averages)
@dataclass(repr=False)
class LoadProfileResults(SimStadtResults):
"""Results for LoadProfile workflows.
The dataframe has one column per building (building GML ID as column name)
and 8760 rows of hourly energy demand [kWh/h].
"""
supported_providers: ClassVar[list[str]] = [Providers.LOAD_PROFILE]
csv_identifier = "_load_profile_Hourly"
def _parse_results(self) -> pd.DataFrame:
csv_decimal = detect_decimal(self.csv_path, 6, "Area")
df = pd.read_csv(self.csv_path, skiprows=range(1, 12), sep=";", decimal=csv_decimal)
# First column is the timestamp; remaining columns are per-building loads
return df.drop(columns=[df.columns[0]])
@property
def kpis(self) -> list[KPI]:
# TODO: Add sum, average. Add timestep too?
# TODO: Add people? Add total heated area?
df = self.dataframe
total = df.sum().sum()
return [
KPI("Number of buildings", df.shape[1], precision=0),
KPI("Total load", total, "kWh/a", precision=1),
KPI("Average load", total / 8760, "kWh/h", precision=1),
]
@dataclass(repr=False) @dataclass(repr=False)
class GreenWaterResults(SimStadtResults): class GreenWaterResults(SimStadtResults):
"""Results for GreenWater workflows (hourly time series with tree species breakdown).""" """Results for GreenWater workflows (hourly time series with tree species breakdown)."""
......
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.citygml.steps.ImportCityGml" id="ImportCityGml0">
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>startStep</string>
<void method="set">
<object idref="ImportCityGml0"/>
<boolean>true</boolean>
</void>
</void>
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>selectedNextStepPath</string>
<void method="set">
<object idref="ImportCityGml0"/>
<string>01_Preprocessing.step</string>
</void>
</void>
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflowsteps.GeometricPreprocessorStep" id="GeometricPreprocessorStep0">
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>startStep</string>
<void method="set">
<object idref="GeometricPreprocessorStep0"/>
<boolean>true</boolean>
</void>
</void>
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>selectedNextStepPath</string>
<void method="set">
<object idref="GeometricPreprocessorStep0"/>
<string>01_GeometricEstimator.step</string>
</void>
</void>
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflowsteps.GeometricEstimatorStep" id="GeometricEstimatorStep0">
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>selectedNextStepPath</string>
<void method="set">
<object idref="GeometricEstimatorStep0"/>
<string>02_PhysicsPreprocessor.step</string>
</void>
</void>
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflowsteps.PhysicsPreprocessorStep" id="PhysicsPreprocessorStep0">
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>selectedNextStepPath</string>
<void method="set">
<object idref="PhysicsPreprocessorStep0"/>
<string>03_UsagePreprocessor.step</string>
</void>
</void>
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflowsteps.UsagePreprocessorStep">
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflowsteps.Preprocessing" id="Preprocessing0">
<void class="de.hftstuttgart.hierarchicworkflow.Workflow" method="getField">
<string>selectedStartStepPath</string>
<void method="set">
<object idref="Preprocessing0"/>
<string>00_GeometricPreprocessor.step</string>
</void>
</void>
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>selectedNextStepPath</string>
<void method="set">
<object idref="Preprocessing0"/>
<string>02_LoadProfileGenerator.step</string>
</void>
</void>
<void property="name">
<string>Base</string>
</void>
</object>
</java>
======================== Summary ========================
Excluded 3 buildings from processing (Reason: Usagezone: garage has no standard load profile)
Excluded 1 buildings from processing (Reason: Could not create usage zones. SimStadtLibraryAccessException: 'Unknown function code: 51009_1610.')
================ Excluded buildings lists ===============
Excluded 3 buildings from processing (Reason: Usagezone: garage has no standard load profile)
# GML ID [-];Zone Number [-];Volume [m3];Footprint area [m2];X [m];Y [m]
DEBW_52210003uuj;0;127.08;37.73;515329.080000;5402144.630000
DEBW_52210004dHR;0;80.85;23.66;515313.045000;5402167.405000
DEBW_52210006Jqm;0;45.27;16.44;515362.825000;5402135.910000
Excluded 1 buildings from processing (Reason: Could not create usage zones. SimStadtLibraryAccessException: 'Unknown function code: 51009_1610.')
# GML ID [-];Zone Number [-];Volume [m3];Footprint area [m2];X [m];Y [m]
DEBW_5221000BwaG;0;25.75;6.88;515326.310000;5402146.910000
Index;Consumption [kWh/h]
1;5.54
2;5.19
3;5.13
4;5.11
5;5.09
6;5.05
7;4.96
8;4.88
9;4.83
10;4.80
11;4.79
12;4.79
13;4.76
14;4.74
15;4.65
16;4.64
17;4.61
18;4.51
19;4.50
20;4.49
21;4.49
22;4.47
23;4.44
24;4.41
25;4.40
26;4.39
27;4.39
28;4.36
29;4.34
30;4.34
31;4.32
32;4.32
33;4.29
34;4.25
35;4.25
36;4.25
37;4.22
38;4.21
39;4.21
40;4.20
41;4.19
42;4.19
43;4.18
44;4.17
45;4.16
46;4.15
47;4.15
48;4.14
49;4.13
50;4.12
51;4.12
52;4.12
53;4.11
54;4.11
55;4.10
56;4.10
57;4.09
58;4.09
59;4.07
60;4.06
61;4.01
62;4.01
63;4.00
64;3.99
65;3.97
66;3.95
67;3.95
68;3.94
69;3.94
70;3.92
71;3.92
72;3.91
73;3.91
74;3.90
75;3.90
76;3.90
77;3.90
78;3.89
79;3.89
80;3.89
81;3.88
82;3.88
83;3.88
84;3.87
85;3.86
86;3.86
87;3.86
88;3.85
89;3.85
90;3.84
91;3.84
92;3.84
93;3.84
94;3.82
95;3.82
96;3.82
97;3.82
98;3.82
99;3.81
100;3.81
101;3.80
102;3.80
103;3.79
104;3.79
105;3.78
106;3.78
107;3.78
108;3.77
109;3.77
110;3.77
111;3.76
112;3.76
113;3.75
114;3.75
115;3.74
116;3.74
117;3.74
118;3.74
119;3.74
120;3.73
121;3.73
122;3.73
123;3.73
124;3.72
125;3.71
126;3.70
127;3.70
128;3.70
129;3.70
130;3.69
131;3.69
132;3.69
133;3.69
134;3.69
135;3.68
136;3.67
137;3.67
138;3.67
139;3.66
140;3.66
141;3.66
142;3.66
143;3.66
144;3.65
145;3.65
146;3.65
147;3.64
148;3.64
149;3.64
150;3.64
151;3.64
152;3.63
153;3.63
154;3.63
155;3.63
156;3.63
157;3.63
158;3.62
159;3.62
160;3.62
161;3.62
162;3.62
163;3.62
164;3.62
165;3.62
166;3.62
167;3.62
168;3.61
169;3.61
170;3.60
171;3.60
172;3.60
173;3.60
174;3.59
175;3.59
176;3.59
177;3.59
178;3.58
179;3.58
180;3.58
181;3.58
182;3.58
183;3.57
184;3.57
185;3.57
186;3.56
187;3.56
188;3.55
189;3.55
190;3.55
191;3.55
192;3.55
193;3.55
194;3.54
195;3.54
196;3.54
197;3.54
198;3.54
199;3.53
200;3.53
201;3.53
202;3.53
203;3.53
204;3.53
205;3.53
206;3.53
207;3.52
208;3.52
209;3.52
210;3.52
211;3.52
212;3.51
213;3.51
214;3.51
215;3.51
216;3.50
217;3.50
218;3.50
219;3.49
220;3.49
221;3.49
222;3.49
223;3.48
224;3.47
225;3.47
226;3.47
227;3.47
228;3.46
229;3.46
230;3.46
231;3.46
232;3.46
233;3.46
234;3.45
235;3.45
236;3.45
237;3.45
238;3.44
239;3.44
240;3.44
241;3.44
242;3.43
243;3.43
244;3.43
245;3.43
246;3.43
247;3.43
248;3.43
249;3.42
250;3.42
251;3.42
252;3.42
253;3.42
254;3.42
255;3.42
256;3.42
257;3.42
258;3.41
259;3.41
260;3.41
261;3.41
262;3.41
263;3.40
264;3.40
265;3.40
266;3.40
267;3.40
268;3.40
269;3.40
270;3.39
271;3.39
272;3.39
273;3.39
274;3.39
275;3.39
276;3.38
277;3.38
278;3.38
279;3.38
280;3.38
281;3.38
282;3.38
283;3.38
284;3.38
285;3.37
286;3.37
287;3.36
288;3.36
289;3.36
290;3.36
291;3.36
292;3.36
293;3.36
294;3.35
295;3.35
296;3.35
297;3.35
298;3.35
299;3.35
300;3.35
301;3.34
302;3.34
303;3.34
304;3.34
305;3.34
306;3.34
307;3.34
308;3.34
309;3.34
310;3.34
311;3.33
312;3.33
313;3.33
314;3.33
315;3.32
316;3.32
317;3.32
318;3.32
319;3.32
320;3.31
321;3.31
322;3.31
323;3.31
324;3.31
325;3.30
326;3.30
327;3.30
328;3.30
329;3.30
330;3.29
331;3.29
332;3.29
333;3.29
334;3.29
335;3.29
336;3.29
337;3.29
338;3.29
339;3.29
340;3.28
341;3.28
342;3.28
343;3.28
344;3.28
345;3.28
346;3.27
347;3.27
348;3.27
349;3.27
350;3.27
351;3.27
352;3.26
353;3.26
354;3.26
355;3.26
356;3.26
357;3.26
358;3.26
359;3.25
360;3.25
361;3.25
362;3.25
363;3.25
364;3.25
365;3.24
366;3.24
367;3.24
368;3.24
369;3.24
370;3.24
371;3.24
372;3.24
373;3.24
374;3.23
375;3.23
376;3.23
377;3.23
378;3.23
379;3.23
380;3.22
381;3.22
382;3.22
383;3.22
384;3.22
385;3.22
386;3.22
387;3.22
388;3.22
389;3.22
390;3.22
391;3.22
392;3.22
393;3.22
394;3.21
395;3.21
396;3.21
397;3.21
398;3.21
399;3.21
400;3.21
401;3.21
402;3.21
403;3.21
404;3.21
405;3.20
406;3.20
407;3.20
408;3.20
409;3.20
410;3.20
411;3.19
412;3.19
413;3.19
414;3.19
415;3.18
416;3.18
417;3.18
418;3.18
419;3.18
420;3.18
421;3.18
422;3.18
423;3.18
424;3.18
425;3.17
426;3.17
427;3.17
428;3.17
429;3.17
430;3.17
431;3.17
432;3.17
433;3.17
434;3.17
435;3.17
436;3.17
437;3.17
438;3.16
439;3.16
440;3.16
441;3.16
442;3.16
443;3.16
444;3.16
445;3.15
446;3.15
447;3.15
448;3.15
449;3.15
450;3.15
451;3.15
452;3.15
453;3.15
454;3.15
455;3.15
456;3.14
457;3.14
458;3.14
459;3.14
460;3.14
461;3.14
462;3.14
463;3.14
464;3.14
465;3.14
466;3.14
467;3.14
468;3.13
469;3.13
470;3.13
471;3.13
472;3.13
473;3.13
474;3.13
475;3.13
476;3.12
477;3.12
478;3.12
479;3.12
480;3.12
481;3.12
482;3.12
483;3.12
484;3.12
485;3.11
486;3.11
487;3.11
488;3.11
489;3.11
490;3.11
491;3.11
492;3.11
493;3.11
494;3.11
495;3.11
496;3.11
497;3.11
498;3.11
499;3.11
500;3.11
501;3.11
502;3.11
503;3.10
504;3.10
505;3.10
506;3.10
507;3.10
508;3.10
509;3.10
510;3.10
511;3.10
512;3.10
513;3.09
514;3.09
515;3.09
516;3.09
517;3.09
518;3.09
519;3.09
520;3.09
521;3.09
522;3.08
523;3.08
524;3.08
525;3.08
526;3.08
527;3.08
528;3.08
529;3.08
530;3.07
531;3.07
532;3.07
533;3.07
534;3.07
535;3.07
536;3.07
537;3.07
538;3.07
539;3.07
540;3.07
541;3.06
542;3.06
543;3.06
544;3.06
545;3.06
546;3.06
547;3.06
548;3.06
549;3.06
550;3.05
551;3.05
552;3.05
553;3.05
554;3.05
555;3.05
556;3.05
557;3.05
558;3.05
559;3.05
560;3.05
561;3.05
562;3.05
563;3.04
564;3.04
565;3.04
566;3.04
567;3.04
568;3.04
569;3.03
570;3.03
571;3.03
572;3.03
573;3.03
574;3.03
575;3.03
576;3.03
577;3.03
578;3.03
579;3.03
580;3.03
581;3.03
582;3.03
583;3.03
584;3.03
585;3.02
586;3.02
587;3.02
588;3.02
589;3.02
590;3.02
591;3.02
592;3.02
593;3.02
594;3.02
595;3.02
596;3.02
597;3.02
598;3.02
599;3.01
600;3.01
601;3.01
602;3.01
603;3.01
604;3.01
605;3.01
606;3.01
607;3.01
608;3.00
609;3.00
610;3.00
611;3.00
612;3.00
613;3.00
614;3.00
615;3.00
616;3.00
617;3.00
618;3.00
619;3.00
620;3.00
621;2.99
622;2.99
623;2.99
624;2.99
625;2.99
626;2.99
627;2.99
628;2.99
629;2.99
630;2.99
631;2.99
632;2.99
633;2.99
634;2.99
635;2.99
636;2.99
637;2.99
638;2.99
639;2.99
640;2.98
641;2.98
642;2.98
643;2.98
644;2.98
645;2.98
646;2.98
647;2.97
648;2.97
649;2.97
650;2.97
651;2.97
652;2.97
653;2.97
654;2.97
655;2.97
656;2.97
657;2.97
658;2.97
659;2.97
660;2.97
661;2.96
662;2.96
663;2.96
664;2.96
665;2.96
666;2.96
667;2.96
668;2.96
669;2.96
670;2.96
671;2.96
672;2.96
673;2.96
674;2.96
675;2.96
676;2.96
677;2.96
678;2.96
679;2.96
680;2.96
681;2.96
682;2.95
683;2.95
684;2.95
685;2.95
686;2.95
687;2.95
688;2.94
689;2.94
690;2.94
691;2.94
692;2.94
693;2.94
694;2.94
695;2.94
696;2.94
697;2.94
698;2.94
699;2.94
700;2.94
701;2.94
702;2.94
703;2.93
704;2.93
705;2.93
706;2.93
707;2.93
708;2.93
709;2.93
710;2.93
711;2.93
712;2.93
713;2.93
714;2.93
715;2.93
716;2.93
717;2.93
718;2.93
719;2.93
720;2.93
721;2.92
722;2.92
723;2.92
724;2.92
725;2.92
726;2.92
727;2.92
728;2.92
729;2.92
730;2.92
731;2.92
732;2.92
733;2.92
734;2.92
735;2.92
736;2.92
737;2.91
738;2.91
739;2.91
740;2.91
741;2.91
742;2.91
743;2.91
744;2.91
745;2.91
746;2.91
747;2.91
748;2.91
749;2.91
750;2.91
751;2.91
752;2.91
753;2.91
754;2.90
755;2.90
756;2.90
757;2.90
758;2.90
759;2.90
760;2.90
761;2.90
762;2.90
763;2.90
764;2.90
765;2.89
766;2.89
767;2.89
768;2.89
769;2.89
770;2.89
771;2.89
772;2.89
773;2.89
774;2.89
775;2.89
776;2.89
777;2.89
778;2.89
779;2.88
780;2.88
781;2.88
782;2.88
783;2.88
784;2.88
785;2.88
786;2.88
787;2.88
788;2.88
789;2.88
790;2.88
791;2.88
792;2.88
793;2.88
794;2.88
795;2.88
796;2.88
797;2.88
798;2.88
799;2.87
800;2.87
801;2.87
802;2.87
803;2.87
804;2.87
805;2.87
806;2.87
807;2.87
808;2.87
809;2.87
810;2.87
811;2.86
812;2.86
813;2.86
814;2.86
815;2.86
816;2.86
817;2.86
818;2.86
819;2.86
820;2.86
821;2.86
822;2.86
823;2.86
824;2.86
825;2.86
826;2.86
827;2.86
828;2.86
829;2.86
830;2.86
831;2.86
832;2.86
833;2.85
834;2.85
835;2.85
836;2.85
837;2.85
838;2.85
839;2.85
840;2.85
841;2.85
842;2.85
843;2.85
844;2.85
845;2.85
846;2.84
847;2.84
848;2.84
849;2.84
850;2.84
851;2.84
852;2.84
853;2.84
854;2.84
855;2.84
856;2.84
857;2.84
858;2.83
859;2.83
860;2.83
861;2.83
862;2.83
863;2.83
864;2.83
865;2.83
866;2.83
867;2.83
868;2.83
869;2.83
870;2.83
871;2.83
872;2.83
873;2.83
874;2.83
875;2.82
876;2.82
877;2.82
878;2.82
879;2.82
880;2.82
881;2.82
882;2.82
883;2.82
884;2.82
885;2.82
886;2.82
887;2.82
888;2.82
889;2.81
890;2.81
891;2.81
892;2.81
893;2.81
894;2.81
895;2.81
896;2.81
897;2.81
898;2.81
899;2.81
900;2.81
901;2.81
902;2.81
903;2.81
904;2.81
905;2.81
906;2.80
907;2.80
908;2.80
909;2.80
910;2.80
911;2.80
912;2.80
913;2.80
914;2.80
915;2.80
916;2.80
917;2.80
918;2.80
919;2.79
920;2.79
921;2.79
922;2.79
923;2.79
924;2.79
925;2.79
926;2.79
927;2.79
928;2.79
929;2.79
930;2.79
931;2.79
932;2.79
933;2.79
934;2.79
935;2.79
936;2.79
937;2.79
938;2.79
939;2.79
940;2.79
941;2.78
942;2.78
943;2.78
944;2.78
945;2.78
946;2.78
947;2.78
948;2.78
949;2.78
950;2.78
951;2.78
952;2.78
953;2.78
954;2.78
955;2.78
956;2.78
957;2.78
958;2.78
959;2.78
960;2.78
961;2.78
962;2.78
963;2.78
964;2.77
965;2.77
966;2.77
967;2.77
968;2.77
969;2.77
970;2.77
971;2.77
972;2.77
973;2.77
974;2.77
975;2.77
976;2.77
977;2.77
978;2.77
979;2.77
980;2.77
981;2.77
982;2.77
983;2.77
984;2.77
985;2.77
986;2.77
987;2.77
988;2.77
989;2.77
990;2.77
991;2.77
992;2.76
993;2.76
994;2.76
995;2.76
996;2.76
997;2.76
998;2.76
999;2.76
1000;2.76
1001;2.76
1002;2.76
1003;2.76
1004;2.76
1005;2.76
1006;2.76
1007;2.76
1008;2.76
1009;2.76
1010;2.75
1011;2.75
1012;2.75
1013;2.75
1014;2.75
1015;2.75
1016;2.75
1017;2.75
1018;2.75
1019;2.75
1020;2.75
1021;2.75
1022;2.75
1023;2.75
1024;2.75
1025;2.75
1026;2.74
1027;2.74
1028;2.74
1029;2.74
1030;2.74
1031;2.74
1032;2.74
1033;2.74
1034;2.74
1035;2.74
1036;2.74
1037;2.74
1038;2.74
1039;2.74
1040;2.74
1041;2.74
1042;2.74
1043;2.74
1044;2.74
1045;2.74
1046;2.74
1047;2.74
1048;2.74
1049;2.74
1050;2.74
1051;2.73
1052;2.73
1053;2.73
1054;2.73
1055;2.73
1056;2.73
1057;2.73
1058;2.73
1059;2.73
1060;2.73
1061;2.73
1062;2.73
1063;2.73
1064;2.73
1065;2.73
1066;2.73
1067;2.73
1068;2.73
1069;2.73
1070;2.73
1071;2.73
1072;2.72
1073;2.72
1074;2.72
1075;2.72
1076;2.72
1077;2.72
1078;2.72
1079;2.72
1080;2.72
1081;2.72
1082;2.72
1083;2.72
1084;2.72
1085;2.72
1086;2.72
1087;2.72
1088;2.72
1089;2.72
1090;2.72
1091;2.72
1092;2.72
1093;2.72
1094;2.72
1095;2.72
1096;2.72
1097;2.72
1098;2.72
1099;2.71
1100;2.71
1101;2.71
1102;2.71
1103;2.71
1104;2.71
1105;2.71
1106;2.71
1107;2.71
1108;2.71
1109;2.71
1110;2.71
1111;2.71
1112;2.71
1113;2.71
1114;2.71
1115;2.71
1116;2.71
1117;2.71
1118;2.71
1119;2.71
1120;2.71
1121;2.71
1122;2.71
1123;2.71
1124;2.71
1125;2.70
1126;2.70
1127;2.70
1128;2.70
1129;2.70
1130;2.70
1131;2.70
1132;2.70
1133;2.70
1134;2.70
1135;2.70
1136;2.70
1137;2.70
1138;2.70
1139;2.70
1140;2.70
1141;2.70
1142;2.70
1143;2.70
1144;2.69
1145;2.69
1146;2.69
1147;2.69
1148;2.69
1149;2.69
1150;2.69
1151;2.69
1152;2.69
1153;2.69
1154;2.69
1155;2.69
1156;2.69
1157;2.69
1158;2.69
1159;2.69
1160;2.69
1161;2.69
1162;2.69
1163;2.69
1164;2.69
1165;2.69
1166;2.69
1167;2.69
1168;2.69
1169;2.69
1170;2.69
1171;2.68
1172;2.68
1173;2.68
1174;2.68
1175;2.68
1176;2.68
1177;2.68
1178;2.68
1179;2.68
1180;2.68
1181;2.68
1182;2.68
1183;2.68
1184;2.68
1185;2.68
1186;2.68
1187;2.68
1188;2.68
1189;2.68
1190;2.68
1191;2.68
1192;2.68
1193;2.68
1194;2.68
1195;2.68
1196;2.68
1197;2.68
1198;2.67
1199;2.67
1200;2.67
1201;2.67
1202;2.67
1203;2.67
1204;2.67
1205;2.67
1206;2.67
1207;2.67
1208;2.67
1209;2.67
1210;2.67
1211;2.67
1212;2.67
1213;2.67
1214;2.67
1215;2.67
1216;2.67
1217;2.67
1218;2.67
1219;2.66
1220;2.66
1221;2.66
1222;2.66
1223;2.66
1224;2.66
1225;2.66
1226;2.66
1227;2.66
1228;2.66
1229;2.66
1230;2.66
1231;2.66
1232;2.66
1233;2.66
1234;2.66
1235;2.66
1236;2.66
1237;2.65
1238;2.65
1239;2.65
1240;2.65
1241;2.65
1242;2.65
1243;2.65
1244;2.65
1245;2.65
1246;2.65
1247;2.65
1248;2.65
1249;2.65
1250;2.65
1251;2.65
1252;2.65
1253;2.65
1254;2.65
1255;2.65
1256;2.65
1257;2.65
1258;2.65
1259;2.65
1260;2.65
1261;2.65
1262;2.65
1263;2.65
1264;2.65
1265;2.65
1266;2.65
1267;2.65
1268;2.65
1269;2.64
1270;2.64
1271;2.64
1272;2.64
1273;2.64
1274;2.64
1275;2.64
1276;2.64
1277;2.64
1278;2.64
1279;2.64
1280;2.64
1281;2.64
1282;2.64
1283;2.64
1284;2.64
1285;2.64
1286;2.64
1287;2.64
1288;2.64
1289;2.64
1290;2.64
1291;2.64
1292;2.64
1293;2.64
1294;2.64
1295;2.64
1296;2.64
1297;2.64
1298;2.63
1299;2.63
1300;2.63
1301;2.63
1302;2.63
1303;2.63
1304;2.63
1305;2.63
1306;2.63
1307;2.63
1308;2.63
1309;2.63
1310;2.63
1311;2.63
1312;2.63
1313;2.63
1314;2.63
1315;2.63
1316;2.63
1317;2.63
1318;2.63
1319;2.63
1320;2.63
1321;2.63
1322;2.63
1323;2.63
1324;2.63
1325;2.63
1326;2.62
1327;2.62
1328;2.62
1329;2.62
1330;2.62
1331;2.62
1332;2.62
1333;2.62
1334;2.62
1335;2.62
1336;2.62
1337;2.62
1338;2.62
1339;2.62
1340;2.62
1341;2.62
1342;2.62
1343;2.62
1344;2.62
1345;2.62
1346;2.62
1347;2.62
1348;2.62
1349;2.62
1350;2.62
1351;2.62
1352;2.62
1353;2.62
1354;2.62
1355;2.62
1356;2.62
1357;2.62
1358;2.62
1359;2.62
1360;2.61
1361;2.61
1362;2.61
1363;2.61
1364;2.61
1365;2.61
1366;2.61
1367;2.61
1368;2.61
1369;2.61
1370;2.61
1371;2.61
1372;2.61
1373;2.61
1374;2.61
1375;2.61
1376;2.61
1377;2.61
1378;2.61
1379;2.61
1380;2.61
1381;2.61
1382;2.61
1383;2.61
1384;2.60
1385;2.60
1386;2.60
1387;2.60
1388;2.60
1389;2.60
1390;2.60
1391;2.60
1392;2.60
1393;2.60
1394;2.60
1395;2.60
1396;2.60
1397;2.60
1398;2.60
1399;2.60
1400;2.60
1401;2.60
1402;2.60
1403;2.60
1404;2.60
1405;2.60
1406;2.60
1407;2.60
1408;2.60
1409;2.60
1410;2.60
1411;2.60
1412;2.60
1413;2.59
1414;2.59
1415;2.59
1416;2.59
1417;2.59
1418;2.59
1419;2.59
1420;2.59
1421;2.59
1422;2.59
1423;2.59
1424;2.59
1425;2.59
1426;2.59
1427;2.59
1428;2.59
1429;2.59
1430;2.59
1431;2.59
1432;2.59
1433;2.59
1434;2.59
1435;2.59
1436;2.59
1437;2.59
1438;2.59
1439;2.59
1440;2.59
1441;2.59
1442;2.59
1443;2.59
1444;2.59
1445;2.59
1446;2.59
1447;2.59
1448;2.59
1449;2.59
1450;2.59
1451;2.59
1452;2.59
1453;2.59
1454;2.59
1455;2.59
1456;2.59
1457;2.59
1458;2.58
1459;2.58
1460;2.58
1461;2.58
1462;2.58
1463;2.58
1464;2.58
1465;2.58
1466;2.58
1467;2.58
1468;2.58
1469;2.58
1470;2.58
1471;2.58
1472;2.58
1473;2.58
1474;2.58
1475;2.58
1476;2.58
1477;2.58
1478;2.58
1479;2.58
1480;2.58
1481;2.58
1482;2.58
1483;2.58
1484;2.58
1485;2.58
1486;2.57
1487;2.57
1488;2.57
1489;2.57
1490;2.57
1491;2.57
1492;2.57
1493;2.57
1494;2.57
1495;2.57
1496;2.57
1497;2.57
1498;2.57
1499;2.57
1500;2.57
1501;2.57
1502;2.57
1503;2.57
1504;2.57
1505;2.57
1506;2.57
1507;2.57
1508;2.57
1509;2.57
1510;2.56
1511;2.56
1512;2.56
1513;2.56
1514;2.56
1515;2.56
1516;2.56
1517;2.56
1518;2.56
1519;2.56
1520;2.56
1521;2.56
1522;2.56
1523;2.56
1524;2.56
1525;2.56
1526;2.56
1527;2.56
1528;2.56
1529;2.56
1530;2.56
1531;2.56
1532;2.56
1533;2.56
1534;2.56
1535;2.56
1536;2.56
1537;2.56
1538;2.56
1539;2.56
1540;2.56
1541;2.56
1542;2.56
1543;2.56
1544;2.56
1545;2.56
1546;2.56
1547;2.56
1548;2.56
1549;2.55
1550;2.55
1551;2.55
1552;2.55
1553;2.55
1554;2.55
1555;2.55
1556;2.55
1557;2.55
1558;2.55
1559;2.55
1560;2.55
1561;2.55
1562;2.55
1563;2.55
1564;2.55
1565;2.55
1566;2.55
1567;2.55
1568;2.55
1569;2.55
1570;2.55
1571;2.55
1572;2.55
1573;2.55
1574;2.55
1575;2.55
1576;2.55
1577;2.55
1578;2.54
1579;2.54
1580;2.54
1581;2.54
1582;2.54
1583;2.54
1584;2.54
1585;2.54
1586;2.54
1587;2.54
1588;2.54
1589;2.54
1590;2.54
1591;2.54
1592;2.54
1593;2.54
1594;2.54
1595;2.54
1596;2.54
1597;2.54
1598;2.54
1599;2.54
1600;2.54
1601;2.54
1602;2.54
1603;2.54
1604;2.54
1605;2.54
1606;2.54
1607;2.54
1608;2.54
1609;2.54
1610;2.54
1611;2.54
1612;2.54
1613;2.54
1614;2.54
1615;2.54
1616;2.54
1617;2.54
1618;2.54
1619;2.54
1620;2.54
1621;2.54
1622;2.54
1623;2.53
1624;2.53
1625;2.53
1626;2.53
1627;2.53
1628;2.53
1629;2.53
1630;2.53
1631;2.53
1632;2.53
1633;2.53
1634;2.53
1635;2.53
1636;2.53
1637;2.53
1638;2.53
1639;2.53
1640;2.53
1641;2.53
1642;2.53
1643;2.53
1644;2.53
1645;2.53
1646;2.52
1647;2.52
1648;2.52
1649;2.52
1650;2.52
1651;2.52
1652;2.52
1653;2.52
1654;2.52
1655;2.52
1656;2.52
1657;2.52
1658;2.52
1659;2.52
1660;2.52
1661;2.52
1662;2.52
1663;2.52
1664;2.52
1665;2.52
1666;2.52
1667;2.52
1668;2.52
1669;2.52
1670;2.52
1671;2.52
1672;2.52
1673;2.52
1674;2.52
1675;2.52
1676;2.52
1677;2.52
1678;2.52
1679;2.52
1680;2.52
1681;2.52
1682;2.52
1683;2.51
1684;2.51
1685;2.51
1686;2.51
1687;2.51
1688;2.51
1689;2.51
1690;2.51
1691;2.51
1692;2.51
1693;2.51
1694;2.51
1695;2.51
1696;2.51
1697;2.51
1698;2.51
1699;2.51
1700;2.51
1701;2.51
1702;2.51
1703;2.51
1704;2.51
1705;2.51
1706;2.51
1707;2.51
1708;2.51
1709;2.51
1710;2.51
1711;2.51
1712;2.50
1713;2.50
1714;2.50
1715;2.50
1716;2.50
1717;2.50
1718;2.50
1719;2.50
1720;2.50
1721;2.50
1722;2.50
1723;2.50
1724;2.50
1725;2.50
1726;2.50
1727;2.50
1728;2.50
1729;2.50
1730;2.50
1731;2.50
1732;2.50
1733;2.50
1734;2.50
1735;2.50
1736;2.50
1737;2.50
1738;2.50
1739;2.50
1740;2.50
1741;2.50
1742;2.50
1743;2.50
1744;2.50
1745;2.50
1746;2.50
1747;2.50
1748;2.50
1749;2.50
1750;2.50
1751;2.50
1752;2.50
1753;2.50
1754;2.50
1755;2.50
1756;2.50
1757;2.50
1758;2.50
1759;2.50
1760;2.50
1761;2.49
1762;2.49
1763;2.49
1764;2.49
1765;2.49
1766;2.49
1767;2.49
1768;2.49
1769;2.49
1770;2.49
1771;2.49
1772;2.49
1773;2.49
1774;2.49
1775;2.49
1776;2.49
1777;2.49
1778;2.49
1779;2.49
1780;2.49
1781;2.49
1782;2.49
1783;2.49
1784;2.49
1785;2.49
1786;2.49
1787;2.49
1788;2.49
1789;2.49
1790;2.49
1791;2.49
1792;2.49
1793;2.49
1794;2.49
1795;2.49
1796;2.49
1797;2.49
1798;2.49
1799;2.49
1800;2.49
1801;2.49
1802;2.49
1803;2.49
1804;2.49
1805;2.49
1806;2.49
1807;2.49
1808;2.49
1809;2.48
1810;2.48
1811;2.48
1812;2.48
1813;2.48
1814;2.48
1815;2.48
1816;2.48
1817;2.48
1818;2.48
1819;2.48
1820;2.48
1821;2.48
1822;2.48
1823;2.48
1824;2.48
1825;2.48
1826;2.48
1827;2.48
1828;2.48
1829;2.48
1830;2.48
1831;2.48
1832;2.48
1833;2.48
1834;2.48
1835;2.48
1836;2.48
1837;2.48
1838;2.48
1839;2.48
1840;2.48
1841;2.48
1842;2.48
1843;2.48
1844;2.48
1845;2.48
1846;2.48
1847;2.48
1848;2.48
1849;2.48
1850;2.48
1851;2.48
1852;2.48
1853;2.48
1854;2.48
1855;2.48
1856;2.48
1857;2.48
1858;2.48
1859;2.48
1860;2.48
1861;2.48
1862;2.48
1863;2.48
1864;2.47
1865;2.47
1866;2.47
1867;2.47
1868;2.47
1869;2.47
1870;2.47
1871;2.47
1872;2.47
1873;2.47
1874;2.47
1875;2.47
1876;2.47
1877;2.47
1878;2.47
1879;2.47
1880;2.47
1881;2.47
1882;2.47
1883;2.47
1884;2.47
1885;2.47
1886;2.47
1887;2.47
1888;2.47
1889;2.47
1890;2.47
1891;2.47
1892;2.47
1893;2.47
1894;2.47
1895;2.47
1896;2.47
1897;2.47
1898;2.47
1899;2.47
1900;2.47
1901;2.47
1902;2.47
1903;2.47
1904;2.47
1905;2.47
1906;2.47
1907;2.47
1908;2.46
1909;2.46
1910;2.46
1911;2.46
1912;2.46
1913;2.46
1914;2.46
1915;2.46
1916;2.46
1917;2.46
1918;2.46
1919;2.46
1920;2.46
1921;2.46
1922;2.46
1923;2.46
1924;2.46
1925;2.46
1926;2.46
1927;2.46
1928;2.46
1929;2.46
1930;2.46
1931;2.46
1932;2.46
1933;2.46
1934;2.46
1935;2.46
1936;2.46
1937;2.46
1938;2.46
1939;2.46
1940;2.46
1941;2.46
1942;2.46
1943;2.46
1944;2.46
1945;2.46
1946;2.46
1947;2.46
1948;2.46
1949;2.46
1950;2.46
1951;2.46
1952;2.46
1953;2.46
1954;2.46
1955;2.45
1956;2.45
1957;2.45
1958;2.45
1959;2.45
1960;2.45
1961;2.45
1962;2.45
1963;2.45
1964;2.45
1965;2.45
1966;2.45
1967;2.45
1968;2.45
1969;2.45
1970;2.45
1971;2.45
1972;2.45
1973;2.45
1974;2.45
1975;2.45
1976;2.45
1977;2.45
1978;2.45
1979;2.45
1980;2.45
1981;2.45
1982;2.45
1983;2.45
1984;2.45
1985;2.45
1986;2.45
1987;2.45
1988;2.45
1989;2.45
1990;2.45
1991;2.45
1992;2.45
1993;2.45
1994;2.45
1995;2.45
1996;2.45
1997;2.45
1998;2.45
1999;2.45
2000;2.45
2001;2.45
2002;2.45
2003;2.44
2004;2.44
2005;2.44
2006;2.44
2007;2.44
2008;2.44
2009;2.44
2010;2.44
2011;2.44
2012;2.44
2013;2.44
2014;2.44
2015;2.44
2016;2.44
2017;2.44
2018;2.44
2019;2.44
2020;2.44
2021;2.44
2022;2.44
2023;2.44
2024;2.44
2025;2.44
2026;2.44
2027;2.44
2028;2.44
2029;2.44
2030;2.44
2031;2.44
2032;2.44
2033;2.44
2034;2.44
2035;2.44
2036;2.44
2037;2.44
2038;2.44
2039;2.44
2040;2.44
2041;2.44
2042;2.43
2043;2.43
2044;2.43
2045;2.43
2046;2.43
2047;2.43
2048;2.43
2049;2.43
2050;2.43
2051;2.43
2052;2.43
2053;2.43
2054;2.43
2055;2.43
2056;2.43
2057;2.43
2058;2.43
2059;2.43
2060;2.43
2061;2.43
2062;2.43
2063;2.43
2064;2.43
2065;2.43
2066;2.43
2067;2.43
2068;2.43
2069;2.43
2070;2.43
2071;2.43
2072;2.43
2073;2.43
2074;2.43
2075;2.43
2076;2.43
2077;2.43
2078;2.43
2079;2.43
2080;2.43
2081;2.43
2082;2.43
2083;2.43
2084;2.43
2085;2.42
2086;2.42
2087;2.42
2088;2.42
2089;2.42
2090;2.42
2091;2.42
2092;2.42
2093;2.42
2094;2.42
2095;2.42
2096;2.42
2097;2.42
2098;2.42
2099;2.42
2100;2.42
2101;2.42
2102;2.42
2103;2.42
2104;2.42
2105;2.42
2106;2.42
2107;2.42
2108;2.42
2109;2.42
2110;2.42
2111;2.42
2112;2.42
2113;2.42
2114;2.42
2115;2.42
2116;2.42
2117;2.42
2118;2.42
2119;2.42
2120;2.42
2121;2.42
2122;2.42
2123;2.42
2124;2.42
2125;2.42
2126;2.42
2127;2.42
2128;2.42
2129;2.42
2130;2.42
2131;2.42
2132;2.42
2133;2.42
2134;2.41
2135;2.41
2136;2.41
2137;2.41
2138;2.41
2139;2.41
2140;2.41
2141;2.41
2142;2.41
2143;2.41
2144;2.41
2145;2.41
2146;2.41
2147;2.41
2148;2.41
2149;2.41
2150;2.41
2151;2.41
2152;2.41
2153;2.41
2154;2.41
2155;2.41
2156;2.41
2157;2.41
2158;2.41
2159;2.41
2160;2.41
2161;2.41
2162;2.41
2163;2.41
2164;2.41
2165;2.41
2166;2.41
2167;2.41
2168;2.41
2169;2.41
2170;2.41
2171;2.41
2172;2.41
2173;2.40
2174;2.40
2175;2.40
2176;2.40
2177;2.40
2178;2.40
2179;2.40
2180;2.40
2181;2.40
2182;2.40
2183;2.40
2184;2.40
2185;2.40
2186;2.40
2187;2.40
2188;2.40
2189;2.40
2190;2.40
2191;2.40
2192;2.40
2193;2.40
2194;2.40
2195;2.40
2196;2.40
2197;2.40
2198;2.40
2199;2.40
2200;2.40
2201;2.40
2202;2.40
2203;2.40
2204;2.40
2205;2.40
2206;2.40
2207;2.40
2208;2.40
2209;2.40
2210;2.40
2211;2.40
2212;2.40
2213;2.39
2214;2.39
2215;2.39
2216;2.39
2217;2.39
2218;2.39
2219;2.39
2220;2.39
2221;2.39
2222;2.39
2223;2.39
2224;2.39
2225;2.39
2226;2.39
2227;2.39
2228;2.39
2229;2.39
2230;2.39
2231;2.39
2232;2.39
2233;2.39
2234;2.39
2235;2.39
2236;2.39
2237;2.39
2238;2.39
2239;2.39
2240;2.39
2241;2.39
2242;2.39
2243;2.39
2244;2.39
2245;2.39
2246;2.39
2247;2.39
2248;2.39
2249;2.39
2250;2.38
2251;2.38
2252;2.38
2253;2.38
2254;2.38
2255;2.38
2256;2.38
2257;2.38
2258;2.38
2259;2.38
2260;2.38
2261;2.38
2262;2.38
2263;2.38
2264;2.38
2265;2.38
2266;2.38
2267;2.38
2268;2.38
2269;2.38
2270;2.38
2271;2.38
2272;2.38
2273;2.38
2274;2.38
2275;2.38
2276;2.38
2277;2.38
2278;2.38
2279;2.38
2280;2.38
2281;2.38
2282;2.38
2283;2.38
2284;2.38
2285;2.38
2286;2.38
2287;2.38
2288;2.38
2289;2.38
2290;2.38
2291;2.38
2292;2.38
2293;2.38
2294;2.38
2295;2.38
2296;2.37
2297;2.37
2298;2.37
2299;2.37
2300;2.37
2301;2.37
2302;2.37
2303;2.37
2304;2.37
2305;2.37
2306;2.37
2307;2.37
2308;2.37
2309;2.37
2310;2.37
2311;2.37
2312;2.37
2313;2.37
2314;2.37
2315;2.37
2316;2.37
2317;2.37
2318;2.37
2319;2.37
2320;2.37
2321;2.37
2322;2.37
2323;2.37
2324;2.37
2325;2.37
2326;2.37
2327;2.37
2328;2.37
2329;2.37
2330;2.37
2331;2.37
2332;2.37
2333;2.37
2334;2.37
2335;2.37
2336;2.37
2337;2.37
2338;2.37
2339;2.37
2340;2.37
2341;2.37
2342;2.37
2343;2.37
2344;2.37
2345;2.37
2346;2.36
2347;2.36
2348;2.36
2349;2.36
2350;2.36
2351;2.36
2352;2.36
2353;2.36
2354;2.36
2355;2.36
2356;2.36
2357;2.36
2358;2.36
2359;2.36
2360;2.36
2361;2.36
2362;2.36
2363;2.36
2364;2.36
2365;2.36
2366;2.36
2367;2.36
2368;2.36
2369;2.36
2370;2.36
2371;2.36
2372;2.36
2373;2.36
2374;2.36
2375;2.36
2376;2.36
2377;2.36
2378;2.36
2379;2.36
2380;2.36
2381;2.36
2382;2.36
2383;2.36
2384;2.36
2385;2.36
2386;2.36
2387;2.36
2388;2.36
2389;2.36
2390;2.35
2391;2.35
2392;2.35
2393;2.35
2394;2.35
2395;2.35
2396;2.35
2397;2.35
2398;2.35
2399;2.35
2400;2.35
2401;2.35
2402;2.35
2403;2.35
2404;2.35
2405;2.35
2406;2.35
2407;2.35
2408;2.35
2409;2.35
2410;2.35
2411;2.35
2412;2.35
2413;2.35
2414;2.35
2415;2.35
2416;2.35
2417;2.35
2418;2.35
2419;2.35
2420;2.35
2421;2.35
2422;2.35
2423;2.35
2424;2.35
2425;2.35
2426;2.35
2427;2.35
2428;2.35
2429;2.35
2430;2.35
2431;2.35
2432;2.35
2433;2.34
2434;2.34
2435;2.34
2436;2.34
2437;2.34
2438;2.34
2439;2.34
2440;2.34
2441;2.34
2442;2.34
2443;2.34
2444;2.34
2445;2.34
2446;2.34
2447;2.34
2448;2.34
2449;2.34
2450;2.34
2451;2.34
2452;2.34
2453;2.34
2454;2.34
2455;2.34
2456;2.34
2457;2.34
2458;2.34
2459;2.34
2460;2.34
2461;2.34
2462;2.34
2463;2.34
2464;2.34
2465;2.34
2466;2.34
2467;2.34
2468;2.34
2469;2.34
2470;2.34
2471;2.34
2472;2.34
2473;2.34
2474;2.33
2475;2.33
2476;2.33
2477;2.33
2478;2.33
2479;2.33
2480;2.33
2481;2.33
2482;2.33
2483;2.33
2484;2.33
2485;2.33
2486;2.33
2487;2.33
2488;2.33
2489;2.33
2490;2.33
2491;2.33
2492;2.33
2493;2.33
2494;2.33
2495;2.33
2496;2.33
2497;2.33
2498;2.33
2499;2.33
2500;2.33
2501;2.33
2502;2.33
2503;2.33
2504;2.33
2505;2.33
2506;2.33
2507;2.33
2508;2.33
2509;2.33
2510;2.33
2511;2.33
2512;2.33
2513;2.33
2514;2.33
2515;2.33
2516;2.33
2517;2.33
2518;2.33
2519;2.33
2520;2.33
2521;2.33
2522;2.33
2523;2.33
2524;2.33
2525;2.33
2526;2.33
2527;2.33
2528;2.33
2529;2.33
2530;2.32
2531;2.32
2532;2.32
2533;2.32
2534;2.32
2535;2.32
2536;2.32
2537;2.32
2538;2.32
2539;2.32
2540;2.32
2541;2.32
2542;2.32
2543;2.32
2544;2.32
2545;2.32
2546;2.32
2547;2.32
2548;2.32
2549;2.32
2550;2.32
2551;2.32
2552;2.32
2553;2.32
2554;2.32
2555;2.32
2556;2.32
2557;2.32
2558;2.32
2559;2.32
2560;2.32
2561;2.32
2562;2.32
2563;2.32
2564;2.32
2565;2.32
2566;2.32
2567;2.32
2568;2.32
2569;2.32
2570;2.32
2571;2.32
2572;2.32
2573;2.32
2574;2.32
2575;2.32
2576;2.32
2577;2.31
2578;2.31
2579;2.31
2580;2.31
2581;2.31
2582;2.31
2583;2.31
2584;2.31
2585;2.31
2586;2.31
2587;2.31
2588;2.31
2589;2.31
2590;2.31
2591;2.31
2592;2.31
2593;2.31
2594;2.31
2595;2.31
2596;2.31
2597;2.31
2598;2.31
2599;2.31
2600;2.31
2601;2.31
2602;2.31
2603;2.31
2604;2.31
2605;2.31
2606;2.31
2607;2.31
2608;2.31
2609;2.31
2610;2.31
2611;2.31
2612;2.31
2613;2.31
2614;2.31
2615;2.31
2616;2.31
2617;2.31
2618;2.31
2619;2.31
2620;2.31
2621;2.31
2622;2.31
2623;2.31
2624;2.31
2625;2.31
2626;2.31
2627;2.31
2628;2.31
2629;2.31
2630;2.31
2631;2.31
2632;2.31
2633;2.31
2634;2.31
2635;2.31
2636;2.30
2637;2.30
2638;2.30
2639;2.30
2640;2.30
2641;2.30
2642;2.30
2643;2.30
2644;2.30
2645;2.30
2646;2.30
2647;2.30
2648;2.30
2649;2.30
2650;2.30
2651;2.30
2652;2.30
2653;2.30
2654;2.30
2655;2.30
2656;2.30
2657;2.30
2658;2.30
2659;2.30
2660;2.30
2661;2.30
2662;2.30
2663;2.30
2664;2.30
2665;2.30
2666;2.30
2667;2.30
2668;2.30
2669;2.30
2670;2.30
2671;2.30
2672;2.30
2673;2.30
2674;2.30
2675;2.30
2676;2.30
2677;2.30
2678;2.30
2679;2.30
2680;2.30
2681;2.30
2682;2.30
2683;2.30
2684;2.30
2685;2.30
2686;2.30
2687;2.30
2688;2.30
2689;2.30
2690;2.30
2691;2.30
2692;2.30
2693;2.30
2694;2.30
2695;2.30
2696;2.30
2697;2.29
2698;2.29
2699;2.29
2700;2.29
2701;2.29
2702;2.29
2703;2.29
2704;2.29
2705;2.29
2706;2.29
2707;2.29
2708;2.29
2709;2.29
2710;2.29
2711;2.29
2712;2.29
2713;2.29
2714;2.29
2715;2.29
2716;2.29
2717;2.29
2718;2.29
2719;2.29
2720;2.29
2721;2.29
2722;2.29
2723;2.29
2724;2.29
2725;2.29
2726;2.29
2727;2.29
2728;2.29
2729;2.29
2730;2.29
2731;2.29
2732;2.29
2733;2.29
2734;2.29
2735;2.29
2736;2.29
2737;2.29
2738;2.29
2739;2.29
2740;2.29
2741;2.29
2742;2.29
2743;2.29
2744;2.29
2745;2.29
2746;2.28
2747;2.28
2748;2.28
2749;2.28
2750;2.28
2751;2.28
2752;2.28
2753;2.28
2754;2.28
2755;2.28
2756;2.28
2757;2.28
2758;2.28
2759;2.28
2760;2.28
2761;2.28
2762;2.28
2763;2.28
2764;2.28
2765;2.28
2766;2.28
2767;2.28
2768;2.28
2769;2.28
2770;2.28
2771;2.28
2772;2.28
2773;2.28
2774;2.28
2775;2.28
2776;2.28
2777;2.28
2778;2.28
2779;2.28
2780;2.28
2781;2.28
2782;2.28
2783;2.28
2784;2.28
2785;2.28
2786;2.28
2787;2.28
2788;2.28
2789;2.28
2790;2.28
2791;2.28
2792;2.28
2793;2.28
2794;2.28
2795;2.28
2796;2.28
2797;2.28
2798;2.28
2799;2.28
2800;2.28
2801;2.28
2802;2.28
2803;2.28
2804;2.28
2805;2.28
2806;2.28
2807;2.28
2808;2.28
2809;2.27
2810;2.27
2811;2.27
2812;2.27
2813;2.27
2814;2.27
2815;2.27
2816;2.27
2817;2.27
2818;2.27
2819;2.27
2820;2.27
2821;2.27
2822;2.27
2823;2.27
2824;2.27
2825;2.27
2826;2.27
2827;2.27
2828;2.27
2829;2.27
2830;2.27
2831;2.27
2832;2.27
2833;2.27
2834;2.27
2835;2.27
2836;2.27
2837;2.27
2838;2.27
2839;2.27
2840;2.27
2841;2.27
2842;2.27
2843;2.27
2844;2.27
2845;2.27
2846;2.27
2847;2.27
2848;2.27
2849;2.27
2850;2.27
2851;2.27
2852;2.27
2853;2.26
2854;2.26
2855;2.26
2856;2.26
2857;2.26
2858;2.26
2859;2.26
2860;2.26
2861;2.26
2862;2.26
2863;2.26
2864;2.26
2865;2.26
2866;2.26
2867;2.26
2868;2.26
2869;2.26
2870;2.26
2871;2.26
2872;2.26
2873;2.26
2874;2.26
2875;2.26
2876;2.26
2877;2.26
2878;2.26
2879;2.26
2880;2.26
2881;2.26
2882;2.26
2883;2.26
2884;2.26
2885;2.26
2886;2.26
2887;2.26
2888;2.26
2889;2.26
2890;2.26
2891;2.25
2892;2.25
2893;2.25
2894;2.25
2895;2.25
2896;2.25
2897;2.25
2898;2.25
2899;2.25
2900;2.25
2901;2.25
2902;2.25
2903;2.25
2904;2.25
2905;2.25
2906;2.25
2907;2.25
2908;2.25
2909;2.25
2910;2.25
2911;2.25
2912;2.25
2913;2.25
2914;2.25
2915;2.25
2916;2.25
2917;2.25
2918;2.25
2919;2.25
2920;2.25
2921;2.25
2922;2.25
2923;2.25
2924;2.25
2925;2.25
2926;2.25
2927;2.25
2928;2.25
2929;2.25
2930;2.25
2931;2.25
2932;2.25
2933;2.25
2934;2.25
2935;2.25
2936;2.25
2937;2.25
2938;2.25
2939;2.25
2940;2.25
2941;2.25
2942;2.25
2943;2.25
2944;2.25
2945;2.25
2946;2.25
2947;2.25
2948;2.25
2949;2.25
2950;2.25
2951;2.25
2952;2.25
2953;2.25
2954;2.25
2955;2.24
2956;2.24
2957;2.24
2958;2.24
2959;2.24
2960;2.24
2961;2.24
2962;2.24
2963;2.24
2964;2.24
2965;2.24
2966;2.24
2967;2.24
2968;2.24
2969;2.24
2970;2.24
2971;2.24
2972;2.24
2973;2.24
2974;2.24
2975;2.24
2976;2.24
2977;2.24
2978;2.24
2979;2.24
2980;2.24
2981;2.24
2982;2.24
2983;2.24
2984;2.24
2985;2.24
2986;2.24
2987;2.24
2988;2.24
2989;2.24
2990;2.24
2991;2.24
2992;2.23
2993;2.23
2994;2.23
2995;2.23
2996;2.23
2997;2.23
2998;2.23
2999;2.23
3000;2.23
3001;2.23
3002;2.23
3003;2.23
3004;2.23
3005;2.23
3006;2.23
3007;2.23
3008;2.23
3009;2.23
3010;2.23
3011;2.23
3012;2.23
3013;2.23
3014;2.23
3015;2.23
3016;2.23
3017;2.23
3018;2.23
3019;2.23
3020;2.23
3021;2.23
3022;2.23
3023;2.23
3024;2.23
3025;2.23
3026;2.23
3027;2.23
3028;2.23
3029;2.23
3030;2.23
3031;2.23
3032;2.23
3033;2.23
3034;2.23
3035;2.23
3036;2.22
3037;2.22
3038;2.22
3039;2.22
3040;2.22
3041;2.22
3042;2.22
3043;2.22
3044;2.22
3045;2.22
3046;2.22
3047;2.22
3048;2.22
3049;2.22
3050;2.22
3051;2.22
3052;2.22
3053;2.22
3054;2.22
3055;2.22
3056;2.22
3057;2.22
3058;2.22
3059;2.22
3060;2.22
3061;2.22
3062;2.22
3063;2.22
3064;2.22
3065;2.22
3066;2.22
3067;2.22
3068;2.22
3069;2.22
3070;2.22
3071;2.22
3072;2.22
3073;2.22
3074;2.22
3075;2.22
3076;2.22
3077;2.22
3078;2.22
3079;2.22
3080;2.22
3081;2.22
3082;2.22
3083;2.22
3084;2.22
3085;2.22
3086;2.22
3087;2.22
3088;2.22
3089;2.22
3090;2.22
3091;2.21
3092;2.21
3093;2.21
3094;2.21
3095;2.21
3096;2.21
3097;2.21
3098;2.21
3099;2.21
3100;2.21
3101;2.21
3102;2.21
3103;2.21
3104;2.21
3105;2.21
3106;2.21
3107;2.21
3108;2.21
3109;2.21
3110;2.21
3111;2.21
3112;2.21
3113;2.21
3114;2.21
3115;2.21
3116;2.21
3117;2.21
3118;2.21
3119;2.21
3120;2.21
3121;2.21
3122;2.21
3123;2.21
3124;2.21
3125;2.21
3126;2.21
3127;2.21
3128;2.21
3129;2.21
3130;2.21
3131;2.21
3132;2.21
3133;2.21
3134;2.21
3135;2.21
3136;2.20
3137;2.20
3138;2.20
3139;2.20
3140;2.20
3141;2.20
3142;2.20
3143;2.20
3144;2.20
3145;2.20
3146;2.20
3147;2.20
3148;2.20
3149;2.20
3150;2.20
3151;2.20
3152;2.20
3153;2.20
3154;2.20
3155;2.20
3156;2.20
3157;2.20
3158;2.20
3159;2.20
3160;2.20
3161;2.20
3162;2.20
3163;2.20
3164;2.20
3165;2.20
3166;2.20
3167;2.20
3168;2.20
3169;2.20
3170;2.20
3171;2.20
3172;2.20
3173;2.20
3174;2.20
3175;2.20
3176;2.20
3177;2.20
3178;2.20
3179;2.20
3180;2.20
3181;2.20
3182;2.20
3183;2.20
3184;2.20
3185;2.20
3186;2.20
3187;2.20
3188;2.20
3189;2.19
3190;2.19
3191;2.19
3192;2.19
3193;2.19
3194;2.19
3195;2.19
3196;2.19
3197;2.19
3198;2.19
3199;2.19
3200;2.19
3201;2.19
3202;2.19
3203;2.19
3204;2.19
3205;2.19
3206;2.19
3207;2.19
3208;2.19
3209;2.19
3210;2.19
3211;2.19
3212;2.19
3213;2.19
3214;2.19
3215;2.19
3216;2.19
3217;2.19
3218;2.19
3219;2.19
3220;2.19
3221;2.19
3222;2.19
3223;2.19
3224;2.19
3225;2.19
3226;2.19
3227;2.19
3228;2.19
3229;2.19
3230;2.19
3231;2.19
3232;2.19
3233;2.19
3234;2.19
3235;2.19
3236;2.19
3237;2.19
3238;2.18
3239;2.18
3240;2.18
3241;2.18
3242;2.18
3243;2.18
3244;2.18
3245;2.18
3246;2.18
3247;2.18
3248;2.18
3249;2.18
3250;2.18
3251;2.18
3252;2.18
3253;2.18
3254;2.18
3255;2.18
3256;2.18
3257;2.18
3258;2.18
3259;2.18
3260;2.18
3261;2.18
3262;2.18
3263;2.18
3264;2.18
3265;2.18
3266;2.18
3267;2.18
3268;2.18
3269;2.18
3270;2.18
3271;2.18
3272;2.18
3273;2.18
3274;2.18
3275;2.18
3276;2.18
3277;2.18
3278;2.18
3279;2.18
3280;2.18
3281;2.18
3282;2.18
3283;2.18
3284;2.18
3285;2.18
3286;2.18
3287;2.18
3288;2.18
3289;2.18
3290;2.18
3291;2.17
3292;2.17
3293;2.17
3294;2.17
3295;2.17
3296;2.17
3297;2.17
3298;2.17
3299;2.17
3300;2.17
3301;2.17
3302;2.17
3303;2.17
3304;2.17
3305;2.17
3306;2.17
3307;2.17
3308;2.17
3309;2.17
3310;2.17
3311;2.17
3312;2.17
3313;2.17
3314;2.17
3315;2.17
3316;2.17
3317;2.17
3318;2.17
3319;2.17
3320;2.17
3321;2.17
3322;2.17
3323;2.17
3324;2.17
3325;2.17
3326;2.17
3327;2.17
3328;2.17
3329;2.17
3330;2.17
3331;2.17
3332;2.16
3333;2.16
3334;2.16
3335;2.16
3336;2.16
3337;2.16
3338;2.16
3339;2.16
3340;2.16
3341;2.16
3342;2.16
3343;2.16
3344;2.16
3345;2.16
3346;2.16
3347;2.16
3348;2.16
3349;2.16
3350;2.16
3351;2.16
3352;2.16
3353;2.16
3354;2.16
3355;2.16
3356;2.16
3357;2.16
3358;2.16
3359;2.16
3360;2.16
3361;2.16
3362;2.16
3363;2.16
3364;2.16
3365;2.16
3366;2.16
3367;2.16
3368;2.16
3369;2.16
3370;2.16
3371;2.16
3372;2.16
3373;2.16
3374;2.16
3375;2.16
3376;2.16
3377;2.16
3378;2.16
3379;2.16
3380;2.16
3381;2.16
3382;2.16
3383;2.16
3384;2.16
3385;2.16
3386;2.16
3387;2.16
3388;2.16
3389;2.16
3390;2.16
3391;2.16
3392;2.16
3393;2.16
3394;2.15
3395;2.15
3396;2.15
3397;2.15
3398;2.15
3399;2.15
3400;2.15
3401;2.15
3402;2.15
3403;2.15
3404;2.15
3405;2.15
3406;2.15
3407;2.15
3408;2.15
3409;2.15
3410;2.15
3411;2.15
3412;2.15
3413;2.15
3414;2.15
3415;2.15
3416;2.15
3417;2.15
3418;2.15
3419;2.15
3420;2.15
3421;2.15
3422;2.15
3423;2.15
3424;2.15
3425;2.15
3426;2.15
3427;2.15
3428;2.15
3429;2.15
3430;2.15
3431;2.15
3432;2.15
3433;2.15
3434;2.15
3435;2.15
3436;2.15
3437;2.15
3438;2.15
3439;2.14
3440;2.14
3441;2.14
3442;2.14
3443;2.14
3444;2.14
3445;2.14
3446;2.14
3447;2.14
3448;2.14
3449;2.14
3450;2.14
3451;2.14
3452;2.14
3453;2.14
3454;2.14
3455;2.14
3456;2.14
3457;2.14
3458;2.14
3459;2.14
3460;2.14
3461;2.14
3462;2.14
3463;2.14
3464;2.14
3465;2.14
3466;2.14
3467;2.14
3468;2.14
3469;2.14
3470;2.14
3471;2.14
3472;2.14
3473;2.14
3474;2.14
3475;2.14
3476;2.14
3477;2.14
3478;2.14
3479;2.14
3480;2.14
3481;2.14
3482;2.14
3483;2.14
3484;2.14
3485;2.14
3486;2.14
3487;2.14
3488;2.14
3489;2.14
3490;2.14
3491;2.14
3492;2.14
3493;2.14
3494;2.14
3495;2.14
3496;2.14
3497;2.14
3498;2.14
3499;2.13
3500;2.13
3501;2.13
3502;2.13
3503;2.13
3504;2.13
3505;2.13
3506;2.13
3507;2.13
3508;2.13
3509;2.13
3510;2.13
3511;2.13
3512;2.13
3513;2.13
3514;2.13
3515;2.13
3516;2.13
3517;2.13
3518;2.13
3519;2.13
3520;2.13
3521;2.13
3522;2.13
3523;2.13
3524;2.13
3525;2.13
3526;2.13
3527;2.13
3528;2.13
3529;2.13
3530;2.13
3531;2.13
3532;2.13
3533;2.13
3534;2.13
3535;2.13
3536;2.13
3537;2.13
3538;2.13
3539;2.13
3540;2.13
3541;2.13
3542;2.13
3543;2.13
3544;2.13
3545;2.13
3546;2.13
3547;2.13
3548;2.13
3549;2.13
3550;2.12
3551;2.12
3552;2.12
3553;2.12
3554;2.12
3555;2.12
3556;2.12
3557;2.12
3558;2.12
3559;2.12
3560;2.12
3561;2.12
3562;2.12
3563;2.12
3564;2.12
3565;2.12
3566;2.12
3567;2.12
3568;2.12
3569;2.12
3570;2.12
3571;2.12
3572;2.12
3573;2.12
3574;2.12
3575;2.12
3576;2.12
3577;2.12
3578;2.12
3579;2.12
3580;2.12
3581;2.12
3582;2.12
3583;2.12
3584;2.12
3585;2.12
3586;2.12
3587;2.12
3588;2.12
3589;2.12
3590;2.12
3591;2.12
3592;2.12
3593;2.12
3594;2.12
3595;2.12
3596;2.12
3597;2.12
3598;2.12
3599;2.12
3600;2.12
3601;2.12
3602;2.12
3603;2.12
3604;2.12
3605;2.12
3606;2.12
3607;2.12
3608;2.12
3609;2.12
3610;2.12
3611;2.11
3612;2.11
3613;2.11
3614;2.11
3615;2.11
3616;2.11
3617;2.11
3618;2.11
3619;2.11
3620;2.11
3621;2.11
3622;2.11
3623;2.11
3624;2.11
3625;2.11
3626;2.11
3627;2.11
3628;2.11
3629;2.11
3630;2.11
3631;2.11
3632;2.11
3633;2.11
3634;2.11
3635;2.11
3636;2.11
3637;2.11
3638;2.11
3639;2.11
3640;2.11
3641;2.11
3642;2.11
3643;2.11
3644;2.11
3645;2.11
3646;2.11
3647;2.11
3648;2.11
3649;2.11
3650;2.11
3651;2.11
3652;2.11
3653;2.11
3654;2.11
3655;2.11
3656;2.11
3657;2.11
3658;2.11
3659;2.11
3660;2.11
3661;2.11
3662;2.11
3663;2.11
3664;2.11
3665;2.10
3666;2.10
3667;2.10
3668;2.10
3669;2.10
3670;2.10
3671;2.10
3672;2.10
3673;2.10
3674;2.10
3675;2.10
3676;2.10
3677;2.10
3678;2.10
3679;2.10
3680;2.10
3681;2.10
3682;2.10
3683;2.10
3684;2.10
3685;2.10
3686;2.10
3687;2.10
3688;2.10
3689;2.10
3690;2.10
3691;2.10
3692;2.10
3693;2.10
3694;2.10
3695;2.10
3696;2.10
3697;2.10
3698;2.10
3699;2.10
3700;2.10
3701;2.10
3702;2.10
3703;2.09
3704;2.09
3705;2.09
3706;2.09
3707;2.09
3708;2.09
3709;2.09
3710;2.09
3711;2.09
3712;2.09
3713;2.09
3714;2.09
3715;2.09
3716;2.09
3717;2.09
3718;2.09
3719;2.09
3720;2.09
3721;2.09
3722;2.09
3723;2.09
3724;2.09
3725;2.09
3726;2.09
3727;2.09
3728;2.09
3729;2.09
3730;2.09
3731;2.09
3732;2.09
3733;2.09
3734;2.09
3735;2.09
3736;2.09
3737;2.09
3738;2.09
3739;2.09
3740;2.09
3741;2.09
3742;2.09
3743;2.09
3744;2.09
3745;2.09
3746;2.09
3747;2.09
3748;2.09
3749;2.09
3750;2.09
3751;2.09
3752;2.09
3753;2.09
3754;2.09
3755;2.09
3756;2.08
3757;2.08
3758;2.08
3759;2.08
3760;2.08
3761;2.08
3762;2.08
3763;2.08
3764;2.08
3765;2.08
3766;2.08
3767;2.08
3768;2.08
3769;2.08
3770;2.08
3771;2.08
3772;2.08
3773;2.08
3774;2.08
3775;2.08
3776;2.08
3777;2.08
3778;2.08
3779;2.08
3780;2.08
3781;2.08
3782;2.08
3783;2.08
3784;2.08
3785;2.08
3786;2.08
3787;2.08
3788;2.08
3789;2.08
3790;2.08
3791;2.08
3792;2.08
3793;2.08
3794;2.08
3795;2.08
3796;2.08
3797;2.08
3798;2.08
3799;2.08
3800;2.08
3801;2.08
3802;2.08
3803;2.07
3804;2.07
3805;2.07
3806;2.07
3807;2.07
3808;2.07
3809;2.07
3810;2.07
3811;2.07
3812;2.07
3813;2.07
3814;2.07
3815;2.07
3816;2.07
3817;2.07
3818;2.07
3819;2.07
3820;2.07
3821;2.07
3822;2.07
3823;2.07
3824;2.07
3825;2.07
3826;2.07
3827;2.07
3828;2.07
3829;2.07
3830;2.07
3831;2.07
3832;2.07
3833;2.07
3834;2.07
3835;2.07
3836;2.07
3837;2.07
3838;2.07
3839;2.07
3840;2.07
3841;2.07
3842;2.07
3843;2.07
3844;2.07
3845;2.07
3846;2.07
3847;2.07
3848;2.07
3849;2.07
3850;2.07
3851;2.07
3852;2.07
3853;2.07
3854;2.07
3855;2.06
3856;2.06
3857;2.06
3858;2.06
3859;2.06
3860;2.06
3861;2.06
3862;2.06
3863;2.06
3864;2.06
3865;2.06
3866;2.06
3867;2.06
3868;2.06
3869;2.06
3870;2.06
3871;2.06
3872;2.06
3873;2.06
3874;2.06
3875;2.06
3876;2.06
3877;2.06
3878;2.06
3879;2.06
3880;2.06
3881;2.06
3882;2.06
3883;2.06
3884;2.06
3885;2.06
3886;2.06
3887;2.06
3888;2.06
3889;2.06
3890;2.06
3891;2.06
3892;2.06
3893;2.06
3894;2.06
3895;2.06
3896;2.06
3897;2.06
3898;2.06
3899;2.06
3900;2.06
3901;2.06
3902;2.06
3903;2.05
3904;2.05
3905;2.05
3906;2.05
3907;2.05
3908;2.05
3909;2.05
3910;2.05
3911;2.05
3912;2.05
3913;2.05
3914;2.05
3915;2.05
3916;2.05
3917;2.05
3918;2.05
3919;2.05
3920;2.05
3921;2.05
3922;2.05
3923;2.05
3924;2.05
3925;2.05
3926;2.05
3927;2.05
3928;2.05
3929;2.05
3930;2.05
3931;2.05
3932;2.05
3933;2.05
3934;2.05
3935;2.05
3936;2.05
3937;2.05
3938;2.05
3939;2.05
3940;2.05
3941;2.05
3942;2.05
3943;2.05
3944;2.05
3945;2.05
3946;2.05
3947;2.05
3948;2.05
3949;2.05
3950;2.05
3951;2.04
3952;2.04
3953;2.04
3954;2.04
3955;2.04
3956;2.04
3957;2.04
3958;2.04
3959;2.04
3960;2.04
3961;2.04
3962;2.04
3963;2.04
3964;2.04
3965;2.04
3966;2.04
3967;2.04
3968;2.04
3969;2.04
3970;2.04
3971;2.04
3972;2.04
3973;2.04
3974;2.04
3975;2.04
3976;2.04
3977;2.04
3978;2.04
3979;2.04
3980;2.04
3981;2.04
3982;2.04
3983;2.04
3984;2.04
3985;2.04
3986;2.04
3987;2.04
3988;2.04
3989;2.04
3990;2.04
3991;2.04
3992;2.04
3993;2.04
3994;2.04
3995;2.04
3996;2.04
3997;2.04
3998;2.04
3999;2.04
4000;2.04
4001;2.04
4002;2.04
4003;2.04
4004;2.04
4005;2.03
4006;2.03
4007;2.03
4008;2.03
4009;2.03
4010;2.03
4011;2.03
4012;2.03
4013;2.03
4014;2.03
4015;2.03
4016;2.03
4017;2.03
4018;2.03
4019;2.03
4020;2.03
4021;2.03
4022;2.03
4023;2.03
4024;2.03
4025;2.03
4026;2.03
4027;2.03
4028;2.03
4029;2.03
4030;2.03
4031;2.03
4032;2.03
4033;2.03
4034;2.03
4035;2.03
4036;2.03
4037;2.03
4038;2.03
4039;2.03
4040;2.03
4041;2.03
4042;2.03
4043;2.03
4044;2.03
4045;2.03
4046;2.03
4047;2.03
4048;2.03
4049;2.03
4050;2.03
4051;2.03
4052;2.03
4053;2.03
4054;2.02
4055;2.02
4056;2.02
4057;2.02
4058;2.02
4059;2.02
4060;2.02
4061;2.02
4062;2.02
4063;2.02
4064;2.02
4065;2.02
4066;2.02
4067;2.02
4068;2.02
4069;2.02
4070;2.02
4071;2.02
4072;2.02
4073;2.02
4074;2.02
4075;2.02
4076;2.02
4077;2.02
4078;2.02
4079;2.02
4080;2.02
4081;2.02
4082;2.02
4083;2.02
4084;2.02
4085;2.02
4086;2.02
4087;2.02
4088;2.02
4089;2.02
4090;2.02
4091;2.02
4092;2.02
4093;2.02
4094;2.02
4095;2.02
4096;2.02
4097;2.02
4098;2.02
4099;2.02
4100;2.02
4101;2.02
4102;2.02
4103;2.02
4104;2.02
4105;2.02
4106;2.02
4107;2.02
4108;2.01
4109;2.01
4110;2.01
4111;2.01
4112;2.01
4113;2.01
4114;2.01
4115;2.01
4116;2.01
4117;2.01
4118;2.01
4119;2.01
4120;2.01
4121;2.01
4122;2.01
4123;2.01
4124;2.01
4125;2.01
4126;2.01
4127;2.01
4128;2.01
4129;2.01
4130;2.01
4131;2.01
4132;2.01
4133;2.01
4134;2.01
4135;2.01
4136;2.01
4137;2.01
4138;2.01
4139;2.01
4140;2.01
4141;2.01
4142;2.01
4143;2.01
4144;2.01
4145;2.01
4146;2.01
4147;2.01
4148;2.01
4149;2.01
4150;2.01
4151;2.01
4152;2.01
4153;2.01
4154;2.01
4155;2.01
4156;2.01
4157;2.01
4158;2.00
4159;2.00
4160;2.00
4161;2.00
4162;2.00
4163;2.00
4164;2.00
4165;2.00
4166;2.00
4167;2.00
4168;2.00
4169;2.00
4170;2.00
4171;2.00
4172;2.00
4173;2.00
4174;2.00
4175;2.00
4176;2.00
4177;2.00
4178;2.00
4179;2.00
4180;2.00
4181;2.00
4182;2.00
4183;2.00
4184;2.00
4185;2.00
4186;2.00
4187;2.00
4188;2.00
4189;2.00
4190;2.00
4191;2.00
4192;2.00
4193;2.00
4194;2.00
4195;2.00
4196;2.00
4197;2.00
4198;2.00
4199;2.00
4200;2.00
4201;2.00
4202;2.00
4203;2.00
4204;2.00
4205;2.00
4206;2.00
4207;2.00
4208;2.00
4209;2.00
4210;2.00
4211;2.00
4212;2.00
4213;1.99
4214;1.99
4215;1.99
4216;1.99
4217;1.99
4218;1.99
4219;1.99
4220;1.99
4221;1.99
4222;1.99
4223;1.99
4224;1.99
4225;1.99
4226;1.99
4227;1.99
4228;1.99
4229;1.99
4230;1.99
4231;1.99
4232;1.99
4233;1.99
4234;1.99
4235;1.99
4236;1.99
4237;1.99
4238;1.99
4239;1.99
4240;1.99
4241;1.99
4242;1.99
4243;1.99
4244;1.99
4245;1.98
4246;1.98
4247;1.98
4248;1.98
4249;1.98
4250;1.98
4251;1.98
4252;1.98
4253;1.98
4254;1.98
4255;1.98
4256;1.98
4257;1.98
4258;1.98
4259;1.98
4260;1.98
4261;1.98
4262;1.98
4263;1.98
4264;1.98
4265;1.98
4266;1.98
4267;1.98
4268;1.98
4269;1.98
4270;1.98
4271;1.98
4272;1.98
4273;1.98
4274;1.98
4275;1.98
4276;1.98
4277;1.98
4278;1.98
4279;1.98
4280;1.98
4281;1.98
4282;1.98
4283;1.98
4284;1.98
4285;1.98
4286;1.98
4287;1.98
4288;1.98
4289;1.98
4290;1.98
4291;1.98
4292;1.97
4293;1.97
4294;1.97
4295;1.97
4296;1.97
4297;1.97
4298;1.97
4299;1.97
4300;1.97
4301;1.97
4302;1.97
4303;1.97
4304;1.97
4305;1.97
4306;1.97
4307;1.97
4308;1.97
4309;1.97
4310;1.97
4311;1.97
4312;1.97
4313;1.97
4314;1.97
4315;1.97
4316;1.97
4317;1.97
4318;1.97
4319;1.97
4320;1.97
4321;1.97
4322;1.97
4323;1.97
4324;1.97
4325;1.97
4326;1.97
4327;1.97
4328;1.97
4329;1.97
4330;1.97
4331;1.97
4332;1.96
4333;1.96
4334;1.96
4335;1.96
4336;1.96
4337;1.96
4338;1.96
4339;1.96
4340;1.96
4341;1.96
4342;1.96
4343;1.96
4344;1.96
4345;1.96
4346;1.96
4347;1.96
4348;1.96
4349;1.96
4350;1.96
4351;1.96
4352;1.96
4353;1.96
4354;1.96
4355;1.96
4356;1.96
4357;1.96
4358;1.96
4359;1.96
4360;1.96
4361;1.96
4362;1.96
4363;1.96
4364;1.96
4365;1.96
4366;1.96
4367;1.96
4368;1.96
4369;1.96
4370;1.96
4371;1.96
4372;1.96
4373;1.96
4374;1.96
4375;1.96
4376;1.95
4377;1.95
4378;1.95
4379;1.95
4380;1.95
4381;1.95
4382;1.95
4383;1.95
4384;1.95
4385;1.95
4386;1.95
4387;1.95
4388;1.95
4389;1.95
4390;1.95
4391;1.95
4392;1.95
4393;1.95
4394;1.95
4395;1.95
4396;1.95
4397;1.95
4398;1.95
4399;1.95
4400;1.95
4401;1.95
4402;1.95
4403;1.95
4404;1.95
4405;1.95
4406;1.95
4407;1.95
4408;1.95
4409;1.95
4410;1.95
4411;1.95
4412;1.95
4413;1.95
4414;1.95
4415;1.95
4416;1.94
4417;1.94
4418;1.94
4419;1.94
4420;1.94
4421;1.94
4422;1.94
4423;1.94
4424;1.94
4425;1.94
4426;1.94
4427;1.94
4428;1.94
4429;1.94
4430;1.94
4431;1.94
4432;1.94
4433;1.94
4434;1.94
4435;1.94
4436;1.94
4437;1.94
4438;1.94
4439;1.94
4440;1.94
4441;1.94
4442;1.94
4443;1.94
4444;1.94
4445;1.94
4446;1.94
4447;1.94
4448;1.94
4449;1.94
4450;1.94
4451;1.94
4452;1.94
4453;1.94
4454;1.94
4455;1.94
4456;1.94
4457;1.94
4458;1.94
4459;1.94
4460;1.94
4461;1.94
4462;1.93
4463;1.93
4464;1.93
4465;1.93
4466;1.93
4467;1.93
4468;1.93
4469;1.93
4470;1.93
4471;1.93
4472;1.93
4473;1.93
4474;1.93
4475;1.93
4476;1.93
4477;1.93
4478;1.93
4479;1.93
4480;1.93
4481;1.93
4482;1.93
4483;1.93
4484;1.93
4485;1.93
4486;1.93
4487;1.93
4488;1.93
4489;1.93
4490;1.93
4491;1.93
4492;1.93
4493;1.93
4494;1.93
4495;1.93
4496;1.93
4497;1.93
4498;1.93
4499;1.93
4500;1.93
4501;1.93
4502;1.93
4503;1.93
4504;1.93
4505;1.93
4506;1.93
4507;1.93
4508;1.93
4509;1.93
4510;1.93
4511;1.93
4512;1.93
4513;1.93
4514;1.92
4515;1.92
4516;1.92
4517;1.92
4518;1.92
4519;1.92
4520;1.92
4521;1.92
4522;1.92
4523;1.92
4524;1.92
4525;1.92
4526;1.92
4527;1.92
4528;1.92
4529;1.92
4530;1.92
4531;1.92
4532;1.92
4533;1.92
4534;1.92
4535;1.92
4536;1.92
4537;1.92
4538;1.92
4539;1.92
4540;1.92
4541;1.92
4542;1.92
4543;1.92
4544;1.92
4545;1.92
4546;1.92
4547;1.92
4548;1.92
4549;1.91
4550;1.91
4551;1.91
4552;1.91
4553;1.91
4554;1.91
4555;1.91
4556;1.91
4557;1.91
4558;1.91
4559;1.91
4560;1.91
4561;1.91
4562;1.91
4563;1.91
4564;1.91
4565;1.91
4566;1.91
4567;1.91
4568;1.91
4569;1.91
4570;1.91
4571;1.91
4572;1.91
4573;1.91
4574;1.91
4575;1.91
4576;1.91
4577;1.91
4578;1.91
4579;1.91
4580;1.91
4581;1.91
4582;1.91
4583;1.90
4584;1.90
4585;1.90
4586;1.90
4587;1.90
4588;1.90
4589;1.90
4590;1.90
4591;1.90
4592;1.90
4593;1.90
4594;1.90
4595;1.90
4596;1.90
4597;1.90
4598;1.90
4599;1.90
4600;1.90
4601;1.90
4602;1.90
4603;1.90
4604;1.90
4605;1.90
4606;1.90
4607;1.90
4608;1.90
4609;1.90
4610;1.90
4611;1.90
4612;1.90
4613;1.90
4614;1.90
4615;1.90
4616;1.90
4617;1.90
4618;1.90
4619;1.90
4620;1.90
4621;1.90
4622;1.90
4623;1.90
4624;1.90
4625;1.90
4626;1.89
4627;1.89
4628;1.89
4629;1.89
4630;1.89
4631;1.89
4632;1.89
4633;1.89
4634;1.89
4635;1.89
4636;1.89
4637;1.89
4638;1.89
4639;1.89
4640;1.89
4641;1.89
4642;1.89
4643;1.89
4644;1.89
4645;1.89
4646;1.89
4647;1.89
4648;1.89
4649;1.89
4650;1.89
4651;1.89
4652;1.89
4653;1.89
4654;1.89
4655;1.89
4656;1.89
4657;1.89
4658;1.89
4659;1.89
4660;1.89
4661;1.89
4662;1.89
4663;1.89
4664;1.89
4665;1.89
4666;1.89
4667;1.89
4668;1.89
4669;1.89
4670;1.89
4671;1.89
4672;1.89
4673;1.89
4674;1.89
4675;1.89
4676;1.89
4677;1.88
4678;1.88
4679;1.88
4680;1.88
4681;1.88
4682;1.88
4683;1.88
4684;1.88
4685;1.88
4686;1.88
4687;1.88
4688;1.88
4689;1.88
4690;1.88
4691;1.88
4692;1.88
4693;1.88
4694;1.88
4695;1.88
4696;1.88
4697;1.88
4698;1.88
4699;1.88
4700;1.88
4701;1.88
4702;1.88
4703;1.88
4704;1.88
4705;1.88
4706;1.88
4707;1.88
4708;1.88
4709;1.88
4710;1.88
4711;1.88
4712;1.88
4713;1.88
4714;1.88
4715;1.88
4716;1.88
4717;1.88
4718;1.88
4719;1.88
4720;1.88
4721;1.88
4722;1.88
4723;1.88
4724;1.88
4725;1.87
4726;1.87
4727;1.87
4728;1.87
4729;1.87
4730;1.87
4731;1.87
4732;1.87
4733;1.87
4734;1.87
4735;1.87
4736;1.87
4737;1.87
4738;1.87
4739;1.87
4740;1.87
4741;1.87
4742;1.87
4743;1.87
4744;1.87
4745;1.87
4746;1.87
4747;1.87
4748;1.87
4749;1.87
4750;1.87
4751;1.87
4752;1.87
4753;1.87
4754;1.87
4755;1.87
4756;1.87
4757;1.87
4758;1.87
4759;1.87
4760;1.87
4761;1.87
4762;1.87
4763;1.87
4764;1.87
4765;1.87
4766;1.87
4767;1.87
4768;1.87
4769;1.87
4770;1.87
4771;1.87
4772;1.87
4773;1.86
4774;1.86
4775;1.86
4776;1.86
4777;1.86
4778;1.86
4779;1.86
4780;1.86
4781;1.86
4782;1.86
4783;1.86
4784;1.86
4785;1.86
4786;1.86
4787;1.86
4788;1.86
4789;1.86
4790;1.86
4791;1.86
4792;1.86
4793;1.86
4794;1.86
4795;1.86
4796;1.86
4797;1.86
4798;1.86
4799;1.86
4800;1.86
4801;1.86
4802;1.86
4803;1.86
4804;1.86
4805;1.86
4806;1.86
4807;1.86
4808;1.86
4809;1.86
4810;1.86
4811;1.86
4812;1.85
4813;1.85
4814;1.85
4815;1.85
4816;1.85
4817;1.85
4818;1.85
4819;1.85
4820;1.85
4821;1.85
4822;1.85
4823;1.85
4824;1.85
4825;1.85
4826;1.85
4827;1.85
4828;1.85
4829;1.85
4830;1.85
4831;1.85
4832;1.85
4833;1.85
4834;1.85
4835;1.85
4836;1.85
4837;1.85
4838;1.85
4839;1.85
4840;1.85
4841;1.85
4842;1.85
4843;1.85
4844;1.85
4845;1.85
4846;1.85
4847;1.85
4848;1.85
4849;1.85
4850;1.85
4851;1.85
4852;1.85
4853;1.85
4854;1.85
4855;1.85
4856;1.85
4857;1.85
4858;1.85
4859;1.85
4860;1.85
4861;1.85
4862;1.85
4863;1.85
4864;1.84
4865;1.84
4866;1.84
4867;1.84
4868;1.84
4869;1.84
4870;1.84
4871;1.84
4872;1.84
4873;1.84
4874;1.84
4875;1.84
4876;1.84
4877;1.84
4878;1.84
4879;1.84
4880;1.84
4881;1.84
4882;1.84
4883;1.84
4884;1.84
4885;1.84
4886;1.84
4887;1.84
4888;1.84
4889;1.84
4890;1.84
4891;1.84
4892;1.84
4893;1.84
4894;1.84
4895;1.84
4896;1.84
4897;1.84
4898;1.84
4899;1.84
4900;1.84
4901;1.84
4902;1.84
4903;1.84
4904;1.84
4905;1.84
4906;1.83
4907;1.83
4908;1.83
4909;1.83
4910;1.83
4911;1.83
4912;1.83
4913;1.83
4914;1.83
4915;1.83
4916;1.83
4917;1.83
4918;1.83
4919;1.83
4920;1.83
4921;1.83
4922;1.83
4923;1.83
4924;1.83
4925;1.83
4926;1.83
4927;1.83
4928;1.83
4929;1.83
4930;1.83
4931;1.83
4932;1.83
4933;1.83
4934;1.83
4935;1.83
4936;1.83
4937;1.83
4938;1.83
4939;1.83
4940;1.83
4941;1.83
4942;1.83
4943;1.83
4944;1.83
4945;1.83
4946;1.83
4947;1.83
4948;1.83
4949;1.83
4950;1.83
4951;1.83
4952;1.83
4953;1.83
4954;1.83
4955;1.83
4956;1.83
4957;1.83
4958;1.83
4959;1.83
4960;1.82
4961;1.82
4962;1.82
4963;1.82
4964;1.82
4965;1.82
4966;1.82
4967;1.82
4968;1.82
4969;1.82
4970;1.82
4971;1.82
4972;1.82
4973;1.82
4974;1.82
4975;1.82
4976;1.82
4977;1.82
4978;1.82
4979;1.82
4980;1.82
4981;1.82
4982;1.82
4983;1.82
4984;1.82
4985;1.82
4986;1.82
4987;1.82
4988;1.82
4989;1.82
4990;1.82
4991;1.82
4992;1.82
4993;1.82
4994;1.82
4995;1.82
4996;1.82
4997;1.82
4998;1.82
4999;1.82
5000;1.81
5001;1.81
5002;1.81
5003;1.81
5004;1.81
5005;1.81
5006;1.81
5007;1.81
5008;1.81
5009;1.81
5010;1.81
5011;1.81
5012;1.81
5013;1.81
5014;1.81
5015;1.81
5016;1.81
5017;1.81
5018;1.81
5019;1.81
5020;1.81
5021;1.81
5022;1.81
5023;1.81
5024;1.81
5025;1.81
5026;1.81
5027;1.81
5028;1.81
5029;1.81
5030;1.81
5031;1.81
5032;1.81
5033;1.81
5034;1.81
5035;1.81
5036;1.81
5037;1.80
5038;1.80
5039;1.80
5040;1.80
5041;1.80
5042;1.80
5043;1.80
5044;1.80
5045;1.80
5046;1.80
5047;1.80
5048;1.80
5049;1.80
5050;1.80
5051;1.80
5052;1.80
5053;1.80
5054;1.80
5055;1.80
5056;1.80
5057;1.80
5058;1.80
5059;1.80
5060;1.80
5061;1.80
5062;1.80
5063;1.80
5064;1.80
5065;1.80
5066;1.80
5067;1.80
5068;1.80
5069;1.80
5070;1.80
5071;1.80
5072;1.80
5073;1.80
5074;1.79
5075;1.79
5076;1.79
5077;1.79
5078;1.79
5079;1.79
5080;1.79
5081;1.79
5082;1.79
5083;1.79
5084;1.79
5085;1.79
5086;1.79
5087;1.79
5088;1.79
5089;1.79
5090;1.79
5091;1.79
5092;1.79
5093;1.79
5094;1.79
5095;1.79
5096;1.79
5097;1.79
5098;1.79
5099;1.79
5100;1.79
5101;1.79
5102;1.79
5103;1.79
5104;1.79
5105;1.79
5106;1.79
5107;1.79
5108;1.79
5109;1.79
5110;1.79
5111;1.79
5112;1.79
5113;1.79
5114;1.79
5115;1.79
5116;1.79
5117;1.79
5118;1.79
5119;1.79
5120;1.78
5121;1.78
5122;1.78
5123;1.78
5124;1.78
5125;1.78
5126;1.78
5127;1.78
5128;1.78
5129;1.78
5130;1.78
5131;1.78
5132;1.78
5133;1.78
5134;1.78
5135;1.78
5136;1.78
5137;1.78
5138;1.78
5139;1.78
5140;1.78
5141;1.78
5142;1.78
5143;1.78
5144;1.78
5145;1.78
5146;1.78
5147;1.78
5148;1.78
5149;1.78
5150;1.78
5151;1.78
5152;1.78
5153;1.78
5154;1.78
5155;1.78
5156;1.78
5157;1.78
5158;1.78
5159;1.78
5160;1.77
5161;1.77
5162;1.77
5163;1.77
5164;1.77
5165;1.77
5166;1.77
5167;1.77
5168;1.77
5169;1.77
5170;1.77
5171;1.77
5172;1.77
5173;1.77
5174;1.77
5175;1.77
5176;1.77
5177;1.77
5178;1.77
5179;1.77
5180;1.77
5181;1.77
5182;1.77
5183;1.77
5184;1.77
5185;1.77
5186;1.77
5187;1.77
5188;1.77
5189;1.77
5190;1.77
5191;1.77
5192;1.77
5193;1.77
5194;1.77
5195;1.76
5196;1.76
5197;1.76
5198;1.76
5199;1.76
5200;1.76
5201;1.76
5202;1.76
5203;1.76
5204;1.76
5205;1.76
5206;1.76
5207;1.76
5208;1.76
5209;1.76
5210;1.76
5211;1.76
5212;1.76
5213;1.76
5214;1.76
5215;1.76
5216;1.76
5217;1.76
5218;1.76
5219;1.76
5220;1.76
5221;1.76
5222;1.76
5223;1.76
5224;1.76
5225;1.76
5226;1.76
5227;1.76
5228;1.76
5229;1.76
5230;1.75
5231;1.75
5232;1.75
5233;1.75
5234;1.75
5235;1.75
5236;1.75
5237;1.75
5238;1.75
5239;1.75
5240;1.75
5241;1.75
5242;1.75
5243;1.75
5244;1.75
5245;1.75
5246;1.75
5247;1.75
5248;1.75
5249;1.75
5250;1.75
5251;1.75
5252;1.75
5253;1.75
5254;1.75
5255;1.75
5256;1.75
5257;1.75
5258;1.75
5259;1.75
5260;1.74
5261;1.74
5262;1.74
5263;1.74
5264;1.74
5265;1.74
5266;1.74
5267;1.74
5268;1.74
5269;1.74
5270;1.74
5271;1.74
5272;1.74
5273;1.74
5274;1.74
5275;1.74
5276;1.74
5277;1.74
5278;1.74
5279;1.74
5280;1.74
5281;1.74
5282;1.74
5283;1.74
5284;1.74
5285;1.74
5286;1.74
5287;1.74
5288;1.74
5289;1.74
5290;1.74
5291;1.74
5292;1.74
5293;1.74
5294;1.74
5295;1.74
5296;1.74
5297;1.74
5298;1.74
5299;1.74
5300;1.74
5301;1.73
5302;1.73
5303;1.73
5304;1.73
5305;1.73
5306;1.73
5307;1.73
5308;1.73
5309;1.73
5310;1.73
5311;1.73
5312;1.73
5313;1.73
5314;1.73
5315;1.73
5316;1.73
5317;1.73
5318;1.73
5319;1.73
5320;1.73
5321;1.73
5322;1.73
5323;1.73
5324;1.73
5325;1.73
5326;1.73
5327;1.73
5328;1.73
5329;1.73
5330;1.73
5331;1.73
5332;1.73
5333;1.73
5334;1.73
5335;1.73
5336;1.73
5337;1.73
5338;1.73
5339;1.73
5340;1.73
5341;1.73
5342;1.73
5343;1.72
5344;1.72
5345;1.72
5346;1.72
5347;1.72
5348;1.72
5349;1.72
5350;1.72
5351;1.72
5352;1.72
5353;1.72
5354;1.72
5355;1.72
5356;1.72
5357;1.72
5358;1.72
5359;1.72
5360;1.72
5361;1.72
5362;1.72
5363;1.72
5364;1.72
5365;1.72
5366;1.72
5367;1.72
5368;1.72
5369;1.72
5370;1.72
5371;1.72
5372;1.72
5373;1.72
5374;1.72
5375;1.72
5376;1.72
5377;1.72
5378;1.72
5379;1.72
5380;1.72
5381;1.72
5382;1.72
5383;1.71
5384;1.71
5385;1.71
5386;1.71
5387;1.71
5388;1.71
5389;1.71
5390;1.71
5391;1.71
5392;1.71
5393;1.71
5394;1.71
5395;1.71
5396;1.71
5397;1.71
5398;1.71
5399;1.71
5400;1.71
5401;1.71
5402;1.71
5403;1.71
5404;1.71
5405;1.71
5406;1.71
5407;1.71
5408;1.71
5409;1.71
5410;1.71
5411;1.70
5412;1.70
5413;1.70
5414;1.70
5415;1.70
5416;1.70
5417;1.70
5418;1.70
5419;1.70
5420;1.70
5421;1.70
5422;1.70
5423;1.70
5424;1.70
5425;1.70
5426;1.70
5427;1.70
5428;1.70
5429;1.70
5430;1.70
5431;1.70
5432;1.70
5433;1.70
5434;1.70
5435;1.70
5436;1.70
5437;1.70
5438;1.70
5439;1.70
5440;1.70
5441;1.70
5442;1.70
5443;1.70
5444;1.70
5445;1.70
5446;1.70
5447;1.70
5448;1.70
5449;1.70
5450;1.70
5451;1.70
5452;1.69
5453;1.69
5454;1.69
5455;1.69
5456;1.69
5457;1.69
5458;1.69
5459;1.69
5460;1.69
5461;1.69
5462;1.69
5463;1.69
5464;1.69
5465;1.69
5466;1.69
5467;1.69
5468;1.69
5469;1.69
5470;1.69
5471;1.69
5472;1.69
5473;1.69
5474;1.69
5475;1.69
5476;1.69
5477;1.69
5478;1.69
5479;1.69
5480;1.69
5481;1.69
5482;1.69
5483;1.68
5484;1.68
5485;1.68
5486;1.68
5487;1.68
5488;1.68
5489;1.68
5490;1.68
5491;1.68
5492;1.68
5493;1.68
5494;1.68
5495;1.68
5496;1.68
5497;1.68
5498;1.68
5499;1.68
5500;1.68
5501;1.68
5502;1.68
5503;1.68
5504;1.68
5505;1.68
5506;1.68
5507;1.68
5508;1.68
5509;1.67
5510;1.67
5511;1.67
5512;1.67
5513;1.67
5514;1.67
5515;1.67
5516;1.67
5517;1.67
5518;1.67
5519;1.67
5520;1.67
5521;1.67
5522;1.67
5523;1.67
5524;1.67
5525;1.67
5526;1.67
5527;1.67
5528;1.67
5529;1.67
5530;1.67
5531;1.67
5532;1.67
5533;1.67
5534;1.67
5535;1.67
5536;1.67
5537;1.67
5538;1.67
5539;1.67
5540;1.67
5541;1.67
5542;1.66
5543;1.66
5544;1.66
5545;1.66
5546;1.66
5547;1.66
5548;1.66
5549;1.66
5550;1.66
5551;1.66
5552;1.66
5553;1.66
5554;1.66
5555;1.66
5556;1.66
5557;1.66
5558;1.66
5559;1.66
5560;1.66
5561;1.66
5562;1.66
5563;1.66
5564;1.66
5565;1.66
5566;1.66
5567;1.66
5568;1.66
5569;1.66
5570;1.66
5571;1.66
5572;1.66
5573;1.66
5574;1.66
5575;1.66
5576;1.66
5577;1.65
5578;1.65
5579;1.65
5580;1.65
5581;1.65
5582;1.65
5583;1.65
5584;1.65
5585;1.65
5586;1.65
5587;1.65
5588;1.65
5589;1.65
5590;1.65
5591;1.65
5592;1.65
5593;1.65
5594;1.65
5595;1.65
5596;1.65
5597;1.65
5598;1.65
5599;1.65
5600;1.65
5601;1.65
5602;1.65
5603;1.65
5604;1.65
5605;1.65
5606;1.65
5607;1.65
5608;1.65
5609;1.65
5610;1.65
5611;1.65
5612;1.64
5613;1.64
5614;1.64
5615;1.64
5616;1.64
5617;1.64
5618;1.64
5619;1.64
5620;1.64
5621;1.64
5622;1.64
5623;1.64
5624;1.64
5625;1.64
5626;1.64
5627;1.64
5628;1.64
5629;1.64
5630;1.64
5631;1.64
5632;1.64
5633;1.64
5634;1.64
5635;1.64
5636;1.64
5637;1.64
5638;1.64
5639;1.64
5640;1.64
5641;1.64
5642;1.64
5643;1.63
5644;1.63
5645;1.63
5646;1.63
5647;1.63
5648;1.63
5649;1.63
5650;1.63
5651;1.63
5652;1.63
5653;1.63
5654;1.63
5655;1.63
5656;1.63
5657;1.63
5658;1.63
5659;1.63
5660;1.63
5661;1.63
5662;1.63
5663;1.63
5664;1.63
5665;1.63
5666;1.63
5667;1.63
5668;1.63
5669;1.63
5670;1.63
5671;1.63
5672;1.63
5673;1.63
5674;1.63
5675;1.63
5676;1.63
5677;1.63
5678;1.63
5679;1.63
5680;1.62
5681;1.62
5682;1.62
5683;1.62
5684;1.62
5685;1.62
5686;1.62
5687;1.62
5688;1.62
5689;1.62
5690;1.62
5691;1.62
5692;1.62
5693;1.62
5694;1.62
5695;1.62
5696;1.62
5697;1.62
5698;1.62
5699;1.62
5700;1.62
5701;1.62
5702;1.62
5703;1.62
5704;1.62
5705;1.62
5706;1.62
5707;1.62
5708;1.62
5709;1.62
5710;1.62
5711;1.62
5712;1.61
5713;1.61
5714;1.61
5715;1.61
5716;1.61
5717;1.61
5718;1.61
5719;1.61
5720;1.61
5721;1.61
5722;1.61
5723;1.61
5724;1.61
5725;1.61
5726;1.61
5727;1.61
5728;1.61
5729;1.61
5730;1.61
5731;1.61
5732;1.61
5733;1.61
5734;1.61
5735;1.61
5736;1.61
5737;1.61
5738;1.61
5739;1.61
5740;1.61
5741;1.61
5742;1.61
5743;1.61
5744;1.61
5745;1.60
5746;1.60
5747;1.60
5748;1.60
5749;1.60
5750;1.60
5751;1.60
5752;1.60
5753;1.60
5754;1.60
5755;1.60
5756;1.60
5757;1.60
5758;1.60
5759;1.60
5760;1.60
5761;1.60
5762;1.60
5763;1.60
5764;1.60
5765;1.60
5766;1.60
5767;1.60
5768;1.60
5769;1.60
5770;1.60
5771;1.60
5772;1.60
5773;1.60
5774;1.60
5775;1.60
5776;1.60
5777;1.60
5778;1.60
5779;1.60
5780;1.60
5781;1.60
5782;1.59
5783;1.59
5784;1.59
5785;1.59
5786;1.59
5787;1.59
5788;1.59
5789;1.59
5790;1.59
5791;1.59
5792;1.59
5793;1.59
5794;1.59
5795;1.59
5796;1.59
5797;1.59
5798;1.59
5799;1.59
5800;1.59
5801;1.59
5802;1.59
5803;1.59
5804;1.59
5805;1.59
5806;1.59
5807;1.59
5808;1.59
5809;1.59
5810;1.59
5811;1.59
5812;1.59
5813;1.59
5814;1.59
5815;1.59
5816;1.58
5817;1.58
5818;1.58
5819;1.58
5820;1.58
5821;1.58
5822;1.58
5823;1.58
5824;1.58
5825;1.58
5826;1.58
5827;1.58
5828;1.58
5829;1.58
5830;1.58
5831;1.58
5832;1.58
5833;1.58
5834;1.58
5835;1.58
5836;1.58
5837;1.58
5838;1.58
5839;1.58
5840;1.58
5841;1.58
5842;1.58
5843;1.58
5844;1.57
5845;1.57
5846;1.57
5847;1.57
5848;1.57
5849;1.57
5850;1.57
5851;1.57
5852;1.57
5853;1.57
5854;1.57
5855;1.57
5856;1.57
5857;1.57
5858;1.57
5859;1.57
5860;1.57
5861;1.57
5862;1.57
5863;1.57
5864;1.57
5865;1.57
5866;1.57
5867;1.57
5868;1.57
5869;1.57
5870;1.57
5871;1.57
5872;1.57
5873;1.57
5874;1.57
5875;1.57
5876;1.56
5877;1.56
5878;1.56
5879;1.56
5880;1.56
5881;1.56
5882;1.56
5883;1.56
5884;1.56
5885;1.56
5886;1.56
5887;1.56
5888;1.56
5889;1.56
5890;1.56
5891;1.56
5892;1.56
5893;1.56
5894;1.56
5895;1.56
5896;1.56
5897;1.56
5898;1.56
5899;1.56
5900;1.56
5901;1.55
5902;1.55
5903;1.55
5904;1.55
5905;1.55
5906;1.55
5907;1.55
5908;1.55
5909;1.55
5910;1.55
5911;1.55
5912;1.55
5913;1.55
5914;1.55
5915;1.55
5916;1.55
5917;1.55
5918;1.55
5919;1.55
5920;1.55
5921;1.55
5922;1.55
5923;1.55
5924;1.55
5925;1.55
5926;1.55
5927;1.55
5928;1.55
5929;1.55
5930;1.55
5931;1.54
5932;1.54
5933;1.54
5934;1.54
5935;1.54
5936;1.54
5937;1.54
5938;1.54
5939;1.54
5940;1.54
5941;1.54
5942;1.54
5943;1.54
5944;1.54
5945;1.54
5946;1.54
5947;1.54
5948;1.54
5949;1.54
5950;1.54
5951;1.54
5952;1.54
5953;1.54
5954;1.54
5955;1.54
5956;1.54
5957;1.54
5958;1.54
5959;1.54
5960;1.54
5961;1.54
5962;1.54
5963;1.54
5964;1.54
5965;1.54
5966;1.54
5967;1.54
5968;1.54
5969;1.54
5970;1.54
5971;1.54
5972;1.54
5973;1.53
5974;1.53
5975;1.53
5976;1.53
5977;1.53
5978;1.53
5979;1.53
5980;1.53
5981;1.53
5982;1.53
5983;1.53
5984;1.53
5985;1.53
5986;1.53
5987;1.53
5988;1.53
5989;1.53
5990;1.53
5991;1.53
5992;1.53
5993;1.53
5994;1.53
5995;1.53
5996;1.53
5997;1.53
5998;1.53
5999;1.53
6000;1.53
6001;1.53
6002;1.53
6003;1.53
6004;1.53
6005;1.53
6006;1.52
6007;1.52
6008;1.52
6009;1.52
6010;1.52
6011;1.52
6012;1.52
6013;1.52
6014;1.52
6015;1.52
6016;1.52
6017;1.52
6018;1.52
6019;1.52
6020;1.52
6021;1.52
6022;1.52
6023;1.52
6024;1.52
6025;1.52
6026;1.52
6027;1.52
6028;1.52
6029;1.52
6030;1.52
6031;1.52
6032;1.52
6033;1.52
6034;1.52
6035;1.52
6036;1.52
6037;1.52
6038;1.52
6039;1.52
6040;1.51
6041;1.51
6042;1.51
6043;1.51
6044;1.51
6045;1.51
6046;1.51
6047;1.51
6048;1.51
6049;1.51
6050;1.51
6051;1.51
6052;1.51
6053;1.51
6054;1.51
6055;1.51
6056;1.51
6057;1.51
6058;1.51
6059;1.51
6060;1.51
6061;1.51
6062;1.51
6063;1.51
6064;1.51
6065;1.51
6066;1.51
6067;1.51
6068;1.51
6069;1.51
6070;1.51
6071;1.51
6072;1.51
6073;1.51
6074;1.51
6075;1.51
6076;1.51
6077;1.50
6078;1.50
6079;1.50
6080;1.50
6081;1.50
6082;1.50
6083;1.50
6084;1.50
6085;1.50
6086;1.50
6087;1.50
6088;1.50
6089;1.50
6090;1.50
6091;1.50
6092;1.50
6093;1.50
6094;1.50
6095;1.50
6096;1.50
6097;1.50
6098;1.50
6099;1.50
6100;1.50
6101;1.50
6102;1.50
6103;1.50
6104;1.49
6105;1.49
6106;1.49
6107;1.49
6108;1.49
6109;1.49
6110;1.49
6111;1.49
6112;1.49
6113;1.49
6114;1.49
6115;1.49
6116;1.49
6117;1.49
6118;1.49
6119;1.49
6120;1.49
6121;1.49
6122;1.49
6123;1.49
6124;1.49
6125;1.49
6126;1.49
6127;1.49
6128;1.49
6129;1.49
6130;1.49
6131;1.49
6132;1.49
6133;1.49
6134;1.49
6135;1.49
6136;1.49
6137;1.49
6138;1.49
6139;1.49
6140;1.49
6141;1.49
6142;1.49
6143;1.49
6144;1.48
6145;1.48
6146;1.48
6147;1.48
6148;1.48
6149;1.48
6150;1.48
6151;1.48
6152;1.48
6153;1.48
6154;1.48
6155;1.48
6156;1.48
6157;1.48
6158;1.48
6159;1.48
6160;1.48
6161;1.48
6162;1.48
6163;1.48
6164;1.48
6165;1.48
6166;1.48
6167;1.48
6168;1.48
6169;1.48
6170;1.48
6171;1.48
6172;1.48
6173;1.48
6174;1.48
6175;1.48
6176;1.48
6177;1.48
6178;1.48
6179;1.48
6180;1.48
6181;1.48
6182;1.47
6183;1.47
6184;1.47
6185;1.47
6186;1.47
6187;1.47
6188;1.47
6189;1.47
6190;1.47
6191;1.47
6192;1.47
6193;1.47
6194;1.47
6195;1.47
6196;1.47
6197;1.47
6198;1.47
6199;1.47
6200;1.47
6201;1.47
6202;1.47
6203;1.47
6204;1.47
6205;1.47
6206;1.47
6207;1.47
6208;1.47
6209;1.47
6210;1.47
6211;1.46
6212;1.46
6213;1.46
6214;1.46
6215;1.46
6216;1.46
6217;1.46
6218;1.46
6219;1.46
6220;1.46
6221;1.46
6222;1.46
6223;1.46
6224;1.46
6225;1.46
6226;1.46
6227;1.46
6228;1.46
6229;1.46
6230;1.46
6231;1.46
6232;1.46
6233;1.46
6234;1.46
6235;1.46
6236;1.46
6237;1.46
6238;1.46
6239;1.46
6240;1.46
6241;1.46
6242;1.46
6243;1.46
6244;1.46
6245;1.46
6246;1.45
6247;1.45
6248;1.45
6249;1.45
6250;1.45
6251;1.45
6252;1.45
6253;1.45
6254;1.45
6255;1.45
6256;1.45
6257;1.45
6258;1.45
6259;1.45
6260;1.45
6261;1.45
6262;1.45
6263;1.45
6264;1.45
6265;1.45
6266;1.45
6267;1.45
6268;1.45
6269;1.45
6270;1.45
6271;1.45
6272;1.45
6273;1.45
6274;1.45
6275;1.45
6276;1.45
6277;1.45
6278;1.45
6279;1.44
6280;1.44
6281;1.44
6282;1.44
6283;1.44
6284;1.44
6285;1.44
6286;1.44
6287;1.44
6288;1.44
6289;1.44
6290;1.44
6291;1.44
6292;1.44
6293;1.44
6294;1.44
6295;1.44
6296;1.44
6297;1.44
6298;1.44
6299;1.44
6300;1.44
6301;1.44
6302;1.44
6303;1.44
6304;1.44
6305;1.44
6306;1.44
6307;1.44
6308;1.44
6309;1.44
6310;1.44
6311;1.44
6312;1.44
6313;1.44
6314;1.44
6315;1.43
6316;1.43
6317;1.43
6318;1.43
6319;1.43
6320;1.43
6321;1.43
6322;1.43
6323;1.43
6324;1.43
6325;1.43
6326;1.43
6327;1.43
6328;1.43
6329;1.43
6330;1.43
6331;1.43
6332;1.43
6333;1.43
6334;1.43
6335;1.43
6336;1.43
6337;1.43
6338;1.43
6339;1.43
6340;1.43
6341;1.43
6342;1.43
6343;1.43
6344;1.43
6345;1.43
6346;1.43
6347;1.43
6348;1.43
6349;1.43
6350;1.43
6351;1.43
6352;1.43
6353;1.43
6354;1.43
6355;1.42
6356;1.42
6357;1.42
6358;1.42
6359;1.42
6360;1.42
6361;1.42
6362;1.42
6363;1.42
6364;1.42
6365;1.42
6366;1.42
6367;1.42
6368;1.42
6369;1.42
6370;1.42
6371;1.42
6372;1.42
6373;1.42
6374;1.42
6375;1.42
6376;1.42
6377;1.42
6378;1.42
6379;1.42
6380;1.42
6381;1.42
6382;1.42
6383;1.42
6384;1.42
6385;1.42
6386;1.42
6387;1.42
6388;1.42
6389;1.42
6390;1.42
6391;1.42
6392;1.42
6393;1.42
6394;1.42
6395;1.42
6396;1.42
6397;1.42
6398;1.41
6399;1.41
6400;1.41
6401;1.41
6402;1.41
6403;1.41
6404;1.41
6405;1.41
6406;1.41
6407;1.41
6408;1.41
6409;1.41
6410;1.41
6411;1.41
6412;1.41
6413;1.41
6414;1.41
6415;1.41
6416;1.41
6417;1.41
6418;1.41
6419;1.41
6420;1.41
6421;1.41
6422;1.41
6423;1.41
6424;1.41
6425;1.41
6426;1.40
6427;1.40
6428;1.40
6429;1.40
6430;1.40
6431;1.40
6432;1.40
6433;1.40
6434;1.40
6435;1.40
6436;1.40
6437;1.40
6438;1.40
6439;1.40
6440;1.40
6441;1.40
6442;1.40
6443;1.40
6444;1.40
6445;1.40
6446;1.40
6447;1.40
6448;1.40
6449;1.40
6450;1.40
6451;1.40
6452;1.39
6453;1.39
6454;1.39
6455;1.39
6456;1.39
6457;1.39
6458;1.39
6459;1.39
6460;1.39
6461;1.39
6462;1.39
6463;1.39
6464;1.39
6465;1.39
6466;1.39
6467;1.39
6468;1.39
6469;1.39
6470;1.39
6471;1.39
6472;1.39
6473;1.39
6474;1.39
6475;1.39
6476;1.39
6477;1.39
6478;1.39
6479;1.39
6480;1.39
6481;1.39
6482;1.39
6483;1.39
6484;1.39
6485;1.39
6486;1.39
6487;1.39
6488;1.38
6489;1.38
6490;1.38
6491;1.38
6492;1.38
6493;1.38
6494;1.38
6495;1.38
6496;1.38
6497;1.38
6498;1.38
6499;1.38
6500;1.38
6501;1.38
6502;1.38
6503;1.38
6504;1.38
6505;1.38
6506;1.38
6507;1.38
6508;1.38
6509;1.38
6510;1.38
6511;1.38
6512;1.38
6513;1.38
6514;1.38
6515;1.38
6516;1.37
6517;1.37
6518;1.37
6519;1.37
6520;1.37
6521;1.37
6522;1.37
6523;1.37
6524;1.37
6525;1.37
6526;1.37
6527;1.37
6528;1.37
6529;1.37
6530;1.37
6531;1.37
6532;1.37
6533;1.37
6534;1.37
6535;1.37
6536;1.37
6537;1.37
6538;1.37
6539;1.37
6540;1.37
6541;1.37
6542;1.37
6543;1.37
6544;1.37
6545;1.37
6546;1.37
6547;1.37
6548;1.37
6549;1.37
6550;1.37
6551;1.37
6552;1.37
6553;1.37
6554;1.36
6555;1.36
6556;1.36
6557;1.36
6558;1.36
6559;1.36
6560;1.36
6561;1.36
6562;1.36
6563;1.36
6564;1.36
6565;1.36
6566;1.36
6567;1.36
6568;1.36
6569;1.36
6570;1.36
6571;1.36
6572;1.36
6573;1.35
6574;1.35
6575;1.35
6576;1.35
6577;1.35
6578;1.35
6579;1.35
6580;1.35
6581;1.35
6582;1.35
6583;1.35
6584;1.35
6585;1.35
6586;1.35
6587;1.35
6588;1.35
6589;1.35
6590;1.35
6591;1.35
6592;1.35
6593;1.35
6594;1.35
6595;1.35
6596;1.35
6597;1.35
6598;1.35
6599;1.35
6600;1.35
6601;1.35
6602;1.35
6603;1.35
6604;1.35
6605;1.34
6606;1.34
6607;1.34
6608;1.34
6609;1.34
6610;1.34
6611;1.34
6612;1.34
6613;1.34
6614;1.34
6615;1.34
6616;1.34
6617;1.34
6618;1.34
6619;1.34
6620;1.34
6621;1.34
6622;1.34
6623;1.34
6624;1.34
6625;1.34
6626;1.34
6627;1.34
6628;1.34
6629;1.34
6630;1.34
6631;1.34
6632;1.34
6633;1.34
6634;1.34
6635;1.34
6636;1.34
6637;1.34
6638;1.34
6639;1.34
6640;1.34
6641;1.33
6642;1.33
6643;1.33
6644;1.33
6645;1.33
6646;1.33
6647;1.33
6648;1.33
6649;1.33
6650;1.33
6651;1.33
6652;1.33
6653;1.33
6654;1.33
6655;1.33
6656;1.33
6657;1.33
6658;1.33
6659;1.33
6660;1.33
6661;1.33
6662;1.33
6663;1.33
6664;1.33
6665;1.33
6666;1.33
6667;1.33
6668;1.33
6669;1.33
6670;1.33
6671;1.33
6672;1.33
6673;1.33
6674;1.33
6675;1.33
6676;1.33
6677;1.33
6678;1.32
6679;1.32
6680;1.32
6681;1.32
6682;1.32
6683;1.32
6684;1.32
6685;1.32
6686;1.32
6687;1.32
6688;1.32
6689;1.32
6690;1.32
6691;1.32
6692;1.32
6693;1.32
6694;1.32
6695;1.32
6696;1.32
6697;1.32
6698;1.32
6699;1.32
6700;1.32
6701;1.32
6702;1.32
6703;1.32
6704;1.32
6705;1.32
6706;1.32
6707;1.32
6708;1.32
6709;1.32
6710;1.32
6711;1.32
6712;1.32
6713;1.32
6714;1.32
6715;1.32
6716;1.32
6717;1.32
6718;1.31
6719;1.31
6720;1.31
6721;1.31
6722;1.31
6723;1.31
6724;1.31
6725;1.31
6726;1.31
6727;1.31
6728;1.31
6729;1.31
6730;1.31
6731;1.31
6732;1.31
6733;1.31
6734;1.31
6735;1.31
6736;1.31
6737;1.31
6738;1.31
6739;1.31
6740;1.31
6741;1.31
6742;1.31
6743;1.31
6744;1.31
6745;1.31
6746;1.31
6747;1.31
6748;1.31
6749;1.31
6750;1.31
6751;1.31
6752;1.31
6753;1.31
6754;1.31
6755;1.31
6756;1.31
6757;1.31
6758;1.31
6759;1.31
6760;1.31
6761;1.31
6762;1.31
6763;1.30
6764;1.30
6765;1.30
6766;1.30
6767;1.30
6768;1.30
6769;1.30
6770;1.30
6771;1.30
6772;1.30
6773;1.30
6774;1.30
6775;1.30
6776;1.30
6777;1.30
6778;1.30
6779;1.30
6780;1.30
6781;1.30
6782;1.30
6783;1.30
6784;1.30
6785;1.30
6786;1.30
6787;1.30
6788;1.30
6789;1.30
6790;1.30
6791;1.30
6792;1.30
6793;1.30
6794;1.30
6795;1.30
6796;1.30
6797;1.29
6798;1.29
6799;1.29
6800;1.29
6801;1.29
6802;1.29
6803;1.29
6804;1.29
6805;1.29
6806;1.29
6807;1.29
6808;1.29
6809;1.29
6810;1.29
6811;1.29
6812;1.29
6813;1.29
6814;1.29
6815;1.29
6816;1.29
6817;1.29
6818;1.29
6819;1.29
6820;1.29
6821;1.29
6822;1.29
6823;1.29
6824;1.29
6825;1.29
6826;1.28
6827;1.28
6828;1.28
6829;1.28
6830;1.28
6831;1.28
6832;1.28
6833;1.28
6834;1.28
6835;1.28
6836;1.28
6837;1.28
6838;1.28
6839;1.28
6840;1.28
6841;1.28
6842;1.28
6843;1.28
6844;1.28
6845;1.28
6846;1.28
6847;1.28
6848;1.28
6849;1.28
6850;1.28
6851;1.28
6852;1.28
6853;1.28
6854;1.28
6855;1.28
6856;1.28
6857;1.28
6858;1.28
6859;1.28
6860;1.28
6861;1.28
6862;1.28
6863;1.28
6864;1.28
6865;1.28
6866;1.28
6867;1.28
6868;1.28
6869;1.28
6870;1.28
6871;1.27
6872;1.27
6873;1.27
6874;1.27
6875;1.27
6876;1.27
6877;1.27
6878;1.27
6879;1.27
6880;1.27
6881;1.27
6882;1.27
6883;1.27
6884;1.27
6885;1.27
6886;1.27
6887;1.27
6888;1.27
6889;1.27
6890;1.27
6891;1.27
6892;1.27
6893;1.27
6894;1.27
6895;1.27
6896;1.27
6897;1.27
6898;1.27
6899;1.27
6900;1.27
6901;1.27
6902;1.27
6903;1.27
6904;1.27
6905;1.27
6906;1.27
6907;1.27
6908;1.27
6909;1.27
6910;1.27
6911;1.27
6912;1.27
6913;1.27
6914;1.26
6915;1.26
6916;1.26
6917;1.26
6918;1.26
6919;1.26
6920;1.26
6921;1.26
6922;1.26
6923;1.26
6924;1.26
6925;1.26
6926;1.26
6927;1.26
6928;1.26
6929;1.26
6930;1.26
6931;1.26
6932;1.26
6933;1.26
6934;1.26
6935;1.26
6936;1.26
6937;1.26
6938;1.26
6939;1.26
6940;1.26
6941;1.26
6942;1.26
6943;1.26
6944;1.26
6945;1.26
6946;1.26
6947;1.26
6948;1.26
6949;1.26
6950;1.26
6951;1.26
6952;1.26
6953;1.26
6954;1.25
6955;1.25
6956;1.25
6957;1.25
6958;1.25
6959;1.25
6960;1.25
6961;1.25
6962;1.25
6963;1.25
6964;1.25
6965;1.25
6966;1.25
6967;1.25
6968;1.25
6969;1.25
6970;1.25
6971;1.25
6972;1.25
6973;1.25
6974;1.25
6975;1.25
6976;1.25
6977;1.25
6978;1.25
6979;1.25
6980;1.25
6981;1.25
6982;1.25
6983;1.25
6984;1.25
6985;1.25
6986;1.25
6987;1.25
6988;1.25
6989;1.25
6990;1.25
6991;1.25
6992;1.25
6993;1.24
6994;1.24
6995;1.24
6996;1.24
6997;1.24
6998;1.24
6999;1.24
7000;1.24
7001;1.24
7002;1.24
7003;1.24
7004;1.24
7005;1.24
7006;1.24
7007;1.24
7008;1.24
7009;1.24
7010;1.24
7011;1.24
7012;1.24
7013;1.24
7014;1.24
7015;1.24
7016;1.24
7017;1.24
7018;1.24
7019;1.24
7020;1.24
7021;1.24
7022;1.24
7023;1.24
7024;1.24
7025;1.23
7026;1.23
7027;1.23
7028;1.23
7029;1.23
7030;1.23
7031;1.23
7032;1.23
7033;1.23
7034;1.23
7035;1.23
7036;1.23
7037;1.23
7038;1.23
7039;1.23
7040;1.23
7041;1.23
7042;1.23
7043;1.23
7044;1.23
7045;1.23
7046;1.23
7047;1.23
7048;1.23
7049;1.23
7050;1.23
7051;1.23
7052;1.23
7053;1.23
7054;1.23
7055;1.23
7056;1.23
7057;1.23
7058;1.23
7059;1.22
7060;1.22
7061;1.22
7062;1.22
7063;1.22
7064;1.22
7065;1.22
7066;1.22
7067;1.22
7068;1.22
7069;1.22
7070;1.22
7071;1.22
7072;1.22
7073;1.22
7074;1.22
7075;1.22
7076;1.22
7077;1.22
7078;1.22
7079;1.22
7080;1.22
7081;1.22
7082;1.22
7083;1.22
7084;1.22
7085;1.22
7086;1.22
7087;1.22
7088;1.22
7089;1.22
7090;1.22
7091;1.22
7092;1.22
7093;1.22
7094;1.22
7095;1.22
7096;1.21
7097;1.21
7098;1.21
7099;1.21
7100;1.21
7101;1.21
7102;1.21
7103;1.21
7104;1.21
7105;1.21
7106;1.21
7107;1.21
7108;1.21
7109;1.21
7110;1.21
7111;1.21
7112;1.21
7113;1.21
7114;1.21
7115;1.21
7116;1.21
7117;1.21
7118;1.21
7119;1.21
7120;1.21
7121;1.21
7122;1.21
7123;1.21
7124;1.21
7125;1.21
7126;1.21
7127;1.21
7128;1.21
7129;1.21
7130;1.21
7131;1.20
7132;1.20
7133;1.20
7134;1.20
7135;1.20
7136;1.20
7137;1.20
7138;1.20
7139;1.20
7140;1.20
7141;1.20
7142;1.20
7143;1.20
7144;1.20
7145;1.20
7146;1.20
7147;1.20
7148;1.20
7149;1.20
7150;1.20
7151;1.20
7152;1.20
7153;1.20
7154;1.20
7155;1.20
7156;1.20
7157;1.20
7158;1.20
7159;1.20
7160;1.20
7161;1.19
7162;1.19
7163;1.19
7164;1.19
7165;1.19
7166;1.19
7167;1.19
7168;1.19
7169;1.19
7170;1.19
7171;1.19
7172;1.19
7173;1.19
7174;1.19
7175;1.19
7176;1.19
7177;1.19
7178;1.19
7179;1.19
7180;1.19
7181;1.19
7182;1.19
7183;1.19
7184;1.19
7185;1.19
7186;1.19
7187;1.19
7188;1.19
7189;1.19
7190;1.19
7191;1.19
7192;1.19
7193;1.19
7194;1.19
7195;1.19
7196;1.19
7197;1.18
7198;1.18
7199;1.18
7200;1.18
7201;1.18
7202;1.18
7203;1.18
7204;1.18
7205;1.18
7206;1.18
7207;1.18
7208;1.18
7209;1.18
7210;1.18
7211;1.18
7212;1.18
7213;1.18
7214;1.18
7215;1.18
7216;1.18
7217;1.18
7218;1.18
7219;1.18
7220;1.18
7221;1.18
7222;1.18
7223;1.18
7224;1.18
7225;1.18
7226;1.18
7227;1.18
7228;1.18
7229;1.18
7230;1.18
7231;1.18
7232;1.18
7233;1.18
7234;1.18
7235;1.18
7236;1.18
7237;1.18
7238;1.18
7239;1.18
7240;1.18
7241;1.18
7242;1.18
7243;1.18
7244;1.18
7245;1.18
7246;1.17
7247;1.17
7248;1.17
7249;1.17
7250;1.17
7251;1.17
7252;1.17
7253;1.17
7254;1.17
7255;1.17
7256;1.17
7257;1.17
7258;1.17
7259;1.17
7260;1.17
7261;1.17
7262;1.17
7263;1.17
7264;1.17
7265;1.17
7266;1.17
7267;1.17
7268;1.17
7269;1.17
7270;1.17
7271;1.17
7272;1.17
7273;1.17
7274;1.17
7275;1.17
7276;1.17
7277;1.17
7278;1.17
7279;1.17
7280;1.16
7281;1.16
7282;1.16
7283;1.16
7284;1.16
7285;1.16
7286;1.16
7287;1.16
7288;1.16
7289;1.16
7290;1.16
7291;1.16
7292;1.16
7293;1.16
7294;1.16
7295;1.16
7296;1.16
7297;1.16
7298;1.16
7299;1.16
7300;1.16
7301;1.16
7302;1.16
7303;1.16
7304;1.16
7305;1.16
7306;1.16
7307;1.16
7308;1.16
7309;1.16
7310;1.16
7311;1.16
7312;1.16
7313;1.16
7314;1.16
7315;1.16
7316;1.16
7317;1.16
7318;1.16
7319;1.16
7320;1.16
7321;1.15
7322;1.15
7323;1.15
7324;1.15
7325;1.15
7326;1.15
7327;1.15
7328;1.15
7329;1.15
7330;1.15
7331;1.15
7332;1.15
7333;1.15
7334;1.15
7335;1.15
7336;1.15
7337;1.15
7338;1.15
7339;1.15
7340;1.15
7341;1.15
7342;1.15
7343;1.15
7344;1.15
7345;1.15
7346;1.15
7347;1.15
7348;1.15
7349;1.15
7350;1.15
7351;1.15
7352;1.15
7353;1.15
7354;1.15
7355;1.15
7356;1.15
7357;1.15
7358;1.15
7359;1.15
7360;1.15
7361;1.15
7362;1.15
7363;1.15
7364;1.15
7365;1.15
7366;1.15
7367;1.15
7368;1.15
7369;1.14
7370;1.14
7371;1.14
7372;1.14
7373;1.14
7374;1.14
7375;1.14
7376;1.14
7377;1.14
7378;1.14
7379;1.14
7380;1.14
7381;1.14
7382;1.14
7383;1.14
7384;1.14
7385;1.14
7386;1.14
7387;1.14
7388;1.14
7389;1.14
7390;1.14
7391;1.14
7392;1.14
7393;1.14
7394;1.14
7395;1.14
7396;1.14
7397;1.14
7398;1.14
7399;1.14
7400;1.14
7401;1.14
7402;1.14
7403;1.14
7404;1.14
7405;1.14
7406;1.14
7407;1.14
7408;1.14
7409;1.14
7410;1.14
7411;1.14
7412;1.13
7413;1.13
7414;1.13
7415;1.13
7416;1.13
7417;1.13
7418;1.13
7419;1.13
7420;1.13
7421;1.13
7422;1.13
7423;1.13
7424;1.13
7425;1.13
7426;1.13
7427;1.13
7428;1.13
7429;1.13
7430;1.13
7431;1.13
7432;1.13
7433;1.13
7434;1.13
7435;1.13
7436;1.13
7437;1.13
7438;1.13
7439;1.13
7440;1.13
7441;1.13
7442;1.13
7443;1.13
7444;1.13
7445;1.13
7446;1.13
7447;1.13
7448;1.12
7449;1.12
7450;1.12
7451;1.12
7452;1.12
7453;1.12
7454;1.12
7455;1.12
7456;1.12
7457;1.12
7458;1.12
7459;1.12
7460;1.12
7461;1.12
7462;1.12
7463;1.12
7464;1.12
7465;1.12
7466;1.12
7467;1.12
7468;1.12
7469;1.12
7470;1.12
7471;1.12
7472;1.12
7473;1.12
7474;1.12
7475;1.12
7476;1.12
7477;1.12
7478;1.12
7479;1.12
7480;1.12
7481;1.12
7482;1.12
7483;1.12
7484;1.12
7485;1.12
7486;1.12
7487;1.12
7488;1.12
7489;1.12
7490;1.12
7491;1.12
7492;1.12
7493;1.11
7494;1.11
7495;1.11
7496;1.11
7497;1.11
7498;1.11
7499;1.11
7500;1.11
7501;1.11
7502;1.11
7503;1.11
7504;1.11
7505;1.11
7506;1.11
7507;1.11
7508;1.11
7509;1.11
7510;1.11
7511;1.11
7512;1.11
7513;1.11
7514;1.11
7515;1.11
7516;1.11
7517;1.11
7518;1.11
7519;1.10
7520;1.10
7521;1.10
7522;1.10
7523;1.10
7524;1.10
7525;1.10
7526;1.10
7527;1.10
7528;1.10
7529;1.10
7530;1.10
7531;1.10
7532;1.10
7533;1.10
7534;1.10
7535;1.10
7536;1.10
7537;1.10
7538;1.10
7539;1.10
7540;1.10
7541;1.10
7542;1.10
7543;1.10
7544;1.10
7545;1.10
7546;1.10
7547;1.10
7548;1.10
7549;1.10
7550;1.10
7551;1.10
7552;1.10
7553;1.10
7554;1.09
7555;1.09
7556;1.09
7557;1.09
7558;1.09
7559;1.09
7560;1.09
7561;1.09
7562;1.09
7563;1.09
7564;1.09
7565;1.09
7566;1.09
7567;1.09
7568;1.09
7569;1.09
7570;1.09
7571;1.09
7572;1.09
7573;1.09
7574;1.09
7575;1.09
7576;1.09
7577;1.09
7578;1.09
7579;1.09
7580;1.09
7581;1.09
7582;1.09
7583;1.09
7584;1.09
7585;1.09
7586;1.09
7587;1.09
7588;1.09
7589;1.09
7590;1.09
7591;1.09
7592;1.09
7593;1.09
7594;1.08
7595;1.08
7596;1.08
7597;1.08
7598;1.08
7599;1.08
7600;1.08
7601;1.08
7602;1.08
7603;1.08
7604;1.08
7605;1.08
7606;1.08
7607;1.08
7608;1.08
7609;1.08
7610;1.08
7611;1.08
7612;1.08
7613;1.08
7614;1.08
7615;1.08
7616;1.08
7617;1.08
7618;1.08
7619;1.08
7620;1.08
7621;1.08
7622;1.08
7623;1.08
7624;1.08
7625;1.08
7626;1.08
7627;1.08
7628;1.08
7629;1.08
7630;1.07
7631;1.07
7632;1.07
7633;1.07
7634;1.07
7635;1.07
7636;1.07
7637;1.07
7638;1.07
7639;1.07
7640;1.07
7641;1.07
7642;1.07
7643;1.07
7644;1.07
7645;1.07
7646;1.07
7647;1.07
7648;1.07
7649;1.07
7650;1.07
7651;1.07
7652;1.07
7653;1.07
7654;1.07
7655;1.07
7656;1.07
7657;1.07
7658;1.07
7659;1.07
7660;1.07
7661;1.07
7662;1.07
7663;1.07
7664;1.06
7665;1.06
7666;1.06
7667;1.06
7668;1.06
7669;1.06
7670;1.06
7671;1.06
7672;1.06
7673;1.06
7674;1.06
7675;1.06
7676;1.06
7677;1.06
7678;1.06
7679;1.06
7680;1.06
7681;1.06
7682;1.06
7683;1.06
7684;1.06
7685;1.06
7686;1.06
7687;1.06
7688;1.06
7689;1.06
7690;1.06
7691;1.06
7692;1.06
7693;1.06
7694;1.06
7695;1.06
7696;1.06
7697;1.06
7698;1.06
7699;1.06
7700;1.06
7701;1.06
7702;1.06
7703;1.06
7704;1.06
7705;1.06
7706;1.06
7707;1.06
7708;1.05
7709;1.05
7710;1.05
7711;1.05
7712;1.05
7713;1.05
7714;1.05
7715;1.05
7716;1.05
7717;1.05
7718;1.05
7719;1.05
7720;1.05
7721;1.05
7722;1.05
7723;1.05
7724;1.05
7725;1.05
7726;1.05
7727;1.05
7728;1.05
7729;1.05
7730;1.05
7731;1.05
7732;1.05
7733;1.05
7734;1.05
7735;1.05
7736;1.05
7737;1.05
7738;1.05
7739;1.05
7740;1.05
7741;1.05
7742;1.05
7743;1.05
7744;1.05
7745;1.05
7746;1.05
7747;1.05
7748;1.04
7749;1.04
7750;1.04
7751;1.04
7752;1.04
7753;1.04
7754;1.04
7755;1.04
7756;1.04
7757;1.04
7758;1.04
7759;1.04
7760;1.04
7761;1.04
7762;1.04
7763;1.04
7764;1.04
7765;1.04
7766;1.04
7767;1.04
7768;1.04
7769;1.04
7770;1.04
7771;1.04
7772;1.04
7773;1.04
7774;1.04
7775;1.04
7776;1.04
7777;1.04
7778;1.04
7779;1.04
7780;1.04
7781;1.03
7782;1.03
7783;1.03
7784;1.03
7785;1.03
7786;1.03
7787;1.03
7788;1.03
7789;1.03
7790;1.03
7791;1.03
7792;1.03
7793;1.03
7794;1.03
7795;1.03
7796;1.03
7797;1.03
7798;1.03
7799;1.03
7800;1.03
7801;1.03
7802;1.03
7803;1.03
7804;1.03
7805;1.03
7806;1.03
7807;1.03
7808;1.03
7809;1.03
7810;1.03
7811;1.03
7812;1.03
7813;1.03
7814;1.03
7815;1.03
7816;1.02
7817;1.02
7818;1.02
7819;1.02
7820;1.02
7821;1.02
7822;1.02
7823;1.02
7824;1.02
7825;1.02
7826;1.02
7827;1.02
7828;1.02
7829;1.02
7830;1.02
7831;1.02
7832;1.02
7833;1.02
7834;1.02
7835;1.02
7836;1.02
7837;1.02
7838;1.02
7839;1.02
7840;1.02
7841;1.02
7842;1.02
7843;1.02
7844;1.02
7845;1.02
7846;1.02
7847;1.02
7848;1.02
7849;1.02
7850;1.02
7851;1.02
7852;1.01
7853;1.01
7854;1.01
7855;1.01
7856;1.01
7857;1.01
7858;1.01
7859;1.01
7860;1.01
7861;1.01
7862;1.01
7863;1.01
7864;1.01
7865;1.01
7866;1.01
7867;1.01
7868;1.01
7869;1.01
7870;1.01
7871;1.01
7872;1.01
7873;1.01
7874;1.01
7875;1.01
7876;1.01
7877;1.01
7878;1.01
7879;1.01
7880;1.01
7881;1.01
7882;1.01
7883;1.01
7884;1.01
7885;1.01
7886;1.01
7887;1.01
7888;1.01
7889;1.01
7890;1.00
7891;1.00
7892;1.00
7893;1.00
7894;1.00
7895;1.00
7896;1.00
7897;1.00
7898;1.00
7899;1.00
7900;1.00
7901;1.00
7902;1.00
7903;1.00
7904;1.00
7905;1.00
7906;1.00
7907;1.00
7908;1.00
7909;1.00
7910;1.00
7911;1.00
7912;1.00
7913;1.00
7914;1.00
7915;1.00
7916;1.00
7917;1.00
7918;1.00
7919;1.00
7920;1.00
7921;1.00
7922;1.00
7923;1.00
7924;1.00
7925;1.00
7926;1.00
7927;1.00
7928;1.00
7929;1.00
7930;0.99
7931;0.99
7932;0.99
7933;0.99
7934;0.99
7935;0.99
7936;0.99
7937;0.99
7938;0.99
7939;0.99
7940;0.99
7941;0.99
7942;0.99
7943;0.99
7944;0.99
7945;0.99
7946;0.99
7947;0.99
7948;0.99
7949;0.99
7950;0.99
7951;0.99
7952;0.99
7953;0.99
7954;0.99
7955;0.99
7956;0.99
7957;0.99
7958;0.99
7959;0.99
7960;0.99
7961;0.99
7962;0.99
7963;0.99
7964;0.99
7965;0.98
7966;0.98
7967;0.98
7968;0.98
7969;0.98
7970;0.98
7971;0.98
7972;0.98
7973;0.98
7974;0.98
7975;0.98
7976;0.98
7977;0.98
7978;0.98
7979;0.98
7980;0.98
7981;0.98
7982;0.98
7983;0.98
7984;0.98
7985;0.98
7986;0.98
7987;0.98
7988;0.98
7989;0.98
7990;0.98
7991;0.98
7992;0.98
7993;0.98
7994;0.98
7995;0.98
7996;0.98
7997;0.98
7998;0.98
7999;0.98
8000;0.98
8001;0.98
8002;0.98
8003;0.97
8004;0.97
8005;0.97
8006;0.97
8007;0.97
8008;0.97
8009;0.97
8010;0.97
8011;0.97
8012;0.97
8013;0.97
8014;0.97
8015;0.97
8016;0.97
8017;0.97
8018;0.97
8019;0.97
8020;0.97
8021;0.97
8022;0.97
8023;0.97
8024;0.97
8025;0.97
8026;0.97
8027;0.97
8028;0.97
8029;0.97
8030;0.97
8031;0.97
8032;0.97
8033;0.97
8034;0.97
8035;0.97
8036;0.97
8037;0.97
8038;0.97
8039;0.96
8040;0.96
8041;0.96
8042;0.96
8043;0.96
8044;0.96
8045;0.96
8046;0.96
8047;0.96
8048;0.96
8049;0.96
8050;0.96
8051;0.96
8052;0.96
8053;0.96
8054;0.96
8055;0.96
8056;0.96
8057;0.96
8058;0.96
8059;0.96
8060;0.96
8061;0.96
8062;0.96
8063;0.96
8064;0.96
8065;0.96
8066;0.96
8067;0.96
8068;0.96
8069;0.96
8070;0.96
8071;0.96
8072;0.96
8073;0.96
8074;0.96
8075;0.96
8076;0.96
8077;0.95
8078;0.95
8079;0.95
8080;0.95
8081;0.95
8082;0.95
8083;0.95
8084;0.95
8085;0.95
8086;0.95
8087;0.95
8088;0.95
8089;0.95
8090;0.95
8091;0.95
8092;0.95
8093;0.95
8094;0.95
8095;0.95
8096;0.95
8097;0.95
8098;0.95
8099;0.95
8100;0.95
8101;0.95
8102;0.95
8103;0.95
8104;0.95
8105;0.94
8106;0.94
8107;0.94
8108;0.94
8109;0.94
8110;0.94
8111;0.94
8112;0.94
8113;0.94
8114;0.94
8115;0.94
8116;0.94
8117;0.94
8118;0.94
8119;0.94
8120;0.94
8121;0.94
8122;0.94
8123;0.94
8124;0.94
8125;0.94
8126;0.94
8127;0.94
8128;0.94
8129;0.94
8130;0.94
8131;0.94
8132;0.94
8133;0.94
8134;0.94
8135;0.94
8136;0.94
8137;0.94
8138;0.94
8139;0.94
8140;0.93
8141;0.93
8142;0.93
8143;0.93
8144;0.93
8145;0.93
8146;0.93
8147;0.93
8148;0.93
8149;0.93
8150;0.93
8151;0.93
8152;0.93
8153;0.93
8154;0.93
8155;0.93
8156;0.93
8157;0.93
8158;0.93
8159;0.93
8160;0.93
8161;0.93
8162;0.93
8163;0.93
8164;0.93
8165;0.93
8166;0.93
8167;0.93
8168;0.93
8169;0.93
8170;0.93
8171;0.93
8172;0.93
8173;0.93
8174;0.93
8175;0.93
8176;0.93
8177;0.93
8178;0.93
8179;0.93
8180;0.93
8181;0.93
8182;0.93
8183;0.93
8184;0.93
8185;0.93
8186;0.92
8187;0.92
8188;0.92
8189;0.92
8190;0.92
8191;0.92
8192;0.92
8193;0.92
8194;0.92
8195;0.92
8196;0.92
8197;0.92
8198;0.92
8199;0.92
8200;0.92
8201;0.92
8202;0.92
8203;0.92
8204;0.92
8205;0.92
8206;0.92
8207;0.92
8208;0.92
8209;0.92
8210;0.92
8211;0.92
8212;0.92
8213;0.92
8214;0.92
8215;0.92
8216;0.92
8217;0.92
8218;0.92
8219;0.92
8220;0.92
8221;0.92
8222;0.92
8223;0.92
8224;0.92
8225;0.91
8226;0.91
8227;0.91
8228;0.91
8229;0.91
8230;0.91
8231;0.91
8232;0.91
8233;0.91
8234;0.91
8235;0.91
8236;0.91
8237;0.91
8238;0.91
8239;0.91
8240;0.91
8241;0.91
8242;0.91
8243;0.91
8244;0.91
8245;0.91
8246;0.91
8247;0.91
8248;0.91
8249;0.91
8250;0.91
8251;0.91
8252;0.91
8253;0.91
8254;0.91
8255;0.91
8256;0.90
8257;0.90
8258;0.90
8259;0.90
8260;0.90
8261;0.90
8262;0.90
8263;0.90
8264;0.90
8265;0.90
8266;0.90
8267;0.90
8268;0.90
8269;0.90
8270;0.90
8271;0.90
8272;0.90
8273;0.90
8274;0.90
8275;0.90
8276;0.90
8277;0.90
8278;0.90
8279;0.90
8280;0.90
8281;0.90
8282;0.90
8283;0.89
8284;0.89
8285;0.89
8286;0.89
8287;0.89
8288;0.89
8289;0.89
8290;0.89
8291;0.89
8292;0.89
8293;0.89
8294;0.89
8295;0.89
8296;0.89
8297;0.89
8298;0.89
8299;0.89
8300;0.89
8301;0.88
8302;0.88
8303;0.88
8304;0.88
8305;0.88
8306;0.88
8307;0.88
8308;0.88
8309;0.88
8310;0.88
8311;0.88
8312;0.88
8313;0.88
8314;0.88
8315;0.88
8316;0.88
8317;0.88
8318;0.88
8319;0.88
8320;0.88
8321;0.88
8322;0.88
8323;0.88
8324;0.88
8325;0.88
8326;0.88
8327;0.87
8328;0.87
8329;0.87
8330;0.87
8331;0.87
8332;0.87
8333;0.87
8334;0.87
8335;0.87
8336;0.87
8337;0.87
8338;0.87
8339;0.87
8340;0.87
8341;0.87
8342;0.87
8343;0.87
8344;0.87
8345;0.87
8346;0.87
8347;0.86
8348;0.86
8349;0.86
8350;0.86
8351;0.86
8352;0.86
8353;0.86
8354;0.86
8355;0.86
8356;0.86
8357;0.86
8358;0.86
8359;0.86
8360;0.86
8361;0.86
8362;0.86
8363;0.86
8364;0.86
8365;0.86
8366;0.86
8367;0.86
8368;0.86
8369;0.86
8370;0.86
8371;0.86
8372;0.86
8373;0.86
8374;0.86
8375;0.86
8376;0.85
8377;0.85
8378;0.85
8379;0.85
8380;0.85
8381;0.85
8382;0.85
8383;0.85
8384;0.85
8385;0.85
8386;0.85
8387;0.85
8388;0.85
8389;0.85
8390;0.85
8391;0.85
8392;0.85
8393;0.85
8394;0.85
8395;0.85
8396;0.85
8397;0.85
8398;0.85
8399;0.85
8400;0.85
8401;0.85
8402;0.85
8403;0.85
8404;0.85
8405;0.85
8406;0.85
8407;0.85
8408;0.85
8409;0.85
8410;0.84
8411;0.84
8412;0.84
8413;0.84
8414;0.84
8415;0.84
8416;0.84
8417;0.84
8418;0.84
8419;0.84
8420;0.84
8421;0.84
8422;0.84
8423;0.84
8424;0.84
8425;0.84
8426;0.84
8427;0.84
8428;0.84
8429;0.84
8430;0.84
8431;0.84
8432;0.84
8433;0.84
8434;0.84
8435;0.84
8436;0.83
8437;0.83
8438;0.83
8439;0.83
8440;0.83
8441;0.83
8442;0.83
8443;0.83
8444;0.83
8445;0.83
8446;0.83
8447;0.83
8448;0.83
8449;0.83
8450;0.83
8451;0.83
8452;0.83
8453;0.83
8454;0.83
8455;0.83
8456;0.83
8457;0.83
8458;0.82
8459;0.82
8460;0.82
8461;0.82
8462;0.82
8463;0.82
8464;0.82
8465;0.82
8466;0.82
8467;0.82
8468;0.82
8469;0.82
8470;0.82
8471;0.82
8472;0.82
8473;0.82
8474;0.81
8475;0.81
8476;0.81
8477;0.81
8478;0.81
8479;0.81
8480;0.81
8481;0.81
8482;0.81
8483;0.81
8484;0.81
8485;0.81
8486;0.81
8487;0.81
8488;0.81
8489;0.81
8490;0.81
8491;0.81
8492;0.81
8493;0.81
8494;0.81
8495;0.81
8496;0.81
8497;0.81
8498;0.81
8499;0.81
8500;0.81
8501;0.81
8502;0.81
8503;0.81
8504;0.80
8505;0.80
8506;0.80
8507;0.80
8508;0.80
8509;0.80
8510;0.80
8511;0.80
8512;0.80
8513;0.80
8514;0.80
8515;0.80
8516;0.80
8517;0.80
8518;0.80
8519;0.80
8520;0.80
8521;0.80
8522;0.80
8523;0.79
8524;0.79
8525;0.79
8526;0.79
8527;0.79
8528;0.79
8529;0.79
8530;0.79
8531;0.79
8532;0.79
8533;0.79
8534;0.79
8535;0.79
8536;0.79
8537;0.78
8538;0.78
8539;0.78
8540;0.78
8541;0.78
8542;0.78
8543;0.78
8544;0.78
8545;0.78
8546;0.78
8547;0.78
8548;0.78
8549;0.78
8550;0.78
8551;0.78
8552;0.78
8553;0.78
8554;0.78
8555;0.78
8556;0.78
8557;0.78
8558;0.78
8559;0.78
8560;0.78
8561;0.78
8562;0.78
8563;0.77
8564;0.77
8565;0.77
8566;0.77
8567;0.77
8568;0.77
8569;0.77
8570;0.77
8571;0.77
8572;0.77
8573;0.77
8574;0.77
8575;0.77
8576;0.77
8577;0.77
8578;0.77
8579;0.77
8580;0.77
8581;0.77
8582;0.77
8583;0.77
8584;0.77
8585;0.77
8586;0.77
8587;0.76
8588;0.76
8589;0.76
8590;0.76
8591;0.76
8592;0.76
8593;0.76
8594;0.76
8595;0.76
8596;0.76
8597;0.76
8598;0.76
8599;0.76
8600;0.75
8601;0.75
8602;0.75
8603;0.75
8604;0.75
8605;0.75
8606;0.75
8607;0.75
8608;0.75
8609;0.75
8610;0.75
8611;0.75
8612;0.75
8613;0.75
8614;0.75
8615;0.75
8616;0.75
8617;0.75
8618;0.75
8619;0.75
8620;0.75
8621;0.74
8622;0.74
8623;0.74
8624;0.74
8625;0.74
8626;0.74
8627;0.74
8628;0.74
8629;0.74
8630;0.74
8631;0.74
8632;0.74
8633;0.74
8634;0.74
8635;0.74
8636;0.74
8637;0.73
8638;0.73
8639;0.73
8640;0.73
8641;0.73
8642;0.73
8643;0.73
8644;0.73
8645;0.73
8646;0.73
8647;0.73
8648;0.73
8649;0.73
8650;0.72
8651;0.72
8652;0.72
8653;0.72
8654;0.72
8655;0.72
8656;0.72
8657;0.72
8658;0.72
8659;0.72
8660;0.72
8661;0.72
8662;0.72
8663;0.72
8664;0.71
8665;0.71
8666;0.71
8667;0.71
8668;0.71
8669;0.71
8670;0.71
8671;0.71
8672;0.71
8673;0.71
8674;0.71
8675;0.70
8676;0.70
8677;0.70
8678;0.70
8679;0.70
8680;0.70
8681;0.70
8682;0.70
8683;0.69
8684;0.69
8685;0.69
8686;0.69
8687;0.69
8688;0.69
8689;0.69
8690;0.68
8691;0.68
8692;0.68
8693;0.68
8694;0.68
8695;0.68
8696;0.68
8697;0.68
8698;0.68
8699;0.68
8700;0.68
8701;0.68
8702;0.68
8703;0.67
8704;0.67
8705;0.67
8706;0.67
8707;0.67
8708;0.67
8709;0.67
8710;0.67
8711;0.67
8712;0.67
8713;0.67
8714;0.66
8715;0.66
8716;0.66
8717;0.66
8718;0.65
8719;0.65
8720;0.65
8721;0.65
8722;0.65
8723;0.65
8724;0.64
8725;0.64
8726;0.64
8727;0.64
8728;0.64
8729;0.64
8730;0.63
8731;0.63
8732;0.63
8733;0.63
8734;0.62
8735;0.62
8736;0.62
8737;0.62
8738;0.61
8739;0.61
8740;0.61
8741;0.60
8742;0.60
8743;0.59
8744;0.59
8745;0.59
8746;0.59
8747;0.59
8748;0.58
8749;0.58
8750;0.57
8751;0.57
8752;0.57
8753;0.56
8754;0.56
8755;0.55
8756;0.55
8757;0.55
8758;0.54
8759;0.53
8760;0.50
<?xml version="1.0" encoding="UTF-8"?>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="de.hftstuttgart.simstadtworkflowsteps.energy.LoadProfileGeneratorStep">
<void property="name">
<string>Base</string>
</void>
</object>
</java>
<java version="17.0.14" class="java.beans.XMLDecoder">
<object class="eu.simstadt.workflows.CityGmlWorkflow" id="CityGmlWorkflow0">
<void class="de.hftstuttgart.hierarchicworkflow.Workflow" method="getField">
<string>selectedStartStepPath</string>
<void method="set">
<object idref="CityGmlWorkflow0" />
<string>00_ImportCityGml.step</string>
</void>
</void>
<void class="de.hftstuttgart.hierarchicworkflow.WorkflowStep" method="getField">
<string>startStep</string>
<void method="set">
<object idref="CityGmlWorkflow0" />
<boolean>true</boolean>
</void>
</void>
<void property="cityGmlFileNames">
</void>
<void property="name">
<string>LoadProfile_Template</string>
</void>
<void property="shortName">
<string>LoadProfile</string>
</void>
<void property="workflowProvider">
<object class="de.hftstuttgart.simstadtworkflows.energy.LoadProfileProvider" />
</void>
<void property="cityGmlFileNames"><void method="add"><string>MiniBuchwald.gml</string></void></void></object>
</java>
\ No newline at end of file
...@@ -9,6 +9,7 @@ from simstadtpy import ( ...@@ -9,6 +9,7 @@ from simstadtpy import (
GreenWaterResults, GreenWaterResults,
HeatDemandResults, HeatDemandResults,
KPI, KPI,
LoadProfileResults,
PhotovoltaicResults, PhotovoltaicResults,
SimStadtResults, SimStadtResults,
create_simstadt_results, create_simstadt_results,
...@@ -16,6 +17,7 @@ from simstadtpy import ( ...@@ -16,6 +17,7 @@ from simstadtpy import (
TEST_REPOSITORY = Path(__file__).parent / "data" / "TestRepo" TEST_REPOSITORY = Path(__file__).parent / "data" / "TestRepo"
TEST_PROJECT_PATH = TEST_REPOSITORY / "CGSC.proj" TEST_PROJECT_PATH = TEST_REPOSITORY / "CGSC.proj"
LOAD_PROFILE_FLOW = TEST_REPOSITORY / "SektorSim.proj" / "LoadProfile.flow"
def kpis_by_name(results: SimStadtResults) -> dict[str, KPI]: def kpis_by_name(results: SimStadtResults) -> dict[str, KPI]:
...@@ -35,7 +37,7 @@ def find_output_files(workflow_name: str) -> list[Path]: ...@@ -35,7 +37,7 @@ def find_output_files(workflow_name: str) -> list[Path]:
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
@pytest.fixture(scope="module") @pytest.fixture(scope="module")
def heat_results() -> SimStadtResults: def heating_results() -> SimStadtResults:
output_files = [ output_files = [
TEST_REPOSITORY / "CGSC.proj/101_HeatDemand.flow/02_WeatherProcessor.step/hourly_GHI_DHI_Ta_meteonorm_Wuerzburg.prn", TEST_REPOSITORY / "CGSC.proj/101_HeatDemand.flow/02_WeatherProcessor.step/hourly_GHI_DHI_Ta_meteonorm_Wuerzburg.prn",
TEST_REPOSITORY / "CGSC.proj/101_HeatDemand.flow/04_MonthlyEnergyBalance.step/Grombuehl_mini_Steinheilstrasse_DIN18599_HEATING.csv", TEST_REPOSITORY / "CGSC.proj/101_HeatDemand.flow/04_MonthlyEnergyBalance.step/Grombuehl_mini_Steinheilstrasse_DIN18599_HEATING.csv",
...@@ -44,33 +46,33 @@ def heat_results() -> SimStadtResults: ...@@ -44,33 +46,33 @@ def heat_results() -> SimStadtResults:
return create_simstadt_results("Heat demand simulation for Grombühl", output_files) return create_simstadt_results("Heat demand simulation for Grombühl", output_files)
def test_heat_result_type(heat_results): def test_heating_result_type(heating_results):
assert isinstance(heat_results, HeatDemandResults) assert isinstance(heating_results, HeatDemandResults)
def test_heat_output_files_exist(heat_results): def test_heating_output_files_exist(heating_results):
assert all(f.exists() for f in heat_results.output_files) assert all(f.exists() for f in heating_results.output_files)
def test_heat_csv_content(heat_results): def test_heating_csv_content(heating_results):
assert heat_results.csv_path.exists() assert heating_results.csv_path.exists()
assert b"DIN18599 Monthly Energy Balance" in heat_results.csv_content() assert b"DIN18599 Monthly Energy Balance" in heating_results.csv_content()
def test_heat_log_content(heat_results): def test_heating_log_content(heating_results):
assert len(heat_results.log_content()) > 0 assert len(heating_results.log_content()) > 0
def test_heat_zip_content(heat_results): def test_heating_zip_content(heating_results):
assert heat_results.zip_content()[:4] == b"PK\x03\x04" assert heating_results.zip_content()[:4] == b"PK\x03\x04"
def test_heat_diagrams(heat_results): def test_heating_diagrams(heating_results):
assert len(heat_results.diagrams) == 1 assert len(heating_results.diagrams) == 1
def test_heat_dataframe(heat_results): def test_heating_dataframe(heating_results):
df = heat_results.dataframe df = heating_results.dataframe
assert isinstance(df, pd.DataFrame) assert isinstance(df, pd.DataFrame)
assert len(df) > 0 assert len(df) > 0
assert "GMLId" in df assert "GMLId" in df
...@@ -79,8 +81,8 @@ def test_heat_dataframe(heat_results): ...@@ -79,8 +81,8 @@ def test_heat_dataframe(heat_results):
assert "has_flat_roof" in df assert "has_flat_roof" in df
def test_heat_kpis(heat_results): def test_heating_kpis(heating_results):
kpis = kpis_by_name(heat_results) kpis = kpis_by_name(heating_results)
assert "Heated area" in kpis assert "Heated area" in kpis
assert "Number of buildings" in kpis assert "Number of buildings" in kpis
assert kpis["Heated area"].value == pytest.approx(10557.2, abs=0.1) assert kpis["Heated area"].value == pytest.approx(10557.2, abs=0.1)
...@@ -88,47 +90,47 @@ def test_heat_kpis(heat_results): ...@@ -88,47 +90,47 @@ def test_heat_kpis(heat_results):
assert kpis["Heated area"].unit == "m²" assert kpis["Heated area"].unit == "m²"
assert kpis["Storey number"].value == pytest.approx(4, abs=0.5) assert kpis["Storey number"].value == pytest.approx(4, abs=0.5)
assert kpis["Year of construction"].value == pytest.approx(1963, abs=0.5) assert kpis["Year of construction"].value == pytest.approx(1963, abs=0.5)
assert heat_results.kpi("Number of buildings").value == 24 assert heating_results.kpi("Number of buildings").value == 24
assert heat_results.kpi("Specific Heating Demand").value == pytest.approx(100, abs=5) assert heating_results.kpi("Specific Heating Demand").value == pytest.approx(100, abs=5)
with pytest.raises(ValueError, match="No 'Not here' KPI found"): with pytest.raises(ValueError, match="No 'Not here' KPI found"):
heat_results.kpi("Not here") heating_results.kpi("Not here")
assert len(kpis) == 10 # heating only assert len(kpis) == 10 # heating only
def test_heat_more_info_empty(heat_results): def test_heating_more_info_empty(heating_results):
assert heat_results.more_info == {} assert heating_results.more_info == {}
def test_heat_project(heat_results): def test_heating_project(heating_results):
assert heat_results.project == "CGSC" assert heating_results.project == "CGSC"
def test_heat_repository(heat_results): def test_heating_repository(heating_results):
assert heat_results.repository.absolute() == TEST_REPOSITORY assert heating_results.repository.absolute() == TEST_REPOSITORY
def test_heat_params(heat_results): def test_heating_params(heating_results):
assert heat_results.short_name == "HeatDemand" assert heating_results.short_name == "HeatDemand"
assert heat_results.name == "CGSC_HeatDemand" assert heating_results.name == "CGSC_HeatDemand"
assert heat_results.workflow_provider == ( assert heating_results.workflow_provider == (
"de.hftstuttgart.simstadtworkflows.energy.HeatDemandAnalysisWorkflowProvider" "de.hftstuttgart.simstadtworkflows.energy.HeatDemandAnalysisWorkflowProvider"
) )
def test_heat_serialization(heat_results): def test_heating_serialization(heating_results):
json_str = heat_results.to_json() json_str = heating_results.to_json()
reconstructed = SimStadtResults.from_json(json_str) reconstructed = SimStadtResults.from_json(json_str)
assert isinstance(reconstructed, HeatDemandResults) assert isinstance(reconstructed, HeatDemandResults)
assert reconstructed.description == heat_results.description assert reconstructed.description == heating_results.description
assert len(reconstructed.output_files) == len(heat_results.output_files) assert len(reconstructed.output_files) == len(heating_results.output_files)
assert "Domestic hot water demand" in json_str assert "Domestic hot water demand" in json_str
assert len(reconstructed.kpis) > 0 assert len(reconstructed.kpis) > 0
assert isinstance(reconstructed.csv_path, Path) assert isinstance(reconstructed.csv_path, Path)
pd.testing.assert_frame_equal(reconstructed.dataframe, heat_results.dataframe) pd.testing.assert_frame_equal(reconstructed.dataframe, heating_results.dataframe)
def test_heat_repr(heat_results): def test_heating_repr(heating_results):
detailed = repr(heat_results) detailed = repr(heating_results)
assert "Grombuehl_mini_Steinheilstrasse.gml" in detailed assert "Grombuehl_mini_Steinheilstrasse.gml" in detailed
assert "Footprint area" in detailed assert "Footprint area" in detailed
assert "1963" in detailed assert "1963" in detailed
...@@ -146,11 +148,11 @@ def heat_cool_results() -> SimStadtResults: ...@@ -146,11 +148,11 @@ def heat_cool_results() -> SimStadtResults:
) )
def test_heat_cool_result_type(heat_cool_results): def test_heating_cool_result_type(heat_cool_results):
assert isinstance(heat_cool_results, HeatDemandResults) assert isinstance(heat_cool_results, HeatDemandResults)
def test_heat_cool_kpis(heat_cool_results): def test_heating_cool_kpis(heat_cool_results):
kpis = kpis_by_name(heat_cool_results) kpis = kpis_by_name(heat_cool_results)
assert "Yearly Heating demand" in kpis assert "Yearly Heating demand" in kpis
assert "Specific Heating Demand" in kpis assert "Specific Heating Demand" in kpis
...@@ -160,7 +162,7 @@ def test_heat_cool_kpis(heat_cool_results): ...@@ -160,7 +162,7 @@ def test_heat_cool_kpis(heat_cool_results):
assert len(kpis) == 12 assert len(kpis) == 12
def test_heat_cool_diagrams(heat_cool_results): def test_heating_cool_diagrams(heat_cool_results):
diagrams = heat_cool_results.diagrams diagrams = heat_cool_results.diagrams
assert len(diagrams) > 0 assert len(diagrams) > 0
assert "Monthly demands" in diagrams assert "Monthly demands" in diagrams
...@@ -200,7 +202,7 @@ def test_cooling_kpis(cooling_results): ...@@ -200,7 +202,7 @@ def test_cooling_kpis(cooling_results):
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
@pytest.fixture(scope="module") @pytest.fixture(scope="module")
def gw_results() -> SimStadtResults: def greenwater_results() -> SimStadtResults:
output_files = [ output_files = [
TEST_REPOSITORY / "CGSC.proj/102_GreenWater.flow/02_WeatherProcessor.step/hourly_GHI_DHI_Ta_meteonorm_Wuerzburg.prn", TEST_REPOSITORY / "CGSC.proj/102_GreenWater.flow/02_WeatherProcessor.step/hourly_GHI_DHI_Ta_meteonorm_Wuerzburg.prn",
TEST_REPOSITORY / "CGSC.proj/102_GreenWater.flow/03_GreenWater.step/Grombühl_mini_with_trees_greenwater.csv", TEST_REPOSITORY / "CGSC.proj/102_GreenWater.flow/03_GreenWater.step/Grombühl_mini_with_trees_greenwater.csv",
...@@ -208,28 +210,28 @@ def gw_results() -> SimStadtResults: ...@@ -208,28 +210,28 @@ def gw_results() -> SimStadtResults:
return create_simstadt_results("Green Water simulation for Grombühl", output_files) return create_simstadt_results("Green Water simulation for Grombühl", output_files)
def test_gw_result_type(gw_results): def test_greenwater_result_type(greenwater_results):
assert isinstance(gw_results, GreenWaterResults) assert isinstance(greenwater_results, GreenWaterResults)
def test_gw_output_files_exist(gw_results): def test_greenwater_output_files_exist(greenwater_results):
assert all(f.exists() for f in gw_results.output_files) assert all(f.exists() for f in greenwater_results.output_files)
def test_gw_csv_exists(gw_results): def test_greenwater_csv_exists(greenwater_results):
assert gw_results.csv_path.exists() assert greenwater_results.csv_path.exists()
def test_gw_diagrams(gw_results): def test_greenwater_diagrams(greenwater_results):
diagrams = gw_results.diagrams diagrams = greenwater_results.diagrams
assert len(diagrams) > 0 assert len(diagrams) > 0
assert "Rain and Irrigation" in diagrams assert "Rain and Irrigation" in diagrams
for diagram in diagrams.values(): for diagram in diagrams.values():
assert diagram.exists() assert diagram.exists()
def test_gw_dataframe(gw_results): def test_greenwater_dataframe(greenwater_results):
df = gw_results.dataframe df = greenwater_results.dataframe
assert isinstance(df, pd.DataFrame) assert isinstance(df, pd.DataFrame)
assert len(df) > 0 assert len(df) > 0
assert "Rain [mm]" in df assert "Rain [mm]" in df
...@@ -237,8 +239,8 @@ def test_gw_dataframe(gw_results): ...@@ -237,8 +239,8 @@ def test_gw_dataframe(gw_results):
assert "Average ETc [mm]" in df assert "Average ETc [mm]" in df
def test_gw_kpis(gw_results): def test_greenwater_kpis(greenwater_results):
kpis = kpis_by_name(gw_results) kpis = kpis_by_name(greenwater_results)
assert "Rain" in kpis assert "Rain" in kpis
assert "Irrigation" in kpis assert "Irrigation" in kpis
assert "Evaporative cooling" in kpis assert "Evaporative cooling" in kpis
...@@ -255,12 +257,12 @@ def test_gw_kpis(gw_results): ...@@ -255,12 +257,12 @@ def test_gw_kpis(gw_results):
assert kpis["Projected tree area"].unit == "m²" assert kpis["Projected tree area"].unit == "m²"
def test_gw_attrs(gw_results): def test_greenwater_attrs(greenwater_results):
assert "Tilia cordata" in gw_results.dataframe.attrs["species"] assert "Tilia cordata" in greenwater_results.dataframe.attrs["species"]
def test_gw_more_info(gw_results): def test_greenwater_more_info(greenwater_results):
more_info = gw_results.more_info more_info = greenwater_results.more_info
assert "_Tilia cordata_" in more_info assert "_Tilia cordata_" in more_info
assert "_Robinia pseudoacacia_" in more_info assert "_Robinia pseudoacacia_" in more_info
tilia = kpis_by_name_list(more_info["_Tilia cordata_"]) tilia = kpis_by_name_list(more_info["_Tilia cordata_"])
...@@ -274,28 +276,28 @@ def kpis_by_name_list(kpi_list: list[KPI]) -> dict[str, KPI]: ...@@ -274,28 +276,28 @@ def kpis_by_name_list(kpi_list: list[KPI]) -> dict[str, KPI]:
return {kpi.name: kpi for kpi in kpi_list} return {kpi.name: kpi for kpi in kpi_list}
def test_gw_project(gw_results): def test_greenwater_project(greenwater_results):
assert gw_results.project == "CGSC" assert greenwater_results.project == "CGSC"
def test_gw_repository(gw_results): def test_greenwater_repository(greenwater_results):
assert gw_results.repository.absolute() == TEST_REPOSITORY assert greenwater_results.repository.absolute() == TEST_REPOSITORY
def test_gw_params(gw_results): def test_greenwater_params(greenwater_results):
assert gw_results.short_name == "GreenWater" assert greenwater_results.short_name == "GreenWater"
assert gw_results.name == "CGSC_GreenWater" assert greenwater_results.name == "CGSC_GreenWater"
assert gw_results.workflow_provider == ( assert greenwater_results.workflow_provider == (
"de.hftstuttgart.simstadtworkflows.greenwater.GreenWaterWorkflowProvider" "de.hftstuttgart.simstadtworkflows.greenwater.GreenWaterWorkflowProvider"
) )
def test_gw_serialization(gw_results): def test_greenwater_serialization(greenwater_results):
json_str = gw_results.to_json() json_str = greenwater_results.to_json()
reconstructed = SimStadtResults.from_json(json_str) reconstructed = SimStadtResults.from_json(json_str)
assert isinstance(reconstructed, GreenWaterResults) assert isinstance(reconstructed, GreenWaterResults)
assert reconstructed.description == gw_results.description assert reconstructed.description == greenwater_results.description
assert len(reconstructed.output_files) == len(gw_results.output_files) assert len(reconstructed.output_files) == len(greenwater_results.output_files)
assert "Average irrigation [mm]" in json_str assert "Average irrigation [mm]" in json_str
assert "_df_attrs" in json_str assert "_df_attrs" in json_str
assert len(reconstructed.kpis) > 0 assert len(reconstructed.kpis) > 0
...@@ -303,11 +305,11 @@ def test_gw_serialization(gw_results): ...@@ -303,11 +305,11 @@ def test_gw_serialization(gw_results):
assert "Projected tree area" in [k.name for k in reconstructed.kpis] assert "Projected tree area" in [k.name for k in reconstructed.kpis]
assert isinstance(reconstructed.csv_path, Path) assert isinstance(reconstructed.csv_path, Path)
assert "Tilia cordata" in reconstructed.dataframe.attrs["species"] assert "Tilia cordata" in reconstructed.dataframe.attrs["species"]
pd.testing.assert_frame_equal(reconstructed.dataframe, gw_results.dataframe) pd.testing.assert_frame_equal(reconstructed.dataframe, greenwater_results.dataframe)
def test_gw_repr(gw_results): def test_greenwater_repr(greenwater_results):
detailed = repr(gw_results) detailed = repr(greenwater_results)
assert "Grombühl_mini_with_trees.gml" in detailed assert "Grombühl_mini_with_trees.gml" in detailed
assert "Rain" in detailed assert "Rain" in detailed
assert "458" in detailed assert "458" in detailed
...@@ -417,6 +419,79 @@ def test_greenwater_without_trees(): ...@@ -417,6 +419,79 @@ def test_greenwater_without_trees():
_ = results.kpis _ = results.kpis
# ---------------------------------------------------------------------------
# Load profile
# ---------------------------------------------------------------------------
@pytest.fixture(scope="module")
def loadprofile_results() -> SimStadtResults:
output_files = [
LOAD_PROFILE_FLOW / "02_LoadProfileGenerator.step/MiniBuchwald_load_profile_Hourly.csv",
]
return create_simstadt_results("Load profile for MiniBuchwald", output_files)
def test_loadprofile_result_type(loadprofile_results):
assert isinstance(loadprofile_results, LoadProfileResults)
def test_loadprofile_output_files_exist(loadprofile_results):
assert all(f.exists() for f in loadprofile_results.output_files)
def test_loadprofile_csv_exists(loadprofile_results):
assert loadprofile_results.csv_path.exists()
def test_loadprofile_dataframe(loadprofile_results):
df = loadprofile_results.dataframe
assert isinstance(df, pd.DataFrame)
assert df.shape == (8760, 3)
assert "DEBW_52210006I2R" in df.columns
assert "DEBW_52210005fRo" in df.columns
assert "DEBW_5221000619W" in df.columns
def test_loadprofile_kpis(loadprofile_results):
kpis = kpis_by_name(loadprofile_results)
assert kpis["Number of buildings"].value == 3
assert kpis["Number of buildings"].unit is None
assert kpis["Total load"].value == pytest.approx(17004.0, abs=1.0)
assert kpis["Total load"].unit == "kWh/a"
assert kpis["Average load"].value == pytest.approx(1.9, abs=0.1)
assert kpis["Average load"].unit == "kWh/h"
def test_loadprofile_no_diagrams(loadprofile_results):
assert loadprofile_results.diagrams == {}
def test_loadprofile_project(loadprofile_results):
assert loadprofile_results.project == "SektorSim"
def test_loadprofile_params(loadprofile_results):
assert loadprofile_results.short_name == "LoadProfile"
assert loadprofile_results.name == "LoadProfile_Template"
assert loadprofile_results.workflow_provider == "de.hftstuttgart.simstadtworkflows.energy.LoadProfileProvider"
def test_loadprofile_serialization(loadprofile_results):
json_str = loadprofile_results.to_json()
reconstructed = SimStadtResults.from_json(json_str)
assert isinstance(reconstructed, LoadProfileResults)
assert reconstructed.description == loadprofile_results.description
assert len(reconstructed.output_files) == len(loadprofile_results.output_files)
assert len(reconstructed.kpis) == 3
pd.testing.assert_frame_equal(reconstructed.dataframe, loadprofile_results.dataframe)
def test_loadprofile_repr(loadprofile_results):
detailed = repr(loadprofile_results)
assert "MiniBuchwald.gml" in detailed
assert "Total load" in detailed
def test_broken_simulation(): def test_broken_simulation():
output_files = [ output_files = [
TEST_REPOSITORY / "CGSC.proj/103_PV.flow/02_WeatherProcessor.step/notATable.log", TEST_REPOSITORY / "CGSC.proj/103_PV.flow/02_WeatherProcessor.step/notATable.log",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment