diff --git a/python/pronostici/main.py b/python/pronostici/main.py index 146c099..bb13a4c 100644 --- a/python/pronostici/main.py +++ b/python/pronostici/main.py @@ -48,7 +48,7 @@ def generate_file(stagione, row, svg, stat): out_f.write(outputText) -def generate_summary_file(stagione, svg): +def generate_summary_file(stagione, svg, classifica): teamfile_path = HERE_PATH / 'data' / stagione / 'fantasquadre.yml' fantasquadre_list = [] with open(teamfile_path.resolve(), 'r') as f: @@ -68,7 +68,14 @@ def generate_summary_file(stagione, svg): title = f"I pronostici della stagione {stagione}" permalink = f'/{stagione}/pronostici/pronostici.html' - outputText = template.render(title=title, permalink=permalink, stagione=stagione, fantasquadre=fantasquadre_list, svg=svg) + outputText = template.render( + title=title, + permalink=permalink, + stagione=stagione, + fantasquadre=fantasquadre_list, + svg=svg, + classifica=classifica, + ) out_f.write(outputText) @@ -165,7 +172,8 @@ def export_all_files(stagione, rows): def export_summary_file(stagione, rows): svg = generate_histogram_svg_summary(stagione, rows) clean_svg = svg.split("\n", 3) - generate_summary_file(stagione, clean_svg[3]) + classifica = compute_classifica_totale(team2position(stagione, rows)) + generate_summary_file(stagione, clean_svg[3], classifica) def generate_histogram_svg(x, y): @@ -228,7 +236,21 @@ def stats(freqs): return res +def compute_classifica_totale(freqs): + avg = {} + mediana = {} + for fantasquadra, f in freqs.items(): + s = stats(f.values()) + avg[fantasquadra] = s['avg'] + mediana[fantasquadra] = s['mediana'] + + # sort teams based on this custom formula: mediana + avg / 10 + index = {fs: mediana[fs] + avg[fs] / 10 for fs in freqs} + sorted_index = sorted(index.items(), key=lambda x:x[1]) + return [f[0] for f in sorted_index] + + if __name__ == "__main__": rows = read_csv(stagione='2023_2024') export_all_files(stagione='2023_2024', rows=rows) - export_summary_file(stagione='2023_2024', rows=rows) \ No newline at end of file + export_summary_file(stagione='2023_2024', rows=rows) diff --git a/python/templates/pronostici_summary.html b/python/templates/pronostici_summary.html index ba283e2..316f249 100644 --- a/python/templates/pronostici_summary.html +++ b/python/templates/pronostici_summary.html @@ -10,6 +10,15 @@ {% endfor %} +

La classifica statistica secondo i pronostici

+
    + {% for fantasquadra in classifica %} +
  1. {{ fantasquadra }}
  2. + {% endfor %} +
+ +

Grafico dei pronostici

+

Bello ma illeggibile...

{{ svg }} -
\ No newline at end of file + diff --git a/stagioni/2023_2024/pronostici/10898860.html b/stagioni/2023_2024/pronostici/10898860.html index dd422d5..ed7e367 100644 --- a/stagioni/2023_2024/pronostici/10898860.html +++ b/stagioni/2023_2024/pronostici/10898860.html @@ -73,7 +73,7 @@

Come è stato pronosticato YRN F.C.?

- 2023-09-20T22:27:55.373153 + 2023-09-20T23:02:57.722981 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato YRN F.C.?

L 95.843205 223.104 L 73.832727 223.104 z -" clip-path="url(#pdd247f2146)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> +" clip-path="url(#p8404feef85)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato YRN F.C.?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato YRN F.C.?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato YRN F.C.?

- + diff --git a/stagioni/2023_2024/pronostici/4480565.html b/stagioni/2023_2024/pronostici/4480565.html index 347310c..6ba6fd9 100644 --- a/stagioni/2023_2024/pronostici/4480565.html +++ b/stagioni/2023_2024/pronostici/4480565.html @@ -73,7 +73,7 @@

Come è stato pronosticato Owl City?

- 2023-09-20T22:27:54.568351 + 2023-09-20T23:02:56.957431 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Owl City?

L 95.843205 54.144 L 73.832727 54.144 z -" clip-path="url(#p6f25678314)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/>
+" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> +" clip-path="url(#p04a246601e)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Owl City?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Owl City?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Owl City?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Owl City?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Owl City?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Owl City?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Owl City?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Owl City?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Owl City?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Owl City?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Owl City?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Owl City?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Owl City?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Owl City?

- + @@ -699,7 +699,7 @@

Come è stato pronosticato Owl City?

- + diff --git a/stagioni/2023_2024/pronostici/4480737.html b/stagioni/2023_2024/pronostici/4480737.html index faa2baf..5ccb101 100644 --- a/stagioni/2023_2024/pronostici/4480737.html +++ b/stagioni/2023_2024/pronostici/4480737.html @@ -73,7 +73,7 @@

Come è stato pronosticato Patetico Mineiro?

- 2023-09-20T22:27:54.805891 + 2023-09-20T23:02:57.168408 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Patetico Mineiro?

L 95.843205 138.624 L 73.832727 138.624 z -" clip-path="url(#p793b5e038f)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/>
+" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> +" clip-path="url(#pba664b513c)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Patetico Mineiro?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Patetico Mineiro?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato Patetico Mineiro?

- + diff --git a/stagioni/2023_2024/pronostici/4480837.html b/stagioni/2023_2024/pronostici/4480837.html index 0880349..4e708c1 100644 --- a/stagioni/2023_2024/pronostici/4480837.html +++ b/stagioni/2023_2024/pronostici/4480837.html @@ -73,7 +73,7 @@

Come è stato pronosticato Paris Saint Germano?

- 2023-09-20T22:27:55.261357 + 2023-09-20T23:02:57.613086 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Paris Saint Germano?

L 95.843205 223.104 L 73.832727 223.104 z -" clip-path="url(#p4ad4441f0a)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/>
+" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> +" clip-path="url(#pf526208370)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Paris Saint Germano?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Paris Saint Germano?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato Paris Saint Germano?

- + diff --git a/stagioni/2023_2024/pronostici/4481779.html b/stagioni/2023_2024/pronostici/4481779.html index e903155..caaf85d 100644 --- a/stagioni/2023_2024/pronostici/4481779.html +++ b/stagioni/2023_2024/pronostici/4481779.html @@ -73,7 +73,7 @@

Come è stato pronosticato REAL DAVID?

- 2023-09-20T22:27:55.485499 + 2023-09-20T23:02:57.838198 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato REAL DAVID?

L 95.843205 307.584 L 73.832727 307.584 z -" clip-path="url(#p23a61ea495)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/>
+" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> +" clip-path="url(#pacd3a94ad0)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato REAL DAVID?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -691,7 +691,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -704,7 +704,7 @@

Come è stato pronosticato REAL DAVID?

- + @@ -738,7 +738,7 @@

Come è stato pronosticato REAL DAVID?

- + diff --git a/stagioni/2023_2024/pronostici/4483105.html b/stagioni/2023_2024/pronostici/4483105.html index 2605ea6..b44a208 100644 --- a/stagioni/2023_2024/pronostici/4483105.html +++ b/stagioni/2023_2024/pronostici/4483105.html @@ -73,7 +73,7 @@

Come è stato pronosticato Ire Framba United?

- 2023-09-20T22:27:54.697199 + 2023-09-20T23:02:57.056112 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Ire Framba United?

L 95.843205 223.104 L 73.832727 223.104 z -" clip-path="url(#pb81eec286a)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/>
+" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> +" clip-path="url(#pa0b1797d50)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Ire Framba United?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Ire Framba United?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato Ire Framba United?

- + diff --git a/stagioni/2023_2024/pronostici/4485329.html b/stagioni/2023_2024/pronostici/4485329.html index 1c2b104..8046aa2 100644 --- a/stagioni/2023_2024/pronostici/4485329.html +++ b/stagioni/2023_2024/pronostici/4485329.html @@ -73,7 +73,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- 2023-09-20T22:27:54.917711 + 2023-09-20T23:02:57.276930 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

L 95.843205 223.104 L 73.832727 223.104 z -" clip-path="url(#p692d28e39a)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/>
+" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> +" clip-path="url(#p8af5fbded8)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato Godopolisportiva Antonio Ricci?

- + diff --git a/stagioni/2023_2024/pronostici/5330685.html b/stagioni/2023_2024/pronostici/5330685.html index 58a3d87..a5235cf 100644 --- a/stagioni/2023_2024/pronostici/5330685.html +++ b/stagioni/2023_2024/pronostici/5330685.html @@ -73,7 +73,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- 2023-09-20T22:27:55.039776 + 2023-09-20T23:02:57.390645 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

L 95.843205 307.584 L 73.832727 307.584 z -" clip-path="url(#p0ebc13ec57)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/>
+" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> +" clip-path="url(#p99c12dfc58)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -691,7 +691,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + @@ -725,7 +725,7 @@

Come è stato pronosticato MedusaTeam WFC - IL BLOCCO?

- + diff --git a/stagioni/2023_2024/pronostici/5332606.html b/stagioni/2023_2024/pronostici/5332606.html index 12d967c..7a222f7 100644 --- a/stagioni/2023_2024/pronostici/5332606.html +++ b/stagioni/2023_2024/pronostici/5332606.html @@ -73,7 +73,7 @@

Come è stato pronosticato Real Pollo?

- 2023-09-20T22:27:54.323495 + 2023-09-20T23:02:56.762478 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Real Pollo?

L 95.843205 223.104 L 73.832727 223.104 z -" clip-path="url(#pca6bd6d700)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/>
+" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> +" clip-path="url(#pf3152f4d80)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Real Pollo?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Real Pollo?

- + @@ -712,7 +712,7 @@

Come è stato pronosticato Real Pollo?

- + diff --git a/stagioni/2023_2024/pronostici/5332804.html b/stagioni/2023_2024/pronostici/5332804.html index c30ae72..56122bc 100644 --- a/stagioni/2023_2024/pronostici/5332804.html +++ b/stagioni/2023_2024/pronostici/5332804.html @@ -73,7 +73,7 @@

Come è stato pronosticato Reggisenal?

- 2023-09-20T22:27:54.451002 + 2023-09-20T23:02:56.864587 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Reggisenal?

L 95.843205 307.584 L 73.832727 307.584 z -" clip-path="url(#p0eb4834bf2)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/>
+" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> +" clip-path="url(#p3a9e299593)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Reggisenal?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -678,7 +678,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -691,7 +691,7 @@

Come è stato pronosticato Reggisenal?

- + @@ -725,7 +725,7 @@

Come è stato pronosticato Reggisenal?

- + diff --git a/stagioni/2023_2024/pronostici/9242836.html b/stagioni/2023_2024/pronostici/9242836.html index b89ef15..a42bb97 100644 --- a/stagioni/2023_2024/pronostici/9242836.html +++ b/stagioni/2023_2024/pronostici/9242836.html @@ -73,7 +73,7 @@

Come è stato pronosticato Team Barco F.C.?

- 2023-09-20T22:27:55.154114 + 2023-09-20T23:02:57.499872 image/svg+xml @@ -110,7 +110,7 @@

Come è stato pronosticato Team Barco F.C.?

L 95.843205 307.584 L 73.832727 307.584 z -" clip-path="url(#pba7889fca9)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/>
+" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> +" clip-path="url(#p9283b8efd8)" style="fill: #1f77b4"/> - - + @@ -238,7 +238,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -277,7 +277,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -324,7 +324,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -358,7 +358,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -398,7 +398,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -443,7 +443,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -468,7 +468,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -522,7 +522,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -567,7 +567,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -604,7 +604,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -618,7 +618,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -634,12 +634,12 @@

Come è stato pronosticato Team Barco F.C.?

- - + @@ -652,7 +652,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -665,7 +665,7 @@

Come è stato pronosticato Team Barco F.C.?

- + @@ -699,7 +699,7 @@

Come è stato pronosticato Team Barco F.C.?

- + diff --git a/stagioni/2023_2024/pronostici/pronostici.html b/stagioni/2023_2024/pronostici/pronostici.html index 2f8eefc..512df89 100644 --- a/stagioni/2023_2024/pronostici/pronostici.html +++ b/stagioni/2023_2024/pronostici/pronostici.html @@ -32,13 +32,44 @@ +

La classifica statistica secondo i pronostici

+
    + +
  1. Patetico Mineiro
  2. + +
  3. Pompy FC
  4. + +
  5. Godopolisportiva Antonio Ricci
  6. + +
  7. Real Pollo
  8. + +
  9. Paris Saint Germano
  10. + +
  11. Ire Framba United
  12. + +
  13. Reggisenal
  14. + +
  15. Owl City
  16. + +
  17. Team Barco F.C.
  18. + +
  19. YRN F.C.
  20. + +
  21. MedusaTeam WFC - IL BLOCCO
  22. + +
  23. REAL DAVID
  24. + +
+ +

Grafico dei pronostici

+

Bello ma illeggibile...

- 2023-09-20T22:27:55.873389 + 2023-09-20T23:02:58.225351 image/svg+xml @@ -75,7 +106,7 @@ L 54.759606 303.64 L 40.791488 303.64 z -" clip-path="url(#p44c69534d7)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #2ca02c"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #d62728"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #9467bd"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #8c564b"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #e377c2"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #7f7f7f"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #bcbd22"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #17becf"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #1f77b4"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> +" clip-path="url(#p59731ba4c9)" style="fill: #ff7f0e"/> - - + @@ -1259,7 +1290,7 @@ - + @@ -1298,7 +1329,7 @@ - + @@ -1345,7 +1376,7 @@ - + @@ -1379,7 +1410,7 @@ - + @@ -1419,7 +1450,7 @@ - + @@ -1464,7 +1495,7 @@ - + @@ -1489,7 +1520,7 @@ - + @@ -1543,7 +1574,7 @@ - + @@ -1588,7 +1619,7 @@ - + @@ -1625,7 +1656,7 @@ - + @@ -1639,7 +1670,7 @@ - + @@ -1911,12 +1942,12 @@ - - + @@ -1929,7 +1960,7 @@ - + @@ -1942,7 +1973,7 @@ - + @@ -1955,7 +1986,7 @@ - + @@ -1968,7 +1999,7 @@ - + @@ -1981,7 +2012,7 @@ - + @@ -2977,7 +3008,7 @@ - +